You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by jk...@apache.org on 2006/06/18 22:54:49 UTC

svn commit: r415195 [1/3] - in /tapestry/tapestry4/trunk: ./ annotations/ contrib/ framework/ framework/src/test/org/apache/tapestry/junit/utils/ framework/src/test/org/apache/tapestry/record/ portlet/ src/changes/ src/site/ src/site/apt/ src/site/reso...

Author: jkuhnert
Date: Sun Jun 18 13:54:48 2006
New Revision: 415195

URL: http://svn.apache.org/viewvc?rev=415195&view=rev
Log:
Updates 4.1 site...Deployed 4.1 to maven snapshot repositories and also deploying new 4.1 site. Everything is buildable/testable/deployable in maven2 now.

Added:
    tapestry/tapestry4/trunk/src/site/apt/
    tapestry/tapestry4/trunk/src/site/apt/download.apt
    tapestry/tapestry4/trunk/src/site/resources/css/
    tapestry/tapestry4/trunk/src/site/resources/css/jdstyle.css   (with props)
    tapestry/tapestry4/trunk/src/site/resources/css/site.css   (with props)
    tapestry/tapestry4/trunk/src/site/xdoc/
    tapestry/tapestry4/trunk/src/site/xdoc/changes.xml   (with props)
    tapestry/tapestry4/trunk/src/site/xdoc/index.xml   (with props)
Removed:
    tapestry/tapestry4/trunk/src/changes/
Modified:
    tapestry/tapestry4/trunk/annotations/pom.xml
    tapestry/tapestry4/trunk/contrib/pom.xml
    tapestry/tapestry4/trunk/framework/pom.xml
    tapestry/tapestry4/trunk/framework/src/test/org/apache/tapestry/junit/utils/TestDataSqueezer.java
    tapestry/tapestry4/trunk/framework/src/test/org/apache/tapestry/record/PersistentPropertyDataEncoderTest.java
    tapestry/tapestry4/trunk/pom.xml
    tapestry/tapestry4/trunk/portlet/pom.xml
    tapestry/tapestry4/trunk/src/site/site.xml

Modified: tapestry/tapestry4/trunk/annotations/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/annotations/pom.xml?rev=415195&r1=415194&r2=415195&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/annotations/pom.xml (original)
+++ tapestry/tapestry4/trunk/annotations/pom.xml Sun Jun 18 13:54:48 2006
@@ -55,7 +55,9 @@
         <resources>
             <resource>
                 <directory>src/descriptor/META-INF</directory>
-                <includes><include>**</include></includes>
+                <includes>
+                    <include>**</include>
+                </includes>
                 <targetPath>META-INF</targetPath>
             </resource>
             <resource>
@@ -68,30 +70,54 @@
                 </excludes>
             </resource>
         </resources>
-        
+
         <testSourceDirectory>src/test</testSourceDirectory>
         <testResources>
             <testResource>
                 <directory>src/test</directory>
-                <includes><include>**/*</include></includes>
-                 <excludes>
+                <includes>
+                    <include>**/*</include>
+                </includes>
+                <excludes>
                     <exclude>**/*.java</exclude>
                 </excludes>
             </testResource>
             <testResource>
                 <directory>src/conf</directory>
-                <includes><include>log4j.properties</include></includes>
+                <includes>
+                    <include>log4j.properties</include>
+                </includes>
             </testResource>
         </testResources>
-        
+
         <plugins>
-                <plugin>
+            <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-plugin</artifactId>
                 <version>2.2</version>
-                </plugin>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-clover-plugin</artifactId>
+                <configuration>
+                    <licenseLocation>
+                        ${user.home}/.m2/repository/com/cenqua/clover/clover.license
+                    </licenseLocation>
+                    <jdk>1.5</jdk>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>pre-site</phase>
+                        <goals>
+                            <goal>instrument</goal>
+                            <goal>aggregate</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
+    
     <reporting>
         <outputDirectory>../target/site/annotations</outputDirectory>
         <plugins>
@@ -105,21 +131,62 @@
                 <reportSets>
                     <reportSet>
                         <reports>
-                            <report>dependencies</report>
                             <report>index</report>
+                            <report>dependencies</report>
+                            <report>project-team</report>
+                            <report>mailing-list</report>
+                            <report>cim</report>
+                            <report>issue-tracking</report>
+                            <report>license</report>
+                            <report>scm</report>
                         </reports>
                     </reportSet>
                 </reportSets>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <configuration>
+                    <configLocation>${basedir}/../tapestry-checkstyle.xml</configLocation>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-clover-plugin</artifactId>
+                <configuration>
+                    <licenseLocation>
+                        ${user.home}/.m2/repository/com/cenqua/clover/clover.license
+                    </licenseLocation>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
                 <configuration>
                     <linksource>true</linksource>
                     <destDir>../target/site/annotations/apidocs</destDir>
+                    <tags>
+                        <tag>
+                            <name>todo</name>
+                            <!-- Should be a combinaison of the letters Xaoptcmf -->
+                            <placement>a</placement>
+                            <head>To do something:</head>
+                        </tag>
+                    </tags>
+                    <linksource>true</linksource>
+                    <links>
+                        <link>http://jakarta.apache.org/hivemind/hivemind/apidocs/</link>
+                        <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
+                        <link>http://java.sun.com/products/servlet/2.3/javadoc/</link>
+                        <link>http://jakarta.apache.org/commons/codec/api-release/</link>
+                        <link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
+                        <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
+                        <link>http://www.ognl.org/2.6.9/Documentation/javadoc/</link>
+                    </links>
+                    <stylesheetfile>${basedir}/../src/site/resources/css/jdstyle.css</stylesheetfile>
                 </configuration>
             </plugin>
         </plugins>
     </reporting>
-    
+
 </project>

Modified: tapestry/tapestry4/trunk/contrib/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/contrib/pom.xml?rev=415195&r1=415194&r2=415195&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/contrib/pom.xml (original)
+++ tapestry/tapestry4/trunk/contrib/pom.xml Sun Jun 18 13:54:48 2006
@@ -92,6 +92,25 @@
                 <artifactId>maven-surefire-plugin</artifactId>
                 <version>2.2</version>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-clover-plugin</artifactId>
+                <version>2.1</version>
+                <configuration>
+                    <licenseLocation>
+                        ${user.home}/.m2/repository/com/cenqua/clover/clover.license
+                    </licenseLocation>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>pre-site</phase>
+                        <goals>
+                            <goal>instrument</goal>
+                            <goal>aggregate</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 
@@ -120,6 +139,41 @@
                 <configuration>
                     <linksource>true</linksource>
                     <destDir>../target/site/contrib/apidocs</destDir>
+                    <tags>
+                        <tag>
+                            <name>todo</name>
+                            <!-- Should be a combinaison of the letters Xaoptcmf -->
+                            <placement>a</placement>
+                            <head>To do something:</head>
+                        </tag>
+                    </tags>
+                    <linksource>true</linksource>
+                    <links>
+                        <link>http://jakarta.apache.org/hivemind/hivemind/apidocs/</link>
+                        <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
+                        <link>http://java.sun.com/products/servlet/2.3/javadoc/</link>
+                        <link>http://jakarta.apache.org/commons/codec/api-release/</link>
+                        <link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
+                        <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
+                        <link>http://www.ognl.org/2.6.9/Documentation/javadoc/</link>
+                    </links>
+                    <stylesheetfile>${basedir}/../src/site/resources/css/jdstyle.css</stylesheetfile>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <configuration>
+                    <configLocation>${basedir}/../tapestry-checkstyle.xml</configLocation>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-clover-plugin</artifactId>
+                <configuration>
+                    <licenseLocation>
+                        ${user.home}/.m2/repository/com/cenqua/clover/clover.license
+                    </licenseLocation>
                 </configuration>
             </plugin>
         </plugins>

Modified: tapestry/tapestry4/trunk/framework/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/framework/pom.xml?rev=415195&r1=415194&r2=415195&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/framework/pom.xml (original)
+++ tapestry/tapestry4/trunk/framework/pom.xml Sun Jun 18 13:54:48 2006
@@ -157,6 +157,25 @@
                     <testSourceDirectory>src/test</testSourceDirectory>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-clover-plugin</artifactId>
+                <version>2.1</version>
+                <configuration>
+                    <licenseLocation>
+                        ${user.home}/.m2/repository/com/cenqua/clover/clover.license
+                    </licenseLocation>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>pre-site</phase>
+                        <goals>
+                            <goal>instrument</goal>
+                            <goal>aggregate</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 
@@ -191,18 +210,42 @@
                 <configuration>
                     <linksource>true</linksource>
                     <destDir>../target/site/framework/apidocs</destDir>
+                    <tags>
+                        <tag>
+                            <name>todo</name>
+                            <!-- Should be a combinaison of the letters Xaoptcmf -->
+                            <placement>a</placement>
+                            <head>To do something:</head>
+                        </tag>
+                    </tags>
+                    <linksource>true</linksource>
+                    <links>
+                        <link>http://jakarta.apache.org/hivemind/hivemind/apidocs/</link>
+                        <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
+                        <link>http://java.sun.com/products/servlet/2.3/javadoc/</link>
+                        <link>http://jakarta.apache.org/commons/codec/api-release/</link>
+                        <link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
+                        <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
+                        <link>http://www.ognl.org/2.6.9/Documentation/javadoc/</link>
+                    </links>
+                    <stylesheetfile>${basedir}/../src/site/resources/css/jdstyle.css</stylesheetfile>
                 </configuration>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-checkstyle-plugin</artifactId>
                 <configuration>
-                    <configLocation>${basedir}/tapestry-checkstyle.xml</configLocation>
+                    <configLocation>${basedir}/../tapestry-checkstyle.xml</configLocation>
                 </configuration>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-clover-plugin</artifactId>
+                <configuration>
+                    <licenseLocation>
+                        ${user.home}/.m2/repository/com/cenqua/clover/clover.license
+                    </licenseLocation>
+                </configuration>
             </plugin>
         </plugins>
     </reporting>

Modified: tapestry/tapestry4/trunk/framework/src/test/org/apache/tapestry/junit/utils/TestDataSqueezer.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/framework/src/test/org/apache/tapestry/junit/utils/TestDataSqueezer.java?rev=415195&r1=415194&r2=415195&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/framework/src/test/org/apache/tapestry/junit/utils/TestDataSqueezer.java (original)
+++ tapestry/tapestry4/trunk/framework/src/test/org/apache/tapestry/junit/utils/TestDataSqueezer.java Sun Jun 18 13:54:48 2006
@@ -16,7 +16,6 @@
 
 import java.io.File;
 import java.io.Serializable;
-import java.lang.reflect.Constructor;
 import java.math.BigDecimal;
 import java.net.URL;
 import java.net.URLClassLoader;
@@ -29,7 +28,6 @@
 import org.apache.hivemind.ApplicationRuntimeException;
 import org.apache.hivemind.ClassResolver;
 import org.apache.hivemind.impl.DefaultClassResolver;
-import org.apache.hivemind.util.PropertyUtils;
 import org.apache.tapestry.services.DataSqueezer;
 import org.apache.tapestry.util.ComponentAddress;
 import org.apache.tapestry.util.io.DataSqueezerImpl;

Modified: tapestry/tapestry4/trunk/framework/src/test/org/apache/tapestry/record/PersistentPropertyDataEncoderTest.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/framework/src/test/org/apache/tapestry/record/PersistentPropertyDataEncoderTest.java?rev=415195&r1=415194&r2=415195&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/framework/src/test/org/apache/tapestry/record/PersistentPropertyDataEncoderTest.java (original)
+++ tapestry/tapestry4/trunk/framework/src/test/org/apache/tapestry/record/PersistentPropertyDataEncoderTest.java Sun Jun 18 13:54:48 2006
@@ -15,8 +15,6 @@
 package org.apache.tapestry.record;
 
 import java.io.File;
-import java.io.Serializable;
-import java.lang.reflect.Constructor;
 import java.net.URL;
 import java.net.URLClassLoader;
 import java.util.ArrayList;
@@ -28,7 +26,6 @@
 import org.apache.hivemind.ClassResolver;
 import org.apache.hivemind.impl.DefaultClassResolver;
 import org.apache.hivemind.test.HiveMindTestCase;
-import org.apache.hivemind.util.PropertyUtils;
 
 /**
  * Tests for {@link org.apache.tapestry.record.PersistentPropertyDataEncoderImpl}.

Modified: tapestry/tapestry4/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/pom.xml?rev=415195&r1=415194&r2=415195&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/pom.xml (original)
+++ tapestry/tapestry4/trunk/pom.xml Sun Jun 18 13:54:48 2006
@@ -196,10 +196,8 @@
                 <reportSets>
                     <reportSet>
                         <reports>
-                            <report>dependencies</report>
                             <report>project-team</report>
                             <report>mailing-list</report>
-                            <report>cim</report>
                             <!-- mailing-list, cim -->
                             <report>license</report>
                             <report>scm</report>

Modified: tapestry/tapestry4/trunk/portlet/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/portlet/pom.xml?rev=415195&r1=415194&r2=415195&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/portlet/pom.xml (original)
+++ tapestry/tapestry4/trunk/portlet/pom.xml Sun Jun 18 13:54:48 2006
@@ -60,7 +60,9 @@
         <resources>
             <resource>
                 <directory>src/descriptor/META-INF</directory>
-                <includes><include>**</include></includes>
+                <includes>
+                    <include>**</include>
+                </includes>
                 <targetPath>META-INF</targetPath>
             </resource>
             <resource>
@@ -73,34 +75,57 @@
                 </excludes>
             </resource>
         </resources>
-        
+
         <testSourceDirectory>src/test</testSourceDirectory>
         <testResources>
             <testResource>
                 <directory>src/test</directory>
-                <includes><include>**/*</include></includes>
-                 <excludes>
+                <includes>
+                    <include>**/*</include>
+                </includes>
+                <excludes>
                     <exclude>**/*.java</exclude>
                 </excludes>
             </testResource>
             <testResource>
                 <directory>src/conf</directory>
-                <includes><include>log4j.properties</include></includes>
+                <includes>
+                    <include>log4j.properties</include>
+                </includes>
             </testResource>
         </testResources>
-        
+
         <plugins>
-                <plugin>
+            <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-plugin</artifactId>
-                <version>2.2</version> 
+                <version>2.2</version>
                 <configuration>
                     <testSourceDirectory>src/test</testSourceDirectory>
                 </configuration>
-                </plugin>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-clover-plugin</artifactId>
+                <version>2.1</version>
+                <configuration>
+                    <licenseLocation>
+                        ${user.home}/.m2/repository/com/cenqua/clover/clover.license
+                    </licenseLocation>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>pre-site</phase>
+                        <goals>
+                            <goal>instrument</goal>
+                            <goal>aggregate</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
-    
+
     <reporting>
         <outputDirectory>../target/site/portlet</outputDirectory>
         <plugins>
@@ -108,7 +133,7 @@
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>surefire-report-maven-plugin</artifactId>
             </plugin>
-             <plugin>
+            <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-project-info-reports-plugin</artifactId>
                 <reportSets>
@@ -126,9 +151,44 @@
                 <configuration>
                     <linksource>true</linksource>
                     <destDir>../target/site/portlet/apidocs</destDir>
+                    <tags>
+                        <tag>
+                            <name>todo</name>
+                            <!-- Should be a combinaison of the letters Xaoptcmf -->
+                            <placement>a</placement>
+                            <head>To do something:</head>
+                        </tag>
+                    </tags>
+                    <linksource>true</linksource>
+                    <links>
+                        <link>http://jakarta.apache.org/hivemind/hivemind/apidocs/</link>
+                        <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
+                        <link>http://java.sun.com/products/servlet/2.3/javadoc/</link>
+                        <link>http://jakarta.apache.org/commons/codec/api-release/</link>
+                        <link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
+                        <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
+                        <link>http://www.ognl.org/2.6.9/Documentation/javadoc/</link>
+                    </links>
+                    <stylesheetfile>${basedir}/../src/site/resources/css/jdstyle.css</stylesheetfile>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <configuration>
+                    <configLocation>${basedir}/../tapestry-checkstyle.xml</configLocation>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-clover-plugin</artifactId>
+                <configuration>
+                    <licenseLocation>
+                        ${user.home}/.m2/repository/com/cenqua/clover/clover.license
+                    </licenseLocation>
                 </configuration>
             </plugin>
         </plugins>
     </reporting>
-    
+
 </project>

Added: tapestry/tapestry4/trunk/src/site/apt/download.apt
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/apt/download.apt?rev=415195&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/src/site/apt/download.apt (added)
+++ tapestry/tapestry4/trunk/src/site/apt/download.apt Sun Jun 18 13:54:48 2006
@@ -0,0 +1,43 @@
+ ------
+Download Tapestry 4.1.0 Snapshot
+ ------
+Jesse Kuhnert
+ ------
+18 June 2006
+ ------
+
+Download Tapestry 4.1.0 Snapshot
+
+  The Tapestry snapshot builds are currently only available via the maven2 repository at
+  
+  {{{http://people.apache.org/maven-snapshot-repository/}}}
+	
+  This release is currently under active development and should not be considered stable. To add this repository
+  to your own projects pom.xml you will need a section that looks like:
+
++---------------------------------------------------------
+<repositories>
+	<repository>
+    	<id>apache.snapshots</id>
+        <url>http://cvs.apache.org/maven-snapshot-repository</url>
+    </repository>
+</repositories>
++---------------------------------------------------------
+
+  The dependency inclusion rules should be easy once you have the snapshot repository installed, here is 
+  an example of adding just the framework and annotation modules:
+
++---------------------------------------------------------
+<dependency>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>framework</artifactId>
+    <version>4.1.0-SNAPSHOT</version>
+</dependency>
+<dependency>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>annotations</artifactId>
+    <version>4.1.0-SNAPSHOT</version>
+</dependency>
++---------------------------------------------------------
+
+  Tapestry 4.1.0 is distributed under the {{{http://tapestry.apache.org/license.html} Apache License, version 2.0}}.

Added: tapestry/tapestry4/trunk/src/site/resources/css/jdstyle.css
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/css/jdstyle.css?rev=415195&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/css/jdstyle.css (added)
+++ tapestry/tapestry4/trunk/src/site/resources/css/jdstyle.css Sun Jun 18 13:54:48 2006
@@ -0,0 +1,117 @@
+/* Javadoc style sheet */
+
+/* Define colors, fonts and other style attributes here to override the defaults  */
+
+/* Page background color */
+body { 	font-family: Arial;
+	background-color: white;
+	font-size: 10pt;
+ }
+td { 	font-family: Arial;
+	font-size: 10pt;
+ }
+/* Table colors */
+.TableHeadingColor     { background: #F4F4F4 }
+.TableSubHeadingColor  { background: #F4F4F4 }
+.TableRowColor         { background: #FFFFFF }
+
+/* Font used in left-hand frame lists */
+.FrameTitleFont   { font-size: normal; font-family: Arial }
+.FrameHeadingFont { font-size: normal; font-family: Arial }
+.FrameItemFont    { font-size: normal; font-family: Arial }
+
+/* Example of smaller, sans-serif font in frames */
+/* .FrameItemFont  { font-size: 10pt; font-family: Helvetica, Arial, sans-serif } */
+
+/* Navigation bar fonts and colors */
+.NavBarCell1    { background-color:#F4F4F4;}
+.NavBarCell1Rev { background-color:silver;}
+
+.NavBarFont1    { font-family: Arial, Helvetica, sans-serif; color:#000000;}
+.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;}
+
+.NavBarCell2    { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;}
+.NavBarCell3    { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;}
+
+A {
+    color: #003399;
+}
+
+A:active {
+    color: #003399;
+}
+
+A:visited {
+    color: #888888;
+}
+
+P, OL, UL, LI, DL, DT, DD, BLOCKQUOTE {
+    color: #000000;
+}
+
+TD, TH, SPAN {
+    color: #000000;
+}
+
+BLOCKQUOTE {
+    margin-right: 0px;
+}
+
+
+/*H1, H2, H3, H4, H5, H6    {
+    color: #000000;
+    font-weight:500;
+    margin-top:10px;
+    padding-top:15px;
+}
+
+H1 { font-size: 150%; }
+H2 { font-size: 140%; }
+H3 { font-size: 110%; font-weight: bold; }
+H4 { font-size: 110%; font-weight: bold;}
+H5 { font-size: 100%; font-style: italic; }
+H6 { font-size: 100%; font-style: italic; }*/
+
+TT {
+font-size: 90%;
+    font-family: "Courier New", Courier, monospace;
+    color: #000000;
+}
+
+PRE {
+font-size: 90%;
+    padding: 5px;
+    border-style: solid;
+    border-width: 1px;
+    border-color: #CCCCCC;
+    background-color: #F4F4F4;
+}
+
+UL, OL, LI {
+    list-style: disc;
+}
+
+HR  {
+    width: 100%;
+    height: 1px;
+    background-color: #CCCCCC;
+    border-width: 0px;
+    padding: 0px;
+    color: #CCCCCC;
+}
+
+.variablelist { 
+    padding-top: 10; 
+    padding-bottom:10; 
+    margin:0;
+}
+
+.itemizedlist, UL { 
+    padding-top: 0; 
+    padding-bottom:0; 
+    margin:0; 
+}
+
+.term { 
+    font-weight:bold;
+}

Propchange: tapestry/tapestry4/trunk/src/site/resources/css/jdstyle.css
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tapestry/tapestry4/trunk/src/site/resources/css/site.css
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/css/site.css?rev=415195&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/css/site.css (added)
+++ tapestry/tapestry4/trunk/src/site/resources/css/site.css Sun Jun 18 13:54:48 2006
@@ -0,0 +1,40 @@
+a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover {
+  background: none;
+  padding-right: 0;
+}
+
+body ul {
+  list-style-type: square;
+}
+
+#downloadbox {
+  float: right;
+  margin: 0 1em 2em 2em;
+  padding: 1em;
+  border: 1px solid #999;
+  background-color: #eee;
+}
+
+#downloadbox h5 {
+  color: #000;
+  margin: 0;
+  border-bottom: 1px solid #aaaaaa;
+  font-size: smaller;
+  padding: 0;
+}
+
+#downloadbox p {
+  margin-top: 1em;
+  margin-bottom: 0;
+}
+
+#downloadbox ul {
+  margin-top: 0;
+  margin-bottom: 1em;
+  list-style-type: disc;
+}
+
+#downloadbox li {
+  font-size: smaller;
+}
+

Propchange: tapestry/tapestry4/trunk/src/site/resources/css/site.css
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: tapestry/tapestry4/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/site.xml?rev=415195&r1=415194&r2=415195&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/src/site/site.xml (original)
+++ tapestry/tapestry4/trunk/src/site/site.xml Sun Jun 18 13:54:48 2006
@@ -32,6 +32,11 @@
             <script type="text/javascript">_uacct = "UA-400821-1"; urchinTracker();</script>
         </head>
         
+        <menu name="Quick Links">
+            <item name="Home" href="/index.html" />
+            <item name="Download" href="/download.html" />
+        </menu>
+        
         <menu ref="modules" />
         
         ${reports}