HADOOP-11813. releasedocmaker.py should use today's date instead of unreleased (Darrell Taylor via aw)
This commit is contained in:
parent
7a26d174af
commit
f325522c14
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
from glob import glob
|
from glob import glob
|
||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
|
from time import gmtime, strftime
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
@ -82,6 +83,7 @@ def notableclean(str):
|
|||||||
str=str.replace("|","\|")
|
str=str.replace("|","\|")
|
||||||
str=str.replace("<","\<")
|
str=str.replace("<","\<")
|
||||||
str=str.replace(">","\>")
|
str=str.replace(">","\>")
|
||||||
|
str=str.replace("*","\*")
|
||||||
str=str.rstrip()
|
str=str.rstrip()
|
||||||
return str
|
return str
|
||||||
|
|
||||||
@ -335,6 +337,8 @@ def main():
|
|||||||
help="only create the master, merged project files")
|
help="only create the master, merged project files")
|
||||||
parser.add_option("-i","--index", dest="index", action="store_true",
|
parser.add_option("-i","--index", dest="index", action="store_true",
|
||||||
help="build an index file")
|
help="build an index file")
|
||||||
|
parser.add_option("-u","--usetoday", dest="usetoday", action="store_true",
|
||||||
|
help="use current date for unreleased versions")
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
|
|
||||||
if (options.versions == None):
|
if (options.versions == None):
|
||||||
@ -356,6 +360,8 @@ def main():
|
|||||||
|
|
||||||
if version in releaseVersion:
|
if version in releaseVersion:
|
||||||
reldate=releaseVersion[version]
|
reldate=releaseVersion[version]
|
||||||
|
elif options.usetoday:
|
||||||
|
reldate=strftime("%Y-%m-%d", gmtime())
|
||||||
else:
|
else:
|
||||||
reldate="Unreleased"
|
reldate="Unreleased"
|
||||||
|
|
||||||
|
@ -209,6 +209,9 @@ Trunk (Unreleased)
|
|||||||
HADOOP-11857. Fix CommandFormat#commandFormat java doc annotation.
|
HADOOP-11857. Fix CommandFormat#commandFormat java doc annotation.
|
||||||
(J.Andreina via jghoman)
|
(J.Andreina via jghoman)
|
||||||
|
|
||||||
|
HADOOP-11813. releasedocmaker.py should use today's date instead of
|
||||||
|
unreleased (Darrell Taylor via aw)
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
||||||
HADOOP-11473. test-patch says "-1 overall" even when all checks are +1
|
HADOOP-11473. test-patch says "-1 overall" even when all checks are +1
|
||||||
|
@ -929,6 +929,7 @@
|
|||||||
<argument>--version</argument>
|
<argument>--version</argument>
|
||||||
<argument>${project.version}</argument>
|
<argument>${project.version}</argument>
|
||||||
<argument>--index</argument>
|
<argument>--index</argument>
|
||||||
|
<argument>--usetoday</argument>
|
||||||
</arguments>
|
</arguments>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
|
Loading…
Reference in New Issue
Block a user