Skip to content
Snippets Groups Projects
Commit dc976e32 authored by brutzman's avatar brutzman
Browse files

add nbbrowse convenience targets for browsing site pages

parent 94aeff3b
No related branches found
No related tags found
No related merge requests found
...@@ -70,4 +70,9 @@ ...@@ -70,4 +70,9 @@
nbproject/build-impl.xml file. 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> </project>
...@@ -39,9 +39,34 @@ POSSIBILITY OF SUCH DAMAGE. ...@@ -39,9 +39,34 @@ POSSIBILITY OF SUCH DAMAGE.
Author : Don Brutzman and Don McGregor Author : Don Brutzman and Don McGregor
Description: Ant build.xml file for Networked Graphics MV3500 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> <description>Build targets for NPS Networked Graphics MV3500</description>
<!-- TODO add targets for project maintenance, testing and deployment --> <!-- TODO add targets for project maintenance, testing and deployment
</project> <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
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
<!-- the Compile on Save feature is turned off for the project. --> <!-- the Compile on Save feature is turned off for the project. -->
<!-- You can turn off the Compile on Save (or Deploy on Save) setting --> <!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
<!-- in the project's Project Properties dialog box.--> <!-- in the project's Project Properties dialog box.-->
<project name="Networked_Graphics_MV3500_examples" default="default" basedir="."> <project name="Networked_Graphics_MV3500_examples" default="default" basedir=".">
<description>Builds, tests, and runs the project Networked Graphics MV3500 examples.</description> <description>Builds, tests, and runs the project Networked Graphics MV3500 examples.</description>
<import file="nbproject/build-impl.xml"/> <import file="nbproject/build-impl.xml"/>
...@@ -70,4 +71,11 @@ ...@@ -70,4 +71,11 @@
nbproject/build-impl.xml file. 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> </project>
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project name="Download IEEE and SISO Specifications" default="download.all" basedir="."> <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"> <target name="download.clean.specifications">
<echo message="ensure all files are closed before deleting..."/> <echo message="ensure all files are closed before deleting..."/>
...@@ -117,5 +117,10 @@ ...@@ -117,5 +117,10 @@
dest="${SISO-REF-010.1}" verbose="true"/> dest="${SISO-REF-010.1}" verbose="true"/>
</target> </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> </project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment