diff options
author | Federico Di Gregorio <fog@initd.org> | 2006-06-07 23:41:40 +0000 |
---|---|---|
committer | Federico Di Gregorio <fog@initd.org> | 2006-06-07 23:41:40 +0000 |
commit | 0544e968124e488d0397bb3898dd9dd3d272ba4d (patch) | |
tree | 8be972453879fd78920e9f3c6a5c0fba6423d8ad | |
parent | 429fd4f1d7833e5db2857b5c71a87ef2a37becb1 (diff) | |
download | psycopg2-0544e968124e488d0397bb3898dd9dd3d272ba4d.tar.gz |
Temporarily removed browse tab.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ZPsycopgDA/DA.py | 9 |
2 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2006-06-08 Federico Di Gregorio <fog@initd.org> + + * ZPsycopgDA/DA.py: removed Browse table for 2.0 release; we'll + add it back later. + 2006-05-26 Federico Di Gregorio <fog@initd.org> * Applied better PostgreSQL patch from AA. diff --git a/ZPsycopgDA/DA.py b/ZPsycopgDA/DA.py index a4d34c0..8720506 100644 --- a/ZPsycopgDA/DA.py +++ b/ZPsycopgDA/DA.py @@ -144,11 +144,12 @@ class Connection(Shared.DC.ZRDB.Connection.Connection): ## browsing and table/column management ## - manage_options = Shared.DC.ZRDB.Connection.Connection.manage_options + ( - {'label': 'Browse', 'action':'manage_browse'},) + manage_options = Shared.DC.ZRDB.Connection.Connection.manage_options + # + ( + # {'label': 'Browse', 'action':'manage_browse'},) - manage_tables = HTMLFile('dtml/tables', globals()) - manage_browse = HTMLFile('dtml/browse', globals()) + #manage_tables = HTMLFile('dtml/tables', globals()) + #manage_browse = HTMLFile('dtml/browse', globals()) info = None |