From: tavmjong Date: Tue, 11 Aug 2009 08:45:43 +0000 (+0000) Subject: Removed support for AI (EPS based) export and EPSI export. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=94e4e8c13d52dce4d7375ea4431ffcbf1ef83329;p=inkscape.git 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. --- 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 @@ - - - <_name>AI 8.0 Output - org.inkscape.output.ai - gs - org.inkscape.output.ps - - .ai - image/x-adobe-illustrator - <_filetypename>Adobe Illustrator 8.0 (*.ai) - <_filetypetooltip>Write Adobe Illustrator 8.0 (Postscript-based) - - - 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 @@ - - - <_name>EPSI Output - org.inkscape.output.epsi - org.inkscape.output.ps - ps2epsi.sh - ps2epsi - - .epsi - image/x-encapsulated-postscript - <_filetypename>Encapsulated Postscript Interchange (*.epsi) - <_filetypetooltip>Encapsulated Postscript with a thumbnail - - - 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