Merge lp:~lajjr-deactivatedaccount/inkscape/shebangs into lp:~inkscape.dev/inkscape/trunk

Proposed by Joker Wild
Status: Merged
Approved by: jazzynico
Approved revision: 9637
Merge reported by: jazzynico
Merged at revision: not available
Proposed branch: lp:~lajjr-deactivatedaccount/inkscape/shebangs
Merge into: lp:~inkscape.dev/inkscape/trunk
Diff against target: 508 lines (+58/-11)
50 files modified
share/extensions/Barcode/Base.py (+1/-0)
share/extensions/Barcode/Code128.py (+1/-0)
share/extensions/Barcode/Code39.py (+1/-0)
share/extensions/Barcode/Code39Ext.py (+1/-0)
share/extensions/Barcode/Code93.py (+1/-0)
share/extensions/Barcode/EAN13.py (+1/-0)
share/extensions/Barcode/EAN5.py (+1/-0)
share/extensions/Barcode/EAN8.py (+1/-0)
share/extensions/Barcode/RM4CC.py (+1/-0)
share/extensions/Barcode/UPCA.py (+1/-0)
share/extensions/Barcode/UPCE.py (+1/-0)
share/extensions/Barcode/__init__.py (+1/-1)
share/extensions/SpSVG.pm (+1/-1)
share/extensions/color_blackandwhite.py (+1/-0)
share/extensions/color_brighter.py (+1/-0)
share/extensions/color_custom.py (+2/-1)
share/extensions/color_darker.py (+1/-0)
share/extensions/color_desaturate.py (+2/-1)
share/extensions/color_grayscale.py (+2/-1)
share/extensions/color_lesshue.py (+1/-0)
share/extensions/color_lesslight.py (+1/-0)
share/extensions/color_lesssaturation.py (+1/-0)
share/extensions/color_morehue.py (+1/-0)
share/extensions/color_morelight.py (+1/-0)
share/extensions/color_moresaturation.py (+1/-0)
share/extensions/color_negative.py (+2/-1)
share/extensions/color_randomize.py (+1/-0)
share/extensions/color_removeblue.py (+2/-1)
share/extensions/color_removegreen.py (+2/-1)
share/extensions/color_removered.py (+2/-1)
share/extensions/color_replace.py (+1/-0)
share/extensions/color_rgbbarrel.py (+2/-1)
share/extensions/dxf_templates.py (+1/-0)
share/extensions/inkweb.js (+1/-0)
share/extensions/jessyInk.js (+1/-0)
share/extensions/jessyInk_core_mouseHandler_noclick.js (+1/-0)
share/extensions/jessyInk_core_mouseHandler_zoomControl.js (+1/-0)
share/extensions/render_alphabetsoup_config.py (+1/-0)
share/extensions/render_barcode.py (+1/-0)
share/extensions/run_command.py (+1/-0)
share/extensions/svg_and_media_zip_output.py (+1/-1)
share/extensions/svg_regex.py (+1/-0)
share/extensions/text_braille.py (+1/-0)
share/extensions/text_flipcase.py (+1/-0)
share/extensions/text_lowercase.py (+1/-0)
share/extensions/text_randomcase.py (+1/-0)
share/extensions/text_replace.py (+1/-0)
share/extensions/text_sentencecase.py (+1/-0)
share/extensions/text_titlecase.py (+1/-0)
share/extensions/text_uppercase.py (+1/-0)
To merge this branch: bzr merge lp:~lajjr-deactivatedaccount/inkscape/shebangs
Reviewer Review Type Date Requested Status
jazzynico (community) Approve
Review via email: mp+30858@code.launchpad.net

Commit message

Extensions. Shebangs branch merge.

Description of the change

Here are the shebangs for the files I tested for a few day to be sure. No errors so I created this branch I can change to 0.48 if you like to get them push ASAP.

To post a comment you must log in.
Revision history for this message
jazzynico (jazzynico) :
review: Approve
Revision history for this message
jazzynico (jazzynico) wrote :

I've applied all the changes except the javascript ones because these files are not expected to work as a standalone scripts and are called by Python extensions. Don't hesitate to tell me if you think I'm wrong.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'share/extensions/Barcode/Base.py'
2--- share/extensions/Barcode/Base.py 2008-03-29 10:21:03 +0000
3+++ share/extensions/Barcode/Base.py 2010-07-24 17:56:48 +0000
4@@ -1,3 +1,4 @@
5+#!/usr/bin/env python
6 '''
7 Copyright (C) 2007 Martin Owens
8
9
10=== modified file 'share/extensions/Barcode/Code128.py'
11--- share/extensions/Barcode/Code128.py 2010-02-28 22:40:23 +0000
12+++ share/extensions/Barcode/Code128.py 2010-07-24 17:56:48 +0000
13@@ -1,3 +1,4 @@
14+#!/usr/bin/env python
15 '''
16 Copyright (C) 2007 Martin Owens
17
18
19=== modified file 'share/extensions/Barcode/Code39.py'
20--- share/extensions/Barcode/Code39.py 2007-04-25 00:53:02 +0000
21+++ share/extensions/Barcode/Code39.py 2010-07-24 17:56:48 +0000
22@@ -1,3 +1,4 @@
23+#!/usr/bin/env python
24 '''
25 Copyright (C) 2007 Martin Owens
26
27
28=== modified file 'share/extensions/Barcode/Code39Ext.py'
29--- share/extensions/Barcode/Code39Ext.py 2007-04-25 00:53:02 +0000
30+++ share/extensions/Barcode/Code39Ext.py 2010-07-24 17:56:48 +0000
31@@ -1,3 +1,4 @@
32+#!/usr/bin/env python
33 '''
34 Copyright (C) 2007 Martin Owens
35
36
37=== modified file 'share/extensions/Barcode/Code93.py'
38--- share/extensions/Barcode/Code93.py 2010-04-27 17:09:54 +0000
39+++ share/extensions/Barcode/Code93.py 2010-07-24 17:56:48 +0000
40@@ -1,3 +1,4 @@
41+#!/usr/bin/env python
42 '''
43 Copyright (C) 2007 Martin Owens
44
45
46=== modified file 'share/extensions/Barcode/EAN13.py'
47--- share/extensions/Barcode/EAN13.py 2009-12-20 22:09:40 +0000
48+++ share/extensions/Barcode/EAN13.py 2010-07-24 17:56:48 +0000
49@@ -1,3 +1,4 @@
50+#!/usr/bin/env python
51 '''
52 Copyright (C) 2007 Martin Owens
53
54
55=== modified file 'share/extensions/Barcode/EAN5.py'
56--- share/extensions/Barcode/EAN5.py 2009-12-22 00:13:41 +0000
57+++ share/extensions/Barcode/EAN5.py 2010-07-24 17:56:48 +0000
58@@ -1,3 +1,4 @@
59+#!/usr/bin/env python
60 '''
61 Copyright (C) 2007 Martin Owens
62 Copyright (C) 2009 Aaron C Spike
63
64=== modified file 'share/extensions/Barcode/EAN8.py'
65--- share/extensions/Barcode/EAN8.py 2007-04-25 00:53:02 +0000
66+++ share/extensions/Barcode/EAN8.py 2010-07-24 17:56:48 +0000
67@@ -1,3 +1,4 @@
68+#!/usr/bin/env python
69 '''
70 Copyright (C) 2007 Martin Owens
71
72
73=== modified file 'share/extensions/Barcode/RM4CC.py'
74--- share/extensions/Barcode/RM4CC.py 2007-04-25 00:53:02 +0000
75+++ share/extensions/Barcode/RM4CC.py 2010-07-24 17:56:48 +0000
76@@ -1,3 +1,4 @@
77+#!/usr/bin/env python
78 '''
79 Copyright (C) 2007 Martin Owens
80
81
82=== modified file 'share/extensions/Barcode/UPCA.py'
83--- share/extensions/Barcode/UPCA.py 2009-12-20 22:09:40 +0000
84+++ share/extensions/Barcode/UPCA.py 2010-07-24 17:56:48 +0000
85@@ -1,3 +1,4 @@
86+#!/usr/bin/env python
87 '''
88 Copyright (C) 2007 Martin Owens
89
90
91=== modified file 'share/extensions/Barcode/UPCE.py'
92--- share/extensions/Barcode/UPCE.py 2009-12-20 22:09:40 +0000
93+++ share/extensions/Barcode/UPCE.py 2010-07-24 17:56:48 +0000
94@@ -1,3 +1,4 @@
95+#!/usr/bin/env python
96 '''
97 Copyright (C) 2007 Martin Owens
98
99
100=== modified file 'share/extensions/Barcode/__init__.py'
101--- share/extensions/Barcode/__init__.py 2009-12-21 23:48:17 +0000
102+++ share/extensions/Barcode/__init__.py 2010-07-24 17:56:48 +0000
103@@ -1,4 +1,4 @@
104-
105+#!/usr/bin/env python
106 '''
107 Barcodes SVG Extention
108
109
110=== modified file 'share/extensions/SpSVG.pm'
111--- share/extensions/SpSVG.pm 2006-01-16 02:36:01 +0000
112+++ share/extensions/SpSVG.pm 2010-07-24 17:56:48 +0000
113@@ -1,4 +1,4 @@
114-#!/usr/bin/perl -w
115+#!/usr/bin/env perl -w
116 #
117 # SpSVG
118 #
119
120=== modified file 'share/extensions/color_blackandwhite.py'
121--- share/extensions/color_blackandwhite.py 2010-02-14 09:46:42 +0000
122+++ share/extensions/color_blackandwhite.py 2010-07-24 17:56:48 +0000
123@@ -1,3 +1,4 @@
124+#!/usr/bin/env python
125 import coloreffect,sys
126
127 class C(coloreffect.ColorEffect):
128
129=== modified file 'share/extensions/color_brighter.py'
130--- share/extensions/color_brighter.py 2008-03-29 10:21:03 +0000
131+++ share/extensions/color_brighter.py 2010-07-24 17:56:48 +0000
132@@ -1,3 +1,4 @@
133+#!/usr/bin/env python
134 import coloreffect
135
136 class C(coloreffect.ColorEffect):
137
138=== modified file 'share/extensions/color_custom.py'
139--- share/extensions/color_custom.py 2008-03-29 10:21:03 +0000
140+++ share/extensions/color_custom.py 2010-07-24 17:56:48 +0000
141@@ -1,3 +1,4 @@
142+#!/usr/bin/env python
143 import coloreffect
144
145 class C(coloreffect.ColorEffect):
146@@ -22,4 +23,4 @@
147 return '%02x%02x%02x' % (int(round(r2*255)),int(round(g2*255)),int(round(b2*255)))
148
149 c = C()
150-c.affect()
151\ No newline at end of file
152+c.affect()
153
154=== modified file 'share/extensions/color_darker.py'
155--- share/extensions/color_darker.py 2008-03-29 10:21:03 +0000
156+++ share/extensions/color_darker.py 2010-07-24 17:56:48 +0000
157@@ -1,3 +1,4 @@
158+#!/usr/bin/env python
159 import coloreffect
160
161 class C(coloreffect.ColorEffect):
162
163=== modified file 'share/extensions/color_desaturate.py'
164--- share/extensions/color_desaturate.py 2008-03-29 10:21:03 +0000
165+++ share/extensions/color_desaturate.py 2010-07-24 17:56:48 +0000
166@@ -1,3 +1,4 @@
167+#!/usr/bin/env python
168 import coloreffect
169
170 class C(coloreffect.ColorEffect):
171@@ -7,4 +8,4 @@
172 return '%02x%02x%02x' % (ig,ig,ig)
173
174 c = C()
175-c.affect()
176\ No newline at end of file
177+c.affect()
178
179=== modified file 'share/extensions/color_grayscale.py'
180--- share/extensions/color_grayscale.py 2008-03-29 10:21:03 +0000
181+++ share/extensions/color_grayscale.py 2010-07-24 17:56:48 +0000
182@@ -1,3 +1,4 @@
183+#!/usr/bin/env python
184 import coloreffect
185
186 class C(coloreffect.ColorEffect):
187@@ -11,4 +12,4 @@
188 return '%02x%02x%02x' % (ig,ig,ig)
189
190 c = C()
191-c.affect()
192\ No newline at end of file
193+c.affect()
194
195=== modified file 'share/extensions/color_lesshue.py'
196--- share/extensions/color_lesshue.py 2008-03-29 10:21:03 +0000
197+++ share/extensions/color_lesshue.py 2010-07-24 17:56:48 +0000
198@@ -1,3 +1,4 @@
199+#!/usr/bin/env python
200 import coloreffect, inkex
201
202 class C(coloreffect.ColorEffect):
203
204=== modified file 'share/extensions/color_lesslight.py'
205--- share/extensions/color_lesslight.py 2008-03-29 10:21:03 +0000
206+++ share/extensions/color_lesslight.py 2010-07-24 17:56:48 +0000
207@@ -1,3 +1,4 @@
208+#!/usr/bin/env python
209 import coloreffect, inkex
210
211 class C(coloreffect.ColorEffect):
212
213=== modified file 'share/extensions/color_lesssaturation.py'
214--- share/extensions/color_lesssaturation.py 2008-03-29 10:21:03 +0000
215+++ share/extensions/color_lesssaturation.py 2010-07-24 17:56:48 +0000
216@@ -1,3 +1,4 @@
217+#!/usr/bin/env python
218 import coloreffect, inkex
219
220 class C(coloreffect.ColorEffect):
221
222=== modified file 'share/extensions/color_morehue.py'
223--- share/extensions/color_morehue.py 2008-03-29 10:21:03 +0000
224+++ share/extensions/color_morehue.py 2010-07-24 17:56:48 +0000
225@@ -1,3 +1,4 @@
226+#!/usr/bin/env python
227 import coloreffect, inkex
228
229 class C(coloreffect.ColorEffect):
230
231=== modified file 'share/extensions/color_morelight.py'
232--- share/extensions/color_morelight.py 2008-03-29 10:21:03 +0000
233+++ share/extensions/color_morelight.py 2010-07-24 17:56:48 +0000
234@@ -1,3 +1,4 @@
235+#!/usr/bin/env python
236 import coloreffect, inkex
237
238 class C(coloreffect.ColorEffect):
239
240=== modified file 'share/extensions/color_moresaturation.py'
241--- share/extensions/color_moresaturation.py 2008-03-29 10:21:03 +0000
242+++ share/extensions/color_moresaturation.py 2010-07-24 17:56:48 +0000
243@@ -1,3 +1,4 @@
244+#!/usr/bin/env python
245 import coloreffect, inkex
246
247 class C(coloreffect.ColorEffect):
248
249=== modified file 'share/extensions/color_negative.py'
250--- share/extensions/color_negative.py 2008-03-29 10:21:03 +0000
251+++ share/extensions/color_negative.py 2010-07-24 17:56:48 +0000
252@@ -1,3 +1,4 @@
253+#!/usr/bin/env python
254 import coloreffect
255
256 class C(coloreffect.ColorEffect):
257@@ -5,4 +6,4 @@
258 return '%02x%02x%02x' % (255-r,255-g,255-b)
259
260 c = C()
261-c.affect()
262\ No newline at end of file
263+c.affect()
264
265=== modified file 'share/extensions/color_randomize.py'
266--- share/extensions/color_randomize.py 2008-05-23 06:31:40 +0000
267+++ share/extensions/color_randomize.py 2010-07-24 17:56:48 +0000
268@@ -1,3 +1,4 @@
269+#!/usr/bin/env python
270 import coloreffect,random,inkex
271
272 class C(coloreffect.ColorEffect):
273
274=== modified file 'share/extensions/color_removeblue.py'
275--- share/extensions/color_removeblue.py 2008-03-29 10:21:03 +0000
276+++ share/extensions/color_removeblue.py 2010-07-24 17:56:48 +0000
277@@ -1,3 +1,4 @@
278+#!/usr/bin/env python
279 import coloreffect
280
281 class C(coloreffect.ColorEffect):
282@@ -5,4 +6,4 @@
283 return '%02x%02x%02x' % (r,g,0)
284
285 c = C()
286-c.affect()
287\ No newline at end of file
288+c.affect()
289
290=== modified file 'share/extensions/color_removegreen.py'
291--- share/extensions/color_removegreen.py 2008-03-29 10:21:03 +0000
292+++ share/extensions/color_removegreen.py 2010-07-24 17:56:48 +0000
293@@ -1,3 +1,4 @@
294+#!/usr/bin/env python
295 import coloreffect
296
297 class C(coloreffect.ColorEffect):
298@@ -5,4 +6,4 @@
299 return '%02x%02x%02x' % (r,0,b)
300
301 c = C()
302-c.affect()
303\ No newline at end of file
304+c.affect()
305
306=== modified file 'share/extensions/color_removered.py'
307--- share/extensions/color_removered.py 2008-03-29 10:21:03 +0000
308+++ share/extensions/color_removered.py 2010-07-24 17:56:48 +0000
309@@ -1,3 +1,4 @@
310+#!/usr/bin/env python
311 import coloreffect
312
313 class C(coloreffect.ColorEffect):
314@@ -5,4 +6,4 @@
315 return '%02x%02x%02x' % (0,g,b)
316
317 c = C()
318-c.affect()
319\ No newline at end of file
320+c.affect()
321
322=== modified file 'share/extensions/color_replace.py'
323--- share/extensions/color_replace.py 2008-04-15 16:17:21 +0000
324+++ share/extensions/color_replace.py 2010-07-24 17:56:48 +0000
325@@ -1,3 +1,4 @@
326+#!/usr/bin/env python
327 import coloreffect
328
329 import inkex
330
331=== modified file 'share/extensions/color_rgbbarrel.py'
332--- share/extensions/color_rgbbarrel.py 2008-03-29 10:21:03 +0000
333+++ share/extensions/color_rgbbarrel.py 2010-07-24 17:56:48 +0000
334@@ -1,3 +1,4 @@
335+#!/usr/bin/env python
336 import coloreffect
337
338 class C(coloreffect.ColorEffect):
339@@ -5,4 +6,4 @@
340 return '%02x%02x%02x' % (b,r,g)
341
342 c = C()
343-c.affect()
344\ No newline at end of file
345+c.affect()
346
347=== modified file 'share/extensions/dxf_templates.py'
348--- share/extensions/dxf_templates.py 2008-12-29 23:08:47 +0000
349+++ share/extensions/dxf_templates.py 2010-07-24 17:56:48 +0000
350@@ -1,3 +1,4 @@
351+#!/usr/bin/env python
352 r14_header = ''' 0
353 SECTION
354 2
355
356=== modified file 'share/extensions/inkweb.js'
357--- share/extensions/inkweb.js 2009-04-28 22:44:25 +0000
358+++ share/extensions/inkweb.js 2010-07-24 17:56:48 +0000
359@@ -1,3 +1,4 @@
360+#!/usr/bin/env js
361 /*
362 ** InkWeb - Inkscape's Javscript features for the open vector web
363 **
364
365=== modified file 'share/extensions/jessyInk.js'
366--- share/extensions/jessyInk.js 2010-06-04 22:18:31 +0000
367+++ share/extensions/jessyInk.js 2010-07-24 17:56:48 +0000
368@@ -1,3 +1,4 @@
369+#!usr/bin/env js
370 // Copyright 2008, 2009 Hannes Hochreiner
371 // This program is free software: you can redistribute it and/or modify
372 // it under the terms of the GNU General Public License as published by
373
374=== modified file 'share/extensions/jessyInk_core_mouseHandler_noclick.js'
375--- share/extensions/jessyInk_core_mouseHandler_noclick.js 2010-06-04 22:18:31 +0000
376+++ share/extensions/jessyInk_core_mouseHandler_noclick.js 2010-07-24 17:56:48 +0000
377@@ -1,3 +1,4 @@
378+#!/usr/bin/env js
379 // Copyright 2008, 2009 Hannes Hochreiner
380 // This program is free software: you can redistribute it and/or modify
381 // it under the terms of the GNU General Public License as published by
382
383=== modified file 'share/extensions/jessyInk_core_mouseHandler_zoomControl.js'
384--- share/extensions/jessyInk_core_mouseHandler_zoomControl.js 2010-06-04 22:18:31 +0000
385+++ share/extensions/jessyInk_core_mouseHandler_zoomControl.js 2010-07-24 17:56:48 +0000
386@@ -1,3 +1,4 @@
387+#!/usr/bin/env js
388 // Copyright 2008, 2009 Hannes Hochreiner
389 // This program is free software: you can redistribute it and/or modify
390 // it under the terms of the GNU General Public License as published by
391
392=== modified file 'share/extensions/render_alphabetsoup_config.py'
393--- share/extensions/render_alphabetsoup_config.py 2008-05-23 06:31:40 +0000
394+++ share/extensions/render_alphabetsoup_config.py 2010-07-24 17:56:48 +0000
395@@ -1,3 +1,4 @@
396+#!/usr/bin/env python
397 # Syntax format: (raise your hand if you know lisp :-)
398 #
399 # 'state0': ("file.svg", ( ( ('state1', dx, dy, T-B, L|R),),
400
401=== modified file 'share/extensions/render_barcode.py'
402--- share/extensions/render_barcode.py 2009-01-06 16:13:13 +0000
403+++ share/extensions/render_barcode.py 2010-07-24 17:56:48 +0000
404@@ -1,3 +1,4 @@
405+#!/usr/bin/env python
406 '''
407 Copyright (C) 2007 Martin Owens
408
409
410=== modified file 'share/extensions/run_command.py'
411--- share/extensions/run_command.py 2010-02-04 00:32:27 +0000
412+++ share/extensions/run_command.py 2010-07-24 17:56:48 +0000
413@@ -1,3 +1,4 @@
414+#!/usr/bin/env python
415 import os
416 import sys
417 import tempfile
418
419=== modified file 'share/extensions/svg_and_media_zip_output.py'
420--- share/extensions/svg_and_media_zip_output.py 2010-03-03 13:04:57 +0000
421+++ share/extensions/svg_and_media_zip_output.py 2010-07-24 17:56:48 +0000
422@@ -1,4 +1,4 @@
423-#! /usr/bin/env python
424+#!/usr/bin/env python
425 """
426 svg_and_media_zip_output.py
427 An extention which collects all images to the documents directory and
428
429=== modified file 'share/extensions/svg_regex.py'
430--- share/extensions/svg_regex.py 2009-08-04 20:15:08 +0000
431+++ share/extensions/svg_regex.py 2010-07-24 17:56:48 +0000
432@@ -1,3 +1,4 @@
433+#!/usr/bin/env python
434 # This software is OSI Certified Open Source Software.
435 # OSI Certified is a certification mark of the Open Source Initiative.
436 #
437
438=== modified file 'share/extensions/text_braille.py'
439--- share/extensions/text_braille.py 2008-03-29 10:21:03 +0000
440+++ share/extensions/text_braille.py 2010-07-24 17:56:48 +0000
441@@ -1,3 +1,4 @@
442+#!/usr/bin/env python
443 #encoding: utf-8
444 import chardataeffect, inkex, string
445
446
447=== modified file 'share/extensions/text_flipcase.py'
448--- share/extensions/text_flipcase.py 2008-03-29 10:21:03 +0000
449+++ share/extensions/text_flipcase.py 2010-07-24 17:56:48 +0000
450@@ -1,3 +1,4 @@
451+#!/usr/bin/env python
452 import chardataeffect, inkex, string
453
454 class C(chardataeffect.CharDataEffect):
455
456=== modified file 'share/extensions/text_lowercase.py'
457--- share/extensions/text_lowercase.py 2008-03-29 10:21:03 +0000
458+++ share/extensions/text_lowercase.py 2010-07-24 17:56:48 +0000
459@@ -1,3 +1,4 @@
460+#!/usr/bin/env python
461 import chardataeffect, inkex, string
462
463 class C(chardataeffect.CharDataEffect):
464
465=== modified file 'share/extensions/text_randomcase.py'
466--- share/extensions/text_randomcase.py 2008-03-29 10:21:03 +0000
467+++ share/extensions/text_randomcase.py 2010-07-24 17:56:48 +0000
468@@ -1,3 +1,4 @@
469+#!/usr/bin/env python
470 import chardataeffect, inkex, string
471
472 import random
473
474=== modified file 'share/extensions/text_replace.py'
475--- share/extensions/text_replace.py 2008-05-23 06:15:31 +0000
476+++ share/extensions/text_replace.py 2010-07-24 17:56:48 +0000
477@@ -1,3 +1,4 @@
478+#!/usr/bin/env python
479 import chardataeffect, inkex, string
480
481 class C(chardataeffect.CharDataEffect):
482
483=== modified file 'share/extensions/text_sentencecase.py'
484--- share/extensions/text_sentencecase.py 2008-03-29 10:21:03 +0000
485+++ share/extensions/text_sentencecase.py 2010-07-24 17:56:48 +0000
486@@ -1,3 +1,4 @@
487+#!/usr/bin/env python
488 import chardataeffect, inkex, string
489
490 class C(chardataeffect.CharDataEffect):
491
492=== modified file 'share/extensions/text_titlecase.py'
493--- share/extensions/text_titlecase.py 2008-03-29 10:21:03 +0000
494+++ share/extensions/text_titlecase.py 2010-07-24 17:56:48 +0000
495@@ -1,3 +1,4 @@
496+#!/usr/bin/env python
497 import chardataeffect, inkex, string
498
499 class C(chardataeffect.CharDataEffect):
500
501=== modified file 'share/extensions/text_uppercase.py'
502--- share/extensions/text_uppercase.py 2008-03-29 10:21:03 +0000
503+++ share/extensions/text_uppercase.py 2010-07-24 17:56:48 +0000
504@@ -1,3 +1,4 @@
505+#!/usr/bin/env python
506 import chardataeffect, inkex, string
507
508 class C(chardataeffect.CharDataEffect):