Difference between revisions of "EPScript/Data Types"

From EPrints Documentation
Jump to: navigation, search
m
Line 7: Line 7:
 
These are contained within either double quotes ("") or single quotes (<nowiki>''</nowiki>). There is no difference between the two, but it may be easier to use one sort when inside an XML attribute. For example:
 
These are contained within either double quotes ("") or single quotes (<nowiki>''</nowiki>). There is no difference between the two, but it may be easier to use one sort when inside an XML attribute. For example:
  
{{codesample|<when test="type = 'patent'">
+
{{codesample|
 +
<pre>
 +
<when test="type = 'patent'">
 
...
 
...
</when>}}
+
</when>
 +
</pre>
 +
}}

Revision as of 16:54, 3 October 2006

EPScript

Data Types

Strings and characters

These are contained within either double quotes ("") or single quotes (''). There is no difference between the two, but it may be easier to use one sort when inside an XML attribute. For example:


<when test="type = 'patent'">
...
</when>