Skip to content

Commit 8f32535

Browse files
author
Richard Jones
committed
*** empty log message ***
1 parent 26e9a2b commit 8f32535

File tree

4 files changed

+50
-56
lines changed

4 files changed

+50
-56
lines changed

doc/announcement.txt

Lines changed: 13 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,16 @@
1-
I'm proud to release this, the 1.0 release of Roundup.
2-
3-
Yes, finally after over 4 years and 8 major releases, the 1.0 release is
4-
here.
5-
6-
Roundup 1.0 includes all the pre-1.0 goodness, and:
7-
8-
- added full-text indexer using Xapian as the back end
9-
- Lithuanian translation by Aiste Kesminaite
10-
- Web User Interface language selection by form variable @language,
11-
browser cookie or HTTP header Accept-Language (sf patch 1360321)
12-
- initial values for configuration options may be passed on
13-
'roundup-admin install' command line (based on sf patch 1237110)
14-
- favicon.ico image may be changed with server config option (sf patch 1355661)
15-
- Password objects initialized from plaintext remember plaintext value
16-
(sf rfe 1379447)
17-
- Roundup installation document includes configuration example
18-
for Exim Internet Mailer (sf bug 1393860)
19-
- enable registration confirmation by web only (sf bug 1381675)
20-
- allow preselection of values in templating menu()s (sf patch 1396085)
21-
- display the query name in the header (sf feature 1298535 / patch 1349387)
22-
- classhelp works with Link properties now (sf bug 1410290)
23-
- added setorderprop() and setlabelprop() to Class (sf features 1379534,
24-
1379490)
25-
- CSV encoding support (sf bug 1240848)
26-
- fields rendered with StructuredText are hyperlinked by default
27-
- additional attributes for input element may be passed to the 'field'
28-
method of a property wrapper
29-
- added "copy_url" method to generate a URL for copying an item
1+
I'm proud to release this, the 1.0.1 release of Roundup.
2+
3+
In this release:
4+
5+
Feature:
6+
- scripts/import_sf.py will import a tracker from Sourceforge.NET
7+
- added hasRole('Role Name') to HTMLUser
8+
9+
Fixed:
10+
- SQL generation for sort/group by separate Link properties (sf bug
11+
1417565)
12+
- fix timezone offsetting in email Date: header
13+
- fix security check for hasPermission('Permission', None)
3014

3115
If you're upgrading from an older version of Roundup you *must* follow
3216
the "Software Upgrade" guidelines given in the maintenance documentation.

roundup/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.33 2006-01-27 06:09:44 richard Exp $
18+
# $Id: __init__.py,v 1.34 2006-02-03 04:12:36 richard Exp $
1919

2020
'''Roundup - issue tracking for knowledge workers.
2121
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '1.0'
71+
__version__ = '1.0.1'
7272

7373
# vim: set filetype=python ts=4 sw=4 et si

scripts/import_sf.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
''' Import tracker data from Sourceforge.NET
2+
3+
This script needs four steps to work:
4+
5+
1. Export the project XML data using the admin web interface at sf.net
6+
2. Run the file fetching (these are not included in the XML):
7+
8+
import_sf.py files <path to XML> <path to files dir>
9+
10+
this will place all the downloaded files in the files dir by file id.
11+
3. Convert the sf.net XML to Roundup "export" format:
12+
13+
import_sf.py import <tracker home> <path to XML> <path to files dir>
14+
15+
this will generate a directory "/tmp/imported" which contains the
16+
data to be imported into a Roundup tracker.
17+
4. Import the data:
18+
19+
roundup-admin -i <tracker home> import /tmp/imported
20+
21+
And you're done!
22+
'''
23+
124
import sys, sets, os, csv, time, urllib2, httplib, mimetypes
225
from elementtree import ElementTree
326

setup.py

Lines changed: 12 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.84 2006-01-27 06:09:44 richard Exp $
19+
# $Id: setup.py,v 1.85 2006-02-03 04:12:35 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -351,30 +351,17 @@ def main():
351351
If you're upgrading from an older version of Roundup you *must* follow
352352
the "Software Upgrade" guidelines given in the maintenance documentation.
353353
354-
Roundup 1.0 includes all the pre-1.0 goodness, and:
355-
356-
- added full-text indexer using Xapian as the back end
357-
- Lithuanian translation by Aiste Kesminaite
358-
- Web User Interface language selection by form variable @language,
359-
browser cookie or HTTP header Accept-Language (sf patch 1360321)
360-
- initial values for configuration options may be passed on
361-
'roundup-admin install' command line (based on sf patch 1237110)
362-
- favicon.ico image may be changed with server config option (sf patch 1355661)
363-
- Password objects initialized from plaintext remember plaintext value
364-
(sf rfe 1379447)
365-
- Roundup installation document includes configuration example
366-
for Exim Internet Mailer (sf bug 1393860)
367-
- enable registration confirmation by web only (sf bug 1381675)
368-
- allow preselection of values in templating menu()s (sf patch 1396085)
369-
- display the query name in the header (sf feature 1298535 / patch 1349387)
370-
- classhelp works with Link properties now (sf bug 1410290)
371-
- added setorderprop() and setlabelprop() to Class (sf features 1379534,
372-
1379490)
373-
- CSV encoding support (sf bug 1240848)
374-
- fields rendered with StructuredText are hyperlinked by default
375-
- additional attributes for input element may be passed to the 'field'
376-
method of a property wrapper
377-
- added "copy_url" method to generate a URL for copying an item
354+
In this release:
355+
356+
Feature:
357+
- scripts/import_sf.py will import a tracker from Sourceforge.NET
358+
- added hasRole('Role Name') to HTMLUser
359+
360+
Fixed:
361+
- SQL generation for sort/group by separate Link properties (sf bug
362+
1417565)
363+
- fix timezone offsetting in email Date: header
364+
- fix security check for hasPermission('Permission', None)
378365
''',
379366
'author': "Richard Jones",
380367
'author_email': "[email protected]",

0 commit comments

Comments
 (0)