-
Notifications
You must be signed in to change notification settings - Fork 0
/
ppm2rdf.xml
38 lines (38 loc) · 1.09 KB
/
ppm2rdf.xml
1
2
3
4
5
6
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
<?xml version="1.0" encoding="us-ascii" ?>
<transform
version="3.0"
xmlns="http://www.w3.org/1999/XSL/Transform"
>
<output indent="no" />
<variable name="rdf" static="yes"
select="'http://www.w3.org/1999/02/22-rdf-syntax-ns#'" />
<variable name="n" >1</variable>
<template name="initial-template" >
<message>init</message>
<apply-templates select="unparsed-text-lines('i.txt')" />
</template>
<template match=".[starts-with(.,'j')]" >
<value-of select="." ></value-of>
</template>
<template name="demo" match="/" >
<message>demo</message>
<text disable-output-escaping="yes" expand-text="yes">
<!DOCTYPE rdf:RDF [
<!ENTITY rdf '{$rdf}'>
]>
</text>
<text disable-output-escaping="yes" >
<RDF xmlns="&rdf;">
</text>
<text disable-output-escaping="yes" expand-text="yes" >
<Description about="&rdf;_{$n}">
</text>
<element name="_{$n}" namespace="" >153715</element>
<text disable-output-escaping="yes" >
</Description>
</text>
<text disable-output-escaping="yes" >
</RDF>
</text>
</template>
</transform>