Enable the online help button on the index dialogue. Fixes #4053
parent
870d373ced
commit
cdc9ed678f
|
@ -18,6 +18,7 @@ Bug fixes
|
||||||
*********
|
*********
|
||||||
|
|
||||||
| `Bug #3995 <https://redmine.postgresql.org/issues/3995>`_ - Avoid 'bogus varno' message from Postgres when viewing the SQL for a table with triggers.
|
| `Bug #3995 <https://redmine.postgresql.org/issues/3995>`_ - Avoid 'bogus varno' message from Postgres when viewing the SQL for a table with triggers.
|
||||||
|
| `Bug #4053 <https://redmine.postgresql.org/issues/4053>`_ - Enable the online help button on the index dialogue.
|
||||||
| `Bug #4054 <https://redmine.postgresql.org/issues/4054>`_ - Handle resultsets with zero columns correctly in the Query Tool.
|
| `Bug #4054 <https://redmine.postgresql.org/issues/4054>`_ - Handle resultsets with zero columns correctly in the Query Tool.
|
||||||
| `Bug #4060 <https://redmine.postgresql.org/issues/4060>`_ - Fix the latexpdf doc build.
|
| `Bug #4060 <https://redmine.postgresql.org/issues/4060>`_ - Fix the latexpdf doc build.
|
||||||
| `Bug #4071 <https://redmine.postgresql.org/issues/4071>`_ - Ensure that Firefox prompts for a filename/location when downloading query results as a CSV file.
|
| `Bug #4071 <https://redmine.postgresql.org/issues/4071>`_ - Ensure that Firefox prompts for a filename/location when downloading query results as a CSV file.
|
||||||
|
|
|
@ -24,9 +24,6 @@ define('pgadmin.node.index', [
|
||||||
node: 'index',
|
node: 'index',
|
||||||
label: gettext('Indexes'),
|
label: gettext('Indexes'),
|
||||||
type: 'coll-index',
|
type: 'coll-index',
|
||||||
sqlAlterHelp: 'sql-alterindex.html',
|
|
||||||
sqlCreateHelp: 'sql-createindex.html',
|
|
||||||
dialogHelp: url_for('help.static', {'filename': 'index_dialog.html'}),
|
|
||||||
columns: ['name', 'description'],
|
columns: ['name', 'description'],
|
||||||
hasStatistics: true,
|
hasStatistics: true,
|
||||||
statsPrettifyFields: [gettext('Size'), gettext('Index size')],
|
statsPrettifyFields: [gettext('Size'), gettext('Index size')],
|
||||||
|
@ -227,6 +224,7 @@ define('pgadmin.node.index', [
|
||||||
collection_type: ['coll-table', 'coll-view'],
|
collection_type: ['coll-table', 'coll-view'],
|
||||||
sqlAlterHelp: 'sql-alterindex.html',
|
sqlAlterHelp: 'sql-alterindex.html',
|
||||||
sqlCreateHelp: 'sql-createindex.html',
|
sqlCreateHelp: 'sql-createindex.html',
|
||||||
|
dialogHelp: url_for('help.static', {'filename': 'index_dialog.html'}),
|
||||||
type: 'index',
|
type: 'index',
|
||||||
label: gettext('Index'),
|
label: gettext('Index'),
|
||||||
hasSQL: true,
|
hasSQL: true,
|
||||||
|
|
Loading…
Reference in New Issue