/usr/share/pyshared/kid/namespace.py is in python-kid 0.9.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # -*- coding: utf-8 -*-
"""Namespace handling."""
__revision__ = "$Rev: 492 $"
__date__ = "$Date: 2007-07-06 21:38:45 -0400 (Fri, 06 Jul 2007) $"
__author__ = "Ryan Tomayko (rtomayko@gmail.com)"
__copyright__ = "Copyright 2004-2005, Ryan Tomayko"
__license__ = "MIT <http://www.opensource.org/licenses/mit-license.php>"
__all__ = ['Namespace', 'xml', 'xhtml', 'atom', 'rdf', 'rss', 'nons']
namespaces = {}
class Namespace(object):
def __init__(self, uri, prefix=None):
self.uri = uri
self.prefix = prefix
if prefix:
namespaces[uri] = prefix
def qname(self, name):
if self.prefix:
return '%s:%s' % (self.prefix, name)
else:
return name
def clarkname(self, name):
if self.uri:
return '{%s}%s' % (self.uri, name)
else:
return name
__getattr__ = clarkname
__getitem__ = clarkname
def __str__(self):
return self.uri
def __unicode__(self):
return unicode(self.uri)
def __repr__(self):
return 'Namespace(%r, %r)' % (self.uri, self.prefix)
def __equals__(self, other):
if isinstance(other, basestring):
return self.uri == other
elif isinstance(other, Namespace):
return self.uri == other.uri
else:
return False
xml = Namespace('http://www.w3.org/XML/1998/namespace', 'xml')
xhtml = Namespace('http://www.w3.org/1999/xhtml', 'html')
atom = Namespace('http://purl.org/atom/ns#', 'atom')
rdf = Namespace('http://www.w3.org/1999/02/22-rdf-syntax-ns#', 'rdf')
rss = Namespace('http://purl.org/rss/1.0/', 'rss')
nons = Namespace(None, None)
|