From b4717829fe4261a03166635d1a19377368757ac4 Mon Sep 17 00:00:00 2001 From: stpeter Date: Wed, 21 Sep 2011 11:32:46 -0600 Subject: [PATCH] removed www from URLs --- deferred.py | 4 ++-- inxep.py | 4 ++-- lastcall.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deferred.py b/deferred.py index fce14d4d..9b560bcf 100755 --- a/deferred.py +++ b/deferred.py @@ -102,7 +102,7 @@ remark = getText(remarkNode.childNodes) # # Abstract: $abstract # -# URL: http://www.xmpp.org/extensions/xep-$xepnum.html +# URL: http://xmpp.org/extensions/xep-$xepnum.html # # If and when a new revision of this XEP is published, # its status will be changed back to Experimental. @@ -117,7 +117,7 @@ toaddrs = "standards@xmpp.org" thesubject = 'DEFERRED: XEP-' + xepnum + " (" + title + ")" introline = 'XEP-' + xepnum + ' (' + title + ') has been Deferred because of inactivity.' abstractline = 'Abstract: ' + abstract -urlline = 'URL: http://www.xmpp.org/extensions/xep-' + xepnum + '.html' +urlline = 'URL: http://xmpp.org/extensions/xep-' + xepnum + '.html' endline = 'If and when a new revision of this XEP is published, its status will be changed back to Experimental.' #msg = "From: %s\r\n" % fromaddr diff --git a/inxep.py b/inxep.py index 8296ea40..c4e22f53 100755 --- a/inxep.py +++ b/inxep.py @@ -100,7 +100,7 @@ remark = getText(remarkNode.childNodes) # # Abstract: $abstract # -# URL: http://www.xmpp.org/extensions/inbox/$xepname.html +# URL: http://xmpp.org/extensions/inbox/$xepname.html # # The XMPP Council will now consider whether to accept # this proposal as a full XEP. @@ -116,7 +116,7 @@ thesubject = 'Proposed XMPP Extension: ' + title introline = 'The XMPP Extensions Editor has received a proposal for a new XEP.' titleline = 'Title: ' + title abstractline = 'Abstract: ' + abstract -urlline = 'URL: http://www.xmpp.org/extensions/inbox/' + xepname + '.html' +urlline = 'URL: http://xmpp.org/extensions/inbox/' + xepname + '.html' actionline = 'The XMPP Council will decide in the next two weeks whether to accept this proposal as an official XEP.' msg = "From: XMPP Extensions Editor <%s>\r\n" % fromaddr diff --git a/lastcall.py b/lastcall.py index a475941b..43cb6511 100755 --- a/lastcall.py +++ b/lastcall.py @@ -105,7 +105,7 @@ remark = getText(remarkNode.childNodes) # # Abstract: $abstract # -# URL: http://www.xmpp.org/extensions/xep-$xepnum.html +# URL: http://xmpp.org/extensions/xep-$xepnum.html # # This Last Call begins today and shall end at the close # of business on $enddate. @@ -134,7 +134,7 @@ toaddrs = "standards@xmpp.org" thesubject = 'LAST CALL: XEP-' + xepnum + " (" + title + ")" introline = 'This message constitutes notice of a Last Call for comments on XEP-' + xepnum + ' (' + title + ').' abstractline = 'Abstract: ' + abstract -urlline = 'URL: http://www.xmpp.org/extensions/xep-' + xepnum + '.html' +urlline = 'URL: http://xmpp.org/extensions/xep-' + xepnum + '.html' schedline = 'This Last Call begins today and shall end at the close of business on ' + enddate + '.' qline0 = 'Please consider the following questions during this Last Call and send your feedback to the standards@xmpp.org discussion list:' qline1 = '1. Is this specification needed to fill gaps in the XMPP protocol stack or to clarify an existing protocol?'