summaryrefslogtreecommitdiffstats
path: root/src/extension/script/README.txt
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2008-03-10 00:03:28 +0000
committerishmal <ishmal@users.sourceforge.net>2008-03-10 00:03:28 +0000
commit5421346cad32ea60be596291c74200bed21c2ef2 (patch)
treeaaa13c90610c1e087007608851b36dc1f24e1f82 /src/extension/script/README.txt
parentDon't steal 'del' key in pen context when there is no curve being drawn (clos... (diff)
downloadinkscape-5421346cad32ea60be596291c74200bed21c2ef2.tar.gz
inkscape-5421346cad32ea60be596291c74200bed21c2ef2.zip
Switch to newer binding stuff
(bzr r5016)
Diffstat (limited to 'src/extension/script/README.txt')
-rw-r--r--src/extension/script/README.txt41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/extension/script/README.txt b/src/extension/script/README.txt
deleted file mode 100644
index 796c52cae..000000000
--- a/src/extension/script/README.txt
+++ /dev/null
@@ -1,41 +0,0 @@
-SWIG Scripting Notes
-====================
-by Ishmal
-
-The code in this directory is an initial start
-at providing application-level scripting to Inkscape
-via SWIG and interpreter embedding. Please do not
-modify these files until you have become well
-acquainted with SWIG and the various methods of
-embedding scripting languages in a C/C++ program.
-
-
-The classes defined in InkscapeBinding.h and
-implemented in InkscapeBinding.cpp are destined to
-be a thin shell for scripting Inkscape. Since
-Inkscape currently is not organized in a heirarchical
-tree, nor is it threadsafe, this binding tree will merely
-mimic such an arrangement.
-
-Note that this -NOT- the same as ECMAScript binding on an
-SVG page. That is another task, coupled with XPath.
-
-Currently, the way to update InkscapeBinding is to:
-
-1. Modify InkscapeBinding.h and InkscapeBinding.cpp
-2. Run 'make -f Makefile.tmp wraps'
-3. cd to the src or toplevel directory, and build
-4. when this works well, commit the files in this directory
-
-#### SWIG is available here:
-
-http://www.swig.org
-
-#### Information on embedding Python is here
-
-http://docs.python.org/ext/ext.html
-
-
-#### Information on embedding PERL is available here:
-
-http://perldoc.com/perl5.8.4/pod/perlembed.html