Code

missed corretions on the interp-att-g's first version
authoraurium <aurium@users.sourceforge.net>
Mon, 23 Mar 2009 22:42:50 +0000 (22:42 +0000)
committeraurium <aurium@users.sourceforge.net>
Mon, 23 Mar 2009 22:42:50 +0000 (22:42 +0000)
share/extensions/interp-att-g.inx
share/extensions/interp-att-g.py

index 5ed2d1bc0d7b9f801a628b46f768aa3e4b93a1a8..6dc50afbc04a5c8ca0c1ce4ac4cacd66bbf33c7a 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
   <_name>Interpolate Attribute in a group</_name>
-  <id>org.ekips.filter.interp-att-g</id>
+  <id>org.inkscape.filter.interp-att-g</id>
   <dependency type="executable" location="extensions">interp-att-g.py</dependency>
   <dependency type="executable" location="extensions">inkex.py</dependency>
   <_param name="intro" type="description">This effect applays a value for any interpolable attribute for all elements inside the selected group or for all elements in a multiple selection</_param>
@@ -27,7 +27,7 @@
     <_item value="style">Style</_item>
     <_item value="transform">Transformation</_item>
   </param>
-  <_param name="val-info" type="description">••••••••••••••••••••••••••••••••••••••••••••••••</_param>
+  <_param name="sep" type="description">••••••••••••••••••••••••••••••••••••••••••••••••</_param>
   <param name="start-val" type="string" _gui-text="Start Value"></param>
   <param name="end-val" type="string" _gui-text="End Value"></param>
   <param name="unit" type="enum" _gui-text="Unit">
@@ -48,4 +48,4 @@
   <script>
     <command reldir="extensions" interpreter="python">interp-att-g.py</command>
   </script>
-</inkscape-extension>
+</inkscape-extension>
\ No newline at end of file
index c8794f9ad690cde8daa8ce245d8ed39f49ed83ba..dc1c36379b34465f350f74df51e94fd70fe66a45 100755 (executable)
@@ -1,6 +1,6 @@
-#!/usr/bin/env python 
+#!/usr/bin/env python
 '''
-Copyright (C) 2005 Aaron Spike, aaron@ekips.org
+Copyright (C) 2005 Aurelio A. Heckert, aurium (a) gmail dot com
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -195,5 +195,3 @@ class InterpAttG(inkex.Effect):
 if __name__ == '__main__':
     e = InterpAttG()
     e.affect()
-
-# vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 encoding=utf-8 textwidth=99