lpdf-pdx.xml /size: 2371 b    last modification: 2024-01-16 09:02
1<?xml version="1.0"?>
2
3<!-- lpdf-pdx.xml -->
4
5<!--
6    There was a bug in the ISO standard so now we just flush them flat because for some
7    reason there is no upward compatibulity. It's a sort of useless mess anyway.
8-->
9
10<!--
11    <dc:creator>    <rdf:Seq><rdf:li xml:lang="x-default"/></rdf:Seq></dc:creator>
12    <dc:description><rdf:Alt><rdf:li xml:lang="x-default"/></rdf:Alt></dc:description>
13    <dc:title>      <rdf:Alt><rdf:li xml:lang="x-default"/></rdf:Alt></dc:title>
14
15    vs
16
17    <dc:creator/>
18    <dc:description/>
19    <dc:title/>
20-->
21
22<!--
23    So now we're back to what we had before, otherwise verapdf fails. Beware, the
24    pdfbox variant of verapdf gives false positives (can't compare dates) so use
25    the greenfield variant instead.
26-->
27
28<x:xmpmeta xmlns:x="adobe:ns:meta/">
29  <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
30    <rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/">
31      <dc:format>application/pdf</dc:format>
32      <dc:creator>
33        <rdf:Seq>
34          <rdf:li></rdf:li>
35        </rdf:Seq>
36      </dc:creator>
37      <dc:description>
38        <rdf:Alt>
39          <rdf:li xml:lang="x-default"></rdf:li>
40        </rdf:Alt>
41      </dc:description>
42      <dc:title>
43        <rdf:Alt>
44          <rdf:li xml:lang="x-default"></rdf:li>
45        </rdf:Alt>
46      </dc:title>
47    </rdf:Description>
48    <rdf:Description rdf:about="" xmlns:pdfx="http://ns.adobe.com/pdfx/1.3/">
49      <pdfx:ID/>
50      <pdfx:ConTeXt.Jobname/>
51      <pdfx:ConTeXt.Time/>
52      <pdfx:ConTeXt.Url/>
53      <pdfx:ConTeXt.Support/>
54      <pdfx:ConTeXt.Version/>
55      <pdfx:TeX.Support/>
56      <pdfx:LuaTeX.Version/>
57      <pdfx:LuaTeX.Functionality/>
58      <pdfx:LuaTeX.LuaVersion/>
59      <pdfx:LuaTeX.Platform/>
60    </rdf:Description>
61    <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/">
62      <xmp:CreateDate/>
63      <xmp:CreatorTool/>
64      <xmp:ModifyDate/>
65      <xmp:MetadataDate/>
66    </rdf:Description>
67    <rdf:Description rdf:about="" xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
68      <pdf:Keywords/>
69      <pdf:Producer/>
70      <pdf:Trapped>False</pdf:Trapped>
71    </rdf:Description>
72    <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/">
73      <xmpMM:DocumentID/>
74      <xmpMM:InstanceID/>
75    </rdf:Description>
76    <pdfaid-placeholder/>
77  </rdf:RDF>
78</x:xmpmeta>
79