[x3d-public] Problems with X3D file names found in x3d sourceforge repositoryexamples

Don Brutzman brutzman at nps.edu
Wed May 3 20:34:47 PDT 2017


On 5/3/2017 6:45 AM, yottzumm at gmail.com wrote:
> I broadened my search a bit.  You probably need to run your HelloWorldProgram.java to get …Output.x3d and ….json.  And it looks like those hints are backups…
> 
> $ find /c/x3d-code/www.web3d.org -type f -print0| xargs -0 fgrep -f badURLs.txt | awk -F: '{ print $1; }' |grep -v '\.svn'| grep -v build.log.out|grep -v build.log.txt| grep -v Makefile.out |sort -u
> 
> /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Followers/RoomDesired.x3d
> 
> /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Followers/RoomDirect.x3d

these are finding an OK link to specification:

     <meta content='http://www.web3d.org/x3d/specifications/ISO-IEC-19775-1.2-X3D-AbstractSpecification/Part01/components/followers.html' name='reference'/>

> /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Geospatial/KmlToX3dViewpoints.xslt

OK, schema reference

> /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/X3dSpecifications/Robot.x3d

OK, spec link

> /c/x3d-code/www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html.mine
> 
> /c/x3d-code/www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html.r25149
> 
> /c/x3d-code/www.web3d.org/x3d/content/X3D-XmlSpyProject.spp
> 
> /c/x3d-code/www.web3d.org/x3d/stylesheets/test/HelloWorldProgramOutput.x3d
> 
> /c/x3d-code/www.web3d.org/x3d/stylesheets/test/HelloWorldProgramOutput.json
> 
> /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/externals/stylesheets/test/HelloWorldProgramOutput.x3d
> 
> /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/externals/stylesheets/test/HelloWorldProgramOutput.json

fixed and deployed last night

> /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/palette/items/BaseX3DElement.java
> 
> /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/palette/items/INLINE_CoordinateAxes.java
> 
> /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/palette/items/INLINE_CoordinateAxesNSEW.java
> 
> /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/palette/items/PROTOTYPE_HeadsUpDisplay.java
> 
> /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/palette/items/PROTOTYPE_ViewFrustum.java
> 
> /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/palette/items/PROTOTYPE_WhereAmI.java

all fixed with thanks

> Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
> 
> *From: *Don Brutzman <mailto:brutzman at nps.edu>
> *Sent: *Wednesday, May 3, 2017 3:37 AM
> *To: *yottzumm at gmail.com <mailto:yottzumm at gmail.com>; X3D Graphics public mailing list <mailto:x3d-public at web3d.org>
> *Subject: *Re: Problems with X3D file names found in x3d sourceforge repositoryexamples
> 
> Thanks for interesting tests.  Summary: fixed.
> 
> On 5/2/2017 12:44 PM, yottzumm at gmail.com wrote:
> 
>  > Please rebuild the JSON archive examples zip.  They have –‘s in the URLs in the filenames to .x3d files which no longer exist.
> 
>  >
> 
>  > I will convert to JSON myself as well.
> 
>  >
> 
>  > Found bad urls’ with –‘s in them.  Not file names
> 
>  >
> 
>  > $ cat badURLs.txt
> 
>  >
> 
>  > bitmanagement-nodes.x3d
> 
> that one is allowable, it refers to an "originals/" subdirectory scene that is included for reference purposes and is not a regular archive model.  i try not to touch those.
> 
>  > Chapter03-Grouping
> 
>  >
> 
>  > Chapter14-Prototypes
> 
>  >
> 
>  > Example13-ShuttlesAndPendulums.x3d
> 
>  >
> 
>  > existing-file.x3d
> 
>  >
> 
>  > new-world.x3d
> 
>  >
> 
>  > non-existingfile.x3d
> 
>  >
> 
>  > test-anchorclick.x3d
> 
>  >
> 
>  > test-mult-multurl.x3d
> 
>  >
> 
>  > test-mult-singleurl.x3d
> 
>  >
> 
>  > test-viewanchor.x3d
> 
>  >
> 
>  > third-world.x3d
> 
> thanks all fixed and checked in, will be deployed tomorrow.
> 
>  > Found the filenames they are in.
> 
>  >
> 
>  > $ find /c/x3d-code/www.web3d.org -type f -print0| xargs -0 fgrep -f badURLs.txt | awk -F: '{ print $1; }' | grep -v Makefile.out| grep -v bak |grep -v sail.js|grep -v build.log.txt|grep -v '\.json$'|grep -v "\.java$"|grep -v '\.class'|sort -u|grep -v '\.svn'
> 
> obi-wan kenobi incantation of the day award!   :0
> 
> actually netbeans search/replace has come a long way and works well now.
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/course/ExtrusionCrossSectionExampleShip.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/course/ExtrusionCrossSectionExampleTorus.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/course/ExtrusionExampleShip.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/course/ModelOrientation.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/course/PyramidWithAxes.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/course/SimpleCarrierHull.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/development/CameraExamples.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/development/ImportExportSyntax.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/DistributedInteractiveSimulation/BeachTanks.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/DistributedInteractiveSimulation/CoordinateAxesX3dDIS.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/DistributedInteractiveSimulation/CoordinateAxesX3dDISGeoLoc.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/DistributedInteractiveSimulation/TestBoxEspdu.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Followers/originals/bitmanagement-nodes.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Followers/RoomDesired.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Followers/RoomDirect.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Geospatial/CaliforniaCampuses.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Geospatial/CaliforniaCampusesTour3Altitudes.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Geospatial/CaliforniaCampusesTour4Altitudes.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Geospatial/CaliforniaCampusesTour5Altitudes.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Geospatial/GeospatialCoordinateAxesNsewExample.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Geospatial/KmlToX3dViewpoints.xslt
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/HumanoidAnimation/HAnimSpecificationLOA3Motion.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Medical/BonesAllSkeleton.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/X3dSpecifications/Robot.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/ConformanceNist/GroupingNodes/Anchor/nested_anchor.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/ConformanceNist/GroupingNodes/Anchor/new_world.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/ConformanceNist/GroupingNodes/Anchor/singleurl.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/ConformanceNist/GroupingNodes/Anchor/test_anchorviewpoint.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/ConformanceNist/GroupingNodes/Anchor/test_simpleAnchor.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/ConformanceNist/GroupingNodes/Anchor/url1.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/ConformanceNist/GroupingNodes/Anchor/url2.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/ConformanceNist/GroupingNodes/Anchor/url3.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/ConformanceNist/SpecialGroups/Inline/invalid_url.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/AdditiveManufacturing/CleatClamp.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/Buildings/ArchPrototype.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/GeometricShapes/RoundedRectanglePrimitives.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/GeometricShapes/StairStepPrototype.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/GeometricShapes/Tetrahedron.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/SanCarlosCathedral/Century19thModel.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/SanCarlosCathedral/Century19thModel2.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/SanCarlosCathedral/Church.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/SanCarlosCathedral/SanCarlosCathedral.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/SanCarlosCathedral/SanCarlosCathedralWorkingVersion/SanCarlosCathedral.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/SanCarlosCathedral/SanCarlosChurchHistory.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dForAdvancedModeling/Scanning/HammingBrickPoissonMesh.x3d
> 
> the rest are especially helpful, thanks
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/content/X3D-XmlSpyProject.spp
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/stylesheets/java/examples/HelloWorldProgramOutput.html
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/stylesheets/java/examples/HelloWorldProgramOutput.Reloaded.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/stylesheets/java/examples/HelloWorldProgramOutput.txt
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/stylesheets/java/examples/HelloWorldProgramOutput.wrl
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/stylesheets/java/examples/HelloWorldProgramOutput.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/stylesheets/java/examples/HelloWorldProgramOutput.x3dv
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/stylesheets/java/examples/HelloWorldProgramOutputX3dom.xhtml
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/stylesheets/test/HelloWorldProgramOutput.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/javahelp/build.xml
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/javahelp/getDocs.xml
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/externals/stylesheets/java/examples/HelloWorldProgramOutput.html
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/externals/stylesheets/java/examples/HelloWorldProgramOutput.Reloaded.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/externals/stylesheets/java/examples/HelloWorldProgramOutput.txt
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/externals/stylesheets/java/examples/HelloWorldProgramOutput.wrl
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/externals/stylesheets/java/examples/HelloWorldProgramOutput.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/externals/stylesheets/java/examples/HelloWorldProgramOutput.x3dv
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/externals/stylesheets/java/examples/HelloWorldProgramOutputX3dom.xhtml
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3D/src/org/web3d/x3d/externals/stylesheets/test/HelloWorldProgramOutput.x3d
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3dEditorSuite/websites/savage.nps.edu/X3D-Edit/X3D-Edit.html
> 
>  >
> 
>  > /c/x3d-code/www.web3d.org/x3d/tools/X3dEdit3.3/X3dEditorSuite/websites/www.movesinstitute.org/video/courses/X3dForWebAuthors/X3dForWebAuthorsVideo.html
> 
> aha gotcha, fixed and redeployed
> 
>  > Binary file /c/x3d-code/www.web3d.org/x3d/content/examples/Basic/Web3dOutreach/Declarative3dTimelineSceneUseCaseHaveleBrutzman.doc matches
> 
> blast from past!
> 
> all the best, Don
> 
> -- 
> 
> Don Brutzman  Naval Postgraduate School, Code USW/Br       brutzman at nps.edu
> 
> Watkins 270,  MOVES Institute, Monterey CA 93943-5000 USA   +1.831.656.2149
> 
> X3D graphics, virtual worlds, navy robotics http://faculty.nps.edu/brutzman
> 


all the best, Don
-- 
Don Brutzman  Naval Postgraduate School, Code USW/Br       brutzman at nps.edu
Watkins 270,  MOVES Institute, Monterey CA 93943-5000 USA   +1.831.656.2149
X3D graphics, virtual worlds, navy robotics http://faculty.nps.edu/brutzman



More information about the x3d-public mailing list