diff options
| author | Alexandre Prokoudine <alexandre.prokoudine@gmail.com> | 2009-06-10 16:20:28 +0000 |
|---|---|---|
| committer | prokoudine <prokoudine@users.sourceforge.net> | 2009-06-10 16:20:28 +0000 |
| commit | 5efe7291dc5ecac84c72a9bca6d632137ffc354f (patch) | |
| tree | fe382d03f62ce751cf2984f53e4e4ede2210b7c9 | |
| parent | fix stupid bug in font size setting (diff) | |
| download | inkscape-5efe7291dc5ecac84c72a9bca6d632137ffc354f.tar.gz inkscape-5efe7291dc5ecac84c72a9bca6d632137ffc354f.zip | |
Added PLT import/export. Requires UniConvertor 1.1.4.
(bzr r8037)
| -rw-r--r-- | share/extensions/plt_input.inx | 16 | ||||
| -rw-r--r-- | share/extensions/plt_output.inx | 15 |
2 files changed, 31 insertions, 0 deletions
diff --git a/share/extensions/plt_input.inx b/share/extensions/plt_input.inx new file mode 100644 index 000000000..aa21483bd --- /dev/null +++ b/share/extensions/plt_input.inx @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> + <_name>AutoCAD Plot Input</_name> + <id>org.inkscape.input.plt</id> + <dependency type="executable" location="extensions">uniconv-ext.py</dependency> + <input> + <extension>.plt</extension> + <mimetype>image/x-plt</mimetype> + <_filetypename>AutoCAD Plot drawing files (*.plt)</_filetypename> + <_filetypetooltip>Open files saved for plotters</_filetypetooltip> + <output_extension>org.inkscape.output.plt</output_extension> + </input> + <script> + <command reldir="extensions" interpreter="python">uniconv-ext.py</command> + </script> +</inkscape-extension> diff --git a/share/extensions/plt_output.inx b/share/extensions/plt_output.inx new file mode 100644 index 000000000..d079a2ce7 --- /dev/null +++ b/share/extensions/plt_output.inx @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> + <_name>AutoCAD Plot Output</_name> + <id>org.inkscape.output.plt</id> + <dependency type="executable" location="extensions">uniconv-ext.py</dependency> + <output> + <extension>.plt</extension> + <mimetype>image/x-plt</mimetype> + <_filetypename>AutoCAD Plot drawing files (*.plt)</_filetypename> + <_filetypetooltip>Save a file for plotters</_filetypetooltip> + </output> + <script> + <command reldir="extensions" interpreter="python">uniconv-ext.py</command> + </script> +</inkscape-extension> |
