<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -4,11 +4,11 @@
 	xmlns:fo=&quot;http://www.w3.org/1999/XSL/Format&quot;
 	xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot;
 	xmlns:dml=&quot;http://purl.oclc.org/NET/dml/1.0/&quot;
-	xmlns:cdml=&quot;http://purl.oclc.org/NET/cdml/1.0/&quot;
+	xmlns:pml=&quot;http://purl.oclc.org/NET/pml/1.0/&quot;
 	xmlns:dct=&quot;http://purl.org/dc/terms/&quot;
 	xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;
 	xmlns:fnc=&quot;dml2fo:functions&quot;
-	exclude-result-prefixes=&quot;xs dml cdml dct fnc&quot;&gt;
+	exclude-result-prefixes=&quot;xs dml pml dct fnc&quot;&gt;
 	
 	&lt;xsl:import href=&quot;config.xsl&quot;/&gt;
 	&lt;xsl:import href=&quot;styles/original.xsl&quot;/&gt;</diff>
      <filename>dml2fo.xsl</filename>
    </modified>
    <modified>
      <diff>@@ -4,10 +4,10 @@
 	xmlns:fo=&quot;http://www.w3.org/1999/XSL/Format&quot;
 	xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot;
 	xmlns:dml=&quot;http://purl.oclc.org/NET/dml/1.0/&quot;
-	xmlns:cdml=&quot;http://purl.oclc.org/NET/cdml/1.0/&quot;
+	xmlns:pml=&quot;http://purl.oclc.org/NET/pml/1.0/&quot;
 	xmlns:dct=&quot;http://purl.org/dc/terms/&quot;
 	xmlns:fnc=&quot;dml2fo:functions&quot;
-	exclude-result-prefixes=&quot;xs dml cdml dct fnc&quot;&gt;
+	exclude-result-prefixes=&quot;xs dml pml dct fnc&quot;&gt;
 	
 	&lt;dml:note&gt;
 		&lt;dml:list&gt;
@@ -22,15 +22,15 @@
 		&lt;/dml:list&gt;
 	&lt;/dml:note&gt;
 
-	&lt;xsl:strip-space elements=&quot;cdml:node cdml:value&quot;/&gt;
+	&lt;xsl:strip-space elements=&quot;pml:node pml:value&quot;/&gt;
 
-	&lt;xsl:template match=&quot;cdml:code&quot;&gt;
+	&lt;xsl:template match=&quot;pml:code&quot;&gt;
 		&lt;fo:inline xsl:use-attribute-sets=&quot;code.inline&quot;&gt;
 			&lt;xsl:call-template name=&quot;code.languages&quot;/&gt;
 		&lt;/fo:inline&gt;
 	&lt;/xsl:template&gt;
 
-	&lt;xsl:template match=&quot;*[( self::dml:dml, self::dml:section, self::dml:example, self::dml:item[dml:example | dml:figure | dml:p | dml:title] )]/cdml:code&quot;&gt;
+	&lt;xsl:template match=&quot;*[( self::dml:dml, self::dml:section, self::dml:example, self::dml:item[dml:example | dml:figure | dml:p | dml:title] )]/pml:code&quot;&gt;
 		&lt;fo:block xsl:use-attribute-sets=&quot;code.block&quot;&gt;
 			&lt;xsl:call-template name=&quot;code.languages&quot;/&gt;
 		&lt;/fo:block&gt;
@@ -59,7 +59,7 @@
 		&lt;/xsl:choose&gt;
 	&lt;/xsl:template&gt;
 
-	&lt;xsl:template match=&quot;cdml:node&quot;&gt;
+	&lt;xsl:template match=&quot;pml:node&quot;&gt;
 		&lt;xsl:variable name=&quot;node.prefix&quot;&gt;
 			&lt;xsl:call-template name=&quot;get.node.prefix&quot;/&gt;
 		&lt;/xsl:variable&gt;
@@ -69,7 +69,7 @@
 		&lt;/fo:inline&gt;
 	&lt;/xsl:template&gt;
 
-	&lt;xsl:template match=&quot;cdml:node&quot; mode=&quot;toc&quot;&gt;
+	&lt;xsl:template match=&quot;pml:node&quot; mode=&quot;toc&quot;&gt;
 		&lt;!-- prevent duplicate IDs in ToC --&gt;
 		&lt;xsl:variable name=&quot;node.prefix&quot;&gt;
 			&lt;xsl:call-template name=&quot;get.node.prefix&quot;/&gt;
@@ -78,7 +78,7 @@
 			&lt;xsl:if test=&quot;$node.prefix ne ''&quot;&gt;&lt;fo:character character=&quot;{$node.prefix}&quot;/&gt;&lt;/xsl:if&gt;&lt;xsl:apply-templates/&gt;
 		&lt;/fo:inline&gt;
 	&lt;/xsl:template&gt;
-	&lt;xsl:template match=&quot;cdml:node&quot; mode=&quot;bookmark&quot;&gt;
+	&lt;xsl:template match=&quot;pml:node&quot; mode=&quot;bookmark&quot;&gt;
 		&lt;!-- prevent duplicate IDs in bookmarks --&gt;
 		&lt;xsl:variable name=&quot;node.prefix&quot;&gt;
 			&lt;xsl:call-template name=&quot;get.node.prefix&quot;/&gt;
@@ -97,7 +97,7 @@
 		&quot;/&gt;
 	&lt;/xsl:template&gt;
 
-	&lt;xsl:template match=&quot;cdml:value&quot;&gt;
+	&lt;xsl:template match=&quot;pml:value&quot;&gt;
 		&lt;fo:inline xsl:use-attribute-sets=&quot;code.value&quot;&gt;
 			&lt;xsl:call-template name=&quot;common.attributes&quot;/&gt;
 			&lt;xsl:value-of select=&quot;$value.prefix&quot;/&gt;
@@ -106,7 +106,7 @@
 		&lt;/fo:inline&gt;
 	&lt;/xsl:template&gt;
 
-	&lt;xsl:template match=&quot;cdml:param&quot;&gt;
+	&lt;xsl:template match=&quot;pml:param&quot;&gt;
 		&lt;fo:inline xsl:use-attribute-sets=&quot;code.param&quot;&gt;
 			&lt;xsl:call-template name=&quot;common.attributes.and.children&quot;/&gt;
 		&lt;/fo:inline&gt;
@@ -118,12 +118,12 @@
 
 	&lt;/xsl:template&gt;
 
-	&lt;xsl:template match=&quot;cdml:variable&quot;&gt;
+	&lt;xsl:template match=&quot;pml:variable&quot;&gt;
 		&lt;fo:inline xsl:use-attribute-sets=&quot;code.variable&quot;&gt;
 			&lt;xsl:call-template name=&quot;common.attributes.and.children&quot;/&gt;
 		&lt;/fo:inline&gt;
 	&lt;/xsl:template&gt;
-	&lt;xsl:template match=&quot;cdml:datatype&quot;&gt;
+	&lt;xsl:template match=&quot;pml:datatype&quot;&gt;
 		&lt;fo:inline xsl:use-attribute-sets=&quot;code.datatype&quot;&gt;
 			&lt;xsl:call-template name=&quot;common.attributes.and.children&quot;/&gt;
 		&lt;/fo:inline&gt;</diff>
      <filename>modules/code.xsl</filename>
    </modified>
    <modified>
      <diff>@@ -4,10 +4,10 @@
 	xmlns:fo=&quot;http://www.w3.org/1999/XSL/Format&quot;
 	xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot;
 	xmlns:dml=&quot;http://purl.oclc.org/NET/dml/1.0/&quot;
-	xmlns:cdml=&quot;http://purl.oclc.org/NET/cdml/1.0/&quot;
+	xmlns:pml=&quot;http://purl.oclc.org/NET/pml/1.0/&quot;
 	xmlns:dct=&quot;http://purl.org/dc/terms/&quot;
 	xmlns:fnc=&quot;dml2fo:functions&quot;
-	exclude-result-prefixes=&quot;xs dml cdml dct fnc&quot;&gt;
+	exclude-result-prefixes=&quot;xs dml pml dct fnc&quot;&gt;
 	
 	&lt;dml:note&gt;
 		&lt;dml:list&gt;</diff>
      <filename>modules/inline.xsl</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>acc399d2b0067b005f191a63e1ce8c23a683c1ff</id>
    </parent>
  </parents>
  <author>
    <name>Arnau Siches</name>
    <email>asiches@gmail.com</email>
  </author>
  <url>http://github.com/arnau/dml2fo/commit/30138a2dfd98400d0c97e9cec3428d3629138a87</url>
  <id>30138a2dfd98400d0c97e9cec3428d3629138a87</id>
  <committed-date>2009-01-14T14:38:04-08:00</committed-date>
  <authored-date>2009-01-14T14:38:04-08:00</authored-date>
  <message>changed cdml to pml</message>
  <tree>9361deb5d7dbce91a8657f72b9ca0b22649adaaf</tree>
  <committer>
    <name>Arnau Siches</name>
    <email>asiches@gmail.com</email>
  </committer>
</commit>
