From 92fb23523ea9f01329acedb1241174fa084f9de6 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sat, 22 Jun 2024 22:00:57 -0500 Subject: [PATCH] Remove leftover "pgwui." prefixes in the yaml configs --- examples/etc/pgwui.yaml | 10 +++++----- examples/misc/development.yaml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/etc/pgwui.yaml b/examples/etc/pgwui.yaml index 62daf18..7271aa9 100644 --- a/examples/etc/pgwui.yaml +++ b/examples/etc/pgwui.yaml @@ -23,7 +23,7 @@ app: pgwui: # Postgres connection configuration. - # Both pgwui.pg_host and pgwui.pg_port are optional; + # Both pg_host and pg_port are optional; # they default to the Unix PG socket and the default Postgres port. # An empty string for host means use the unix socket. pg_host: '' @@ -31,7 +31,7 @@ app: # The database to use by default. # Not having the setting is the same as "", the empty string. - #pgwui.default_db: '' + #default_db: '' # The (PostgreSQL-named) encoding used for strings on the client-side. # The list of PostgreSQL encodings can be found at: @@ -114,7 +114,7 @@ app: # How to link to a menu of PGWUI components. An alternative to using # the PGWUI_Menu component. - # Configured as pgwui.home_page is configured, above. + # Configured as home_page is configured, above. # The default is to have no menu. # # The following example uses the URL without a path (e.g., @@ -133,7 +133,7 @@ app: #autoconfigure: true # What PGWUI components and other pyramid modules to use. - # (Required when pgwui.autoconfigure is false, or you want the + # (Required when autoconfigure is false, or you want the # debug toolbar.) # sample that includes the PGUI logout and upload components, # in the block-style list format rather than the inline @@ -368,7 +368,7 @@ app: # A list of databases for which an extra # confirmation step is required before alteration. Comparisons # are done in a case-insensitive fashion. The default is the - # value of pgwui.default_db. The setting "" + # value of default_db. The setting "" # means that no database requires additional confirmation # before alteration. Example: # sensitive_dbs: diff --git a/examples/misc/development.yaml b/examples/misc/development.yaml index 950b78a..4c4db1b 100644 --- a/examples/misc/development.yaml +++ b/examples/misc/development.yaml @@ -24,7 +24,7 @@ app: pgwui: # Postgres connection configuration. - # Both pgwui.pg_host and pgwui.pg_port are optional; + # Both pg_host and pg_port are optional; # they default to the Unix PG socket and the default Postgres port. # An empty string for host means use the unix socket. pg_host: '' @@ -32,7 +32,7 @@ app: # The database to use by default. # Not having the setting is the same as "", the empty string. - #pgwui.default_db: '' + #default_db: '' # The (PostgreSQL-named) encoding used for strings on the client-side. # The list of PostgreSQL encodings can be found at: @@ -115,7 +115,7 @@ app: # How to link to a menu of PGWUI components. An alternative to using # the PGWUI_Menu component. - # Configured as pgwui.home_page is configured, above. + # Configured as home_page is configured, above. # The default is to have no menu. # # The following example uses the URL without a path (e.g., @@ -134,7 +134,7 @@ app: #autoconfigure: true # What PGWUI components and other pyramid modules to use. - # (Required when pgwui.autoconfigure is False, or you want the + # (Required when autoconfigure is False, or you want the # debug toolbar.) # sample that includes the PGUI logout and upload components, # in the block-style list format rather than the inline @@ -369,7 +369,7 @@ app: # A list of databases for which an extra # confirmation step is required before alteration. Comparisons # are done in a case-insensitive fashion. The default is the - # value of pgwui.default_db. The setting "" + # value of default_db. The setting "" # means that no database requires additional confirmation # before alteration. Example: # sensitive_dbs: -- 2.34.1