diff --git a/postscript-go/AUTHORS b/postscript-go/AUTHORS deleted file mode 100644 index a7d71ab..0000000 --- a/postscript-go/AUTHORS +++ /dev/null @@ -1 +0,0 @@ -Laurent Le Goff \ No newline at end of file diff --git a/postscript-go/README b/postscript-go/README deleted file mode 100644 index 65fbebe..0000000 --- a/postscript-go/README +++ /dev/null @@ -1,4 +0,0 @@ -Postscript go implementation that uses [http://code.google.com/p/draw2d/ draw2d] to generate images. - -sample generation: -[http://postcript-go.googlecode.com/svn/postscript-go/TestPostscript.png] \ No newline at end of file diff --git a/postscript-go/bst.txt b/postscript-go/bst.txt deleted file mode 100644 index c495dbc..0000000 --- a/postscript-go/bst.txt +++ /dev/null @@ -1,18 +0,0 @@ -Copyright (c) 2010, Laurent Le Goff -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, -OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/postscript-go/src/cmd/Makefile b/postscript-go/cmd/Makefile similarity index 100% rename from postscript-go/src/cmd/Makefile rename to postscript-go/cmd/Makefile diff --git a/postscript-go/src/cmd/test.go b/postscript-go/cmd/test.go similarity index 100% rename from postscript-go/src/cmd/test.go rename to postscript-go/cmd/test.go diff --git a/postscript-go/src/cmd/testpostscript.go b/postscript-go/cmd/testpostscript.go similarity index 100% rename from postscript-go/src/cmd/testpostscript.go rename to postscript-go/cmd/testpostscript.go diff --git a/postscript-go/spec/PLRM.pdf b/postscript-go/doc/PLRM.pdf similarity index 100% rename from postscript-go/spec/PLRM.pdf rename to postscript-go/doc/PLRM.pdf diff --git a/postscript-go/src/pkg/postscript/Makefile b/postscript-go/postscript/Makefile similarity index 100% rename from postscript-go/src/pkg/postscript/Makefile rename to postscript-go/postscript/Makefile diff --git a/postscript-go/src/pkg/postscript/interpreter.go b/postscript-go/postscript/interpreter.go similarity index 100% rename from postscript-go/src/pkg/postscript/interpreter.go rename to postscript-go/postscript/interpreter.go diff --git a/postscript-go/src/pkg/postscript/operators.go b/postscript-go/postscript/operators.go similarity index 100% rename from postscript-go/src/pkg/postscript/operators.go rename to postscript-go/postscript/operators.go diff --git a/postscript-go/src/pkg/postscript/operators_array.go b/postscript-go/postscript/operators_array.go similarity index 100% rename from postscript-go/src/pkg/postscript/operators_array.go rename to postscript-go/postscript/operators_array.go diff --git a/postscript-go/src/pkg/postscript/operators_conflict.go b/postscript-go/postscript/operators_conflict.go similarity index 100% rename from postscript-go/src/pkg/postscript/operators_conflict.go rename to postscript-go/postscript/operators_conflict.go diff --git a/postscript-go/src/pkg/postscript/operators_control.go b/postscript-go/postscript/operators_control.go similarity index 100% rename from postscript-go/src/pkg/postscript/operators_control.go rename to postscript-go/postscript/operators_control.go diff --git a/postscript-go/src/pkg/postscript/operators_dictionary.go b/postscript-go/postscript/operators_dictionary.go similarity index 100% rename from postscript-go/src/pkg/postscript/operators_dictionary.go rename to postscript-go/postscript/operators_dictionary.go diff --git a/postscript-go/src/pkg/postscript/operators_graphics.go b/postscript-go/postscript/operators_graphics.go similarity index 100% rename from postscript-go/src/pkg/postscript/operators_graphics.go rename to postscript-go/postscript/operators_graphics.go diff --git a/postscript-go/src/pkg/postscript/operators_math.go b/postscript-go/postscript/operators_math.go similarity index 100% rename from postscript-go/src/pkg/postscript/operators_math.go rename to postscript-go/postscript/operators_math.go diff --git a/postscript-go/src/pkg/postscript/operators_misc.go b/postscript-go/postscript/operators_misc.go similarity index 100% rename from postscript-go/src/pkg/postscript/operators_misc.go rename to postscript-go/postscript/operators_misc.go diff --git a/postscript-go/src/pkg/postscript/operators_relational.go b/postscript-go/postscript/operators_relational.go similarity index 100% rename from postscript-go/src/pkg/postscript/operators_relational.go rename to postscript-go/postscript/operators_relational.go diff --git a/postscript-go/src/pkg/postscript/operators_stack.go b/postscript-go/postscript/operators_stack.go similarity index 100% rename from postscript-go/src/pkg/postscript/operators_stack.go rename to postscript-go/postscript/operators_stack.go diff --git a/postscript-go/src/pkg/postscript/procedure.go b/postscript-go/postscript/procedure.go similarity index 100% rename from postscript-go/src/pkg/postscript/procedure.go rename to postscript-go/postscript/procedure.go diff --git a/postscript-go/src/pkg/postscript/scanner.go b/postscript-go/postscript/scanner.go similarity index 100% rename from postscript-go/src/pkg/postscript/scanner.go rename to postscript-go/postscript/scanner.go diff --git a/postscript-go/TestPostscript.png b/postscript-go/resources/result/TestPostscript.png similarity index 100% rename from postscript-go/TestPostscript.png rename to postscript-go/resources/result/TestPostscript.png diff --git a/postscript-go/test_files/3dcolor.ps b/postscript-go/resources/test/3dcolor.ps similarity index 100% rename from postscript-go/test_files/3dcolor.ps rename to postscript-go/resources/test/3dcolor.ps diff --git a/postscript-go/test_files/JavaPlatform.ps b/postscript-go/resources/test/JavaPlatform.ps similarity index 100% rename from postscript-go/test_files/JavaPlatform.ps rename to postscript-go/resources/test/JavaPlatform.ps diff --git a/postscript-go/test_files/Koch.ps b/postscript-go/resources/test/Koch.ps similarity index 100% rename from postscript-go/test_files/Koch.ps rename to postscript-go/resources/test/Koch.ps diff --git a/postscript-go/test_files/Mand.ps b/postscript-go/resources/test/Mand.ps similarity index 100% rename from postscript-go/test_files/Mand.ps rename to postscript-go/resources/test/Mand.ps diff --git a/postscript-go/test_files/bell_206.ps b/postscript-go/resources/test/bell_206.ps similarity index 100% rename from postscript-go/test_files/bell_206.ps rename to postscript-go/resources/test/bell_206.ps diff --git a/postscript-go/test_files/colorcir.ps b/postscript-go/resources/test/colorcir.ps similarity index 100% rename from postscript-go/test_files/colorcir.ps rename to postscript-go/resources/test/colorcir.ps diff --git a/postscript-go/test_files/doretree.ps b/postscript-go/resources/test/doretree.ps similarity index 100% rename from postscript-go/test_files/doretree.ps rename to postscript-go/resources/test/doretree.ps diff --git a/postscript-go/test_files/escher.ps b/postscript-go/resources/test/escher.ps similarity index 100% rename from postscript-go/test_files/escher.ps rename to postscript-go/resources/test/escher.ps diff --git a/postscript-go/test_files/golfer.ps b/postscript-go/resources/test/golfer.ps similarity index 100% rename from postscript-go/test_files/golfer.ps rename to postscript-go/resources/test/golfer.ps diff --git a/postscript-go/test_files/grade.ps b/postscript-go/resources/test/grade.ps similarity index 100% rename from postscript-go/test_files/grade.ps rename to postscript-go/resources/test/grade.ps diff --git a/postscript-go/test_files/grayalph.ps b/postscript-go/resources/test/grayalph.ps similarity index 100% rename from postscript-go/test_files/grayalph.ps rename to postscript-go/resources/test/grayalph.ps diff --git a/postscript-go/test_files/manylines.ps b/postscript-go/resources/test/manylines.ps similarity index 100% rename from postscript-go/test_files/manylines.ps rename to postscript-go/resources/test/manylines.ps diff --git a/postscript-go/test_files/maze.ps b/postscript-go/resources/test/maze.ps similarity index 100% rename from postscript-go/test_files/maze.ps rename to postscript-go/resources/test/maze.ps diff --git a/postscript-go/test_files/snowflak.ps b/postscript-go/resources/test/snowflak.ps similarity index 100% rename from postscript-go/test_files/snowflak.ps rename to postscript-go/resources/test/snowflak.ps diff --git a/postscript-go/test_files/test1.ps b/postscript-go/resources/test/test1.ps similarity index 100% rename from postscript-go/test_files/test1.ps rename to postscript-go/resources/test/test1.ps diff --git a/postscript-go/test_files/tiger.ps b/postscript-go/resources/test/tiger.ps similarity index 100% rename from postscript-go/test_files/tiger.ps rename to postscript-go/resources/test/tiger.ps diff --git a/postscript-go/test_files/vasarely.ps b/postscript-go/resources/test/vasarely.ps similarity index 100% rename from postscript-go/test_files/vasarely.ps rename to postscript-go/resources/test/vasarely.ps diff --git a/postscript-go/test_files/vw.ps b/postscript-go/resources/test/vw.ps similarity index 100% rename from postscript-go/test_files/vw.ps rename to postscript-go/resources/test/vw.ps diff --git a/postscript-go/test_files/whitepaper.ps b/postscript-go/resources/test/whitepaper.ps similarity index 100% rename from postscript-go/test_files/whitepaper.ps rename to postscript-go/resources/test/whitepaper.ps