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/04/27 04:01:48 UTC

svn commit: r397360 - in /tapestry/tapestry4/branches/4.0/contrib/src: documentation/content/xdocs/tapestry-contrib/ComponentReference/ java/org/apache/tapestry/contrib/components/ java/org/apache/tapestry/contrib/inspector/

Author: andyhot
Date: Wed Apr 26 19:01:47 2006
New Revision: 397360

URL: http://svn.apache.org/viewcvs?rev=397360&view=rev
Log:
DumpObject documentation. Fixed usages of deprecated parameters

Modified:
    tapestry/tapestry4/branches/4.0/contrib/src/documentation/content/xdocs/tapestry-contrib/ComponentReference/DumpObject.xml
    tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/components/DumpObject.jwc
    tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/inspector/ShowEngine.jwc
    tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/inspector/ViewTabs.html

Modified: tapestry/tapestry4/branches/4.0/contrib/src/documentation/content/xdocs/tapestry-contrib/ComponentReference/DumpObject.xml
URL: http://svn.apache.org/viewcvs/tapestry/tapestry4/branches/4.0/contrib/src/documentation/content/xdocs/tapestry-contrib/ComponentReference/DumpObject.xml?rev=397360&r1=397359&r2=397360&view=diff
==============================================================================
--- tapestry/tapestry4/branches/4.0/contrib/src/documentation/content/xdocs/tapestry-contrib/ComponentReference/DumpObject.xml (original)
+++ tapestry/tapestry4/branches/4.0/contrib/src/documentation/content/xdocs/tapestry-contrib/ComponentReference/DumpObject.xml Wed Apr 26 19:01:47 2006
@@ -28,34 +28,43 @@
   
   <body>
 
-<p> <strong>THIS PAGE UNDER CONSTRUCTION</strong>
-</p>
-
 <p>
-  <strong>See also:</strong> 
+	Dumps out an object's serialized representation in a mix of hex and ascii. The output is
+    formatted for a fixed width font and should typically be enclosed in &lt;pre&gt; tags.
 </p>
 
 <section>
   <title>Parameters</title>
   
 <table>
-  <tr> 
-    <th>Name</th>
-    <th>Type</th>
-	  <th>Direction</th>
-    <th>Required</th> 
-    <th>Default</th>
-    <th>Description</th>
-  </tr>
-
-	</table>
+	<tr> 
+    	<th>Name</th>
+	    <th>Type</th>
+	 	<th>Direction</th>
+	    <th>Required</th> 
+    	<th>Default</th>
+	    <th>Description</th>
+	</tr>
+
+    <tr>
+		<td>object</td>
+		<td>Object</td> 
+		<td>in</td>
+		<td>yes</td>
+		<td></td>
+		<td>
+			The object to be displayed as HTML.
+		</td>
+    </tr>
+    	
+</table>
   
 <p>
-  Body: <strong>removed / allowed</strong>
+  Body: <strong>removed</strong>
 </p>  
 
 <p>
-  Informal parameters: <strong>allowed  / forbidden</strong>
+  Informal parameters: <strong>allowed</strong>
 </p>
 
 <p>
@@ -66,7 +75,9 @@
 
 <section>
   <title>Examples</title>
-
+	<source><![CDATA[
+<span jwcid="@contrib:DumpObject" object="ognl:new java.util.Date()"/>
+	]]></source>
 </section>
 </body>
 </document>

Modified: tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/components/DumpObject.jwc
URL: http://svn.apache.org/viewcvs/tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/components/DumpObject.jwc?rev=397360&r1=397359&r2=397360&view=diff
==============================================================================
--- tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/components/DumpObject.jwc (original)
+++ tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/components/DumpObject.jwc Wed Apr 26 19:01:47 2006
@@ -22,7 +22,7 @@
 <component-specification allow-body="no" allow-informal-parameters="yes">
 
   <description>
-    Displays the properties of an object as an HTML table or a simple string.
+    Dumps out an object's serialized representation in a mix of hex and ascii.
   </description> 
   
   <parameter name="object" required="true">

Modified: tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/inspector/ShowEngine.jwc
URL: http://svn.apache.org/viewcvs/tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/inspector/ShowEngine.jwc?rev=397360&r1=397359&r2=397360&view=diff
==============================================================================
--- tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/inspector/ShowEngine.jwc (original)
+++ tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/inspector/ShowEngine.jwc Wed Apr 26 19:01:47 2006
@@ -43,7 +43,7 @@
   
   <component id="restartButton" type="Rollover">
     <binding name="image" value="asset:restart"/>
-    <binding name="focus" value="asset:restartFocus"/>
+    <binding name="mouseOver" value="asset:restartFocus"/>
   </component>
   
   <component id="reset" type="ServiceLink">
@@ -52,7 +52,7 @@
   
   <component id="resetButton" type="Rollover">
     <binding name="image" value="asset:reset"/>
-    <binding name="focus" value="asset:resetFocus"/>
+    <binding name="mouseOver" value="asset:resetFocus"/>
   </component>
   
   <asset name="reset" path="Reset_Np1.gif"/>

Modified: tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/inspector/ViewTabs.html
URL: http://svn.apache.org/viewcvs/tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/inspector/ViewTabs.html?rev=397360&r1=397359&r2=397360&view=diff
==============================================================================
--- tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/inspector/ViewTabs.html (original)
+++ tapestry/tapestry4/branches/4.0/contrib/src/java/org/apache/tapestry/contrib/inspector/ViewTabs.html Wed Apr 26 19:01:47 2006
@@ -20,7 +20,7 @@
 		<td>
 <span jwcid="@Foreach" source="ognl:views" value="ognl:view">
 			<a jwcid="select@ActionLink" listener="listener:selectTab"><img 
-				jwcid="@Rollover" image="ognl:viewImage" focus="ognl:focusImage"
+				jwcid="@Rollover" image="ognl:viewImage" mouseOver="ognl:focusImage"
 				width="120" height="19"/></a>
 </span>
 		</td>



---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-dev-help@jakarta.apache.org