Mercurial > p > roundup > code
diff roundup/templates/classic/__init__.py @ 1055:cf72eae57a2c
Fixed instance installation
... moved the htmlbase module into templates and call it
<template>_htmlbase.py ... no more try/except in instance __init__!
Added :required to form handling.
Handle multiple values for single form items with decent error report.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 05 Sep 2002 23:39:14 +0000 |
| parents | 18134bffab37 |
| children | 04a6b3bfbf23 |
line wrap: on
line diff
--- a/roundup/templates/classic/__init__.py Thu Sep 05 05:25:23 2002 +0000 +++ b/roundup/templates/classic/__init__.py Thu Sep 05 23:39:14 2002 +0000 @@ -15,18 +15,18 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.5 2001-08-07 00:24:43 richard Exp $ +# $Id: __init__.py,v 1.6 2002-09-05 23:39:14 richard Exp $ import sys from instance_config import * -try: - from dbinit import * -except: - pass # in install dir (probably :) +from dbinit import * from interfaces import * # # $Log: not supported by cvs2svn $ +# Revision 1.5 2001/08/07 00:24:43 richard +# stupid typo +# # Revision 1.4 2001/08/07 00:15:51 richard # Added the copyright/license notice to (nearly) all files at request of # Bizar Software.
