mirror of https://github.com/moparisthebest/xeps
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
3.4 KiB
108 lines
3.4 KiB
# 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: |
|
def __init__(self, filename, parseStr): |
|
thexep = "" |
|
if parseStr: |
|
thexep = parseString(filename) |
|
else: |
|
thexep = parse(filename) |
|
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) |
|
shortnameNode = headerNode.getElementsByTagName("shortname") |
|
if shortnameNode: |
|
self.shortname = getText((shortnameNode[0]).childNodes) |
|
else: |
|
self.shortname = "NOT YET ASSIGNED" |
|
abstractNode = (headerNode.getElementsByTagName("abstract")[0]) |
|
self.abstract = getText(abstractNode.childNodes) |
|
statusNode = (headerNode.getElementsByTagName("status")[0]) |
|
self.status = getText(statusNode.childNodes) |
|
self.type = getText((headerNode.getElementsByTagName("type")[0]).childNodes) |
|
revNode = (headerNode.getElementsByTagName("revision")[0]) |
|
self.version = getText((revNode.getElementsByTagName("version")[0]).childNodes) |
|
self.date = getText((revNode.getElementsByTagName("date")[0]).childNodes) |
|
|
|
titleNode = (headerNode.getElementsByTagName("interim")) |
|
if titleNode: |
|
self.interim = True; |
|
else: |
|
self.interim = False; |
|
|
|
depNode = headerNode.getElementsByTagName("dependencies") |
|
self.depends = [] |
|
if depNode: |
|
depNode = depNode[0] |
|
for dep in depNode.getElementsByTagName("spec"): |
|
self.depends.append(getText(dep.childNodes)) |
|
|
|
def getInterim(self): |
|
return self.interim |
|
|
|
def getNr(self): |
|
return self.nr |
|
|
|
def getTitle(self): |
|
return self.title |
|
|
|
def getShortname(self): |
|
return self.shortname |
|
|
|
def getAbstract(self): |
|
return self.abstract |
|
|
|
def getStatus(self): |
|
return self.status |
|
|
|
def getVersion(self): |
|
return self.version |
|
|
|
def getType(self): |
|
return self.type |
|
|
|
def getDate(self): |
|
return self.date |
|
|
|
def getDepends(self): |
|
return self.depends |
|
|
|
|