Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NetworkedGraphicsMV3500
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Savage
NetworkedGraphicsMV3500
Commits
dc976e32
Commit
dc976e32
authored
5 years ago
by
brutzman
Browse files
Options
Downloads
Patches
Plain Diff
add nbbrowse convenience targets for browsing site pages
parent
94aeff3b
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
assignments/build.xml
+5
-0
5 additions, 0 deletions
assignments/build.xml
build.xml
+29
-4
29 additions, 4 deletions
build.xml
examples/build.xml
+8
-0
8 additions, 0 deletions
examples/build.xml
specifications/build.xml
+6
-1
6 additions, 1 deletion
specifications/build.xml
with
48 additions
and
5 deletions
assignments/build.xml
+
5
−
0
View file @
dc976e32
...
@@ -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>
This diff is collapsed.
Click to expand it.
build.xml
+
29
−
4
View file @
dc976e32
...
@@ -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
This diff is collapsed.
Click to expand it.
examples/build.xml
+
8
−
0
View file @
dc976e32
...
@@ -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>
This diff is collapsed.
Click to expand it.
specifications/build.xml
+
6
−
1
View file @
dc976e32
<?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>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment