File: inkwebeffect.py

package info (click to toggle)
inkscape 0.48.5-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 117,392 kB
  • ctags: 50,110
  • sloc: cpp: 368,612; ansic: 28,176; python: 18,877; sh: 4,555; xml: 3,490; makefile: 1,750; perl: 1,534; ruby: 148
file content (62 lines) | stat: -rwxr-xr-x 2,148 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
'''
Copyright (C) 2009 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
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
'''

import inkex, sys, os, re

class InkWebEffect(inkex.Effect):
  def __init__(self):
    inkex.Effect.__init__(self)
    self.reUpdateJS = '/\\*\\s* inkweb.js [^*]* InkWebEffect:AutoUpdate \\s*\\*/'

  def mustAddInkWebJSCode(self, scriptEl):
    if not scriptEl.text: return True
    if len(scriptEl.text) == 0: return True
    if re.search(self.reUpdateJS, scriptEl.text): return True
    return False

  def addInkWebJSCode(self, scriptEl):
    js = open( os.path.join(sys.path[0], "inkweb.js"), 'r' )
    if hasattr(inkex.etree, "CDATA"):
      scriptEl.text = \
        inkex.etree.CDATA(
          "\n/* inkweb.js - InkWebEffect:AutoUpdate */\n" + js.read()
        )
    else:
      scriptEl.text = \
          "\n/* inkweb.js - InkWebEffect:AutoUpdate */\n" + js.read()
    js.close()

  def ensureInkWebSupport(self):
    # Search for the script tag with the inkweb.js code:
    scriptEl = None
    scripts = self.document.xpath('//svg:script', namespaces=inkex.NSS)
    for s in scripts:
      if re.search(self.reUpdateJS, s.text):
        scriptEl = s

    if scriptEl is None:
      root = self.document.getroot()
      scriptEl = inkex.etree.Element( "script" )
      scriptEl.set( "id", "inkwebjs" )
      scriptEl.set( "type", "text/javascript" )
      root.insert( 0, scriptEl )

    if self.mustAddInkWebJSCode(scriptEl):
      self.addInkWebJSCode(scriptEl)