2006-10-02 18:22:13 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# File: deferred.py
|
2006-11-01 15:36:44 -05:00
|
|
|
# Version: 0.3
|
2006-10-04 14:40:38 -04:00
|
|
|
# Description: a script for setting a XEP to Deferred
|
2006-11-01 15:36:44 -05:00
|
|
|
# Last Modified: 2006-11-01
|
2006-10-02 18:22:13 -04:00
|
|
|
# Author: Peter Saint-Andre (stpeter@jabber.org)
|
|
|
|
# License: public domain
|
2006-12-07 22:15:23 -05:00
|
|
|
# HowTo: ./deferred.py xepnum
|
2006-10-02 18:22:13 -04:00
|
|
|
|
2008-04-22 12:37:14 -04:00
|
|
|
## LICENSE ##
|
|
|
|
#
|
2010-01-11 15:23:59 -05:00
|
|
|
# Copyright (c) 1999 - 2010 XMPP Standards Foundation
|
2008-04-22 12:37:14 -04:00
|
|
|
#
|
|
|
|
# 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 ##
|
|
|
|
|
2006-10-02 18:22:13 -04:00
|
|
|
# IMPORTS:
|
|
|
|
#
|
|
|
|
import glob
|
|
|
|
import os
|
|
|
|
from select import select
|
|
|
|
import smtplib
|
|
|
|
import socket
|
|
|
|
from string import split,strip,join,find
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
from xml.dom.minidom import parse,parseString,Document
|
|
|
|
|
|
|
|
def getText(nodelist):
|
|
|
|
thisText = ""
|
|
|
|
for node in nodelist:
|
|
|
|
if node.nodeType == node.TEXT_NODE:
|
|
|
|
thisText = thisText + node.data
|
|
|
|
return thisText
|
|
|
|
|
|
|
|
# get the seconds in the Unix era
|
|
|
|
now = int(time.time())
|
|
|
|
|
2017-02-14 17:15:25 -05:00
|
|
|
# READ IN ARGS:
|
2006-10-02 18:22:13 -04:00
|
|
|
#
|
2006-10-04 14:40:38 -04:00
|
|
|
# 1. XEP number
|
2006-10-02 18:22:13 -04:00
|
|
|
|
2006-11-01 15:36:44 -05:00
|
|
|
xepnum = sys.argv[1];
|
2006-10-02 18:22:13 -04:00
|
|
|
|
2006-11-01 15:36:44 -05:00
|
|
|
xepfile = 'xep-' + xepnum + '.xml'
|
2006-10-02 18:22:13 -04:00
|
|
|
|
2006-10-04 14:40:38 -04:00
|
|
|
# PARSE XEP HEADERS:
|
2006-10-02 18:22:13 -04:00
|
|
|
#
|
|
|
|
# - title
|
|
|
|
# - abstract
|
|
|
|
# - version
|
|
|
|
# - date
|
|
|
|
# - initials
|
|
|
|
# - remark
|
|
|
|
|
2006-11-01 15:36:44 -05:00
|
|
|
thexep = parse(xepfile)
|
|
|
|
xepNode = (thexep.getElementsByTagName("xep")[0])
|
|
|
|
headerNode = (xepNode.getElementsByTagName("header")[0])
|
2006-10-02 18:22:13 -04:00
|
|
|
titleNode = (headerNode.getElementsByTagName("title")[0])
|
|
|
|
title = getText(titleNode.childNodes)
|
|
|
|
abstractNode = (headerNode.getElementsByTagName("abstract")[0])
|
|
|
|
abstract = getText(abstractNode.childNodes)
|
|
|
|
statusNode = (headerNode.getElementsByTagName("status")[0])
|
2006-11-01 15:36:44 -05:00
|
|
|
xepstatus = getText(statusNode.childNodes)
|
2006-10-02 18:22:13 -04:00
|
|
|
typeNode = (headerNode.getElementsByTagName("type")[0])
|
2006-11-01 15:36:44 -05:00
|
|
|
xeptype = getText(typeNode.childNodes)
|
2006-10-02 18:22:13 -04:00
|
|
|
revNode = (headerNode.getElementsByTagName("revision")[0])
|
|
|
|
versionNode = (revNode.getElementsByTagName("version")[0])
|
|
|
|
version = getText(versionNode.childNodes)
|
|
|
|
dateNode = (revNode.getElementsByTagName("date")[0])
|
|
|
|
date = getText(dateNode.childNodes)
|
|
|
|
initialsNode = (revNode.getElementsByTagName("initials")[0])
|
|
|
|
initials = getText(initialsNode.childNodes)
|
|
|
|
remarkNode = (revNode.getElementsByTagName("remark")[0])
|
|
|
|
remark = getText(remarkNode.childNodes)
|
|
|
|
|
|
|
|
# SEND MAIL:
|
|
|
|
#
|
2007-01-16 18:35:34 -05:00
|
|
|
# From: editor@xmpp.org
|
|
|
|
# To: standards@xmpp.org
|
2006-11-01 15:36:44 -05:00
|
|
|
# Subject: DEFERRED: XEP-$xepnum ($title)
|
2006-10-02 18:22:13 -04:00
|
|
|
# Body:
|
2006-11-01 15:36:44 -05:00
|
|
|
# XEP-$xepnum ($title) has been Deferred because of inactivity.
|
2006-10-02 18:22:13 -04:00
|
|
|
#
|
|
|
|
# Abstract: $abstract
|
|
|
|
#
|
2017-02-16 10:31:38 -05:00
|
|
|
# URL: https://xmpp.org/extensions/xep-$xepnum.html
|
2006-10-02 18:22:13 -04:00
|
|
|
#
|
2006-10-04 14:40:38 -04:00
|
|
|
# If and when a new revision of this XEP is published,
|
2006-10-02 18:22:13 -04:00
|
|
|
# its status will be changed back to Experimental.
|
|
|
|
#
|
|
|
|
|
2007-01-16 18:35:34 -05:00
|
|
|
fromaddr = "editor@xmpp.org"
|
2006-10-02 18:22:13 -04:00
|
|
|
# for testing...
|
|
|
|
# toaddrs = "stpeter@jabber.org"
|
|
|
|
# for real...
|
2007-01-16 18:35:34 -05:00
|
|
|
toaddrs = "standards@xmpp.org"
|
2006-10-02 18:22:13 -04:00
|
|
|
|
2006-11-01 15:36:44 -05:00
|
|
|
thesubject = 'DEFERRED: XEP-' + xepnum + " (" + title + ")"
|
|
|
|
introline = 'XEP-' + xepnum + ' (' + title + ') has been Deferred because of inactivity.'
|
2006-10-02 18:22:13 -04:00
|
|
|
abstractline = 'Abstract: ' + abstract
|
2017-02-16 10:31:38 -05:00
|
|
|
urlline = 'URL: https://xmpp.org/extensions/xep-' + xepnum + '.html'
|
2006-10-04 14:40:38 -04:00
|
|
|
endline = 'If and when a new revision of this XEP is published, its status will be changed back to Experimental.'
|
2006-10-02 18:22:13 -04:00
|
|
|
|
|
|
|
#msg = "From: %s\r\n" % fromaddr
|
2006-10-04 14:40:38 -04:00
|
|
|
msg = "From: XMPP Extensions Editor <%s>\r\n" % fromaddr
|
2006-10-02 18:22:13 -04:00
|
|
|
msg = msg + "To: %s\r\n" % toaddrs
|
|
|
|
msg = msg + "Subject: %s\r\n" % thesubject
|
|
|
|
msg = msg + introline
|
|
|
|
msg = msg + "\r\n\n"
|
|
|
|
msg = msg + abstractline
|
|
|
|
msg = msg + "\r\n\n"
|
|
|
|
msg = msg + urlline
|
|
|
|
msg = msg + "\r\n\n"
|
|
|
|
msg = msg + endline
|
|
|
|
msg = msg + "\r\n"
|
|
|
|
|
2007-01-31 12:51:13 -05:00
|
|
|
server = smtplib.SMTP('localhost')
|
|
|
|
server.set_debuglevel(1)
|
|
|
|
server.sendmail(fromaddr, toaddrs, msg)
|
|
|
|
server.quit()
|
2006-10-02 18:22:13 -04:00
|
|
|
|
|
|
|
# END
|
|
|
|
|