pgwui.route_prefix = /pgwui/programs
-The routes of individual PGWUI components can be changed::
+The routes of individual PGWUI components are configured via each
+component's name and can be changed::
pgwui.routes =
# The syntax is: routename = new/route/value
# Make PGWUI Logout available at https://www.example.com/logmeout
- logout = /logmeout
+ pgwui_logout = /logmeout
# Make PGWUI upload available at https://www.example.com/gimmie
- upload = /gimmie
+ pgwui_upload = /gimmie
-The route names of each of the PGWUI components is given in their
-respective documentation. In general, route names correspond to
-component names.
+Route names must match component names.
Both ``pgwui.route_prefix`` and ``pgwui.routes`` may be used in one
configuration.
# Whether or not to change the db content. (required)
pgwui.dry_run = False
+# Menu presentation
+
+# The PGWUI_Menu component automaticaly constructs a menu for the
+# PGWUI components in use. The display value of the menu items can
+# be overridden.
+#pgwui.pgwui_upload =
+# menu_label = upload -- Upload File Into Database
+
# Routing
# Routes are what call up specific pages. They are the
# The syntax is "name" = "route", one per line. The "name" is the
# name of the PGWUI component. "route" is the route to use to access
# the component. So to access the logout page at
-# http://example.com/logmeout the line would be: logout = /logmeout
+# http://example.com/logmeout the line would be: pgwui_logout = /logmeout
#
# Overriding routes is optional.
#
# The default for some PGWUI components are:
# pgwui.routes =
-# logout = /logmeout
-# upload = /put-in
+# pgwui_logout = /logmeout
+# pgwui_upload = /put-in
# Settings validation
# The syntax is "name" = "route", one per line. The "name" is the
# name of the PGWUI component. "route" is the route to use to access
# the component. So to access the logout page at
-# http://example.com/logmeout the line would be: logout = /logmeout
+# http://example.com/logmeout the line would be: pgwui_logout = /logmeout
#
# Overriding routes is optional.
#
# The default for some PGWUI components are:
# pgwui.routes =
-# logout = /logout
-# upload = /upload
+# pgwui_logout = /logout
+# pgwui_upload = /upload
# Settings validation