Difference between revisions of "EPScript/Data Types"

From EPrints Documentation
Jump to: navigation, search
m (EPScript moved to EPScript/Data Types)
(No difference)

Revision as of 14:20, 4 October 2006

EPScript
Data Types Operators
EPScript

Data Types

Primitive 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>


Integers

Integers are defined as a string of numbers from 0-9, e.g. 300. Leading zeros do not have any effect, and decimal values are currently not supported.

Data Objects