Skip to content

Commit 55f9d42

Browse files
committed
Merge latest changes.
2 parents 747532e + b88b3e9 commit 55f9d42

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

CHANGES.txt

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
This file contains the changes to the Roundup system over time.
2-
The entries are given with the most recent entry first.
3-
Each entry has the deveoper who committed the change in brackets.
1+
This file contains significant changes to Roundup over time.
2+
Entries are given with the most recent entry first.
3+
Each entry has the developer who committed the change in brackets.
44
Entries without name were done by Richard Jones.
55

6-
2011-XX-XX: 1.4.20
6+
2012-XX-XX: 1.4.20
77

88
Features:
99

@@ -12,14 +12,14 @@ Features:
1212
chameleon in the config). A new config-option "template_engine" under
1313
[main] can take these config-options, the default is zopetal.
1414
Thanks to Cheer Xiao for the idea of making this configurable *and*
15-
for the actual implementation!
15+
for the actual implementation! (Ralf)
1616
- issue2550678: Allow pagesize=-1 which returns all results.
1717
Suggested and implemented by John Kristensen.
1818
Tested by Satchidanand Haridas. (Bernhard)
1919
- Allow to turn off translation of generated html options in menu method
2020
of LinkHTMLProperty and MultilinkHTMLProperty -- default is
2121
translation as it used to be (Ralf)
22-
- Sending of PGP-Encrypted mail to all users or selected users (via
22+
- Sending of OpenPGP encrypted mail to all users or selected users (via
2323
roles) is now working. (Ralf)
2424
- Add config-option "nosy" to messages_to_author setting in [nosy]
2525
section of config: This will send a message to the author only
@@ -45,42 +45,42 @@ Fixed:
4545
is addressed to [email protected] this would (wrongly) match. (Ralf)
4646
- issue2550729: Fix password history display for anydbm backend, thanks
4747
to Ralf Hemmecke for reporting. (Ralf)
48-
- PGP support is again working (pyme API has changed significantly) and
48+
- OpenPGP support is again working (pyme API has changed significantly) and
4949
we now have a regression test. We now take care that bounce-messages
5050
for incoming encrypted mails or mails where the policy dictates that
51-
outgoing traffic should be encrypted is actually pgp-encrypted. (Ralf)
51+
outgoing traffic should be encrypted is actually OpenPGP encrypted. (Ralf)
5252
- Ignore confirm set() fields by themselves in the absence of non-"confirm"
5353
values; otherwise a bare confirm field can be used to change the a
54-
password. Reported by Cam Blackwood.
54+
password. Reported by Cam Blackwood. (Ralf)
5555
- Updated version of simplified Chinese message file by Cheer Xiao:
5656
Corrected some mistakes, added a few more items and did some
57-
formating.
57+
formating. (Ralf)
5858
- Fix xmlrpc URL parsing so that passwords may contain a ':' character
5959
(Ralf)
6060
- Be more tolerant when parsing RFC2047 encoded mail headers. Use
6161
backported version of my proposed changes to
6262
email.header.decode_header in http://bugs.python.org/issue1079
6363
(Ralf)
6464
- issue2550684 Fix XSS vulnerability when username contains HTML code,
65-
thanks to Thomas Arendsen Hein for reporting and patch.
65+
thanks to Thomas Arendsen Hein for reporting and patch. (Ralf)
6666
- issue2550711 Fix XSS vulnerability in @action parameter,
67-
thanks to "om" for reporting.
67+
thanks to "om" for reporting. (Ralf)
6868
- issue2550535 In some cases even when keep_quoted_text=yes is
6969
configured we would strip quoted sections. This hit the python
7070
bug-tracker especially for python interpreter examples with leading
7171
'>>>' strings. The fix is slightly different compared to the proposal
7272
as this broke keep_quoted_text=no in certain cases. We also fix a bug
7373
where keep_quoted_text=no would drop the last line of a non-quoted
74-
section if there wasn't an empty line between the next quotes.
74+
section if there wasn't an empty line between the next quotes. (Ralf)
7575
- issue2431638 wrong registration link in bounce mail for non-registered
76-
users reported *years* ago by anonymous
76+
users reported *years* ago by anonymous (Ralf)
7777
- Fix doc/upgrading.txt which produces errors with latest docutils about
7878
wrong block structure. Fix .gitignore in doc directory. Thanks to
79-
Cheer Xiao for the patches.
79+
Cheer Xiao for the patches. (Ralf)
8080
- Fix wrong execute permissions on some files, thanks to Cheer Xiao for
81-
the patch.
81+
the patch. (Ralf)
8282
- Fix override of TemplatingUtils in instance.py, thanks to Cheer Xiao
83-
for the patch.
83+
for the patch. (Ralf)
8484
- Fix another XSS with the "otk" parameter, thanks to Jesse Ruderman for
8585
reporting. (Ralf)
8686
- Mark cookies HttpOnly and -- if https is used -- secure. Fixes

demo.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,19 +105,19 @@ def run_demo(home):
105105
hostname, port = urlparse.urlparse(url)[1].split(':')
106106
port = int(port)
107107
success_message = '''Server running - connect to:
108-
%s
108+
%(url)s
109109
1. Log in as "demo"/"demo" or "admin"/"admin".
110110
2. Hit Control-C to stop the server.
111-
3. Re-start the server by running "roundup-demo" again.
112-
4. Re-initialise the server by running "roundup-demo nuke".
111+
3. Re-start the server by running "%(script)s" again.
112+
4. Re-initialise the server by running "%(script)s nuke".
113113
114114
Demo tracker is set up to be accessed by localhost browser. If you
115115
run demo on a server host, please stop the demo, open file
116116
"demo/config.ini" with your editor, change the host name in the "web"
117117
option in section "[tracker]", save the file, then re-run the demo
118118
program. If you want to change backend types, you must use "nuke".
119119
120-
''' % url
120+
''' % dict(url=url, script=sys.argv[0])
121121

122122
# disable command line processing in roundup_server
123123
sys.argv = sys.argv[:1] + ['-p', str(port), 'demo=' + home]

doc/announcement.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ Roundup requires python 2.4 or later (but not 3+) for correct operation.
5555

5656
To give Roundup a try, just download (see below), unpack and run::
5757

58-
roundup-demo
58+
python demo.py
5959

6060
Release info and download page:
61-
http://cheeseshop.python.org/pypi/roundup
61+
http://pypi.python.org/pypi/roundup
6262
Source and documentation is available at the website:
6363
http://roundup-tracker.org/
6464
Mailing lists - the place to ask questions:

0 commit comments

Comments
 (0)