|
16 | 16 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
17 | 17 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
18 | 18 | # |
19 | | -# $Id: setup.py,v 1.55.2.6 2004-02-15 23:27:44 richard Exp $ |
| 19 | +# $Id: setup.py,v 1.55.2.7 2004-02-24 23:41:30 richard Exp $ |
20 | 20 |
|
21 | 21 | from distutils.core import setup, Extension |
22 | 22 | from distutils.util import get_platform |
@@ -150,7 +150,7 @@ def main(): |
150 | 150 | ] |
151 | 151 | installdatafiles = [ |
152 | 152 | ('share/roundup/cgi-bin', ['cgi-bin/roundup.cgi']), |
153 | | - ] |
| 153 | + ] |
154 | 154 |
|
155 | 155 | # install man pages on POSIX platforms |
156 | 156 | if os.name == 'posix': |
@@ -178,32 +178,25 @@ def main(): |
178 | 178 | # perform the setup action |
179 | 179 | from roundup import __version__ |
180 | 180 | setup( |
181 | | - name = "roundup", |
| 181 | + name = "roundup", |
182 | 182 | version = __version__, |
183 | 183 | description = "Roundup is a simple-to-use and -install "\ |
184 | 184 | "issue-tracking system with command-line, web and e-mail "\ |
185 | 185 | "interfaces.", |
186 | | - long_description = |
| 186 | + long_description = |
187 | 187 | '''Roundup is a simple-to-use and -install issue-tracking system with |
188 | 188 | command-line, web and e-mail interfaces. It is based on the winning design |
189 | 189 | from Ka-Ping Yee in the Software Carpentry "Track" design competition. |
190 | 190 |
|
191 | | -The 0.6.5 release fixes some bugs: |
192 | | -- mailgw handling of subject-line errors |
193 | | -- allow serving of FileClass file content when the class isn't called |
194 | | - "file" (eg. messages and other FileClasses) |
195 | | -- allowed negative ids (ie. new item markers) in HTMLClass.getItem, |
196 | | - allowing "db/file_with_status/-1/status/menu" to generate a useful |
197 | | - widget |
198 | | -- fixed content-type when templates are serving up xml (thanks Godefroid |
199 | | - Chapelle) |
200 | | -- fixed IE double-submit when it shouldn't (sf bug 842254) |
201 | | -- fixed check for JS pop()/push() to make more general (sf bug 877504) |
202 | | -- fix re-enabling queries (sf bug 861940) |
203 | | -- use supplied content-type on file uploads before trying filename |
204 | | -- fixed roundup-reminder script to use default schema (thanks Klamer Schutte) |
205 | | -- fixed edit action / parsePropsFromForm to handle index-page edits better |
206 | | -- safer logging from HTTP server (sf bug 896917) |
| 191 | +The 0.6.6 release fixes some bugs: |
| 192 | +- fixed registration (sf bug 903283) |
| 193 | +- don't insert spaces into designators, it just confuses users (sf bug |
| 194 | + 898087) |
| 195 | +- Eudora can't handle utf-8 headers. We love Eudora. (sf bug 900046) |
| 196 | +- fixed bug in args to new DateHTMLProperty in the local() method (sf bug |
| 197 | + 901444) |
| 198 | +- also changed rego to not use a 302 during confirmation, as this seems to |
| 199 | + confuse some email clients or browsers |
207 | 200 | ''', |
208 | 201 | author = "Richard Jones", |
209 | 202 | author_email = "[email protected]", |
|
0 commit comments