You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2008/12/24 18:03:32 UTC

svn commit: r729334 - in /tapestry/tapestry5/trunk: src/site/apt/guide/ajax.apt src/site/apt/upgrade.apt src/site/site.xml tapestry-core/src/main/java/org/apache/tapestry5/annotations/OnEvent.java tapestry-core/src/test/conf/testng.xml

Author: hlship
Date: Wed Dec 24 09:03:31 2008
New Revision: 729334

URL: http://svn.apache.org/viewvc?rev=729334&view=rev
Log:
Improve some documentation, add tapestry-hibernate-core to the list of modules on the site, add package to tapestry-core testng.xml.

Modified:
    tapestry/tapestry5/trunk/src/site/apt/guide/ajax.apt
    tapestry/tapestry5/trunk/src/site/apt/upgrade.apt
    tapestry/tapestry5/trunk/src/site/site.xml
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/OnEvent.java
    tapestry/tapestry5/trunk/tapestry-core/src/test/conf/testng.xml

Modified: tapestry/tapestry5/trunk/src/site/apt/guide/ajax.apt
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/src/site/apt/guide/ajax.apt?rev=729334&r1=729333&r2=729334&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/src/site/apt/guide/ajax.apt (original)
+++ tapestry/tapestry5/trunk/src/site/apt/guide/ajax.apt Wed Dec 24 09:03:31 2008
@@ -83,7 +83,8 @@
 
 +---+
 
-  The Asset is injected, using the $\{tapestry.scriptaculous\} symbol to reference the location
+  The Asset is injected, using the $\{tapestry.scriptaculous\}
+  {{{../tapestry-ioc/symbols.apt}symbol}} to reference the location
   of the Scriptaculous library.
 
   The RenderSupport is accessed as an Environmental service.
@@ -92,8 +93,9 @@
   {{{rendering.html}render phase}}) is the correct place to inform the RenderSupport service that
   the library is needed.
 
+  Even though the dragdrop.js library is stored inside a JAR file, Tapestry ensures that it can
+  be accessed from the client web browser.
   
-
 * addScript()
 
   <<<void addScript(String format, Object... arguments);>>>

Modified: tapestry/tapestry5/trunk/src/site/apt/upgrade.apt
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/src/site/apt/upgrade.apt?rev=729334&r1=729333&r2=729334&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/src/site/apt/upgrade.apt (original)
+++ tapestry/tapestry5/trunk/src/site/apt/upgrade.apt Wed Dec 24 09:03:31 2008
@@ -29,14 +29,14 @@
 Release 5.0.15
 
   Method <<<getElementName()>>> of the
-  {{{../apidocs/org/apache/tapestry5/RadioContainer.html}RadioContainer}} interface was renamed
+  {{{apidocs/org/apache/tapestry5/RadioContainer.html}RadioContainer}} interface was renamed
   to <<<getControlName()>>>, to bring it into alignment with the analagous method
   of the
-   {{{../apidocs/org/apache/tapestry5/Field.html}Field}} interface..  This should not affect any user code.
+   {{{apidocs/org/apache/tapestry5/Field.html}Field}} interface..  This should not affect any user code.
 
 * {{{https://issues.apache.org/jira/browse/TAPESTRY-2656}TAPESTRY-2656}}
 
-  A method of the interface {{{../apidocs/org/apache/tapestry5/grid/GridSortModel.html}GridSortModel}} was renamed
+  A method of the interface {{{apidocs/org/apache/tapestry5/grid/GridSortModel.html}GridSortModel}} was renamed
   to correct a misspelling.
 
 * {{{https://issues.apache.org/jira/browse/TAPESTRY-2567}TAPESTRY-2567}}
@@ -56,7 +56,7 @@
 * {{{https://issues.apache.org/jira/browse/TAPESTRY-2352}TAPESTRY-2352}}
 
   Several API changes related to
-  {{{../apidocs/org/apache/tapestry5/Translator.html}Translator}} have occured, to support
+  {{{apidocs/org/apache/tapestry5/Translator.html}Translator}} have occured, to support
   client-side validation of user input.
 
 Release 5.0.14

Modified: tapestry/tapestry5/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/src/site/site.xml?rev=729334&r1=729333&r2=729334&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/src/site/site.xml (original)
+++ tapestry/tapestry5/trunk/src/site/site.xml Wed Dec 24 09:03:31 2008
@@ -59,6 +59,7 @@
             <item name="tapestry5-annotations" href="tapestry5-annotations/"/>
             <item name="tapestry-core" href="tapestry-core/"/>
             <item name="tapestry-hibernate" href="tapestry-hibernate/"/>
+            <item name="tapestry-hibernate-core" href="tapestry-hibernate-core/"/>
             <item name="tapestry-ioc" href="tapestry-ioc/"/>
             <item name="tapestry-spring" href="tapestry-spring/"/>
             <item name="tapestry-test" href="tapestry-test/"/>
@@ -70,7 +71,7 @@
         </menu>
 
         <menu name="User Guide">
-            <item name="Ajax" href="guide/ajax.html"/>
+            <item name="Ajax &amp; JavaScript" href="guide/ajax.html"/>
             <item name="Aliases" href="guide/alias.html"/>
             <item name="Application State" href="guide/appstate.html"/>
             <item name="Assets" href="guide/assets.html"/>

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/OnEvent.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/OnEvent.java?rev=729334&r1=729333&r2=729334&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/OnEvent.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/OnEvent.java Wed Dec 24 09:03:31 2008
@@ -63,9 +63,7 @@
      * the component's grand-container and will appear to originate from the container. Thus events that escape a
      * component will appear to originate in the component's container, and so forth.
      * <p/>
-     * <p/>
      * Matching by component id is case insensitive.
      */
     String component() default "";
-
 }

Modified: tapestry/tapestry5/trunk/tapestry-core/src/test/conf/testng.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/test/conf/testng.xml?rev=729334&r1=729333&r2=729334&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/test/conf/testng.xml (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/test/conf/testng.xml Wed Dec 24 09:03:31 2008
@@ -44,6 +44,7 @@
             <package name="org.apache.tapestry5.internal.bindings"/>
             <package name="org.apache.tapestry5.internal.grid"/>
             <package name="org.apache.tapestry5.internal.model"/>
+            <package name="org.apache.tapestry5.internal.pageload"/>
             <package name="org.apache.tapestry5.internal.services"/>
             <package name="org.apache.tapestry5.internal.structure"/>
             <package name="org.apache.tapestry5.internal.test"/>
@@ -56,5 +57,5 @@
         <packages>
             <package name="org.apache.tapestry5.integration"/>
         </packages>
-    </test>    
+    </test>
 </suite>