1 diff -rcB geany-zc-orig/configure.ac geany-zencoding/configure.ac
2 *** geany-zc-orig/configure.ac 2011-11-14 20:59:28.746554254 +0545
3 --- geany-zencoding/configure.ac 2011-11-14 20:56:50.613230459 +0545
8 # Check for Python to pre-compile python sources
9 ! AC_PATH_PROG([PYTHON], [python], [no])
11 if [[ x"$PYTHON" = "xno" ]]; then
12 AC_MSG_ERROR([Python not found, is it installed?])
16 # Check for Python to pre-compile python sources
17 ! AC_PATH_PROG([PYTHON], [python2], [no])
19 if [[ x"$PYTHON" = "xno" ]]; then
20 AC_MSG_ERROR([Python not found, is it installed?])
21 diff -rcB geany-zc-orig/zencoding/actions/basic.py geany-zencoding/zencoding/actions/basic.py
22 *** geany-zc-orig/zencoding/actions/basic.py 2011-11-14 20:59:28.749887587 +0545
23 --- geany-zencoding/zencoding/actions/basic.py 2011-11-14 20:58:38.286557305 +0545
26 ! #!/usr/bin/env python
27 # -*- coding: utf-8 -*-
31 ! #!/usr/bin/env python2
32 # -*- coding: utf-8 -*-
35 diff -rcB geany-zc-orig/zencoding/actions/__init__.py geany-zencoding/zencoding/actions/__init__.py
36 *** geany-zc-orig/zencoding/actions/__init__.py 2011-11-14 20:59:28.746554254 +0545
37 --- geany-zencoding/zencoding/actions/__init__.py 2011-11-14 20:58:38.166557314 +0545
40 ! #!/usr/bin/env python
41 # -*- coding: utf-8 -*-
45 ! #!/usr/bin/env python2
46 # -*- coding: utf-8 -*-
52 __import__(__name__, globals(), locals(), __sub_modules)
55 \ No newline at end of file
58 __import__(__name__, globals(), locals(), __sub_modules)
61 diff -rcB geany-zc-orig/zencoding/actions/token.py geany-zencoding/zencoding/actions/token.py
62 *** geany-zc-orig/zencoding/actions/token.py 2011-11-14 20:59:28.749887587 +0545
63 --- geany-zencoding/zencoding/actions/token.py 2011-11-14 20:58:38.039890653 +0545
66 ! #!/usr/bin/env python
67 # -*- coding: utf-8 -*-
71 ! #!/usr/bin/env python2
72 # -*- coding: utf-8 -*-
75 diff -rcB geany-zc-orig/zencoding/filters/comment.py geany-zencoding/zencoding/filters/comment.py
76 *** geany-zc-orig/zencoding/filters/comment.py 2011-11-14 20:59:28.749887587 +0545
77 --- geany-zencoding/zencoding/filters/comment.py 2011-11-14 20:58:38.999890624 +0545
80 ! #!/usr/bin/env python
81 # -*- coding: utf-8 -*-
85 ! #!/usr/bin/env python2
86 # -*- coding: utf-8 -*-
92 process(item, profile)
95 \ No newline at end of file
98 process(item, profile)
101 diff -rcB geany-zc-orig/zencoding/filters/css.py geany-zencoding/zencoding/filters/css.py
102 *** geany-zc-orig/zencoding/filters/css.py 2011-11-14 20:59:28.749887587 +0545
103 --- geany-zencoding/zencoding/filters/css.py 2011-11-14 20:58:38.886557271 +0545
106 ! #!/usr/bin/env python
107 # -*- coding: utf-8 -*-
109 Process CSS properties: replaces snippets, augumented with ! char, with
111 ! #!/usr/bin/env python2
112 # -*- coding: utf-8 -*-
114 Process CSS properties: replaces snippets, augumented with ! char, with
118 process(item, profile)
121 \ No newline at end of file
124 process(item, profile)
127 diff -rcB geany-zc-orig/zencoding/filters/escape.py geany-zencoding/zencoding/filters/escape.py
128 *** geany-zc-orig/zencoding/filters/escape.py 2011-11-14 20:59:28.749887587 +0545
129 --- geany-zencoding/zencoding/filters/escape.py 2011-11-14 20:58:38.586557288 +0545
132 ! #!/usr/bin/env python
133 # -*- coding: utf-8 -*-
137 ! #!/usr/bin/env python2
138 # -*- coding: utf-8 -*-
147 \ No newline at end of file
153 diff -rcB geany-zc-orig/zencoding/filters/format-css.py geany-zencoding/zencoding/filters/format-css.py
154 *** geany-zc-orig/zencoding/filters/format-css.py 2011-11-14 20:59:28.749887587 +0545
155 --- geany-zencoding/zencoding/filters/format-css.py 2011-11-14 20:58:39.126557254 +0545
158 ! #!/usr/bin/env python
159 # -*- coding: utf-8 -*-
163 ! #!/usr/bin/env python2
164 # -*- coding: utf-8 -*-
170 process(item, profile)
173 \ No newline at end of file
176 process(item, profile)
179 diff -rcB geany-zc-orig/zencoding/filters/format.py geany-zencoding/zencoding/filters/format.py
180 *** geany-zc-orig/zencoding/filters/format.py 2011-11-14 20:59:28.749887587 +0545
181 --- geany-zencoding/zencoding/filters/format.py 2011-11-14 20:58:39.489890569 +0545
184 ! #!/usr/bin/env python
185 # -*- coding: utf-8 -*-
189 ! #!/usr/bin/env python2
190 # -*- coding: utf-8 -*-
196 process(item, profile, level + 1)
199 \ No newline at end of file
202 process(item, profile, level + 1)
205 diff -rcB geany-zc-orig/zencoding/filters/haml.py geany-zencoding/zencoding/filters/haml.py
206 *** geany-zc-orig/zencoding/filters/haml.py 2011-11-14 20:59:28.749887587 +0545
207 --- geany-zencoding/zencoding/filters/haml.py 2011-11-14 20:58:39.376557242 +0545
210 ! #!/usr/bin/env python
211 # -*- coding: utf-8 -*-
215 ! #!/usr/bin/env python2
216 # -*- coding: utf-8 -*-
222 process(item, profile, level + 1)
225 \ No newline at end of file
228 process(item, profile, level + 1)
231 diff -rcB geany-zc-orig/zencoding/filters/html.py geany-zencoding/zencoding/filters/html.py
232 *** geany-zc-orig/zencoding/filters/html.py 2011-11-14 20:59:28.749887587 +0545
233 --- geany-zencoding/zencoding/filters/html.py 2011-11-14 20:58:38.389890632 +0545
236 ! #!/usr/bin/env python
237 # -*- coding: utf-8 -*-
241 ! #!/usr/bin/env python2
242 # -*- coding: utf-8 -*-
245 diff -rcB geany-zc-orig/zencoding/filters/__init__.py geany-zencoding/zencoding/filters/__init__.py
246 *** geany-zc-orig/zencoding/filters/__init__.py 2011-11-14 20:59:28.749887587 +0545
247 --- geany-zencoding/zencoding/filters/__init__.py 2011-11-14 20:58:38.683223948 +0545
250 ! #!/usr/bin/env python
251 # -*- coding: utf-8 -*-
255 ! #!/usr/bin/env python2
256 # -*- coding: utf-8 -*-
262 __import__(__name__, globals(), locals(), __sub_modules)
265 \ No newline at end of file
268 __import__(__name__, globals(), locals(), __sub_modules)
271 diff -rcB geany-zc-orig/zencoding/filters/single-line.py geany-zencoding/zencoding/filters/single-line.py
272 *** geany-zc-orig/zencoding/filters/single-line.py 2011-11-14 20:59:28.749887587 +0545
273 --- geany-zencoding/zencoding/filters/single-line.py 2011-11-14 20:58:38.786557275 +0545
276 ! #!/usr/bin/env python
277 # -*- coding: utf-8 -*-
279 Output abbreviation on a single line (i.e. no line breaks)
281 ! #!/usr/bin/env python2
282 # -*- coding: utf-8 -*-
284 Output abbreviation on a single line (i.e. no line breaks)
288 process(item, profile)
291 \ No newline at end of file
294 process(item, profile)
297 diff -rcB geany-zc-orig/zencoding/filters/trim.py geany-zencoding/zencoding/filters/trim.py
298 *** geany-zc-orig/zencoding/filters/trim.py 2011-11-14 20:59:28.749887587 +0545
299 --- geany-zencoding/zencoding/filters/trim.py 2011-11-14 20:58:39.249890589 +0545
302 ! #!/usr/bin/env python
303 # -*- coding: utf-8 -*-
305 Trim filter: removes characters at the beginning of the text
307 ! #!/usr/bin/env python2
308 # -*- coding: utf-8 -*-
310 Trim filter: removes characters at the beginning of the text
314 process(item, profile)
317 \ No newline at end of file
320 process(item, profile)
323 diff -rcB geany-zc-orig/zencoding/filters/xsl.py geany-zencoding/zencoding/filters/xsl.py
324 *** geany-zc-orig/zencoding/filters/xsl.py 2011-11-14 20:59:28.749887587 +0545
325 --- geany-zencoding/zencoding/filters/xsl.py 2011-11-14 20:58:38.489890626 +0545
328 ! #!/usr/bin/env python
329 # -*- coding: utf-8 -*-
333 ! #!/usr/bin/env python2
334 # -*- coding: utf-8 -*-
339 if item.type == 'tag' and item.name.lower() in tags and item.children:
342 ! process(item, profile)
343 \ No newline at end of file
345 if item.type == 'tag' and item.name.lower() in tags and item.children:
348 ! process(item, profile)
349 diff -rcB geany-zc-orig/zencoding/html_matcher.py geany-zencoding/zencoding/html_matcher.py
350 *** geany-zc-orig/zencoding/html_matcher.py 2011-11-14 20:59:28.749887587 +0545
351 --- geany-zencoding/zencoding/html_matcher.py 2011-11-14 20:58:37.916557326 +0545
354 ! #!/usr/bin/env python
355 # -*- coding: utf-8 -*-
359 ! #!/usr/bin/env python2
360 # -*- coding: utf-8 -*-
368 ! return action(opening_tag, closing_tag, start_ix)
369 \ No newline at end of file
374 ! return action(opening_tag, closing_tag, start_ix)
375 diff -rcB geany-zc-orig/zencoding/resources.py geany-zencoding/zencoding/resources.py
376 *** geany-zc-orig/zencoding/resources.py 2011-11-14 20:59:28.753220920 +0545
377 --- geany-zencoding/zencoding/resources.py 2011-11-14 20:58:39.589890567 +0545
380 ! #!/usr/bin/env python
381 # -*- coding: utf-8 -*-
383 @author Sergey Chikuyonok (serge.che@gmail.com)
385 ! #!/usr/bin/env python2
386 # -*- coding: utf-8 -*-
388 @author Sergey Chikuyonok (serge.che@gmail.com)
394 ! set_vocabulary(user_settings, VOC_USER)
395 \ No newline at end of file
400 ! set_vocabulary(user_settings, VOC_USER)
401 diff -rcB geany-zc-orig/zencoding/utils.py geany-zencoding/zencoding/utils.py
402 *** geany-zc-orig/zencoding/utils.py 2011-11-14 20:59:28.753220920 +0545
403 --- geany-zencoding/zencoding/utils.py 2011-11-14 20:58:34.886557511 +0545
406 ! #!/usr/bin/env python
407 # -*- coding: utf-8 -*-
409 Core Zen Coding library. Contains various text manipulation functions:
411 ! #!/usr/bin/env python2
412 # -*- coding: utf-8 -*-
414 Core Zen Coding library. Contains various text manipulation functions: