diff --git a/assignments/build.xml b/assignments/build.xml index c0113f2bf38a36787cf8bdf4c2e61c70bb02475b..2b8c338bb1277d3f5f33939476fdbfda4bdca00e 100644 --- a/assignments/build.xml +++ b/assignments/build.xml @@ -70,4 +70,9 @@ nbproject/build-impl.xml file. --> + + <target name="view.gitlab.assignments" description="view gitlab MV3500 examples in web browser (via Netbeans only)"> + <echo message="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/assignments"/> + <nbbrowse url="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/assignments"/> + </target> </project> diff --git a/build.xml b/build.xml index c00627b5a11b7fc65ba07c21f3d965cf61ddbbcf..b8c82d8569bec06fe934d9ea0a5b589b4c5708b9 100644 --- a/build.xml +++ b/build.xml @@ -39,9 +39,34 @@ POSSIBILITY OF SUCH DAMAGE. Author : Don Brutzman and Don McGregor Description: Ant build.xml file for Networked Graphics MV3500 --> -<project name="Networked Graphics MV3500" default="all" basedir="."> +<project name="Networked_Graphics_MV3500" default="all" basedir="."> <description>Build targets for NPS Networked Graphics MV3500</description> - <!-- TODO add targets for project maintenance, testing and deployment --> - -</project> + <!-- TODO add targets for project maintenance, testing and deployment + + <property name="specificationsDirectory" location="specifications"/> + <import file="specifications/build.xml"/> --> + + <target name="view.gitlab" description="view gitlab MV3500 site in web browser (via Netbeans only)"> + <echo message="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500"/> + <nbbrowse url="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500"/> + <!-- TODO implementation-independent approach if possible. other Ant approachs have to be customized for each OS --> + </target> + + <target name="view.gitlab.assignments" description="view gitlab MV3500 examples in web browser (via Netbeans only)"> + <echo message="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/assignments"/> + <nbbrowse url="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/assignments"/> + </target> + + <target name="view.gitlab.examples" description="view gitlab MV3500 examples in web browser (via Netbeans only)"> + <echo message="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/examples"/> + <nbbrowse url="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/examples"/> + <!-- TODO implementation-independent approach if possible. other Ant approachs have to be customized for each OS --> + </target> + + <target name="view.gitlab.specifications.README" description="view gitlab MV3500 examples in web browser (via Netbeans only)"> + <echo message="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/specifications/README.md"/> + <nbbrowse url="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/specifications/README.md"/> + </target> + +</project> \ No newline at end of file diff --git a/examples/build.xml b/examples/build.xml index 526433fa9c5cc4089e7b3101b158a49077d65aef..27c9ffaf4d641e7f6032b93fe69f6f422292abda 100644 --- a/examples/build.xml +++ b/examples/build.xml @@ -7,6 +7,7 @@ <!-- the Compile on Save feature is turned off for the project. --> <!-- You can turn off the Compile on Save (or Deploy on Save) setting --> <!-- in the project's Project Properties dialog box.--> + <project name="Networked_Graphics_MV3500_examples" default="default" basedir="."> <description>Builds, tests, and runs the project Networked Graphics MV3500 examples.</description> <import file="nbproject/build-impl.xml"/> @@ -70,4 +71,11 @@ nbproject/build-impl.xml file. --> + + <target name="view.gitlab.examples" description="view gitlab MV3500 examples in web browser (Netbeans only)"> + <echo message="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/examples"/> + <nbbrowse url="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/examples"/> + <!-- TODO implementation-independent approach if possible. other Ant approachs have to be customized for each OS --> + </target> + </project> diff --git a/specifications/build.xml b/specifications/build.xml index 0738858cab1f01d3fd6d8ec82dc0791027f4d10b..5564ed773d8267e5264b165c3022adb8c630f424 100644 --- a/specifications/build.xml +++ b/specifications/build.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <project name="Download IEEE and SISO Specifications" default="download.all" basedir="."> - <target name="download.all" depends="clean.specifications,download.IeeeDisStandards,download.SISO,rename.IeeeDisStandards"/> + <target name="download.all" depends="download.clean.specifications,download.IeeeDisStandards,download.SISO,download.rename.IeeeDisStandards"/> <target name="download.clean.specifications"> <echo message="ensure all files are closed before deleting..."/> @@ -117,5 +117,10 @@ dest="${SISO-REF-010.1}" verbose="true"/> </target> + + <target name="view.gitlab.specifications.README" description="view gitlab MV3500 examples in web browser (via Netbeans only)"> + <echo message="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/specifications/README.md"/> + <nbbrowse url="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/tree/master/specifications/README.md"/> + </target> </project>