[gs-cvs] rev 8273 - trunk/gs/src

ken at ghostscript.com ken at ghostscript.com
Mon Oct 8 03:05:33 PDT 2007


Author: ken
Date: 2007-10-08 03:05:33 -0700 (Mon, 08 Oct 2007)
New Revision: 8273

Modified:
   trunk/gs/src/gdevpdfe.c
Log:
pdfwrite: Alter the AIIM URL emitted when creating PDF/A files.

DETAILS:
Bug #689375 ""

When writing PDF/A files we need to put a URL for the AIIM group in the metadata. Previously we were writing 'http://www.aiim.org/pdfa/ns/id.html' which is what Acrobat 7 does, now we write 'http://www.aiim.org/pdfa/ns/id/' which is what Acrobat 8 does.

(gzpdfe.c) pdf_write_document_metadata change the URL as above.

EXPECTED DIFFERENCES:
None.


Modified: trunk/gs/src/gdevpdfe.c
===================================================================
--- trunk/gs/src/gdevpdfe.c	2007-10-08 07:13:32 UTC (rev 8272)
+++ trunk/gs/src/gdevpdfe.c	2007-10-08 10:05:33 UTC (rev 8273)
@@ -615,7 +615,7 @@
 		pdf_xml_attribute_name(s, "rdf:about");
 		pdf_xml_attribute_value(s, instance_uuid);
 		pdf_xml_attribute_name(s, "xmlns:pdfaid");
-		pdf_xml_attribute_value(s, "http://www.aiim.org/pdfa/ns/id.html");
+		pdf_xml_attribute_value(s, "http://www.aiim.org/pdfa/ns/id/");
 		pdf_xml_attribute_name(s, "pdfaid:part");
 		pdf_xml_attribute_value(s,"1");
 		pdf_xml_attribute_name(s, "pdfaid:conformance");



More information about the gs-cvs mailing list