[bvalid-codewatch] SF.net SVN: bvalid: [39] trunk
Status: Beta
Brought to you by:
cwilper
|
From: <cw...@us...> - 2006-05-10 20:57:29
|
Revision: 39 Author: cwilper Date: 2006-05-10 13:57:22 -0700 (Wed, 10 May 2006) ViewCVS: http://svn.sourceforge.net/bvalid/?rev=39&view=rev Log Message: ----------- changed readme, moving license stuff around, and putting version info in based on prop file Modified Paths: -------------- trunk/README.txt trunk/build.xml trunk/src/doc/index.html Removed Paths: ------------- trunk/LICENSE.txt Deleted: trunk/LICENSE.txt =================================================================== --- trunk/LICENSE.txt 2006-05-10 17:01:06 UTC (rev 38) +++ trunk/LICENSE.txt 2006-05-10 20:57:22 UTC (rev 39) @@ -1,51 +0,0 @@ -The Educational Community License - -This Educational Community License (the "License") applies to any -original work of authorship (the "Original Work") whose owner (the -"Licensor") has placed the following notice immediately following the -copyright notice for the Original Work: - -Copyright (c) <year> <copyright holders> - -Licensed under the Educational Community License version 1.0 - -This Original Work, including software, source code, documents, or -other related items, is being provided by the copyright holder(s) -subject to the terms of the Educational Community License. By -obtaining, using and/or copying this Original Work, you agree that you -have read, understand, and will comply with the following terms and -conditions of the Educational Community License: - -Permission to use, copy, modify, merge, publish, distribute, and -sublicense this Original Work and its documentation, with or without -modification, for any purpose, and without fee or royalty to the -copyright holder(s) is hereby granted, provided that you include the -following on ALL copies of the Original Work or portions thereof, -including modifications or derivatives, that you make: - -- The full text of the Educational Community License in a location -viewable to users of the redistributed or derivative work. - -- Any pre-existing intellectual property disclaimers, notices, or terms -and conditions. - -- Notice of any changes or modifications to the Original Work, -including the date the changes were made. - -- Any modifications of the Original Work must be distributed in such a -manner as to avoid any confusion with the Original Work of the -copyright holders. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -The name and trademarks of copyright holder(s) may NOT be used in -advertising or publicity pertaining to the Original or Derivative Works -without specific, written prior permission. Title to copyright in the -Original Work and any associated documentation will at all times remain -with the copyright holders. Modified: trunk/README.txt =================================================================== --- trunk/README.txt 2006-05-10 17:01:06 UTC (rev 38) +++ trunk/README.txt 2006-05-10 20:57:22 UTC (rev 39) @@ -1,11 +1,42 @@ -This is a source distribution of BValid, a Java library for XML validation. -To build, make sure ant is in your path and type: + BValid XML Validation API -ant dist + Version @bvalid.version@ -Then, to run the command-line validation utility, cd to dist and type: + http://bvalid.sf.net/ -bvalid --help + Copyright (c) 2006, Cornell University -For more information, see http://bvalid.sf.net/ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + +LICENSE +======= + +BValid is distributed under the Educational Community License (ECL), v1.0. +Use of this software indicates your acceptance of the terms of this license. +The distribution includes several third-party, open-source libraries with +thier own license terms. Specific terms of the ECL and all third-party +licenses can be found in this distribution, in the license/ directory. + + +DOCUMENTATION +============= + +Online documentation for the latest version of BValid can be found at +http://bvalid.sf.net/ + +Offline documentation for this version of BValid can be found in the +dist/doc/ directory after doing a documentation build. (see below) + + +BUILDING +======== + +To compile BValid, make sure you have Ant installed, and type: + ant dist + +To build the documentation, type: + ant doc + +For other useful build targets, type: + ant -p Modified: trunk/build.xml =================================================================== --- trunk/build.xml 2006-05-10 17:01:06 UTC (rev 38) +++ trunk/build.xml 2006-05-10 20:57:22 UTC (rev 39) @@ -79,6 +79,11 @@ <exclude name="dist/**"/> </fileset> </copy> + <replace file="dist/release/bvalid-${bvalid.version}-src/README.txt" + value="value not found in version.properties" + propertyFile="src/java/net/sf/bvalid/BValid.properties"> + <replacefilter token="@bvalid.version@" property="bvalid.version"/> + </replace> <zip zipfile="dist/release/bvalid-${bvalid.version}-src.zip" basedir="dist/release" includes="bvalid-${bvalid.version}-src/**"/> <delete dir="dist/release/bvalid-${bvalid.version}-src"/> </target> @@ -107,6 +112,11 @@ <copy todir="dist/doc"> <fileset dir="src/doc"/> </copy> + <replace file="dist/doc/index.html" + value="value not found in version.properties" + propertyFile="src/java/net/sf/bvalid/BValid.properties"> + <replacefilter token="@bvalid.version@" property="bvalid.version"/> + </replace> <javadoc packagenames="net.sf.bvalid, net.sf.bvalid.locator, net.sf.bvalid.catalog, net.sf.bvalid.util" classpathref="compile.path" sourcepath="src/java" Modified: trunk/src/doc/index.html =================================================================== --- trunk/src/doc/index.html 2006-05-10 17:01:06 UTC (rev 38) +++ trunk/src/doc/index.html 2006-05-10 20:57:22 UTC (rev 39) @@ -12,7 +12,7 @@ <div id="header"> <div id="title"> <h1>BValid XML Validation API<br/> - Version 0.8</h1> + Version @bvalid.version@</h1> </div> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |