From 92114e4ee086dde7f8797a0d5ac609a1022ce362 Mon Sep 17 00:00:00 2001 From: Don Brutzman <brutzman@nps.edu> Date: Wed, 25 Mar 2020 20:24:43 -0700 Subject: [PATCH] add archive site (online url) --- build.xml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/build.xml b/build.xml index 9c211f3658..3fac5f5a69 100644 --- a/build.xml +++ b/build.xml @@ -44,6 +44,7 @@ POSSIBILITY OF SUCH DAMAGE. <!-- properties common to all build files, customized for this archive ============================== --> <property name="archive.name" value="Savage"/> + <property name="archive.site" value="https://savage.nps.edu/"/> <property name="archive.path" location="."/> <!-- Basic archive has single-section catalog structure, others have 2-section catalog structure --> @@ -3762,22 +3763,24 @@ app.replica.args=-mode scene -mipmaps -antialias 8 -anisotropicDegree 16 -verbos <target name="view.javadoc.local" description="view local package javadoc in web browser (Netbeans only)"> <nbbrowse file="javadoc/index.html" /> - <!-- TODO implementation-independent approach if possible. other Ant approachs have to be customized for each OS --> + <!-- TODO implementation-independent approach if possible, but note that other Ant approaches usually have to be customized for each OS. --> </target> <target name="view.javadoc.online" description="view local package javadoc in web browser (Netbeans only)"> - <nbbrowse url="https://www.web3d.org/x3d/content/examples/${archive.name}/javadoc" /> <!-- do not follow with /index.html --> - <!-- TODO implementation-independent approach if possible. other Ant approachs have to be customized for each OS --> + <echo message="${archive.site}/${archive.name}/javadoc" /> + <nbbrowse url="${archive.site}/${archive.name}/javadoc" /> <!-- do not follow with /index.html --> + <!-- TODO implementation-independent approach if possible, but note that other Ant approaches usually have to be customized for each OS. --> </target> <target name="view.examples.local" description="view local examples in web browser (Netbeans only)"> <nbbrowse file="index.html" /> - <!-- TODO implementation-independent approach if possible. other Ant approachs have to be customized for each OS --> + <!-- TODO implementation-independent approach if possible, but note that other Ant approaches usually have to be customized for each OS. --> </target> <target name="view.examples.online" description="view online examples in web browser (Netbeans only)"> - <nbbrowse url="https://www.web3d.org/x3d/content/examples/${archive.name}" /> - <!-- TODO implementation-independent approach if possible. other Ant approachs have to be customized for each OS --> + <echo message="${archive.site}/${archive.name}" /> + <nbbrowse url="${archive.site}/${archive.name}" /> + <!-- TODO implementation-independent approach if possible, but note that other Ant approaches usually have to be customized for each OS. --> </target> <target name="clean.X3dTidy"> -- GitLab