You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2009/01/24 18:52:47 UTC

svn commit: r737405 - in /incubator/click/trunk/click: build/build.xml documentation/docs/developer-guide/source-code.html documentation/docs/quick-start.html documentation/help.css

Author: sabob
Date: Sat Jan 24 17:52:47 2009
New Revision: 737405

URL: http://svn.apache.org/viewvc?rev=737405&view=rev
Log:
updated quickstart

Modified:
    incubator/click/trunk/click/build/build.xml
    incubator/click/trunk/click/documentation/docs/developer-guide/source-code.html
    incubator/click/trunk/click/documentation/docs/quick-start.html
    incubator/click/trunk/click/documentation/help.css

Modified: incubator/click/trunk/click/build/build.xml
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/build/build.xml?rev=737405&r1=737404&r2=737405&view=diff
==============================================================================
--- incubator/click/trunk/click/build/build.xml (original)
+++ incubator/click/trunk/click/build/build.xml Sat Jan 24 17:52:47 2009
@@ -885,6 +885,12 @@
   	        <or><isfalse value="${isLog4JJarAvail}"/></or>
   	     </condition>
       </fail>
+      <available file="dist/${click}.jar" property="isClickAvail"/>
+      <fail message="The dist/${click} JAR is not available. To resolve this build the project with 'ant build-distribution'.">
+         <condition>
+  	        <or><isfalse value="${isClickAvail}"/></or>
+  	     </condition>
+      </fail>
       <input 
       	message="Please enter the project name (e.g. quickstart):" 
         defaultvalue="quickstart"

Modified: incubator/click/trunk/click/documentation/docs/developer-guide/source-code.html
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/documentation/docs/developer-guide/source-code.html?rev=737405&r1=737404&r2=737405&view=diff
==============================================================================
--- incubator/click/trunk/click/documentation/docs/developer-guide/source-code.html (original)
+++ incubator/click/trunk/click/documentation/docs/developer-guide/source-code.html Sat Jan 24 17:52:47 2009
@@ -52,7 +52,7 @@
         When you want to checkout the source code, either checkout the trunk or
         a specific release.
         <p/>
-        Trunk consists of the follow:
+        Trunk consists of the following:
 
 <pre class="codeConfig" style="margin-left:3em;">
 +--[click]                      Click Framework

Modified: incubator/click/trunk/click/documentation/docs/quick-start.html
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/documentation/docs/quick-start.html?rev=737405&r1=737404&r2=737405&view=diff
==============================================================================
--- incubator/click/trunk/click/documentation/docs/quick-start.html (original)
+++ incubator/click/trunk/click/documentation/docs/quick-start.html Sat Jan 24 17:52:47 2009
@@ -486,14 +486,16 @@
 Buildfile: build.xml
 
 project-quick-start:
-    [input] Please enter the project name (e.g. quickstart):
+    [input] Please enter the project name (e.g. quickstart): [quickstart]
 <span class="yellow">quickstart</span>
-    [input] Please enter the root package name (e.g. com.quickstart):
+    [input] Please enter the root package name (e.g. com.quickstart): [com.quickstart]
 <span class="yellow">com.quickstart</span>
     [input] Please enter the web app context path: [quickstart]
 <span class="yellow">quickstart</span>
-     [copy] Copying 37 files to C:\quickstart\WebContent
-     [copy] Copied 15 empty directories to 1 empty directory under C:\quickstart\WebContent
+    [input] The directory 'C:\quickstart' will be deleted. Continue (y/n)? (y, n)
+<span class="yellow">y</span>
+     [copy] Copying 20 files to C:\quickstart\WebContent
+     [copy] Copied 9 empty directories to 2 empty directory under C:\quickstart\WebContent
      [copy] Copying 1 file to C:\quickstart\WebContent\WEB-INF\lib
      [copy] Copying 1 file to C:\quickstart\WebContent\WEB-INF\lib
      [copy] Copying 1 file to C:\quickstart\WebContent\WEB-INF\lib

Modified: incubator/click/trunk/click/documentation/help.css
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/documentation/help.css?rev=737405&r1=737404&r2=737405&view=diff
==============================================================================
--- incubator/click/trunk/click/documentation/help.css (original)
+++ incubator/click/trunk/click/documentation/help.css Sat Jan 24 17:52:47 2009
@@ -162,6 +162,7 @@
 
 .codeConfig 
 {
+  overflow: auto;
 }
 
 .codeDtd