From: Karl O. Pinc Date: Wed, 14 Nov 2018 00:55:07 +0000 (-0600) Subject: Add pgwui.route_prefix to example ini files X-Git-Url: https://papio.biology.duke.edu/gitweb/?a=commitdiff_plain;h=a6272fd59369fea6831cebc38582268432252e62;p=pgwui_server Add pgwui.route_prefix to example ini files --- diff --git a/examples/development.ini b/examples/development.ini index b70bccb..4500ff6 100644 --- a/examples/development.ini +++ b/examples/development.ini @@ -32,6 +32,25 @@ pyramid.includes = #dry_run = True pgwui.dry_run = False +# Routing + +# Routes are what call up specific pages. They are usually the +# part of the URL which comes after the http://example.com. +# +# All routes should probably begin with a "/" character but +# if they do not a "/" will be automatically prepended. +# +# A full URL may be given as a route. The is useful for redirecting +# to other sites. +# +# For more information on route syntax see: +# https://docs.pylonsproject.org/projects/pyramid/en/master/narr/urldispatch.html#route-pattern-syntax + +# A prefix for all routes. If the prefix is "/a/b/c" then +# all URLs will begin with something like: http://example.com/a/b/c +# The default is no prefix. +# pgwui.route_prefix = + # # Pyramid configuration diff --git a/examples/pgwui.ini b/examples/pgwui.ini index 421d31d..99213ba 100644 --- a/examples/pgwui.ini +++ b/examples/pgwui.ini @@ -30,6 +30,25 @@ pyramid.includes = # Whether or not to change the db content. pgwui.dry_run = False +# Routing + +# Routes are what call up specific pages. They are the +# part of the URL which comes after the http://example.com. +# +# All routes should probably begin with a "/" character but +# if they do not a "/" will be automatically prepended. +# +# A full URL may be given as a route. The is useful for redirecting +# to other sites. +# +# For more information on route syntax see: +# https://docs.pylonsproject.org/projects/pyramid/en/master/narr/urldispatch.html#route-pattern-syntax + +# A prefix for all routes. If the prefix is "/a/b/c" then +# all URLs will begin with something like: http://example.com/a/b/c +# The default is no prefix. +# pgwui.route_prefix = + # # Pyramid configuration