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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
|
<?xml version="1.0" encoding="UTF-8"?>
<stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0" xmlns:h="http://www.w3.org/1999/xhtml"
xmlns="http://www.w3.org/1999/XSL/Transform"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xalan="http://xml.apache.org/xalan"
xmlns:java="http://xml.apache.org/xalan/java"
exclude-result-prefixes="java"
>
<!-- Version 0.21 by Fabien.Gandon@sophia.inria.fr -->
<!-- This software is distributed under either the CeCILL-C license or the
GNU Lesser General Public License version 3 license. -->
<!-- This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License -->
<!-- as published by the Free Software Foundation version 3 of the License
or under the terms of the CeCILL-C license. -->
<!-- This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied -->
<!-- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -->
<!-- See the GNU Lesser General Public License version 3 at http://www.gnu.org/licenses/ -->
<!-- and the CeCILL-C license at http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html
for more details -->
<output indent="yes" method="xml" media-type="application/rdf+xml"
encoding="UTF-8" omit-xml-declaration="yes" />
<!-- base of the current HTML doc -->
<variable name='html_base' select="//*/h:head/h:base[position()=1]/@href" />
<!-- default HTML vocabulary namespace -->
<variable name='default_voc' select="'http://www.w3.org/1999/xhtml/vocab#'" />
<!-- parser instance -->
<param name='parser' select="''" />
<!-- url of the current XHTML page if provided by the XSLT engine -->
<param name='url' select="''" />
<!-- this contains the URL of the source document whether it was provided
by the base or as a parameter e.g. http://example.org/bla/file.html -->
<variable name='this'>
<choose>
<when test="string-length($html_base)>0">
<value-of select="$html_base" />
</when>
<otherwise>
<value-of select="$url" />
</otherwise>
</choose>
</variable>
<!-- this_location contains the location the source document e.g. http://example.org/bla/ -->
<variable name='this_location'>
<call-template name="get-location">
<with-param name="url" select="$this" />
</call-template>
</variable>
<!-- this_root contains the root location of the source document e.g. http://example.org/ -->
<variable name='this_root'>
<call-template name="get-root">
<with-param name="url" select="$this" />
</call-template>
</variable>
<!-- templates for parsing - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -->
<!--Start the RDF generation -->
<template match="/">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<apply-templates mode="rdf2rdfxml" /> <!-- the mode is used to ease integration with other XSLT templates -->
</rdf:RDF>
</template>
<!-- match RDFa element -->
<template
match="*[attribute::property or attribute::rel or attribute::rev or attribute::typeof]"
mode="rdf2rdfxml">
<!-- identify suject -->
<variable name="subject">
<call-template name="subject" />
</variable>
<!-- do we have object properties? -->
<if test="string-length(@rel)>0 or string-length(@rev)>0">
<variable name="object"> <!-- identify the object(s) -->
<choose>
<when test="@resource">
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri" select="@resource" />
</call-template>
</when>
<when test="@href">
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri" select="@href" />
</call-template>
</when>
<when
test="descendant::*[attribute::about or attribute::src or attribute::typeof or
attribute::href or attribute::resource or
attribute::rel or attribute::rev or attribute::property]">
<call-template name="recurse-objects" />
</when>
<otherwise>
<call-template name="self-curie-or-uri">
<with-param name="node" select="." />
</call-template>
</otherwise>
</choose>
</variable>
<call-template name="relrev">
<with-param name="subject" select="$subject" />
<with-param name="object" select="$object" />
</call-template>
</if>
<!-- do we have data properties ? -->
<if test="string-length(@property)>0">
<!-- identify language -->
<variable name="language"
select="string(ancestor-or-self::*/attribute::xml:lang[position()=1])" />
<variable name="expended-pro">
<call-template name="expand-ns">
<with-param name="qname" select="@property" />
</call-template>
</variable>
<choose>
<when test="@content"> <!-- there is a specific content -->
<call-template name="property">
<with-param name="subject" select="$subject" />
<with-param name="object" select="@content" />
<with-param name="datatype">
<choose>
<when test="@datatype='' or not(@datatype)"></when> <!-- enforcing plain literal -->
<otherwise>
<call-template name="expand-ns">
<with-param name="qname" select="@datatype" />
</call-template>
</otherwise>
</choose>
</with-param>
<with-param name="predicate" select="@property" />
<with-param name="attrib" select="'true'" />
<with-param name="language" select="$language" />
</call-template>
</when>
<when test="not(*)"> <!-- there no specific content but there are no children elements in the
content -->
<call-template name="property">
<with-param name="subject" select="$subject" />
<with-param name="object" select="." />
<with-param name="datatype">
<choose>
<when test="@datatype='' or not(@datatype)"></when> <!-- enforcing plain literal -->
<otherwise>
<call-template name="expand-ns">
<with-param name="qname" select="@datatype" />
</call-template>
</otherwise>
</choose>
</with-param>
<with-param name="predicate" select="@property" />
<with-param name="attrib" select="'true'" />
<with-param name="language" select="$language" />
</call-template>
</when>
<otherwise> <!-- there is no specific content; we use the value of element -->
<call-template name="property">
<with-param name="subject" select="$subject" />
<with-param name="object" select="." />
<with-param name="datatype">
<choose>
<when test="@datatype='' or not(@datatype)">
http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral
</when> <!-- enforcing XML literal -->
<otherwise>
<call-template name="expand-ns">
<with-param name="qname" select="@datatype" />
</call-template>
</otherwise>
</choose>
</with-param>
<with-param name="predicate" select="@property" />
<with-param name="attrib" select="'false'" />
<with-param name="language" select="$language" />
</call-template>
</otherwise>
</choose>
</if>
<!-- do we have classes ? -->
<if test="@typeof">
<call-template name="class">
<with-param name="resource">
<call-template name="self-curie-or-uri">
<with-param name="node" select="." />
</call-template>
</with-param>
<with-param name="class" select="@typeof" />
</call-template>
</if>
<apply-templates mode="rdf2rdfxml" />
</template>
<!-- named templates to process URIs and token lists - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- tokenize a string using space as a delimiter -->
<template name="tokenize">
<param name="string" />
<if test="string-length($string)>0">
<choose>
<when test="contains($string,' ')">
<value-of select="normalize-space(substring-before($string,' '))" />
<call-template name="tokenize">
<with-param name="string"
select="normalize-space(substring-after($string,' '))" />
</call-template>
</when>
<otherwise>
<value-of select="$string" />
</otherwise>
</choose>
</if>
</template>
<!-- get file location from URL -->
<template name="get-location">
<param name="url" />
<if test="string-length($url)>0 and contains($url,'/')">
<value-of select="concat(substring-before($url,'/'),'/')" />
<call-template name="get-location">
<with-param name="url" select="substring-after($url,'/')" />
</call-template>
</if>
</template>
<!-- get root location from URL -->
<template name="get-root">
<param name="url" />
<choose>
<when test="contains($url,'//')">
<value-of
select="concat(substring-before($url,'//'),'//',substring-before(substring-after($url,'//'),'/'),'/')" />
</when>
<otherwise>
UNKNOWN ROOT
</otherwise>
</choose>
</template>
<!-- return namespace of a qname -->
<template name="return-ns">
<param name="qname" />
<variable name="ns_prefix" select="substring-before($qname,':')" />
<if test="string-length($ns_prefix)>0"> <!-- prefix must be explicit -->
<variable name="name" select="substring-after($qname,':')" />
<value-of
select="ancestor-or-self::*/namespace::*[name()=$ns_prefix][position()=1]" />
</if>
<if
test="string-length($ns_prefix)=0 and ancestor-or-self::*/namespace::*[name()=''][position()=1]"> <!-- no prefix -->
<variable name="name" select="substring-after($qname,':')" />
<value-of select="ancestor-or-self::*/namespace::*[name()=''][position()=1]" />
</if>
</template>
<!-- expand namespace of a qname -->
<template name="expand-ns">
<param name="qname" />
<variable name="ns_prefix" select="substring-before($qname,':')" />
<if test="string-length($ns_prefix)>0"> <!-- prefix must be explicit -->
<variable name="name" select="substring-after($qname,':')" />
<variable name="ns_uri"
select="ancestor-or-self::*/namespace::*[name()=$ns_prefix][position()=1]" />
<value-of select="concat($ns_uri,$name)" />
</if>
<if
test="string-length($ns_prefix)=0 and ancestor-or-self::*/namespace::*[name()=''][position()=1]"> <!-- no prefix -->
<variable name="name" select="substring-after($qname,':')" />
<variable name="ns_uri"
select="ancestor-or-self::*/namespace::*[name()=''][position()=1]" />
<value-of select="concat($ns_uri,$name)" />
</if>
</template>
<!-- determines the CURIE / URI of a node -->
<template name="self-curie-or-uri">
<param name="node" />
<choose>
<when test="$node/attribute::about"> <!-- we have an about attribute to extend -->
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri" select="$node/attribute::about" />
</call-template>
</when>
<when test="$node/attribute::src"> <!-- we have an src attribute to extend -->
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri" select="$node/attribute::src" />
</call-template>
</when>
<when
test="$node/attribute::resource and not($node/attribute::rel or $node/attribute::rev)"> <!-- enforcing the resource as subject if no rel or rev -->
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri" select="$node/attribute::resource" />
</call-template>
</when>
<when
test="$node/attribute::href and not($node/attribute::rel or $node/attribute::rev)"> <!-- enforcing the href as subject if no rel or rev -->
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri" select="$node/attribute::href" />
</call-template>
</when>
<when
test="$node/self::h:head or $node/self::h:body or $node/self::h:html">
<value-of select="$this" />
</when> <!-- enforcing the doc as subject -->
<when test="$node/attribute::id"> <!-- we have an id attribute to extend -->
<value-of select="concat($this,'#',$node/attribute::id)" />
</when>
<otherwise>
blank:node:
<value-of select="generate-id($node)" />
</otherwise>
</choose>
</template>
<!-- expand CURIE / URI -->
<template name="expand-curie-or-uri">
<param name="curie_or_uri" />
<choose>
<when test="starts-with($curie_or_uri,'[_:')"> <!-- we have a CURIE blank node -->
<value-of
select="concat('blank:node:',substring-after(substring-before($curie_or_uri,']'),'[_:'))" />
</when>
<when test="starts-with($curie_or_uri,'[')"> <!-- we have a CURIE between square brackets -->
<call-template name="expand-ns">
<with-param name="qname"
select="substring-after(substring-before($curie_or_uri,']'),'[')" />
</call-template>
</when>
<when test="starts-with($curie_or_uri,'#')"> <!-- we have an anchor -->
<value-of select="concat($this,$curie_or_uri)" />
</when>
<when test="string-length($curie_or_uri)=0"> <!-- empty anchor means the document itself -->
<value-of select="$this" />
</when>
<when
test="not(starts-with($curie_or_uri,'[')) and contains($curie_or_uri,':')"> <!-- it is a URI -->
<value-of select="$curie_or_uri" />
</when>
<when
test="not(contains($curie_or_uri,'://')) and not(starts-with($curie_or_uri,'/'))"> <!-- relative URL -->
<value-of select="concat($this_location,$curie_or_uri)" />
</when>
<when
test="not(contains($curie_or_uri,'://')) and (starts-with($curie_or_uri,'/'))"> <!-- URL from root domain -->
<value-of select="concat($this_root,substring-after($curie_or_uri,'/'))" />
</when>
<otherwise>
UNKNOWN CURIE URI
</otherwise>
</choose>
</template>
<!-- returns the first token in a list separated by spaces -->
<template name="get-first-token">
<param name="tokens" />
<if test="string-length($tokens)>0">
<choose>
<when test="contains($tokens,' ')">
<value-of select="normalize-space(substring-before($tokens,' '))" />
</when>
<otherwise>
<value-of select="$tokens" />
</otherwise>
</choose>
</if>
</template>
<!-- returns the namespace for an object property -->
<template name="get-relrev-ns">
<param name="qname" />
<variable name="ns_prefix"
select="substring-before(translate($qname,'[]',''),':')" />
<choose>
<when test="string-length($ns_prefix)>0">
<call-template name="return-ns">
<with-param name="qname" select="$qname" />
</call-template>
</when>
<!-- returns default_voc if the predicate is a reserved value -->
<otherwise>
<variable name="is-reserved">
<call-template name="check-reserved">
<with-param name="nonprefixed">
<call-template name="no-leading-colon">
<with-param name="name" select="$qname" />
</call-template>
</with-param>
</call-template>
</variable>
<if test="$is-reserved='true'">
<value-of select="$default_voc" />
</if>
</otherwise>
</choose>
</template>
<!-- returns the namespace for a data property -->
<template name="get-property-ns">
<param name="qname" />
<variable name="ns_prefix"
select="substring-before(translate($qname,'[]',''),':')" />
<choose>
<when test="string-length($ns_prefix)>0">
<call-template name="return-ns">
<with-param name="qname" select="$qname" />
</call-template>
</when>
<!-- returns default_voc otherwise -->
<otherwise>
<value-of select="$default_voc" />
</otherwise>
</choose>
</template>
<!-- returns the qname for a predicate -->
<template name="get-predicate-name">
<param name="qname" />
<variable name="clean_name" select="translate($qname,'[]','')" />
<call-template name="no-leading-colon">
<with-param name="name" select="$clean_name" />
</call-template>
</template>
<!-- no leading colon -->
<template name="no-leading-colon">
<param name="name" />
<choose>
<when test="starts-with($name,':')"> <!-- remove leading colons -->
<value-of select="substring-after($name,':')" />
</when>
<otherwise>
<value-of select="$name" />
</otherwise>
</choose>
</template>
<!-- check if a predicate is reserved -->
<template name="check-reserved">
<param name="nonprefixed" />
<choose>
<when
test="$nonprefixed='alternate' or $nonprefixed='appendix' or $nonprefixed='bookmark' or $nonprefixed='cite'">
true
</when>
<when
test="$nonprefixed='chapter' or $nonprefixed='contents' or $nonprefixed='copyright' or $nonprefixed='first'">
true
</when>
<when
test="$nonprefixed='glossary' or $nonprefixed='help' or $nonprefixed='icon' or $nonprefixed='index'">
true
</when>
<when
test="$nonprefixed='last' or $nonprefixed='license' or $nonprefixed='meta' or $nonprefixed='next'">
true
</when>
<when
test="$nonprefixed='p3pv1' or $nonprefixed='prev' or $nonprefixed='role' or $nonprefixed='section'">
true
</when>
<when
test="$nonprefixed='stylesheet' or $nonprefixed='subsection' or $nonprefixed='start' or $nonprefixed='top'">
true
</when>
<when test="$nonprefixed='up'">
true
</when>
<when
test="$nonprefixed='made' or $nonprefixed='previous' or $nonprefixed='search'">
true
</when> <!-- added because they are frequent -->
<otherwise>
false
</otherwise>
</choose>
</template>
<!-- named templates to generate RDF - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - -->
<template name="recursive-copy"> <!-- full copy -->
<copy>
<for-each select="node()|attribute::* ">
<call-template name="recursive-copy" />
</for-each>
</copy>
</template>
<template name="subject"> <!-- determines current subject -->
<choose>
<!-- current node is a meta or a link in the head and with no about attribute -->
<when
test="(self::h:link or self::h:meta) and ( ancestor::h:head ) and not(attribute::about)">
<value-of select="$this" />
</when>
<!-- an attribute about was specified on the node -->
<when test="self::*/attribute::about">
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri" select="@about" />
</call-template>
</when>
<!-- an attribute src was specified on the node -->
<when test="self::*/attribute::src">
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri" select="@src" />
</call-template>
</when>
<!-- an attribute typeof was specified on the node -->
<when test="self::*/attribute::typeof">
<call-template name="self-curie-or-uri">
<with-param name="node" select="." />
</call-template>
</when>
<!-- current node is a meta or a link in the body and with no about attribute -->
<when
test="(self::h:link or self::h:meta) and not( ancestor::h:head ) and not(attribute::about)">
<call-template name="self-curie-or-uri">
<with-param name="node" select="parent::*" />
</call-template>
</when>
<!-- an about was specified on its parent or the parent had a rel or a
rev attribute but no href or an typeof. -->
<when
test="ancestor::*[attribute::about or attribute::src or attribute::typeof or attribute::resource or attribute::href or attribute::rel or attribute::rev][position()=1]">
<variable name="selected_ancestor"
select="ancestor::*[attribute::about or attribute::src or attribute::typeof or attribute::resource or attribute::href or attribute::rel or attribute::rev][position()=1]" />
<choose>
<when
test="$selected_ancestor[(attribute::rel or attribute::rev) and not (attribute::resource or attribute::href)]">
<value-of
select="concat('blank:node:INSIDE_',generate-id($selected_ancestor))" />
</when>
<when test="$selected_ancestor/attribute::about">
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri" select="$selected_ancestor/attribute::about" />
</call-template>
</when>
<when test="$selected_ancestor/attribute::src">
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri" select="$selected_ancestor/attribute::src" />
</call-template>
</when>
<when test="$selected_ancestor/attribute::resource">
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri"
select="$selected_ancestor/attribute::resource" />
</call-template>
</when>
<when test="$selected_ancestor/attribute::href">
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri" select="$selected_ancestor/attribute::href" />
</call-template>
</when>
<otherwise>
<call-template name="self-curie-or-uri">
<with-param name="node" select="$selected_ancestor" />
</call-template>
</otherwise>
</choose>
</when>
<otherwise> <!-- it must be about the current document -->
<value-of select="$this" />
</otherwise>
</choose>
</template>
<!-- recursive call for object(s) of object properties -->
<template name="recurse-objects">
<xsl:for-each select="child::*">
<choose>
<when test="attribute::about or attribute::src"> <!-- there is a known resource -->
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri" select="attribute::about | attribute::src" />
</call-template>
<text> </text>
</when>
<when
test="(attribute::resource or attribute::href) and ( not (attribute::rel or attribute::rev or attribute::property))"> <!-- there is an incomplet triple -->
<call-template name="expand-curie-or-uri">
<with-param name="curie_or_uri"
select="attribute::resource | attribute::href" />
</call-template>
<text> </text>
</when>
<when test="attribute::typeof and not (attribute::about)"> <!-- there is an implicit resource -->
<call-template name="self-curie-or-uri">
<with-param name="node" select="." />
</call-template>
<text> </text>
</when>
<when test="attribute::rel or attribute::rev or attribute::property"> <!-- there is an implicit resource -->
<if
test="not (preceding-sibling::*[attribute::rel or attribute::rev or attribute::property])"> <!-- generate the triple only once -->
<call-template name="subject" />
<text> </text>
</if>
</when>
<otherwise> <!-- nothing at that level thus consider children -->
<call-template name="recurse-objects" />
</otherwise>
</choose>
</xsl:for-each>
</template>
<!-- generate recursive call for multiple objects in rel or rev -->
<template name="relrev">
<param name="subject" />
<param name="object" />
<!-- test for multiple predicates -->
<variable name="single-object">
<call-template name="get-first-token">
<with-param name="tokens" select="$object" />
</call-template>
</variable>
<if test="string-length(@rel)>0">
<call-template name="relation">
<with-param name="subject" select="$subject" />
<with-param name="object" select="$single-object" />
<with-param name="predicate" select="@rel" />
</call-template>
</if>
<if test="string-length(@rev)>0">
<call-template name="relation">
<with-param name="subject" select="$single-object" />
<with-param name="object" select="$subject" />
<with-param name="predicate" select="@rev" />
</call-template>
</if>
<!-- recursive call for multiple predicates -->
<variable name="other-objects"
select="normalize-space(substring-after($object,' '))" />
<if test="string-length($other-objects)>0">
<call-template name="relrev">
<with-param name="subject" select="$subject" />
<with-param name="object" select="$other-objects" />
</call-template>
</if>
</template>
<!-- generate an RDF statement for a relation -->
<template name="relation">
<param name="subject" />
<param name="predicate" />
<param name="object" />
<!-- test for multiple predicates -->
<variable name="single-predicate">
<call-template name="get-first-token">
<with-param name="tokens" select="$predicate" />
</call-template>
</variable>
<!-- get namespace of the predicate -->
<variable name="predicate-ns">
<call-template name="get-relrev-ns">
<with-param name="qname" select="$single-predicate" />
</call-template>
</variable>
<!-- get name of the predicate -->
<variable name="predicate-name">
<call-template name="get-predicate-name">
<with-param name="qname" select="$single-predicate" />
</call-template>
</variable>
<choose>
<when test="string-length($predicate-ns)>0"> <!-- there is a known namespace for the predicate -->
<choose>
<when test="starts-with($subject,'blank:node:')">
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheSubjectNodeID($parser,substring-after($subject,'blank:node:'))" />
</when>
<otherwise>
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheSubjectURI($parser,$subject)" />
</otherwise>
</choose>
<!-- get full predicate -->
<variable name="expanded-predicate">
<call-template name="expand-ns">
<with-param name="qname" select="$single-predicate" />
</call-template>
</variable>
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setThePropertyURI($parser,$expanded-predicate)" />
<choose>
<when test="starts-with($object,'blank:node:')">
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheObjectNodeID($parser,substring-after($object,'blank:node:'))" />
</when>
<otherwise>
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheObjectURI($parser,$object)" />
</otherwise>
</choose>
</when>
<otherwise> <!-- no namespace generate a comment for debug -->
<xsl:comment>
No namespace for the rel or rev value ; could not produce the
triple for:
<value-of select="$subject" />
-
<value-of select="$single-predicate" />
-
<value-of select="$object" />
</xsl:comment>
</otherwise>
</choose>
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.flushObjectProperty($parser)" />
<!-- recursive call for multiple predicates -->
<variable name="other-predicates"
select="normalize-space(substring-after($predicate,' '))" />
<if test="string-length($other-predicates)>0">
<call-template name="relation">
<with-param name="subject" select="$subject" />
<with-param name="predicate" select="$other-predicates" />
<with-param name="object" select="$object" />
</call-template>
</if>
</template>
<!-- generate an RDF statement for a property -->
<template name="property">
<param name="subject" />
<param name="predicate" />
<param name="object" />
<param name="datatype" />
<param name="attrib" /> <!-- is the content from an attribute ? true /false -->
<param name="language" />
<!-- test for multiple predicates -->
<variable name="single-predicate">
<call-template name="get-first-token">
<with-param name="tokens" select="$predicate" />
</call-template>
</variable>
<!-- get namespace of the predicate -->
<variable name="predicate-ns">
<call-template name="get-property-ns">
<with-param name="qname" select="$single-predicate" />
</call-template>
</variable>
<!-- get name of the predicate -->
<variable name="predicate-name">
<call-template name="get-predicate-name">
<with-param name="qname" select="$single-predicate" />
</call-template>
</variable>
<choose>
<when test="string-length($predicate-ns)>0"> <!-- there is a known namespace for the predicate -->
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setThePropertyURI($parser,$predicate-name)" />
<choose>
<when test="starts-with($subject,'blank:nod: ')">
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheSubjectNodeID($parser,substring-after($subject,'blank:node:'))" />
</when>
<otherwise>
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheSubjectURI($parser,$subject)" />
</otherwise>
</choose>
<if test="string-length($language)>0">
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheLanguage($parser,$language)" />
</if>
<choose>
<when
test="$datatype='http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral'">
<choose>
<when test="$attrib='true'"> <!-- content is in an attribute -->
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheDatatype($parser,$datatype)" />
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheValue($parser,normalize-space(string($object)))" />
</when>
<otherwise> <!-- content is in the element and may include some tags -->
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheDatatype($parser,$datatype)" />
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheValue($parser,$object)" />
</otherwise>
</choose>
</when>
<when test="string-length($datatype)>0">
<!-- there is a datatype other than XMLLiteral -->
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheDatatype($parser,$datatype)" />
<choose>
<when test="$attrib='true'"> <!-- content is in an attribute -->
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheValue($parser,normalize-space(string($object)))" />
</when>
<otherwise> <!-- content is in the text nodes of the element -->
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheValue($parser,$object)" />
</otherwise>
</choose>
</when>
<otherwise> <!-- there is no datatype -->
<choose>
<when test="$attrib='true'"> <!-- content is in an attribute -->
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheValue($parser,normalize-space(string($object)))" />
</when>
<otherwise> <!-- content is in the text nodes of the element -->
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheValue($parser,$object)" />
</otherwise>
</choose>
</otherwise>
</choose>
</when>
<otherwise> <!-- generate a comment for debug -->
<xsl:comment>
Could not produce the triple for:
<value-of select="$subject" />
-
<value-of select="$single-predicate" />
-
<value-of select="$object" />
</xsl:comment>
</otherwise>
</choose>
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.flushDataProperty($parser)" />
<!-- recursive call for multiple predicates -->
<variable name="other-predicates"
select="normalize-space(substring-after($predicate,' '))" />
<if test="string-length($other-predicates)>0">
<call-template name="property">
<with-param name="subject" select="$subject" />
<with-param name="predicate" select="$other-predicates" />
<with-param name="object" select="$object" />
<with-param name="datatype" select="$datatype" />
<with-param name="attrib" select="$attrib" />
<with-param name="language" select="$language" />
</call-template>
</if>
</template>
<!-- generate an RDF statement for a class -->
<template name="class">
<param name="resource" />
<param name="class" />
<!-- case multiple classes -->
<variable name="single-class">
<call-template name="get-first-token">
<with-param name="tokens" select="$class" />
</call-template>
</variable>
<!-- get namespace of the class -->
<variable name="class-ns">
<call-template name="return-ns">
<with-param name="qname" select="$single-class" />
</call-template>
</variable>
<if test="string-length($class-ns)>0"> <!-- we have a qname for the class -->
<variable name="expended-class">
<call-template name="expand-ns">
<with-param name="qname" select="$single-class" />
</call-template>
</variable>
<choose>
<when test="starts-with($resource,'blank:node:')">
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheSubjectNodeID($parser,substring-after($resource,'blank:node:'))" />
</when>
<otherwise>
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheSubjectURI($parser,$resource)" />
</otherwise>
</choose>
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setThePropertyURI($parser,'http://www.w3.org/1999/02/22-rdf-syntax-ns#type')" />
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.setTheObjectURI($parser,$expended-class)" />
<value-of
select="java:net.yacy.document.parser.rdfa.impl.RDFaTripleImpl.flushObjectProperty($parser)" />
</if>
<!-- recursive call for multiple classes -->
<variable name="other-classes" select="normalize-space(substring-after($class,' '))" />
<if test="string-length($other-classes)>0">
<call-template name="class">
<with-param name="resource" select="$resource" />
<with-param name="class" select="$other-classes" />
</call-template>
</if>
</template>
<!-- ignore the rest of the DOM -->
<template match="text()|@*|*" mode="rdf2rdfxml">
<apply-templates mode="rdf2rdfxml" />
</template>
</stylesheet>
|