You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by pf...@apache.org on 2005/01/27 06:43:13 UTC

cvs commit: jakarta-tapestry/framework/src/java/org/apache/tapestry/html InsertText.jwc Rollover.jwc Script.jwc Frame.jwc Body.jwc Image.jwc

pferraro    2005/01/26 21:43:13

  Modified:    framework/src/java/org/apache/tapestry/html InsertText.jwc
                        Rollover.jwc Script.jwc Frame.jwc Body.jwc
                        Image.jwc
  Log:
  Updated to use 3.1 DTD.
  
  Revision  Changes    Path
  1.3       +6 -8      jakarta-tapestry/framework/src/java/org/apache/tapestry/html/InsertText.jwc
  
  Index: InsertText.jwc
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/java/org/apache/tapestry/html/InsertText.jwc,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- InsertText.jwc	5 Jan 2005 23:17:22 -0000	1.2
  +++ InsertText.jwc	27 Jan 2005 05:43:13 -0000	1.3
  @@ -16,27 +16,25 @@
   -->
   
   <!DOCTYPE component-specification PUBLIC 
  -  "-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
  -  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  +  "-//Apache Software Foundation//Tapestry Specification 3.1//EN" 
  +  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_1.dtd">
   	
   <component-specification class="org.apache.tapestry.html.InsertText" 
  -	allow-body="no" 
  -	allow-informal-parameters="no">
  +    allow-body="no" 
  +    allow-informal-parameters="no">
   
     <description>
     Inserts line-oriented text into the response HTML, inserting additional
     markup to delimit lines.
     </description>
     
  -   <parameter name="value" type="java.lang.String" direction="in">
  +  <parameter name="value">
       <description>
     	The text to insert.
       </description>
     </parameter>
   
  -  <parameter name="mode" 
  -  	type="org.apache.tapestry.html.InsertTextMode"
  -  	direction="in">
  +  <parameter name="mode">
       <description>
       Determines which mode to use: breaks after each line, or wrap each line
       as a paragraph.  The default is breaks.
  
  
  
  1.3       +6 -15     jakarta-tapestry/framework/src/java/org/apache/tapestry/html/Rollover.jwc
  
  Index: Rollover.jwc
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/java/org/apache/tapestry/html/Rollover.jwc,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Rollover.jwc	5 Jan 2005 23:17:22 -0000	1.2
  +++ Rollover.jwc	27 Jan 2005 05:43:13 -0000	1.3
  @@ -16,8 +16,8 @@
   -->
   
   <!DOCTYPE component-specification PUBLIC
  -  "-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
  -  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  +  "-//Apache Software Foundation//Tapestry Specification 3.1//EN" 
  +  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_1.dtd">
   	
   <component-specification class="org.apache.tapestry.html.Rollover" allow-body="no">
   
  @@ -26,37 +26,28 @@
     can reflect the enabled status of the link, and display rollover effects.
     </description>
   
  -  <parameter name="image" 
  -  	type="org.apache.tapestry.IAsset" 
  -  	required="yes"
  -  	direction="in">
  +  <parameter name="image" required="yes">
       <description>
       The normal or default image to display, used as a default image for
       the other parameters.
       </description>
     </parameter>
     
  -  <parameter name="focus"
  -  	type="org.apache.tapestry.IAsset"
  -  	direction="in">
  +  <parameter name="focus">
       <description>
       If specified, provides an image displayed when the cursor is moved
       over the link.
       </description>
     </parameter>
     
  -  <parameter name="blur" 
  -  	type="org.apache.tapestry.IAsset"
  -  	direction="in">
  +  <parameter name="blur">
       <description>
       If specified, provides an image displayed when the cursor is moved
       off of the link.
       </description>
     </parameter>
     
  -  <parameter name="disabled"
  -  	type="org.apache.tapestry.IAsset"
  -  	direction="in">
  +  <parameter name="disabled">
       <description>
       If specified, provides an image displayed when the surrounding
       link is disabled.
  
  
  
  1.3       +4 -11     jakarta-tapestry/framework/src/java/org/apache/tapestry/html/Script.jwc
  
  Index: Script.jwc
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/java/org/apache/tapestry/html/Script.jwc,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Script.jwc	6 Jan 2005 02:17:23 -0000	1.2
  +++ Script.jwc	27 Jan 2005 05:43:13 -0000	1.3
  @@ -16,8 +16,8 @@
   -->
   
   <!DOCTYPE component-specification PUBLIC
  -  "-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
  -  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  +  "-//Apache Software Foundation//Tapestry Specification 3.1//EN" 
  +  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_1.dtd">
     
   <component-specification class="org.apache.tapestry.html.Script" allow-body="yes">
   
  @@ -25,20 +25,13 @@
     Constructs dynamic JavaScript which is added to the page.
     </description>
     
  -  <parameter name="script" 
  -  	property-name="scriptPath"
  -  	type="java.lang.String" 
  -  	required="yes" 
  -  	direction="in">
  +  <parameter name="script" property-name="scriptPath" required="yes">
       <description>
       The resource path of the script to execute.
       </description>
     </parameter>
   
  -  <parameter name="symbols"
  -  	property-name="baseSymbols"
  -  	type="java.util.Map" 
  -  	direction="in">
  +  <parameter name="symbols"	property-name="baseSymbols">
       <description>
       Provides a base set of symbols to which, in a copy, are added
       any informal parameters.
  
  
  
  1.3       +5 -9      jakarta-tapestry/framework/src/java/org/apache/tapestry/html/Frame.jwc
  
  Index: Frame.jwc
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/java/org/apache/tapestry/html/Frame.jwc,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Frame.jwc	5 Jan 2005 23:17:22 -0000	1.2
  +++ Frame.jwc	27 Jan 2005 05:43:13 -0000	1.3
  @@ -16,22 +16,18 @@
   -->
   
   <!DOCTYPE component-specification PUBLIC 
  -  "-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
  -  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  +  "-//Apache Software Foundation//Tapestry Specification 3.1//EN" 
  +  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_1.dtd">
   	
   <component-specification class="org.apache.tapestry.html.Frame" 
  -	allow-body="no"
  -	allow-informal-parameters="yes">
  +    allow-body="no"
  +    allow-informal-parameters="yes">
   
     <description>
     Identifies a page as the contents of a frame within a frameset.
     </description>
   
  -  <parameter name="page" 
  -  		property-name="targetPage"
  -  		type="java.lang.String" 
  -  		required="yes" 
  -  		direction="in">
  +  <parameter name="page" property-name="targetPage" required="yes">
       <description>
   	The page to display in the frame.
       </description>
  
  
  
  1.3       +3 -6      jakarta-tapestry/framework/src/java/org/apache/tapestry/html/Body.jwc
  
  Index: Body.jwc
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/java/org/apache/tapestry/html/Body.jwc,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Body.jwc	5 Jan 2005 23:17:22 -0000	1.2
  +++ Body.jwc	27 Jan 2005 05:43:13 -0000	1.3
  @@ -16,8 +16,8 @@
   -->
   
   <!DOCTYPE component-specification PUBLIC 
  -  "-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
  -  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  +  "-//Apache Software Foundation//Tapestry Specification 3.1//EN" 
  +  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_1.dtd">
     
   <component-specification class="org.apache.tapestry.html.Body">
   
  @@ -26,10 +26,7 @@
     forms of support to all components it wraps.
     </description>
   
  -  <parameter
  -  	name="element"
  -  	type="java.lang.String"
  -  	direction="in">
  +  <parameter name="element">
     	<description>
     	Name of element to use, defaults to "body".
     	</description>
  
  
  
  1.3       +4 -9      jakarta-tapestry/framework/src/java/org/apache/tapestry/html/Image.jwc
  
  Index: Image.jwc
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/java/org/apache/tapestry/html/Image.jwc,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Image.jwc	5 Jan 2005 23:17:22 -0000	1.2
  +++ Image.jwc	27 Jan 2005 05:43:13 -0000	1.3
  @@ -16,8 +16,8 @@
   -->
   
   <!DOCTYPE component-specification PUBLIC 
  -  "-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
  -  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  +  "-//Apache Software Foundation//Tapestry Specification 3.1//EN" 
  +  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_1.dtd">
     
   <component-specification class="org.apache.tapestry.html.Image" allow-body="no">
   
  @@ -25,18 +25,13 @@
     Displays an image, deriving the source URL for the image from an asset.
     </description>
   
  -  <parameter name="image" 
  -  	type="org.apache.tapestry.IAsset" 
  -  	required="yes"
  -  	direction="in">
  +  <parameter name="image" required="yes">
       <description>
       The asset to display.
       </description>
     </parameter>
     
  -  <parameter name="border"
  -  	type="int"
  -  	direction="in">
  +  <parameter name="border">
       <description>
       Number of pixels of border.
       </description>
  
  
  

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