Hi guys, 

            Been battling with trying to create an output extension today, and am having real trouble with the script I'm trying to call not having parameters that I've got in the command bit of the inx being passed to it. my inx has the following

<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
  <_name>gmail file storage</_name>
  <id>org.ekips.output.gml</id>
  <dependency type="extension">org.inkscape.output.svg.inkscape</dependency>
  <dependency type="executable" location="extensions">gecp_ink.py</dependency>
  <output>
  <extension>.svg</extension>
  <mimetype>image/svg</mimetype>
  <_filetypename>Write svg to a gmail account(*.svg)</_filetypename>
  <_filetypetooltip>Export to a gmail account</_filetypetooltip>
  <dataloss>false</dataloss>
  </output>
  <script>
  <command reldir="extensions" interpreter="python">gecp_ink.py username:Inkscape_Files password</command>
  </script>
</inkscape-extension>

The script expects the username as arg 1, password as 2 and the filename as 3.

all its getting is the temp filename.  Anyone got any ideas why? 

Also any suggestions for asking for a user/pass combo in a secure way?

Cheers

John