diff options
author | Kevin Rushforth <[email protected]> | 2005-10-26 23:43:42 +0000 |
---|---|---|
committer | Kevin Rushforth <[email protected]> | 2005-10-26 23:43:42 +0000 |
commit | f2b8bc72cac9b037636cae419b57219da7f42886 (patch) | |
tree | 68676bcfd4a25d5c996d83c9897570c3c2d9b10f /src/classes/build.xml | |
parent | 88dba20f8d32240c535341b4e16e9218a715acc7 (diff) |
1. Added package description.
2. Added introductory material from former specification guide (since that is no longer being maintained).
3. Put copyright notice at bottom of all javadoc pages.
git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@450 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'src/classes/build.xml')
-rw-r--r-- | src/classes/build.xml | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/src/classes/build.xml b/src/classes/build.xml index 1cd3cc1..cb166b3 100644 --- a/src/classes/build.xml +++ b/src/classes/build.xml @@ -192,7 +192,15 @@ </jar> </target> - <target name="docs-jcp"> + <target name="setup-docs"> + <!-- use javadoc.bottom.new once we have the spec license from the JCP PMO --> + <property name="javadoc.bottom.new" + value="<font size="-1">Copyright 2005 Sun Microsystems, Inc. All rights reserved. Use is subject to <a href="{@docRoot}/LICENSE-SPEC.html">license terms</a>."/> + <property name="javadoc.bottom" + value="<font size="-1">Copyright 2005 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms."/> + </target> + + <target name="docs-jcp" depends="setup-docs"> <!-- Create the build directory structure used by docs --> <mkdir dir="${build}/${platform}/javadocs/docs-jcp"/> @@ -201,6 +209,7 @@ javax.vecmath.*" maxmemory="128m" destdir="${build}/${platform}/javadocs/docs-jcp" + bottom="${javadoc.bottom}" windowtitle="Java 3D ${version}"> <sourcepath> <pathelement location="${src}/classes/share"/> @@ -210,13 +219,14 @@ </sourcepath> </javadoc> - <!-- Copy the copyright file --> + <!-- Copy the copyright and license files --> <copy todir="${build}/${platform}/javadocs/docs-jcp"> <fileset dir="${src}/.." includes="COPYRIGHT.txt"/> + <fileset dir="${src}/.." includes="LICENSE-SPEC.html"/> </copy> </target> - <target name="docs-private"> + <target name="docs-private" depends="setup-docs"> <!-- Create the build directory structure used by docs --> <mkdir dir="${build}/${platform}/javadocs/docs-private"/> @@ -241,6 +251,7 @@ maxmemory="128m" private="true" destdir="${build}/${platform}/javadocs/docs-private" + bottom="${javadoc.bottom}" windowtitle="Java 3D ${version}"> <sourcepath> <pathelement location="${src}/classes/share"/> @@ -251,13 +262,14 @@ </sourcepath> </javadoc> - <!-- Copy the copyright file --> + <!-- Copy the copyright and license files --> <copy todir="${build}/${platform}/javadocs/docs-private"> <fileset dir="${src}/.." includes="COPYRIGHT.txt"/> + <fileset dir="${src}/.." includes="LICENSE-SPEC.html"/> </copy> </target> - <target name="docs-public"> + <target name="docs-public" depends="setup-docs"> <!-- Create the build directory structure used by docs --> <mkdir dir="${build}/${platform}/javadocs/docs-public"/> @@ -271,6 +283,7 @@ com.sun.j3d.utils.scenegraph.io.state.*" maxmemory="128m" destdir="${build}/${platform}/javadocs/docs-public" + bottom="${javadoc.bottom}" windowtitle="Java 3D ${version}"> <sourcepath> <pathelement location="${src}/classes/share"/> @@ -280,9 +293,10 @@ </sourcepath> </javadoc> - <!-- Copy the copyright file --> + <!-- Copy the copyright and license files --> <copy todir="${build}/${platform}/javadocs/docs-public"> <fileset dir="${src}/.." includes="COPYRIGHT.txt"/> + <fileset dir="${src}/.." includes="LICENSE-SPEC.html"/> </copy> </target> |