You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by an...@apache.org on 2006/05/09 14:46:02 UTC

svn commit: r405411 - in /tapestry/tapestry4/trunk: examples/Workbench/src/context/WEB-INF/Border.html examples/Workbench/src/context/WEB-INF/Border.jwc framework/src/java/org/apache/tapestry/AbstractPage.java

Author: andyhot
Date: Tue May  9 05:46:00 2006
New Revision: 405411

URL: http://svn.apache.org/viewcvs?rev=405411&view=rev
Log:
Page no longer has getVisit. Fix doc + example app

Modified:
    tapestry/tapestry4/trunk/examples/Workbench/src/context/WEB-INF/Border.html
    tapestry/tapestry4/trunk/examples/Workbench/src/context/WEB-INF/Border.jwc
    tapestry/tapestry4/trunk/framework/src/java/org/apache/tapestry/AbstractPage.java

Modified: tapestry/tapestry4/trunk/examples/Workbench/src/context/WEB-INF/Border.html
URL: http://svn.apache.org/viewcvs/tapestry/tapestry4/trunk/examples/Workbench/src/context/WEB-INF/Border.html?rev=405411&r1=405410&r2=405411&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/examples/Workbench/src/context/WEB-INF/Border.html (original)
+++ tapestry/tapestry4/trunk/examples/Workbench/src/context/WEB-INF/Border.html Tue May  9 05:46:00 2006
@@ -41,7 +41,7 @@
   </tr>
   <tr class="data">
     <td colspan="2">
-      <span jwcid="@If" condition="ognl:page.visit.requestDebug">
+      <span jwcid="@If" condition="ognl:visit.requestDebug">
         <span jwcid="@RequestDisplay"/>
       </span>
     </td>

Modified: tapestry/tapestry4/trunk/examples/Workbench/src/context/WEB-INF/Border.jwc
URL: http://svn.apache.org/viewcvs/tapestry/tapestry4/trunk/examples/Workbench/src/context/WEB-INF/Border.jwc?rev=405411&r1=405410&r2=405411&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/examples/Workbench/src/context/WEB-INF/Border.jwc (original)
+++ tapestry/tapestry4/trunk/examples/Workbench/src/context/WEB-INF/Border.jwc Tue May  9 05:46:00 2006
@@ -39,7 +39,7 @@
   </component>
 
   <component id="inputDisableInspector" type="Checkbox">
-    <binding name="value" value="page.visit.disableInspector"/>
+    <binding name="value" value="visit.disableInspector"/>
     <binding name="onclick" value="literal:javascript:this.form.events.submit();"/>
   </component>
 

Modified: tapestry/tapestry4/trunk/framework/src/java/org/apache/tapestry/AbstractPage.java
URL: http://svn.apache.org/viewcvs/tapestry/tapestry4/trunk/framework/src/java/org/apache/tapestry/AbstractPage.java?rev=405411&r1=405410&r2=405411&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/framework/src/java/org/apache/tapestry/AbstractPage.java (original)
+++ tapestry/tapestry4/trunk/framework/src/java/org/apache/tapestry/AbstractPage.java Tue May  9 05:46:00 2006
@@ -113,7 +113,7 @@
      * <li>Clears the changeObserved property
      * <li>Invokes {@link PageDetachListener#pageDetached(PageEvent)}on all listeners
      * <li>Invokes {@link #initialize()}to clear/reset any properties
-     * <li>Clears the engine, visit and requestCycle properties
+     * <li>Clears the engine and requestCycle properties
      * </ul>
      * <p>
      * Subclasses may override this method, but must invoke this implementation (usually, last).