[jboss-cvs] jboss-seam/examples/wiki/view/includes ...

Christian Bauer christian at hibernate.org
Wed Oct 10 03:09:50 EDT 2007


  User: cbauer  
  Date: 07/10/10 03:09:50

  Modified:    examples/wiki/view/includes  breadcrumb.xhtml
  Log:
  Show more information in breadcrumb
  
  Revision  Changes    Path
  1.7       +8 -0      jboss-seam/examples/wiki/view/includes/breadcrumb.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: breadcrumb.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/includes/breadcrumb.xhtml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- breadcrumb.xhtml	24 Sep 2007 08:23:21 -0000	1.6
  +++ breadcrumb.xhtml	10 Oct 2007 07:09:50 -0000	1.7
  @@ -21,6 +21,14 @@
   
               <h:outputLink value="#{wiki:renderURL(node)}" styleClass="itemText" rendered="#{!wiki:isDirectory(node)}">
                   <h:outputText value="#{wiki:truncateString(node.name, 30, '...')}"/>
  +
  +                <h:outputText rendered="#{!empty param.day || !empty param.month || !empty param.year || !empty param.tag}" value="&#160;(showing"/>
  +                <h:outputText rendered="#{!empty param.day}" value="&#160;#{param.day}."/>
  +                <h:outputText rendered="#{!empty param.month}" value="&#160;#{converters.monthNames[param.month]}"/>
  +                <h:outputText rendered="#{!empty param.year}" value="&#160;#{param.year}"/>
  +                <h:outputText rendered="#{!empty param.tag}" value="&#160;tagged '#{param.tag}'"/>
  +                <h:outputText rendered="#{!empty param.day || !empty param.month || !empty param.year || !empty param.tag}" value=")"/>
  +
               </h:outputLink>
   
               <h:outputText rendered="#{breadcrumb.indexOf(node) &lt; breadcrumb.size()-1}"
  
  
  



More information about the jboss-cvs-commits mailing list