You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2003/07/17 18:02:31 UTC

cvs commit: jakarta-tapestry/config Version.properties

hlship      2003/07/17 09:02:30

  Modified:    .        project.xml
               web      faq.html new.html
               config   Version.properties
  Log:
  Add new FAQs.
  
  Revision  Changes    Path
  1.8       +3 -3      jakarta-tapestry/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/project.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- project.xml	17 Jul 2003 12:40:02 -0000	1.7
  +++ project.xml	17 Jul 2003 16:02:29 -0000	1.8
  @@ -4,7 +4,7 @@
     <name>Tapestry Web Application Framework</name>
     <id>tapestry</id>
     <groupId>jakarta-tapestry</groupId>
  -  <currentVersion>3.0-beta-2</currentVersion>
  +  <currentVersion>3.0-beta-3</currentVersion>
     <organization>
       <name>Apache Software Foundation</name>
       <url>http://jakarta.apache.org/</url>
  @@ -125,13 +125,13 @@
         
       <dependency>
         <id>commons-digester</id>
  -      <version>1.4.1</version>
  +      <version>1.5</version>
         <url>http://jakarta.apache.org/commons/</url>
       </dependency>
       
       <dependency>
         <id>commons-fileupload</id>
  -      <version>1.0-beta-1</version>
  +      <version>1.0</version>
         <url>http://jakarta.apache.org/commons/</url>
       </dependency>
           
  
  
  
  1.15      +51 -0     jakarta-tapestry/web/faq.html
  
  Index: faq.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/web/faq.html,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- faq.html	17 Apr 2003 21:33:59 -0000	1.14
  +++ faq.html	17 Jul 2003 16:02:30 -0000	1.15
  @@ -233,6 +233,29 @@
   		<i>without</i> having to restart the application inside a debugger.
   		</p>
   
  +		</td>
  +	</tr>
  +	
  +	
  +	<tr valign="top">
  +		<td><IMG height=12 src="images/dots_leftnav.gif" width=14></td>
  +		<td>          
  +		          
  +		
  +		<p><b>Why are so many of the classes in the examples abstract?</b>  </p>          
  +		          
  +		<p>
  +		Tapestry has the ability to create JavaBeans properties on your classes for you,
  +		automatically, at runtime.  What Tapestry actually does is create and instantiate
  +		a subclass with all the necessary fields and methods.	
  +			
  +		</p>
  +		
  +		<p>
  +		This is used to with properties (both persistent and transient) and with
  +		component parameters.  If your code needs to read or update the property, it must declare
  +		an abstract accessor method.	
  +		</p>
   		    
    
   	           
  @@ -240,6 +263,34 @@
   		</td>
   	</tr>
   	
  +	
  +	<tr valign="top">
  +		<td><IMG height=12 src="images/dots_leftnav.gif" width=14></td>
  +		<td>          
  +		          
  +		
  +		<p><b>How do I add JavaScript to my page?</b>  </p>          
  +		          
  +		<p>
  +		The 
  +		<a href="doc/ComponentReference/Body.html">Body</a>
  +		component is used to fasciliate dynamic JavaScript generation within a Tapestry page.
  +		Remember, many components may be somewhere in the page and they may have different or event conflicting
  +		JavaScript needs ... the Body component organizes it all.
  +		</p>
  +		
  +		<p>
  +		The correct approach is to create a
  +		<a href="doc/TapestryUsersGuide/script-spec.html">script specification</a>	
  +		for your JavaScript, and use a 
  +		<a href="doc/ComponentReference/Script.html">Script</a> component to include it on the page.
  +		</p>
  +		    
  + 
  +	           
  +
  +		</td>
  +	</tr>
   	
   	</table>
   		</td>
  
  
  
  1.191     +8 -1      jakarta-tapestry/web/new.html
  
  Index: new.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/web/new.html,v
  retrieving revision 1.190
  retrieving revision 1.191
  diff -u -r1.190 -r1.191
  --- new.html	11 Jul 2003 22:31:35 -0000	1.190
  +++ new.html	17 Jul 2003 16:02:30 -0000	1.191
  @@ -11,6 +11,13 @@
   	<tr>
   		<td valign="top" align="left"><IMG alt="[Tapestry Banner]" src="images/Tapestry-Banner.png" border="0">
   		
  +<h3>Release 3.0-beta-3</h3>
  +
  +<ul>
  +<li>Update dependency to Jakarta Digester 1.5.</li>
  +<li>Add some new FAQs.</li>
  +</ul>
  +
   <h3>Release 3.0-beta-2</h3>
   
   <ul>
  
  
  
  1.33      +2 -2      jakarta-tapestry/config/Version.properties
  
  Index: Version.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/config/Version.properties,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- Version.properties	20 Jun 2003 18:00:03 -0000	1.32
  +++ Version.properties	17 Jul 2003 16:02:30 -0000	1.33
  @@ -2,4 +2,4 @@
   #
   # Stores the version number of the framework.
   
  -framework.version=3.0-beta-2
  \ No newline at end of file
  +framework.version=3.0-beta-3
  \ No newline at end of file