You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by me...@apache.org on 2009/12/29 00:26:09 UTC

svn commit: r894274 - in /incubator/click/trunk/click/documentation/docs: quick-start.html roadmap-changes.html

Author: medgar
Date: Mon Dec 28 23:26:08 2009
New Revision: 894274

URL: http://svn.apache.org/viewvc?rev=894274&view=rev
Log:
CLK-599

Modified:
    incubator/click/trunk/click/documentation/docs/quick-start.html
    incubator/click/trunk/click/documentation/docs/roadmap-changes.html

Modified: incubator/click/trunk/click/documentation/docs/quick-start.html
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/documentation/docs/quick-start.html?rev=894274&r1=894273&r2=894274&view=diff
==============================================================================
--- incubator/click/trunk/click/documentation/docs/quick-start.html (original)
+++ incubator/click/trunk/click/documentation/docs/quick-start.html Mon Dec 28 23:26:08 2009
@@ -301,7 +301,7 @@
 <span class="kw">public class</span> BorderPage <span class="kw">extends</span> Page {
 
    <span class="kw">public String</span> getTemplate() {
-      <span class="kw">return</span> <span class="st">"border-template.htm"</span>;
+      <span class="kw">return</span> <span class="st">"/border-template.htm"</span>;
    }
 
 } </pre>
@@ -319,7 +319,7 @@
 
 <span class="kw">public class</span> HomePage <span class="kw">extends</span> BorderPage {
 
-    <span class="kw">public</span> String <span class="blue">title</span> = <span class="st">"Home"</span>;
+    @Bindable <span class="kw">protected</span> String <span class="blue">title</span> = <span class="st">"Home"</span>;
 
 } </pre>
 

Modified: incubator/click/trunk/click/documentation/docs/roadmap-changes.html
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/documentation/docs/roadmap-changes.html?rev=894274&r1=894273&r2=894274&view=diff
==============================================================================
--- incubator/click/trunk/click/documentation/docs/roadmap-changes.html (original)
+++ incubator/click/trunk/click/documentation/docs/roadmap-changes.html Mon Dec 28 23:26:08 2009
@@ -79,7 +79,7 @@
 
 <dl>
   <dt><a name="2.1.0"></a>
-    <div class="release-header">Latest Stable Release - Version 2.1.0 - ??? November 2009</div>
+    <div class="release-header">Latest Stable Release - Version 2.1.0 - ??? January 2010</div>
   </dt>
   <dd>
     <div style="margin-left:-2em;margin-bottom:1em;">
@@ -309,7 +309,9 @@
       <li class="change">
           Added <a href="click-api/org/apache/click/util/Bindable.html">@Bindable</a> 
           annotation support for page field autobinding
-          [<a target='_blank' href="https://issues.apache.org/jira/browse/CLK-556">556</a>].
+          [<a target='_blank' href="https://issues.apache.org/jira/browse/CLK-556">556</a>, 
+           <a target='_blank' href="https://issues.apache.org/jira/browse/CLK-599">599</a> 
+          ].
       </li>
       <li class="change">
           Improved Form validation to allow Form subclasses to override the
@@ -455,7 +457,7 @@
           [<a target='_blank' href="https://issues.apache.org/jira/browse/CLK-575">575</a>].
       </li>
       <li class="change">
-          Fixed bug in HibernateForm that did not apply required field constraints.
+          Fixed bug in HibernateForm that did not apply required field constraints
           [<a target='_blank' href="https://issues.apache.org/jira/browse/CLK-583">583</a>].
       </li>
       <li class="change">