close Warning: Can't synchronize with repository "(default)" (Unsupported version control system "svn": No module named svn). Look in the Trac log for more information.

Changes between Initial Version and Version 1 of ConfigOptions


Ignore:
Timestamp:
Jun 25, 2008, 5:25:51 PM (16 years ago)
Author:
cmlenz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ConfigOptions

    v1 v1  
     1= Configuration Options =
     2
     3Various configuration options can be set to influence how various subsystems in the framework go about their work. Setting these options is done by passing them into the `Application` constructor as keyword arguments, or by setting the values in the `app.config` dictionary.
     4
     5== General ==
     6
     7 `debug`:: Whether debugging and developer-oriented error pages should be enabled
     8
     9== Email ==
     10
     11 `smtp_server`:: The host name of the SMTP server to use for outgoing mail
     12 `smtp_username`:: The username to use for authentication against the SMTP server
     13 `smtp_password`:: The password to use for authentication against the SMTP server
     14
     15== Internationalization ==
     16
     17 `locale`:: The default locale to use
     18 `timezone`:: The timezone to use for date/time display
     19
     20== Templating ==
     21
     22 `doctype`:: The default `DOCTYPE` to use for rendered HTML pages
     23
     24== Security ==
     25
     26 `csrf_protection`:: Whether forms should automatically be protected against Cross-Site Request Forgery (CSRF) attacks
     27