interaction with the database.
+Usage
+-----
+
+To use pgwui_common configure your pyramid app by putting the
+following into your package's __init__.py::
+
+ from pyramid.config import Configurator
+
+ def main(global_config, **settings):
+ config = Configurator()
+ config.include('pgwui_common')
+
+Note that you can override any of the assets in this package or any of
+the PGWUI packages, any of the templates or css, using Pyramid's Asset
+Override API (or via pyramid.includes = yourextension in the .ini file).
+
+
Development Status
------------------
# Karl O. Pinc <kop@meme.com>
'''Provide a way to configure PGWUI.
-
-To use pgwui_common configure your pyramid app by putting the
-following into your package's __init__.py:
-
- from pyramid.config import Configurator
-
- def main(global_config, **settings):
- config = Configurator()
- config.include('pgwui_common')
-
-Note that you can override any of the assets in this package or any of
-the PGWUI packages, any of the templates or css, using Pyramid's Asset
-Override API (or via pyramid.includes = yourextension in the .ini file).
-
'''