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 2005/06/16 00:32:11 UTC

cvs commit: jakarta-tapestry/src/documentation/content/xdocs dependencies.xml dev.xml site.xml more_new.xml

hlship      2005/06/15 15:32:10

  Modified:    .        status.xml
               src/documentation/content/xdocs dev.xml site.xml
  Added:       src/documentation/content/xdocs dependencies.xml
  Removed:     web      more_new.html new.html .cvsignore
               src/documentation/content/xdocs more_new.xml
  Log:
  Add a page explicitly discussing JDK and library dependencies.
  
  Revision  Changes    Path
  1.126     +1 -0      jakarta-tapestry/status.xml
  
  Index: status.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/status.xml,v
  retrieving revision 1.125
  retrieving revision 1.126
  diff -u -r1.125 -r1.126
  --- status.xml	15 Jun 2005 13:34:30 -0000	1.125
  +++ status.xml	15 Jun 2005 22:32:10 -0000	1.126
  @@ -74,6 +74,7 @@
          <action type="add" dev="HLS">Add a command chain for resolving component classes.</action>
          <action type="update" dev="HLS">Cache specification provided by the specification resolver delegate.</action>
          <action type="fix" dev="HLS" fixes-bug="TAPESTRY-342">@Parameter does not work for required</action>
  +       <action type="add" dev="HLS">Add a page explicitly discussing JDK and library dependencies.</action>
       </release>
       <release version="4.0-alpha-3" date="May 16 2005">
         <action type="add" dev="HLS">Add initial support for the validator: binding prefix.</action>
  
  
  
  1.7       +6 -5      jakarta-tapestry/src/documentation/content/xdocs/dev.xml
  
  Index: dev.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/src/documentation/content/xdocs/dev.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- dev.xml	16 May 2005 12:19:54 -0000	1.6
  +++ dev.xml	15 Jun 2005 22:32:10 -0000	1.7
  @@ -40,12 +40,14 @@
   <section>
   		<title>Mind Bridge</title>
   
  -            <p>Mind Bridge has been a long term contributor to Tapestry.</p>
  +            <p>Mind Bridge has been a long term contributor to Tapestry, and is the creator of the
  +              invaluable Table component.</p>
   </section>
   
   <section>
       <title>Paul Ferraro</title>
  -    <p>Paul has been an avid Tapestry user since 2002, and created the original friendly URLs patch for Tapestry 3.0</p>
  +    <p>Paul has been an avid Tapestry user since 2002, and created the original friendly URLs patch for Tapestry 3.0.  He's responsible
  +      for the new and improved validation subsystem.</p>
   </section>
   
   <section>
  @@ -60,8 +62,7 @@
   <section>
   		<title>Harish Krishnaswamy</title>
   		
  -		 	<p>Harish is a Tapestry enthusiast and is also becoming a HiveMind enthusiast. Hopefully 
  - 	he will help integrate the two.</p>
  +		 	<p>Harish is a Tapestry enthusiast and is also becoming a HiveMind enthusiast. </p>
    	
   </section>
   
  @@ -74,7 +75,7 @@
    
   <section>
   	<title>Howard Lewis Ship</title>	
  -	   <p>Howard started the Tapestry project in early 2000.</p>
  +	   <p>Howard started the Tapestry project in early 2000 and guides its development and evolution.</p>
   </section>
   
   <section>
  
  
  
  1.37      +2 -0      jakarta-tapestry/src/documentation/content/xdocs/site.xml
  
  Index: site.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/src/documentation/content/xdocs/site.xml,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- site.xml	11 Jun 2005 22:17:15 -0000	1.36
  +++ site.xml	15 Jun 2005 22:32:10 -0000	1.37
  @@ -36,6 +36,8 @@
         <changes label="Change Log" href="changes.html"/>
         <wiki label="Wiki" href="http://wiki.apache.org/jakarta-tapestry/"/>
         <dev label="Developers" href="dev.html"/>
  +      <dependencies label="Dependencies" href="dependencies.html"/>
  +      
       </project>
       
       <QuickStart label="Quick Start" tab="quick-start" href="QuickStart/">
  
  
  
  1.1                  jakarta-tapestry/src/documentation/content/xdocs/dependencies.xml
  
  Index: dependencies.xml
  ===================================================================
  <?xml version="1.0"?>
  <!-- 
     Copyright 2005 The Apache Software Foundation
  
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at
  
         http://www.apache.org/licenses/LICENSE-2.0
  
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
  -->
  
  <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" "./dtd/document-v12.dtd">
  <document>
    <header>
      <title>Library Dependencies</title>
    </header>
    
  <body>
  <p>
    Tapestry is a quite comprehensive framework, but it gets a lot of support from other
    open-source frameworks.  The following libraries, in addition to the Tapestry libraries
    themselves, must be in the web application classpath (typically, by copying them into the
    WEB-INF/libs directory of the WAR file).
  </p>
  
  <p>
  The Ant build script for Tapestry will automatically download dependencies.
  </p>
  
  <table>
    <tr>
      <th>Library</th>
      <th>Version</th>
      <th>License</th>
      <th>Description</th>
    </tr>
    <tr>
      <td>bsf</td> <td>2.3.0</td> <td>ASL</td>
      <td>
    Bean Script Framework.      Used to support creation of listeners as scripts in Jython or other
        BSF-supported languages.
      </td>
    </tr>
      <tr>
      <td>commons-codec</td>
      <td>1.3</td> <td>ASL</td>
      <td>
        Used to encode and decode URL information.
      </td>
    </tr>
    
    <tr>
      <td>commons-fileupload</td> <td>1.0</td> <td>ASL</td>
      <td>File upload support.</td>
    </tr>
    
    <tr>
      <td>
        commons-logging
      </td>
      <td>
        1.0.4
      </td>
      <td>
        ASL
      </td>
      <td>
        Logging framework that acts as a wrapper around JDK 1.4 logging, Log4J or others.
      </td>
    </tr>
    
    <tr>
      <td>
        hivemind
      </td>
      <td>
        1.1
      </td>
      <td>
        ASL
      </td>
      <td>
        Services and configuration microkernel; provides service infrastructure for the framework.
      </td>
    </tr>
    
    <tr>
      <td>hivemind-lib</td> <td>1.1</td> <td>ASL</td>
      <td>
        Library of additional HiveMind services.
      </td>
    </tr>
    
    <tr>
      <td>javassist</td> <td>3.0</td> <td>MPL</td>
      <td>
        Runtime bytecode enhancement library.
      </td>
    </tr>
    
    <tr>
      <td>ognl</td> <td>2.6.7</td> <td>BSD</td>
      <td>Object Graph Navigation Langage; expression language used throughout Tapestry.</td>
    </tr>
    
    <tr>
      <td>oro</td> <td>2.0.8</td> <td>ASL</td>
      <td>Regular expression matching library.</td>
    </tr>
   
    
  </table>
  
  <p>
  Tapestry is expressly designed to be source compatible with <strong>JDK 1.3</strong> and <strong>Servlet API 2.2</strong>.  It does use a few features
  of Servlet API 2.3 if available. 
  </p>
  
  <p>
    The <link href="tapestry-annotations/index.html">JDK 1.5 annotation support</link> does require JDK 1.5 to run.  The Workbench 
    example makes use of some of the annnotations, so it also requires JDK 1.5 to operate.
  </p>
  
  </body>  
    
  </document>
  
  

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