handling of DEPRECATED

git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@369 4b5297f7-1745-476d-ba37-a9c6900126ab
This commit is contained in:
Peter Saint-Andre 2007-01-17 22:54:29 +00:00
parent c5151bf11c
commit ef01bdc0d7
1 changed files with 4 additions and 0 deletions

View File

@ -90,6 +90,8 @@ elif (version == "2.0"):
xepflag = "final"
elif (xepstatus == "Retracted"):
xepflag = "retract"
elif (xepstatus == "Deprecated"):
xepflag = "deprecate"
elif (xepstatus == "Deferred"):
xepflag = "defer"
@ -124,6 +126,8 @@ elif xepflag == "active":
thesubject = 'ACTIVE: XEP-'
elif xepflag == "retract":
thesubject = 'RETRACTED: XEP-'
elif xepflag == "deprecate":
thesubject = 'DEPRECATED: XEP-'
elif xepflag == "defer":
thesubject = 'DEFERRED: XEP-'
else: