Preface all pgwui settings with "pgwui."
authorKarl O. Pinc <kop@meme.com>
Wed, 7 Nov 2018 14:25:28 +0000 (08:25 -0600)
committerKarl O. Pinc <kop@meme.com>
Fri, 9 Nov 2018 03:30:25 +0000 (21:30 -0600)
examples/development.ini
examples/pgwui.ini

index 9475cef89057d8319b7d57fd4ec4eff1b7264817..a3848256a4a26b2bd07d5e372ad90d7ba26b7f8c 100644 (file)
@@ -16,8 +16,8 @@ use = egg:PGWUI_Server
 
 # Postgres client configuration.
 # (An empty string for host means use the unix socket.)
-pg_host =
-pg_port = 5432
+pgwui.pg_host =
+pgwui.pg_port = 5432
 
 # What PGWUI modules to use.
 pyramid.includes =
@@ -27,7 +27,7 @@ pyramid.includes =
 
 # Whether or not to change the db content.
 #dry_run = True
-dry_run = False
+pgwui.dry_run = False
 
 
 #
index 74b563b2d6c49d3de289192e78ec6c046847e2a8..b68aeac459c3c2b51ac9a0dd697a89fb26a6d104 100644 (file)
@@ -16,8 +16,8 @@ use = egg:PGWUI_Server
 
 # Postgres client configuration.
 # (An empty string for host means use the unix socket.)
-pg_host =
-pg_port = 5432
+pgwui.pg_host =
+pgwui.pg_port = 5432
 
 # What PGWUI modules to use.
 pyramid.includes =
@@ -25,7 +25,7 @@ pyramid.includes =
     pgwui_upload
 
 # Whether or not to change the db content.
-dry_run = False
+pgwui.dry_run = False
 
 
 #