You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by th...@apache.org on 2007/01/13 02:17:51 UTC

svn commit: r495811 - /forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.solr/resources/themes/common/html/solr-actionbar.ft

Author: thorsten
Date: Fri Jan 12 17:17:50 2007
New Revision: 495811

URL: http://svn.apache.org/viewvc?view=rev&rev=495811
Log:
Linkmap is not supported for indexing

Modified:
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.solr/resources/themes/common/html/solr-actionbar.ft

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.solr/resources/themes/common/html/solr-actionbar.ft
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.solr/resources/themes/common/html/solr-actionbar.ft?view=diff&rev=495811&r1=495810&r2=495811
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.solr/resources/themes/common/html/solr-actionbar.ft (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.solr/resources/themes/common/html/solr-actionbar.ft Fri Jan 12 17:17:50 2007
@@ -56,7 +56,10 @@
         </xsl:variable>
         <forrest:content>
           <forrest:part>Apache Solr Server commands: 
-            <ul>
+            <xsl:choose>
+              <xsl:when test="$request='linkmap'"> not supported here.</xsl:when>
+              <xsl:otherwise>
+                <ul>
               <li>
                 <xsl:choose>
                   <xsl:when test="contains($request,'solr.add.do')">
@@ -85,7 +88,9 @@
               <li>
                 <a href="{normalize-space($context)}solr.optimize.do.html"> optimize </a>
               </li>
-            </ul> </forrest:part>
+            </ul>
+              </xsl:otherwise>
+            </xsl:choose> </forrest:part>
         </forrest:content>
       </xsl:template>
     </xsl:stylesheet>