Configuration options
Permissions
Bases: Enum
Options of permissions for resources and values:
PROJECT_SPECIFIC_PERMISSIONS
: the permissions defined on project level will be appliedPUBLIC
: the resource/value is visible for everyonePRIVATE
: the resource/value is only visible for project membersLIMITED_VIEW
: the resource/value is visible for everyone, but images are blurred/watermarked for non-project members
Deprecated terms:
OPEN
: usePUBLIC
insteadRESTRICTED
: usePRIVATE
insteadRESTRICTED_VIEW
: useLIMITED_VIEW
instead
Examples:
resource = xmllib.Resource.create_new(
res_id="ID",
restype=":ResourceType",
label="label",
permissions=xmllib.Permissions.PRIVATE,
)
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/config_options.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
NewlineReplacement
Bases: Enum
Options how to deal with \n
inside rich text values.
NONE
: don't modify the rich text (\n
will be lost, because it is meaningless in an XML file)PARAGRAPH
: replaceStart\nEnd
with<p>Start</p><p>End</p>
LINEBREAK
: replaceStart\nEnd
withStart<br/>End
Examples:
# setting the replacement options for newlines
resource = resource.add_richtext(
prop_name=":propName",
value="Start\n\nEnd",
newline_replacement=xmllib.NewlineReplacement.PARAGRAPH
)
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/config_options.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|
DateFormat
Bases: Enum
Date format options for the reformat_date
function.
YYYY_MM_DD
DD_MM_YYYY
MM_DD_YYYY
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/config_options.py
69 70 71 72 73 74 75 76 77 78 79 80 |
|
Calendar
Bases: Enum
Calendar options for the reformat_date
function.
GREGORIAN
JULIAN
ISLAMIC
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/config_options.py
83 84 85 86 87 88 89 90 91 92 93 94 |
|
Era
Bases: Enum
Era options for the reformat_date
function.
CE
BCE
AD
BC
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/models/config_options.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
|