Searched defs:NSS (Results 1 - 5 of 5) sorted by relevance

/inkscape/share/extensions/
H A Dsynfig_prepare.py26 from inkex import NSS, addNS, etree, errormsg namespace
111 def select_xpath(self, xpath, namespaces=NSS):
184 self.select_xpath("//svg:flowRoot", namespaces=NSS)
203 self.select_xpath(xpath_cmd, namespaces=NSS)
211 self.select_xpath("//svg:use", namespaces=NSS)
486 for node in self.document.xpath('//svg:path', namespaces=NSS):
H A Dinkex.py39 NSS = { variable
135 if ns is not None and len(ns) > 0 and ns in NSS and len(tag) > 0 and tag[0] != '{':
136 val = "{%s}%s" % (NSS[ns], tag)
213 layerattr = self.document.xpath('//sodipodi:namedview/@inkscape:current-layer', namespaces=NSS)
216 layer = self.document.xpath('//svg:g[@id="%s"]' % layername, namespaces=NSS)
220 xattr = self.document.xpath('//sodipodi:namedview/@inkscape:cx', namespaces=NSS)
221 yattr = self.document.xpath('//sodipodi:namedview/@inkscape:cy', namespaces=NSS)
234 for node in self.document.xpath(path, namespaces=NSS):
239 el_list = self.document.xpath(path, namespaces=NSS)
251 docIdNodes = self.document.xpath('//@id', namespaces=NSS)
[all...]
H A Dsynfig_output.py28 from inkex import NSS, addNS, etree, errormsg namespace
1059 title = svg.xpath("svg:title", namespaces=NSS)
H A DjessyInk.js19 var NSS = new Object(); class
20 NSS['sodipodi']='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd';
21 NSS['cc']='http://web.resource.org/cc/';
22 NSS['svg']='http://www.w3.org/2000/svg';
23 NSS['dc']='http://purl.org/dc/elements/1.1/';
24 NSS['rdf']='http://www.w3.org/1999/02/22-rdf-syntax-ns#';
25 NSS['inkscape']='http://www.inkscape.org/namespaces/inkscape';
26 NSS['xlink']='http://www.w3.org/1999/xlink';
27 NSS['xml']='http://www.w3.org/XML/1998/namespace';
28 NSS['jessyin
[all...]
/inkscape/share/filters/
H A Dsamplify.py20 NSS = { variable
34 if ns!=None and len(ns)>0 and NSS.has_key(ns) and len(tag)>0 and tag[0]!='{':
35 val = "{%s}%s" % (NSS[ns], tag)
79 b = etree.Element(a.tag, nsmap=NSS)
116 text = etree.Element(e_text, nsmap=NSS)
126 clone = etree.Element(e_use, nsmap=NSS)
133 text = etree.Element(e_text, nsmap=NSS)
144 text = etree.Element(e_text, nsmap=NSS)

Completed in 28 milliseconds