Author: pekka.klarck
Date: Wed Apr 8 03:16:37 2009
New Revision: 1756
Modified:
wiki/ReleaseNotes21.wiki
wiki/tools/get_issues.py
Log:
regen issue list
Modified: wiki/ReleaseNotes21.wiki
==============================================================================
--- wiki/ReleaseNotes21.wiki (original)
+++ wiki/ReleaseNotes21.wiki Wed Apr 8 03:16:37 2009
@@ -43,7 +43,6 @@
requests to the
[http://code.google.com/p/robotframework/issues issue tracker].
-
== List of fixes and enhancements ==
|| *ID* || *Type* || *Priority* || *Summary* ||
@@ -56,10 +55,10 @@
|| Issue 197 || Enhancement || High || Update robotidy.py tool to replace
deprecated keyword repeating syntax with Repeat Keyword ||
|| Issue 200 || Enhancement || High || Log messages with WARN level should
be automatically written to syslog ||
|| Issue 203 || Enhancement || High || New keyword "Set Library Search
Order" to ease handling keywords with same names ||
-|| Issue 254 || Enhancement || High || Centralized logger ||
|| Issue 18 || Library || High || New standard library "String" for
different string operations ||
|| Issue 118 || Library || High || Remote library ||
|| Issue 253 || Library || High || New standard library for interactive
dialogs ||
+|| Issue 254 || Refactoring || High || Centralized logger ||
|| Issue 213 || Defect || Medium || Telnet login fails if server sends
wierd unicode chars ||
|| Issue 224 || Defect || Medium || Unicode error with libdoc.py ||
|| Issue 230 || Defect || Medium || --argumentfile option should be
accepted multiple times ||
@@ -96,4 +95,6 @@
|| Issue 263 || Enhancement || Low || Log Variables keyword should log
variable names using their original format ||
|| Issue 270 || Enhancement || Low || Deprecate Syslog keyword ||
|| Issue 278 || Enhancement || Low || 'Set Test/Suite/Global Variable'
and 'Variable Should (Not) Exist' keywords work also when the variable name
is given in normal format ||
-|| Issue 226 || Documentation || Low || Better explanation on how to
install RF when using Jython ||
\ No newline at end of file
+|| Issue 226 || Documentation || Low || Better explanation on how to
install RF when using Jython ||
+|| Issue 279 || Refactoring || Low || Remove mediumname from test suites
and test cases ||
+
Modified: wiki/tools/get_issues.py
==============================================================================
--- wiki/tools/get_issues.py (original)
+++ wiki/tools/get_issues.py Wed Apr 8 03:16:37 2009
@@ -18,9 +18,9 @@
Usage: get_issues.py version [project]
-This simple script gets issues with given target 'version' from the issue
tracker
-and prints them out in format suitable to use in the wiki. If 'project' is
not given,
-gets issues from Robot Framework core project.
+This simple script gets issues with given target 'version' from the issue
+tracker and prints them out in format suitable to use in the wiki. If
+'project' is not given, gets issues from Robot Framework core project.
For each issue, the script will print 'ID', 'Type', 'Priority'
and 'Summary'.
Issues with type 'Task' are ignored.
@@ -51,7 +51,7 @@
print '\n== %s %s ==\n' % (name, version)
reader = csv.reader(urlopen(URL.substitute(locals())))
for row in reader:
- if not row or row[1] in ['Refactoring', 'Task']:
+ if not row or row[1] == 'Task':
continue
if reader.line_num == 1:
row = [ '*%s*' % cell for cell in row ]