LinkResource
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/dsp_base_resources.py
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 | |
create_new
Creates a new link resource. A link resource is like a container that groups together several other resources of different classes.
See XML documentation for details
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
res_id
|
str
|
ID of this link resource |
required |
label
|
str
|
label of this link resource |
required |
link_to
|
Collection[str]
|
IDs of the resources that should be linked together (cardinality 1-n) |
required |
permissions
|
Permissions
|
permissions of this link resource |
PROJECT_SPECIFIC_PERMISSIONS
|
Returns:
| Type | Description |
|---|---|
LinkResource
|
A link resource |
Examples:
link_resource = xmllib.LinkResource.create_new(
res_id="ID",
label="label",
link_to=["target_resource_id_1", "target_resource_id_2"],
)
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/dsp_base_resources.py
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | |
add_comment
Add a comment to the resource
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
text of the comment |
required |
permissions
|
Permissions
|
optional permissions of this value |
PROJECT_SPECIFIC_PERMISSIONS
|
comment
|
str | None
|
optional comment about this comment |
None
|
newline_replacement
|
NewlineReplacement
|
options how to deal with |
LINEBREAK
|
Returns:
| Type | Description |
|---|---|
LinkResource
|
The original resource, with the added comment |
Examples:
link_resource = link_resource.add_comment("comment text")
link_resource = link_resource.add_comment(text="comment text", comment="Comment about the comment.")
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/dsp_base_resources.py
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | |
add_comment_multiple
Add several comments to the resource
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
texts
|
Collection[str]
|
list of texts |
required |
permissions
|
Permissions
|
optional permissions of these values |
PROJECT_SPECIFIC_PERMISSIONS
|
comment
|
str | None
|
optional comment about this comment |
None
|
newline_replacement
|
NewlineReplacement
|
options how to deal with |
LINEBREAK
|
Returns:
| Type | Description |
|---|---|
LinkResource
|
The original resource, with the added comments |
Examples:
link_resource = link_resource.add_comment_multiple(["comment 1", "comment 2"])
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/dsp_base_resources.py
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 | |
add_comment_optional
If the value is not empty, add it as comment, otherwise return the resource unchanged.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
Any
|
text of the comment (or empty value) |
required |
permissions
|
Permissions
|
optional permissions of this value |
PROJECT_SPECIFIC_PERMISSIONS
|
comment
|
str | None
|
optional comment about this comment |
None
|
newline_replacement
|
NewlineReplacement
|
options how to deal with |
LINEBREAK
|
Returns:
| Type | Description |
|---|---|
LinkResource
|
The original resource, with the added comment |
Examples:
link_resource = link_resource.add_comment_optional("comment text")
link_resource = link_resource.add_comment_optional(None)
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/dsp_base_resources.py
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 | |