diff options
author | Artur Signell <artur@vaadin.com> | 2013-02-18 21:31:32 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-02-19 15:07:44 +0000 |
commit | f09c12fd97cbafd10b31c79a55bd90dfef02f4a9 (patch) | |
tree | 5030cc74358b7615eaf81833eed41ecf6c9e519d /build | |
parent | 9da1979af798324cbe1eea2b6adde0886774f73b (diff) | |
download | vaadin-framework-f09c12fd97cbafd10b31c79a55bd90dfef02f4a9.tar.gz vaadin-framework-f09c12fd97cbafd10b31c79a55bd90dfef02f4a9.zip |
Imported and updated release notes builder (#10918)
Change-Id: Ie21d448f89d0fab6b7732a0137c80172e9da8e69
Ticket: 10918
Diffstat (limited to 'build')
-rw-r--r-- | build/bin/closed-to-rn.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/build/bin/closed-to-rn.py b/build/bin/closed-to-rn.py deleted file mode 100644 index 0928877e1c..0000000000 --- a/build/bin/closed-to-rn.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/python - -import sys,string - -filename = sys.argv[1] - -fin = open(filename, "r") -lines = fin.readlines() -fin.close() - -for line in lines: - fields = string.split(line, "\t") - - if fields[0] != "id": - ticketid = "<a href=\"http://dev.vaadin.com/ticket/%s\">#%s</a>" % (fields[0],fields[0]) - print " <li>%s: %s</li>" % (ticketid, fields[1]) |