Skip to content

Commit

Permalink
Add allow_deferred attribute to test element in visualization.dtd
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Nov 1, 2024
1 parent 5a35684 commit 0eb1e12
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions config/plugins/visualizations/visualization.dtd
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,17 @@
if result_type is 'datatype' the registry will assume the text is a datatype class name
and parse it into the proper class before the test (often 'isinstance') is run.
DEFAULT: no parsing (result should be a string)
allow_deferred: used in conjunction with type='isinstance' and test_attr='datatype'. If set to true,
the registry will allow the test to pass if the target is deferred (currently only HDAs can be deferred).
This is useful for visualizations that can work directly with URIs.
DEFAULT: false

-->
<!ATTLIST test
type CDATA #IMPLIED
test_attr CDATA #IMPLIED
result_type CDATA #IMPLIED
type CDATA #IMPLIED
test_attr CDATA #IMPLIED
result_type CDATA #IMPLIED
allow_deferred CDATA #IMPLIED
>

<!ELEMENT to_param (#PCDATA)>
Expand Down

0 comments on commit 0eb1e12

Please sign in to comment.