Additional docs from Susan.

This commit is contained in:
Dave Page
2016-05-26 15:29:33 +01:00
parent 7aea8f8536
commit b85fa58344
46 changed files with 634 additions and 3 deletions

View File

@@ -52,6 +52,7 @@ function($, _, S, pgAdmin, pgBrowser, alertify) {
type: 'user_mapping',
sqlAlterHelp: 'sql-alterusermapping.html',
sqlCreateHelp: 'sql-createusermapping.html',
dialogHelp: '{{ url_for('help.static', filename='user_mapping_dialog.html') }}',
label: '{{ _('User Mapping') }}',
hasSQL: true,
hasDepends: true,

View File

@@ -111,6 +111,7 @@ function($, _, S, pgAdmin, pgBrowser, alertify) {
type: 'domain',
sqlAlterHelp: 'sql-alterdomain.html',
sqlCreateHelp: 'sql-createdomain.html',
dialogHelp: '{{ url_for('help.static', filename='domain_dialog.html') }}',
label: '{{ _('Domain') }}',
collection_type: 'coll-domain',
hasSQL: true,

View File

@@ -413,6 +413,7 @@ function($, _, S, pgAdmin, pgBrowser, alertify) {
type: 'fts_configuration',
sqlAlterHelp: 'sql-altertsconfig.html',
sqlCreateHelp: 'sql-createtsconfig.html',
dialogHelp: '{{ url_for('help.static', filename='fts_configuration_dialog.html') }}',
canDrop: true,
canDropCascade: true,
label: '{{ _('FTS Configuration') }}',

View File

@@ -57,6 +57,7 @@ function($, _, S, pgAdmin, pgBrowser, alertify) {
type: 'fts_dictionary',
sqlAlterHelp: 'sql-altertsdictionary.html',
sqlCreateHelp: 'sql-createtsdictionary.html',
dialogHelp: '{{ url_for('help.static', filename='fts_dictionary_dialog.html') }}',
canDrop: true,
canDropCascade: true,
label: '{{ _('FTS dictionary') }}',

View File

@@ -279,6 +279,7 @@ function($, _, S, pgAdmin, pgBrowser, alertify, Backgrid) {
type: 'type',
sqlAlterHelp: 'sql-altertype.html',
sqlCreateHelp: 'sql-createtype.html',
dialogHelp: '{{ url_for('help.static', filename='type_dialog.html') }}',
label: '{{ _('Type') }}',
collection_type: 'coll-type',
hasSQL: true,

View File

@@ -38,6 +38,7 @@ function($, _, S, pgAdmin, alertify, pgBrowser, CodeMirror) {
type: 'mview',
sqlAlterHelp: 'sql-altermaterializedview.html',
sqlCreateHelp: 'sql-creatematerializedview.html',
dialogHelp: '{{ url_for('help.static', filename='materialized_view_dialog.html') }}',
label: '{{ _("Materialized View") }}',
hasSQL: true,
hasDepends: true,

View File

@@ -38,6 +38,7 @@ function($, _, S, pgAdmin, pgBrowser, CodeMirror) {
type: 'view',
sqlAlterHelp: 'sql-alterview.html',
sqlCreateHelp: 'sql-createview.html',
dialogHelp: '{{ url_for('help.static', filename='view_dialog.html') }}',
label: '{{ _("View") }}',
hasSQL: true,
hasDepends: true,