You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by rg...@apache.org on 2004/12/17 02:56:59 UTC

svn commit: r122607 - /forrest/trunk/plugins/org.apache.forrest.plugin.photoGallery/resources/stylesheets/galleryIndexPage.xsl

Author: rgardler
Date: Thu Dec 16 17:56:58 2004
New Revision: 122607

URL: http://svn.apache.org/viewcvs?view=rev&rev=122607
Log:
put parameters in the filename rather than in request parameters
Modified:
   forrest/trunk/plugins/org.apache.forrest.plugin.photoGallery/resources/stylesheets/galleryIndexPage.xsl

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.photoGallery/resources/stylesheets/galleryIndexPage.xsl
Url: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.photoGallery/resources/stylesheets/galleryIndexPage.xsl?view=diff&rev=122607&p1=forrest/trunk/plugins/org.apache.forrest.plugin.photoGallery/resources/stylesheets/galleryIndexPage.xsl&r1=122606&p2=forrest/trunk/plugins/org.apache.forrest.plugin.photoGallery/resources/stylesheets/galleryIndexPage.xsl&r2=122607
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.photoGallery/resources/stylesheets/galleryIndexPage.xsl	(original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.photoGallery/resources/stylesheets/galleryIndexPage.xsl	Thu Dec 16 17:56:58 2004
@@ -56,7 +56,7 @@
               <td width="100" align="center">
           <xsl:choose>
             <xsl:when test="$page &gt; 1">
-              <a href="index.html?page={$page - 1}">
+              <a href="index_{$page - 1}.html">
                 <img border="0" src="button/Previous"/>
               </a>
             </xsl:when>
@@ -66,7 +66,7 @@
               <td width="100" align="center">
           <xsl:choose>
             <xsl:when test="($page * $rows * $cols) &lt; count($all_hits)">
-              <a href="index.html?page={$page + 1}">
+              <a href="index_{$page + 1}.html">
                 <img border="0" src="button/Next"/>
               </a>
             </xsl:when>