|
16 | 16 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
17 | 17 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
18 | 18 | # |
19 | | -# $Id: roundup.cgi,v 1.29 2002-09-06 05:05:18 richard Exp $ |
| 19 | +# $Id: roundup.cgi,v 1.30 2002-09-10 01:07:05 richard Exp $ |
20 | 20 |
|
21 | 21 | # python version check |
22 | 22 | from roundup import version_check |
@@ -197,138 +197,4 @@ sys.stdout.flush() |
197 | 197 | sys.stdout, sys.stderr = out, err |
198 | 198 | LOG.close() |
199 | 199 |
|
200 | | -# |
201 | | -# $Log: not supported by cvs2svn $ |
202 | | -# Revision 1.28 2002/09/04 04:30:58 richard |
203 | | -# add the path to the cgi-bin request |
204 | | -# |
205 | | -# Revision 1.27 2002/09/04 02:11:00 richard |
206 | | -# *** empty log message *** |
207 | | -# |
208 | | -# Revision 1.26 2002/09/04 01:58:33 richard |
209 | | -# fix cgi client importing |
210 | | -# |
211 | | -# Revision 1.25 2002/08/22 00:14:18 richard |
212 | | -# Fix to be able to report errors even if the cgi module can't be imported(!) |
213 | | -# |
214 | | -# Revision 1.24 2002/01/05 02:21:22 richard |
215 | | -# fixes |
216 | | -# |
217 | | -# Revision 1.23 2002/01/05 02:19:03 richard |
218 | | -# i18n'ification |
219 | | -# |
220 | | -# Revision 1.22 2001/12/13 00:20:01 richard |
221 | | -# . Centralised the python version check code, bumped version to 2.1.1 (really |
222 | | -# needs to be 2.1.2, but that isn't released yet :) |
223 | | -# |
224 | | -# Revision 1.21 2001/12/02 05:06:16 richard |
225 | | -# . We now use weakrefs in the Classes to keep the database reference, so |
226 | | -# the close() method on the database is no longer needed. |
227 | | -# I bumped the minimum python requirement up to 2.1 accordingly. |
228 | | -# . #487480 ] roundup-server |
229 | | -# . #487476 ] INSTALL.txt |
230 | | -# |
231 | | -# I also cleaned up the change message / post-edit stuff in the cgi client. |
232 | | -# There's now a clearly marked "TODO: append the change note" where I believe |
233 | | -# the change note should be added there. The "changes" list will obviously |
234 | | -# have to be modified to be a dict of the changes, or somesuch. |
235 | | -# |
236 | | -# More testing needed. |
237 | | -# |
238 | | -# Revision 1.20 2001/11/26 22:55:56 richard |
239 | | -# Feature: |
240 | | -# . Added INSTANCE_NAME to configuration - used in web and email to identify |
241 | | -# the instance. |
242 | | -# . Added EMAIL_SIGNATURE_POSITION to indicate where to place the roundup |
243 | | -# signature info in e-mails. |
244 | | -# . Some more flexibility in the mail gateway and more error handling. |
245 | | -# . Login now takes you to the page you back to the were denied access to. |
246 | | -# |
247 | | -# Fixed: |
248 | | -# . Lots of bugs, thanks Roché and others on the devel mailing list! |
249 | | -# |
250 | | -# Revision 1.19 2001/11/22 00:25:10 richard |
251 | | -# quick fix for file uploads on windows in roundup.cgi |
252 | | -# |
253 | | -# Revision 1.18 2001/11/06 22:10:11 jhermann |
254 | | -# Added env config; fixed request wrapper & index list; sort list by key |
255 | | -# |
256 | | -# Revision 1.17 2001/11/06 21:51:19 richard |
257 | | -# Fixed HTTP headers for top-level index in CGI script |
258 | | -# |
259 | | -# Revision 1.16 2001/11/01 22:04:37 richard |
260 | | -# Started work on supporting a pop3-fetching server |
261 | | -# Fixed bugs: |
262 | | -# . bug #477104 ] HTML tag error in roundup-server |
263 | | -# . bug #477107 ] HTTP header problem |
264 | | -# |
265 | | -# Revision 1.15 2001/10/29 23:55:44 richard |
266 | | -# Fix to CGI top-level index (thanks Juergen Hermann) |
267 | | -# |
268 | | -# Revision 1.14 2001/10/27 00:22:35 richard |
269 | | -# Fixed some URL issues in roundup.cgi, again thanks Juergen Hermann. |
270 | | -# |
271 | | -# Revision 1.13 2001/10/05 02:23:24 richard |
272 | | -# . roundup-admin create now prompts for property info if none is supplied |
273 | | -# on the command-line. |
274 | | -# . hyperdb Class getprops() method may now return only the mutable |
275 | | -# properties. |
276 | | -# . Login now uses cookies, which makes it a whole lot more flexible. We can |
277 | | -# now support anonymous user access (read-only, unless there's an |
278 | | -# "anonymous" user, in which case write access is permitted). Login |
279 | | -# handling has been moved into cgi_client.Client.main() |
280 | | -# . The "extended" schema is now the default in roundup init. |
281 | | -# . The schemas have had their page headings modified to cope with the new |
282 | | -# login handling. Existing installations should copy the interfaces.py |
283 | | -# file from the roundup lib directory to their instance home. |
284 | | -# . Incorrectly had a Bizar Software copyright on the cgitb.py module from |
285 | | -# Ping - has been removed. |
286 | | -# . Fixed a whole bunch of places in the CGI interface where we should have |
287 | | -# been returning Not Found instead of throwing an exception. |
288 | | -# . Fixed a deviation from the spec: trying to modify the 'id' property of |
289 | | -# an item now throws an exception. |
290 | | -# |
291 | | -# Revision 1.12 2001/10/01 05:55:41 richard |
292 | | -# Fixes to the top-level index |
293 | | -# |
294 | | -# Revision 1.11 2001/09/29 13:27:00 richard |
295 | | -# CGI interfaces now spit up a top-level index of all the instances they can |
296 | | -# serve. |
297 | | -# |
298 | | -# Revision 1.10 2001/08/07 00:24:42 richard |
299 | | -# stupid typo |
300 | | -# |
301 | | -# Revision 1.9 2001/08/07 00:15:51 richard |
302 | | -# Added the copyright/license notice to (nearly) all files at request of |
303 | | -# Bizar Software. |
304 | | -# |
305 | | -# Revision 1.8 2001/08/05 07:43:52 richard |
306 | | -# Instances are now opened by a special function that generates a unique |
307 | | -# module name for the instances on import time. |
308 | | -# |
309 | | -# Revision 1.7 2001/08/03 01:28:33 richard |
310 | | -# Used the much nicer load_package, pointed out by Steve Majewski. |
311 | | -# |
312 | | -# Revision 1.6 2001/08/03 00:59:34 richard |
313 | | -# Instance import now imports the instance using imp.load_module so that |
314 | | -# we can have instance homes of "roundup" or other existing python package |
315 | | -# names. |
316 | | -# |
317 | | -# Revision 1.5 2001/07/29 07:01:39 richard |
318 | | -# Added vim command to all source so that we don't get no steenkin' tabs :) |
319 | | -# |
320 | | -# Revision 1.4 2001/07/23 04:47:27 anthonybaxter |
321 | | -# renamed ROUNDUPS to ROUNDUP_INSTANCE_HOMES |
322 | | -# sys.exit(0) if python version wrong. |
323 | | -# |
324 | | -# Revision 1.3 2001/07/23 04:33:30 richard |
325 | | -# brought the CGI instance config dict in line with roundup-server |
326 | | -# |
327 | | -# Revision 1.2 2001/07/23 04:31:40 richard |
328 | | -# Fixed the roundup CGI script for updates to cgi_client.py |
329 | | -# |
330 | | -# Revision 1.1 2001/07/22 11:47:07 richard |
331 | | -# More Grande Splite |
332 | | -# |
333 | | -# |
334 | 200 | # vim: set filetype=python ts=4 sw=4 et si |
0 commit comments