From: miklosh Date: Wed, 1 Aug 2007 11:00:23 +0000 (+0000) Subject: Redirected opening of AI files to the poppler-based PDF import extension X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=64b34520d2bd26c714169da698ee89f23261f7f9;p=inkscape.git Redirected opening of AI files to the poppler-based PDF import extension --- diff --git a/src/extension/internal/pdfinput/pdf-input.cpp b/src/extension/internal/pdfinput/pdf-input.cpp index 4a9377b9a..47057cccf 100644 --- a/src/extension/internal/pdfinput/pdf-input.cpp +++ b/src/extension/internal/pdfinput/pdf-input.cpp @@ -104,6 +104,7 @@ void PdfInput::init(void) { Inkscape::Extension::Extension * ext; + /* PDF in */ ext = Inkscape::Extension::build_from_mem( "\n" "PDF Input\n" @@ -111,8 +112,21 @@ PdfInput::init(void) { "\n" ".pdf\n" "application/pdf\n" - "Adobe PDF (*.pdf) [native]\n" - "PDF Document\n" + "Adobe PDF (*.pdf) [via poppler]\n" + "Adobe Portable Document Format\n" + "\n" + "", new PdfInput()); + + /* AI in */ + ext = Inkscape::Extension::build_from_mem( + "\n" + "AI Input\n" + "org.inkscape.input.ai\n" + "\n" + ".ai\n" + "image/x-adobe-illustrator\n" + "Adobe Illustrator (*.ai) [PDF-based]\n" + "Open files saved with recent versions of Adobe Illustrator\n" "\n" "", new PdfInput()); } // init