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

Christian Bauer christian at hibernate.org
Sat Apr 21 04:13:49 EDT 2007


  User: cbauer  
  Date: 07/04/21 04:13:49

  Modified:    examples/wiki/view/includes    searchControl.xhtml
                        userControl.xhtml commentForm.xhtml
  Log:
  Kicked out jCaptcha and replaced with simple math captcha
  
  Revision  Changes    Path
  1.2       +2 -1      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.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- searchControl.xhtml	18 Mar 2007 23:29:19 -0000	1.1
  +++ searchControl.xhtml	21 Apr 2007 08:13:49 -0000	1.2
  @@ -5,7 +5,8 @@
        xmlns:f="http://java.sun.com/jsf/core"
        xmlns:s="http://jboss.com/products/seam/taglib">
   
  -    <h:form>
  +    <!-- TODO: Disabled -->
  +    <h:form rendered="false">
           <h:panelGroup styleClass="searchControlTable">
               <h:inputText styleClass="searchControlInput" id="searchControlSearchString" value="Search..."
                            onclick="clickClear(this, 'Search...')" onblur="clickRecall(this, 'Search...')"
  
  
  
  1.8       +0 -0      jboss-seam/examples/wiki/view/includes/userControl.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  
  
  
  1.3       +15 -0     jboss-seam/examples/wiki/view/includes/commentForm.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: commentForm.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/includes/commentForm.xhtml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- commentForm.xhtml	19 Apr 2007 09:48:39 -0000	1.2
  +++ commentForm.xhtml	21 Apr 2007 08:13:49 -0000	1.3
  @@ -75,6 +75,21 @@
                           </div>
                       </s:decorate>
   
  +                    <s:div styleClass="entry">
  +                        <div class="label">Verification question:</div>
  +                        <div class="output">
  +                            What is the result of&#160;<h:outputText value="#{captcha.question}"/>?
  +                        </div>
  +                    </s:div>
  +
  +                    <s:decorate>
  +                        <s:div styleClass="entry">
  +                            <div class="label">Enter response:</div>
  +                            <div class="input">
  +                                <h:inputText tabindex="102" size="15" id="verifyCaptcha" value="#{captcha.response}" required="true"/>
  +                            </div>
  +                        </s:div>
  +                    </s:decorate>
   
                   </s:validateAll>
   
  
  
  



More information about the jboss-cvs-commits mailing list