IMO as a general rule: don't use the ini file for anything else than the server/wsgi setup and handle all application configuration and passwords in separate files. (However you can point to the configuration to be loaded in the ini file.) The downside is you have to process these things yourself. With a few lines of python code in the wsgi main function you can do everything (like reading encrypted password from files or validating configurations before applying them).
Paster ini files provide zero functionality to do more than simple key: value mappings. In the end you are constantly looking for workarounds. -- ---------------------------------------------------------------------------------------------- Arndt Droullier, Nive GmbH -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pylons-discuss. For more options, visit https://groups.google.com/groups/opt_out.
