diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2015-08-28 16:03:11 +0300 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2015-08-28 16:05:18 +0300 |
commit | 1dfb66c537774bdf566b1bbc129fdf0e22d731a9 (patch) | |
tree | fdae2c69c5d2fd26213764c49c44cf423e001906 /scripts/GeneratePublishReport.py | |
parent | f256bdab90a7ee729ef6b3cc8cd82dac533df805 (diff) | |
download | vaadin-framework-1dfb66c537774bdf566b1bbc129fdf0e22d731a9.tar.gz vaadin-framework-1dfb66c537774bdf566b1bbc129fdf0e22d731a9.zip |
Improve build and publish reports
- Add link to closed fixed but not released/pending tickets
- Ignore empty @since in /result/ paths
- Add link to public Maven repository
Change-Id: Ib5d967838b47c0f9505219a0304b860a03ef43ee
Diffstat (limited to 'scripts/GeneratePublishReport.py')
-rw-r--r-- | scripts/GeneratePublishReport.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/GeneratePublishReport.py b/scripts/GeneratePublishReport.py index 274203e5cf..6cd0791f24 100644 --- a/scripts/GeneratePublishReport.py +++ b/scripts/GeneratePublishReport.py @@ -30,8 +30,11 @@ content = """<html> if not prerelease: content += "<tr><td><a href='http://vaadin.com/download/release/{maj}.{min}/{ver}/'>Check {ver} is published to vaadin.com/download</td></tr>".format(maj=major, min=minor, ver=args.version) + content += "<tr><td><a href='http://repo1.maven.org/maven2/com/vaadin/vaadin-server/{ver}'>Check {ver} is published to maven.org (might take a while)</td></tr>".format(ver=args.version) else: content += "<tr><td><a href='http://vaadin.com/download/prerelease/{maj}.{min}/{maj}.{min}.{main}/{ver}'>Check {ver} is published as prerelease to vaadin.com/download</td></tr>".format(maj=major, min=minor, main=maintenance, ver=args.version) + content += "<tr><td><a href='http://maven.vaadin.com/vaadin-prereleases/com/vaadin/vaadin-server/{ver}'>Check {ver} is published as prerelease to maven.vaadin.com</td></tr>".format(ver=args.version) + content += """ <tr><td>Verify Latest Vaadin 7: <iframe src="http://vaadin.com/download/LATEST7"></iframe></td></tr> |