Mercurial > p > roundup > code
diff roundup/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 | fb8a8eb55aac |
| children | 04a6b3bfbf23 |
line wrap: on
line diff
--- a/roundup/init.py Thu Sep 05 05:25:23 2002 +0000 +++ b/roundup/init.py Thu Sep 05 23:39:14 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: init.py,v 1.21 2002-08-16 04:25:03 richard Exp $ +# $Id: init.py,v 1.22 2002-09-05 23:39:12 richard Exp $ __doc__ = """ Init (create) a roundup instance. @@ -89,6 +89,7 @@ # first, copy the template dir over from roundup.templates import builder + # copy the roundup.templates.<template> package contents to the instance dir template_dir = os.path.split(__file__)[0] template_name = template template = os.path.join(template_dir, 'templates', template) @@ -114,6 +115,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.21 2002/08/16 04:25:03 richard +# cleanup: moved templatebuilder into templates.builder +# # Revision 1.20 2002/07/14 02:05:53 richard # . all storage-specific code (ie. backend) is now implemented by the backends #
