summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2009-08-11 08:45:43 +0000
committertavmjong <tavmjong@users.sourceforge.net>2009-08-11 08:45:43 +0000
commit123a610ac09255de8fcf0a32fe1391ea4bf50eee (patch)
tree42c8bf884e2cb368550add671359a55ec9a3a1c4
parentpatch 168780 (diff)
downloadinkscape-123a610ac09255de8fcf0a32fe1391ea4bf50eee.tar.gz
inkscape-123a610ac09255de8fcf0a32fe1391ea4bf50eee.zip
Removed support for AI (EPS based) export and EPSI export.
AI export only supported (poorly) Adobe Illustrator 8.0 (released in 1998); Adobe Illustrator 10 (2001) and later support direct SVG import. EPSI export has limited use now that many programs such as OpenOffice can directly use the vector data in EPS files. If needed, the program ps2epsi can be used to make EPSI files from EPS files. (bzr r8465)
-rw-r--r--share/extensions/Makefile.am3
-rw-r--r--share/extensions/ai_output.inx17
-rw-r--r--share/extensions/epsi_output.inx18
-rwxr-xr-xshare/extensions/ps2epsi.sh9
4 files changed, 0 insertions, 47 deletions
diff --git a/share/extensions/Makefile.am b/share/extensions/Makefile.am
index aeb58fea4..d95304fc5 100644
--- a/share/extensions/Makefile.am
+++ b/share/extensions/Makefile.am
@@ -91,7 +91,6 @@ extensions = \
polyhedron_3d.py \
printing-marks.py \
ps2dxf.sh \
- ps2epsi.sh \
ps2pdf-ext.py \
pturtle.py \
radiusrand.py \
@@ -143,7 +142,6 @@ otherstuff = \
modules = \
addnodes.inx \
ai_input.inx \
- ai_output.inx \
aisvg.inx \
ccx_input.inx \
cdr_input.inx\
@@ -179,7 +177,6 @@ modules = \
edge3d.inx \
embedimage.inx \
eps_input.inx \
- epsi_output.inx \
eqtexsvg.inx \
export_gimp_palette.inx \
extractimage.inx \
diff --git a/share/extensions/ai_output.inx b/share/extensions/ai_output.inx
deleted file mode 100644
index a94dd76a0..000000000
--- a/share/extensions/ai_output.inx
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
- <_name>AI 8.0 Output</_name>
- <id>org.inkscape.output.ai</id>
- <dependency type="executable" location="path">gs</dependency>
- <dependency type="extension">org.inkscape.output.ps</dependency>
- <output>
- <extension>.ai</extension>
- <mimetype>image/x-adobe-illustrator</mimetype>
- <_filetypename>Adobe Illustrator 8.0 (*.ai)</_filetypename>
- <_filetypetooltip>Write Adobe Illustrator 8.0 (Postscript-based)</_filetypetooltip>
- </output>
- <script>
- <command reldir="path">gs -q -dNODISPLAY -dSAFER ps2ai.ps</command>
- <helper_extension>org.inkscape.output.ps</helper_extension>
- </script>
-</inkscape-extension>
diff --git a/share/extensions/epsi_output.inx b/share/extensions/epsi_output.inx
deleted file mode 100644
index 80f19038e..000000000
--- a/share/extensions/epsi_output.inx
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
- <_name>EPSI Output</_name>
- <id>org.inkscape.output.epsi</id>
- <dependency type="extension">org.inkscape.output.ps</dependency>
- <dependency type="executable" location="extensions">ps2epsi.sh</dependency>
- <dependency type="executable">ps2epsi</dependency>
- <output>
- <extension>.epsi</extension>
- <mimetype>image/x-encapsulated-postscript</mimetype>
- <_filetypename>Encapsulated Postscript Interchange (*.epsi)</_filetypename>
- <_filetypetooltip>Encapsulated Postscript with a thumbnail</_filetypetooltip>
- </output>
- <script>
- <command reldir="extensions">ps2epsi.sh</command>
- <helper_extension>org.inkscape.output.ps</helper_extension>
- </script>
-</inkscape-extension>
diff --git a/share/extensions/ps2epsi.sh b/share/extensions/ps2epsi.sh
deleted file mode 100755
index 3584bcde8..000000000
--- a/share/extensions/ps2epsi.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#! /bin/sh
-
-TMPDIR="${TMPDIR-/tmp}"
-TEMPFILENAME=`mktemp 2>/dev/null || echo "$TMPDIR/tmp-ps-$$.epsi"`
-ps2epsi "$1" "${TEMPFILENAME}" > /dev/null 2>&1
-rc=0
-cat < "${TEMPFILENAME}" || rc=1
-rm -f "${TEMPFILENAME}"
-exit $rc