Author: reinhard Date: 2005-07-05 12:09:13 -0500 (Tue, 05 Jul 2005) New Revision: 7685
Modified: trunk/gnue-common/src/datasources/drivers/file/csvfile.py trunk/gnue-common/src/datasources/drivers/file/dbffile.py trunk/gnue-common/src/datasources/drivers/file/inifile.py Log: Fixed double %% in Info output. Modified: trunk/gnue-common/src/datasources/drivers/file/csvfile.py =================================================================== --- trunk/gnue-common/src/datasources/drivers/file/csvfile.py 2005-07-05 07:56:11 UTC (rev 7684) +++ trunk/gnue-common/src/datasources/drivers/file/csvfile.py 2005-07-05 17:09:13 UTC (rev 7685) @@ -54,15 +54,15 @@ Connection Properties --------------------- -* filename -- File name of the CSV file. Can contain %%(home)s, %%(configdir)s, - and %%(table)s placeholders. Using the %%(table)s placeholder, this driver +* filename -- File name of the CSV file. Can contain %(home)s, %(configdir)s, + and %(table)s placeholders. Using the %(table)s placeholder, this driver can be used to emulate a database with several tables. Examples -------- [myconn] provider = csvfile - filename = %%(home)s/data/%%(table)s.csv + filename = %(home)s/data/%(table)s.csv Notes ----- Modified: trunk/gnue-common/src/datasources/drivers/file/dbffile.py =================================================================== --- trunk/gnue-common/src/datasources/drivers/file/dbffile.py 2005-07-05 07:56:11 UTC (rev 7684) +++ trunk/gnue-common/src/datasources/drivers/file/dbffile.py 2005-07-05 17:09:13 UTC (rev 7685) @@ -53,15 +53,15 @@ Connection Properties --------------------- -* filename -- File name of the DBF file. Can contain %%(home)s, %%(configdir)s, - and %%(table)s placeholders. Using the %%(table)s placeholder, this driver +* filename -- File name of the DBF file. Can contain %(home)s, %(configdir)s, + and %(table)s placeholders. Using the %(table)s placeholder, this driver can be used to emulate a database with several tables. Examples -------- [myconn] provider = dbffile - filename = %%(home)s/data/%%(table)s.dbf + filename = %(home)s/data/%(table)s.dbf Notes ----- Modified: trunk/gnue-common/src/datasources/drivers/file/inifile.py =================================================================== --- trunk/gnue-common/src/datasources/drivers/file/inifile.py 2005-07-05 07:56:11 UTC (rev 7684) +++ trunk/gnue-common/src/datasources/drivers/file/inifile.py 2005-07-05 17:09:13 UTC (rev 7685) @@ -57,14 +57,14 @@ Connection Properties --------------------- -* filename -- File name of the INI file. Can contain %%(home)s, %%(configdir)s, - and %%(table)s placeholders. +* filename -- File name of the INI file. Can contain %(home)s, %(configdir)s, + and %(table)s placeholders. Examples -------- [myconn] provider = inifile - filename = %%(configdir)s/connections.conf + filename = %(configdir)s/connections.conf Notes ----- _______________________________________________ Commit-gnue mailing list [email protected] http://lists.gnu.org/mailman/listinfo/commit-gnue
