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

Christian Bauer christian at hibernate.org
Thu Apr 26 01:29:16 EDT 2007


  User: cbauer  
  Date: 07/04/26 01:29:16

  Modified:    examples/wiki/view/includes   searchControl.xhtml
                        attachmentDisplay.xhtml
  Log:
  Broken Hibernate Search integration, to debug for Emmanuel
  
  Revision  Changes    Path
  1.3       +3 -4      jboss-seam/examples/wiki/view/includes/searchControl.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: searchControl.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/includes/searchControl.xhtml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- searchControl.xhtml	21 Apr 2007 08:13:49 -0000	1.2
  +++ searchControl.xhtml	26 Apr 2007 05:29:16 -0000	1.3
  @@ -5,13 +5,12 @@
        xmlns:f="http://java.sun.com/jsf/core"
        xmlns:s="http://jboss.com/products/seam/taglib">
   
  -    <!-- TODO: Disabled -->
  -    <h:form rendered="false">
  +    <h:form>
           <h:panelGroup styleClass="searchControlTable">
  -            <h:inputText styleClass="searchControlInput" id="searchControlSearchString" value="Search..."
  +            <h:inputText styleClass="searchControlInput" id="searchControlSearchString" value="#{nodeSearch.searchTerm}"
                            onclick="clickClear(this, 'Search...')" onblur="clickRecall(this, 'Search...')"
                            size="15" maxlength="255" tabindex="60"/>
  -            <h:commandLink styleClass="searchControlLink" tabindex="61" accesskey="F"><u>F</u>ind</h:commandLink>
  +            <h:commandLink styleClass="searchControlLink" tabindex="61" accesskey="F" action="#{nodeSearch.search}"><u>F</u>ind</h:commandLink>
           </h:panelGroup>
   
       </h:form>
  
  
  
  1.8       +1 -1      jboss-seam/examples/wiki/view/includes/attachmentDisplay.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: attachmentDisplay.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/includes/attachmentDisplay.xhtml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- attachmentDisplay.xhtml	20 Apr 2007 19:19:39 -0000	1.7
  +++ attachmentDisplay.xhtml	26 Apr 2007 05:29:16 -0000	1.8
  @@ -29,7 +29,7 @@
                   <h:outputLink value="#{wiki:renderURL(link.node)}">
                       <h:outputText value="#{link.node.name}"/>
                       &#160;
  -                    <h:outputText value="(#{link.node.filename}, #{link.node.humanReadableFilesize}, #{link.node.contentType})"/>
  +                    <h:outputText value="(#{link.node.filename}, #{wiki:displayFilesize(link.node.filesize)}, #{link.node.contentType})"/>
                   </h:outputLink>
               </h:panelGroup>
           </h:column>
  
  
  



More information about the jboss-cvs-commits mailing list