added support for the Obsolete state

This commit is contained in:
stpeter 2012-02-08 15:16:06 -07:00
parent 0641f8cdad
commit 2d1d4dc28d
1 changed files with 4 additions and 0 deletions

View File

@ -115,6 +115,8 @@ elif (xepstatus == "Retracted"):
xepflag = "retract"
elif (xepstatus == "Deprecated"):
xepflag = "deprecate"
elif (xepstatus == "Obsolete"):
xepflag = "obsolete"
elif (xepstatus == "Deferred"):
xepflag = "defer"
@ -149,6 +151,8 @@ elif xepflag == "retract":
thesubject = 'RETRACTED: XEP-'
elif xepflag == "deprecate":
thesubject = 'DEPRECATED: XEP-'
elif xepflag == "obsolete":
thesubject = 'OBSOLETED: XEP-'
elif xepflag == "defer":
thesubject = 'DEFERRED: XEP-'
else: