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
37fdc338
Commit
37fdc338
authored
6 years ago
by
Brutzman, Don
Browse files
Options
Downloads
Patches
Plain Diff
build scripts to download standards
parent
70bfb7dc
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CourseExamples/src/DisExamples/build.xml
+62
-0
62 additions, 0 deletions
CourseExamples/src/DisExamples/build.xml
with
62 additions
and
0 deletions
CourseExamples/src/DisExamples/build.xml
0 → 100644
+
62
−
0
View file @
37fdc338
<?xml version="1.0" encoding="UTF-8"?>
<project
name=
"DIS Utilities"
default=
""
basedir=
"."
>
<target
name=
"all"
depends=
"clean.specifications,download.IeeeDisStandards,download.SISO"
/>
<target
name=
"clean.specifications"
>
<echo
message=
"ensure all files are closed before deleting..."
/>
<delete
dir=
"specifications"
/>
</target>
<!-- =============================================== -->
<property
name=
"ieeeBaseUrl"
value=
"https://ieeexplore.ieee.org/document/"
/>
<target
name=
"download.IeeeDisStandards"
>
<mkdir
dir=
"specifications"
/>
<property
name=
"DIS.1"
value=
"IEEE1278.1-2012.DistributedInteractiveSimulation.ApplicationProtocols.6387564.pdf"
/>
<echo
message=
"get ${DIS.1}"
/>
<get
src=
"${ieeeBaseUrl}/6387564"
dest=
"specifications/${DIS.1}"
verbose=
"true"
/>
<property
name=
"DIS.2"
value=
"IEEE1278.2-2015.DistributedInteractiveSimulation.CommunicationsServices.7459689.pdf"
/>
<echo
message=
"get ${DIS.2}"
/>
<get
src=
"${ieeeBaseUrl}/7459689"
dest=
"specifications/${DIS.2}"
verbose=
"true"
/>
<property
name=
"DIS.3"
value=
"IEEE1278.3-2003.DistributedInteractiveSimulation.ExerciseManagement.587529.pdf"
/>
<echo
message=
"get ${DIS.3}"
/>
<get
src=
"${ieeeBaseUrl}/587529"
dest=
"specifications/${DIS.3}"
verbose=
"true"
/>
<property
name=
"DIS.4"
value=
"IEEE1278.4-2013.DistributedInteractiveSimulation.VV+A.6595010.pdf"
/>
<echo
message=
"get ${DIS.4}"
/>
<get
src=
"${ieeeBaseUrl}/6595010"
dest=
"specifications/${DIS.4}"
verbose=
"true"
/>
</target>
<!-- =============================================== -->
<property
name=
"sisoBaseUrl"
value=
"https://www.sisostds.org/DigitalLibrary.aspx?Command=Core_Download&EntryId="
/>
<target
name=
"download.SISO"
>
<mkdir
dir=
"specifications"
/>
<property
name=
"SISO-REF-010"
value=
"SISO-REF-010-v24.zip"
/>
<echo
message=
"get ${SISO-REF-010}"
/>
<get
src=
"${sisoBaseUrl}46171"
dest=
"specifications/${SISO-REF-010}"
verbose=
"true"
/>
<unzip
src=
"specifications/${SISO-REF-010}"
dest=
"specifications/"
overwrite=
"true"
/>
<delete
file=
"specifications/${SISO-REF-010}"
/>
<property
name=
"SISO-REF-010.1"
value=
"SISO-REF-010.1-2018 Operations Manual for EWG V07.pdf"
/>
<echo
message=
"get ${SISO-REF-010.1}"
/>
<get
src=
"${sisoBaseUrl}46173"
dest=
"specifications/${SISO-REF-010.1}"
verbose=
"true"
/>
</target>
</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