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/07/28 19:44:30 UTC

svn commit: r426614 - in /tapestry/tapestry4/trunk: pom.xml src/site/apt/demos.apt src/site/apt/download.apt src/site/site.xml src/site/xdoc/index.xml

Author: jkuhnert
Date: Fri Jul 28 10:44:29 2006
New Revision: 426614

URL: http://svn.apache.org/viewvc?rev=426614&view=rev
Log:
Documentation updates, created links to demos , preparing to run mvn release!

Added:
    tapestry/tapestry4/trunk/src/site/apt/demos.apt
Modified:
    tapestry/tapestry4/trunk/pom.xml
    tapestry/tapestry4/trunk/src/site/apt/download.apt
    tapestry/tapestry4/trunk/src/site/site.xml
    tapestry/tapestry4/trunk/src/site/xdoc/index.xml

Modified: tapestry/tapestry4/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/pom.xml?rev=426614&r1=426613&r2=426614&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/pom.xml (original)
+++ tapestry/tapestry4/trunk/pom.xml Fri Jul 28 10:44:29 2006
@@ -57,7 +57,7 @@
             <archive>http://mail-archives.apache.org/mod_mbox/tapestry-commits/</archive>
         </mailingList>
     </mailingLists>
-    
+
     <developers>
         <developer>
             <id>hls</id>
@@ -269,6 +269,16 @@
                     <artifactId>maven-site-plugin</artifactId>
                     <version>2.0-SNAPSHOT</version>
                 </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-release-plugin</artifactId>
+                    <version>2.0-beta-5-SNAPSHOT</version>
+                    <configuration>
+                        <tagBase>
+                            https://svn.apache.org/repos/asf/tapestry/tapestry4/tags/
+                        </tagBase>
+                    </configuration>
+                </plugin>
             </plugins>
         </pluginManagement>
     </build>
@@ -311,19 +321,19 @@
                 </reportSets>
             </plugin>
             <!--
-            <plugin>
+                <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-changes-plugin</artifactId>
                 <version>2.0-beta-2-SNAPSHOT</version>
                 <reportSets>
-                    <reportSet>
-                        <reports>
-                            <report>changes-report</report>
-                            <report>jira-report</report>
-                        </reports>
-                    </reportSet>
+                <reportSet>
+                <reports>
+                <report>changes-report</report>
+                <report>jira-report</report>
+                </reports>
+                </reportSet>
                 </reportSets>
-            </plugin>
+                </plugin>
             -->
         </plugins>
     </reporting>

Added: tapestry/tapestry4/trunk/src/site/apt/demos.apt
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/apt/demos.apt?rev=426614&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/src/site/apt/demos.apt (added)
+++ tapestry/tapestry4/trunk/src/site/apt/demos.apt Fri Jul 28 10:44:29 2006
@@ -0,0 +1,22 @@
+ ------
+Tapestry 4.1 Demos
+ ------
+Jesse Kuhnert
+ ------
+28 July 2006
+ ------
+
+{{{http://opencomponentry.com:8080/timetracker}TimeTracker}}
+
+  The {{{http://opencomponentry.com:8080/timetracker}TimeTracker}} application is a <work in progress> 
+  demonstration of some of the new XHR features available in tapestry.
+  
+  <<Demo:>> {{{http://opencomponentry.com:8080/timetracker}TimeTracker}}
+
+{{{http://opencomponentry.com:8080/workbench}Tapestry Workbench}}
+
+  The familiar {{{http://opencomponentry.com:8080/workbench}Workbench}} application has been updated 
+  to demonstrate what some of the new built in features look like, most notably the client side validation
+  API.
+
+  <<Demo:>> {{{http://opencomponentry.com:8080/workbench}Tapestry Workbench}}

Modified: tapestry/tapestry4/trunk/src/site/apt/download.apt
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/apt/download.apt?rev=426614&r1=426613&r2=426614&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/src/site/apt/download.apt (original)
+++ tapestry/tapestry4/trunk/src/site/apt/download.apt Fri Jul 28 10:44:29 2006
@@ -1,17 +1,25 @@
  ------
-Download Tapestry 4.1.0 Snapshot
+Download Tapestry 4.1
  ------
 Jesse Kuhnert
  ------
 18 June 2006
  ------
 
-Download Tapestry 4.1.0 Snapshot
+Download Tapestry 4.1
 
-  The Tapestry snapshot builds are currently only available via the maven2 repository at
+  If you are looking for the official jar-only form of Tapestry 4.1 they can be downloaded here 
+  {{http://tapestry.apache.org/download.html}}.
+  
+  The Tapestry snapshot builds are currently available via the ibiblio maven2 and apache.org snapshot 
+  repositories. To download the official 4.1 release you shouldn't need to change your pom settings at 
+  all, other than including the right artifacts to download Tapestry.
+  
+  In order to download the snapshot release versions of Tapestry you will need to add the following repository
+  to your project's pom <(if not already present)>:
   
   {{{http://people.apache.org/repo/m2-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:
 
@@ -40,4 +48,4 @@
 </dependency>
 +---------------------------------------------------------
 
-  Tapestry 4.1.0 is distributed under the {{{http://tapestry.apache.org/license.html} Apache License, version 2.0}}.
+  Tapestry 4.1 is distributed under the {{{http://tapestry.apache.org/license.html} Apache License, version 2.0}}.

Modified: tapestry/tapestry4/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/site.xml?rev=426614&r1=426613&r2=426614&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/src/site/site.xml (original)
+++ tapestry/tapestry4/trunk/src/site/site.xml Fri Jul 28 10:44:29 2006
@@ -41,6 +41,7 @@
             <item name="Download" href="http://tapestry.apache.org/tapestry4.1/download.html" />
             <item name="Wiki" href="http://wiki.apache.org/tapestry/" />
             <item name="FAQ" href="http://tapestry.apache.org/tapestry4.1/faq.html" />
+            <item name="Demos" href="http://tapestry.apache.org/tapestry4.1/demos.html" />
         </menu>
         
         <menu name="Documentation" >

Modified: tapestry/tapestry4/trunk/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/xdoc/index.xml?rev=426614&r1=426613&r2=426614&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/src/site/xdoc/index.xml (original)
+++ tapestry/tapestry4/trunk/src/site/xdoc/index.xml Fri Jul 28 10:44:29 2006
@@ -15,7 +15,7 @@
                 application Tapestry(and <a href="http://dojotoolkit.org">dojo</a>) should be able to 
                 support your needs.
                 
-                <img style="float:right;margin-top:8px;margin-left:8px" src="./images/autocompleter.png" alt="Autocompleting select component" />
+                <a href="http://opencomponentry.com:8080/timetracker"><img style="float:right;margin-top:8px;margin-left:8px" src="./images/autocompleter.png" alt="Autocompleting select component" /></a>
             </p>
             
             <p><strong>New Features:</strong></p>