Reorder <xsl:template> stanzas so that the generated fields are in the
authorMike Taylor <mike@miketaylor.org.uk>
Wed, 13 Jan 2010 13:58:22 +0000 (13:58 +0000)
committerMike Taylor <mike@miketaylor.org.uk>
Wed, 13 Jan 2010 13:58:22 +0000 (13:58 +0000)
same order as those of $CF/builder/templates/search.cft -- this makes
no difference to functionality, just makes it easier to keep the two
lists synchronised.

etc/cf.xsl

index 0f878e0..b081eb9 100644 (file)
       in the "cf" git module.
   -->
 
-  <xsl:template match="url">
-    <pz:metadata type="electronic-url">
+  <xsl:template match="date">
+    <pz:metadata type="publication-date">
       <xsl:value-of select="."/>
     </pz:metadata>
   </xsl:template>
 
-  <xsl:template match="author">
-    <pz:metadata type="author">
+  <xsl:template match="url">
+    <pz:metadata type="electronic-url">
       <xsl:value-of select="."/>
     </pz:metadata>
   </xsl:template>
@@ -44,8 +44,8 @@
     </pz:metadata>
   </xsl:template>
 
-  <xsl:template match="date">
-    <pz:metadata type="publication-date">
+  <xsl:template match="author">
+    <pz:metadata type="author">
       <xsl:value-of select="."/>
     </pz:metadata>
   </xsl:template>
     </pz:metadata>
   </xsl:template>
   
-  <xsl:template match="subject">
-    <pz:metadata type="subject">
-      <xsl:value-of select="."/>
-    </pz:metadata>
-  </xsl:template>
-
-  <xsl:template match="thumburl">
-    <pz:metadata type="thumburl">
+  <xsl:template match="publisher">
+    <pz:metadata type="publisher">
       <xsl:value-of select="."/>
     </pz:metadata>
   </xsl:template>
 
-  <xsl:template match="publisher">
-    <pz:metadata type="publisher">
+  <xsl:template match="subject">
+    <pz:metadata type="subject">
       <xsl:value-of select="."/>
     </pz:metadata>
   </xsl:template>
     </pz:metadata>
   </xsl:template>
 
+  <xsl:template match="thumburl">
+    <pz:metadata type="thumburl">
+      <xsl:value-of select="."/>
+    </pz:metadata>
+  </xsl:template>
+
   <xsl:template match="score">
     <pz:metadata type="score">
       <xsl:value-of select="."/>