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

svn commit: r738489 - in /incubator/click/trunk/click: NOTICE.txt build/build.xml

Author: sabob
Date: Wed Jan 28 14:07:19 2009
New Revision: 738489

URL: http://svn.apache.org/viewvc?rev=738489&view=rev
Log:
added 'incubating' to folder name and fixed notice

Modified:
    incubator/click/trunk/click/NOTICE.txt
    incubator/click/trunk/click/build/build.xml

Modified: incubator/click/trunk/click/NOTICE.txt
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/NOTICE.txt?rev=738489&r1=738488&r2=738489&view=diff
==============================================================================
--- incubator/click/trunk/click/NOTICE.txt (original)
+++ incubator/click/trunk/click/NOTICE.txt Wed Jan 28 14:07:19 2009
@@ -27,13 +27,6 @@
 
 ======================================================================
 
-This product includes the Java API for Servlets,
-developed by Sun Microsystems Inc (http://www.sun.com). 
-Please note the Java Servlet API is NOT included in the 
-Click runtime library.
-
-======================================================================
-
 This product includes the prototype JavaScript library,
 developed by Sam Stephenson (http://prototypejs.org/).
 
@@ -56,22 +49,16 @@
 
 This product includes the rico JavaScript library,
 developed by Sabre Airline Solutions (http://openrico.org).
-Please note this library is NOT included in the
-Click runtime library.
 
 ======================================================================
 
 This product includes the YUI JavaScript library,
 developed by Yahoo (http://developer.yahoo.com/yui/).
-Please note this library is NOT included in the
-Click runtime library.
 
 ======================================================================
 
 This product includes the HSQLDB library developed by The HSQL Development Group
 (http://www.hsqldb.org/)
-Please note this library is NOT included in the
-Click runtime library.
 
 ======================================================================
 

Modified: incubator/click/trunk/click/build/build.xml
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/build/build.xml?rev=738489&r1=738488&r2=738489&view=diff
==============================================================================
--- incubator/click/trunk/click/build/build.xml (original)
+++ incubator/click/trunk/click/build/build.xml Wed Jan 28 14:07:19 2009
@@ -209,13 +209,13 @@
            depends="clean, build-framework, build-mock, build-extras, build-examples, javadoc" 
            description="build distribution ZIP file">
       <!-- create distribution zip file -->
-      <delete dir="click-${version}" quiet="false"/>
-      <mkdir dir="click-${version}"/>
-      <copy todir="click-${version}">
+      <delete dir="${click}" quiet="false"/>
+      <mkdir dir="${click}"/>
+      <copy todir="${click}">
          <fileset dir="." casesensitive="yes">
             <exclude name=".**"/> 
             <exclude name=".**/**"/> 
-            <exclude name="click-${version}"/> 
+            <exclude name="${click}"/> 
             <exclude name="bin/**"/>
             <exclude name="design/**"/>
             <exclude name="dist/*-src.zip"/>
@@ -243,8 +243,8 @@
       <delete file="../${click}.zip"/>
       <zip basedir="."
            destfile="../${click}.zip"
-           includes="click-${version}/**"/>
-      <delete dir="click-${version}" quiet="false"/>
+           includes="${click}/**"/>
+      <delete dir="${click}" quiet="false"/>
       <digestMacro file="../${click}.zip"/>
    </target>