2009-12-19 15:23:30 -05:00
|
|
|
# File: xepinfo.py
|
|
|
|
# Version: 0.2
|
|
|
|
# Description: xepinfo class
|
|
|
|
# Last Modified: 2009
|
|
|
|
# Author: Tobias Markmann (tm@ayena.de)
|
|
|
|
|
|
|
|
## LICENSE ##
|
|
|
|
#
|
|
|
|
# Copyright (c) 1999 - 2009 XMPP Standards Foundation
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
# THE SOFTWARE.
|
|
|
|
#
|
|
|
|
## END LICENSE ##
|
|
|
|
|
|
|
|
from xml.dom.minidom import parse,parseString,Document,getDOMImplementation
|
|
|
|
|
|
|
|
def getText(nodelist):
|
|
|
|
thisText = ""
|
|
|
|
for node in nodelist:
|
|
|
|
if node.nodeType == node.TEXT_NODE:
|
|
|
|
thisText = thisText + node.data
|
|
|
|
return thisText
|
|
|
|
|
|
|
|
class XEPInfo:
|
2010-01-15 16:21:53 -05:00
|
|
|
def __init__(self, filename, parseStr):
|
|
|
|
thexep = ""
|
|
|
|
if parseStr:
|
|
|
|
thexep = parseString(filename)
|
|
|
|
else:
|
|
|
|
thexep = parse(filename)
|
2009-12-19 15:23:30 -05:00
|
|
|
xepNode = (thexep.getElementsByTagName("xep")[0])
|
|
|
|
headerNode = (xepNode.getElementsByTagName("header")[0])
|
|
|
|
titleNode = (headerNode.getElementsByTagName("title")[0])
|
|
|
|
self.title = getText(titleNode.childNodes)
|
|
|
|
self.nr = getText((headerNode.getElementsByTagName("number")[0]).childNodes)
|
2010-10-07 19:24:29 -04:00
|
|
|
shortnameNode = headerNode.getElementsByTagName("shortname")
|
2010-10-07 19:19:55 -04:00
|
|
|
if shortnameNode:
|
2010-10-07 19:24:29 -04:00
|
|
|
self.shortname = getText((shortnameNode[0]).childNodes)
|
2010-10-07 19:19:55 -04:00
|
|
|
else:
|
|
|
|
self.shortname = "NOT YET ASSIGNED"
|
2009-12-19 15:23:30 -05:00
|
|
|
abstractNode = (headerNode.getElementsByTagName("abstract")[0])
|
2010-10-07 18:56:23 -04:00
|
|
|
self.abstract = getText(abstractNode.childNodes)
|
2009-12-19 15:23:30 -05:00
|
|
|
statusNode = (headerNode.getElementsByTagName("status")[0])
|
|
|
|
self.status = getText(statusNode.childNodes)
|
|
|
|
self.type = getText((headerNode.getElementsByTagName("type")[0]).childNodes)
|
|
|
|
revNode = (headerNode.getElementsByTagName("revision")[0])
|
2010-01-15 16:21:53 -05:00
|
|
|
self.version = getText((revNode.getElementsByTagName("version")[0]).childNodes)
|
2009-12-19 15:23:30 -05:00
|
|
|
self.date = getText((revNode.getElementsByTagName("date")[0]).childNodes)
|
2010-02-19 05:05:13 -05:00
|
|
|
|
2010-03-13 17:23:37 -05:00
|
|
|
titleNode = (headerNode.getElementsByTagName("interim"))
|
|
|
|
if titleNode:
|
|
|
|
self.interim = True;
|
|
|
|
else:
|
|
|
|
self.interim = False;
|
|
|
|
|
2010-02-19 05:05:13 -05:00
|
|
|
depNode = headerNode.getElementsByTagName("dependencies")
|
|
|
|
self.depends = []
|
|
|
|
if depNode:
|
|
|
|
depNode = depNode[0]
|
|
|
|
for dep in depNode.getElementsByTagName("spec"):
|
|
|
|
self.depends.append(getText(dep.childNodes))
|
2010-03-13 17:23:37 -05:00
|
|
|
|
|
|
|
def getInterim(self):
|
|
|
|
return self.interim
|
2010-02-19 05:05:13 -05:00
|
|
|
|
2009-12-19 15:23:30 -05:00
|
|
|
def getNr(self):
|
|
|
|
return self.nr
|
|
|
|
|
|
|
|
def getTitle(self):
|
|
|
|
return self.title
|
|
|
|
|
2010-10-07 18:56:23 -04:00
|
|
|
def getShortname(self):
|
|
|
|
return self.shortname
|
|
|
|
|
|
|
|
def getAbstract(self):
|
|
|
|
return self.abstract
|
|
|
|
|
2009-12-19 15:23:30 -05:00
|
|
|
def getStatus(self):
|
|
|
|
return self.status
|
2010-01-15 16:21:53 -05:00
|
|
|
|
|
|
|
def getVersion(self):
|
|
|
|
return self.version
|
2009-12-19 15:23:30 -05:00
|
|
|
|
|
|
|
def getType(self):
|
|
|
|
return self.type
|
|
|
|
|
|
|
|
def getDate(self):
|
|
|
|
return self.date
|
2010-02-19 05:05:13 -05:00
|
|
|
|
|
|
|
def getDepends(self):
|
|
|
|
return self.depends
|
|
|
|
|
2009-12-19 15:23:30 -05:00
|
|
|
|