pgAdmin 4 commit: Add support for creating dialogs, and add an About di

From: Dave Page <dpage(at)pgadmin(dot)org>
To: pgadmin-hackers(at)postgresql(dot)org
Subject: pgAdmin 4 commit: Add support for creating dialogs, and add an About di
Date: 2015-01-27 16:57:23
Message-ID: E1YG9S7-00060f-1d@gothos.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Add support for creating dialogs, and add an About dialog.

This adds bootstrap-dialog to help with creation of nice dialogs,
and adds the ability for modules to render Javascript into the
browser, and specify onclick handlers in the menu system.

Also add a basic About dialog, using the new infrastructure and
showing some useful info about the application.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=53d649de701ba42e4f910d39037972ebb5754db3

Modified Files
--------------
web/config.py | 3 +
web/pgadmin/about/browser.py | 15 +-
web/pgadmin/about/templates/about/browser.js | 16 +
web/pgadmin/about/templates/about/index.html | 29 +-
web/pgadmin/about/views.py | 18 +-
web/pgadmin/browser/templates/browser/index.html | 14 +-
web/pgadmin/browser/views.py | 11 +-
web/pgadmin/static/css/bootstrap-dialog.css | 120 ++
web/pgadmin/static/css/bootstrap-dialog.min.css | 1 +
web/pgadmin/static/img/logo-128.png | Bin 0 -> 22429 bytes
web/pgadmin/static/img/logo-right-128.png | Bin 0 -> 22418 bytes
web/pgadmin/static/js/vendor/bootstrap-dialog.js | 1239 ++++++++++++++++++++
.../static/js/vendor/bootstrap-dialog.min.js | 1 +
web/pgadmin/templates/base.html | 2 +
web/pgadmin/templates/security/watermark.html | 2 +-
15 files changed, 1457 insertions(+), 14 deletions(-)

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2015-01-28 15:57:36 pgAdmin 4 commit: Replace bootstrap-dialog with Alertify.js, which is m
Previous Message Dave Page 2015-01-27 14:25:58 pgAdmin 4 commit: Blacklist the test module by default.