Skip to main content

Admin UI for relational db based apps

Project description

DB Browser

This package provides a simple WSGI application to browse and edit database tables. The application was developed using the repoze.bfg web framework and uses the excellent JqueryUI library.

After installing and configuring the application, you will be able to browse and edit your application’s tables by visiting the configured URL path. All the configuration that is needed is an sqlalchemy database connection string for your database.

Installation

Install using setuptools, e.g. (within a virtualenv):

$ easy_install repoze.dbbrowser

Configuration inside another repoze.bfg application

This package includes a repoze.bfg view callable, so that from another repoze.bfg application, it is possible to configure it as a view. To do so, simply add a view declaration inside your configure.zcml. Note that your application’s settings must include the sqlalchemy database connection string for your database, under the name ‘db_string’:

<view
    view="repoze.dbbrowser.dbbrowser.app_view"
    name="dbbrowserapp"
/>

The result of the application call will be turned into a webob Response and returned to repoze.bfg as if the application was a view.

Alternatively, this can be accomplished via Python when adding a view to the repoze.bfg configurator:

from repoze.dbbrowser.dbbrowser import app_view
config.add_view(app_view, name='dbbrowserapp')

Configuration via Paste

The application can also be ‘mounted’ into another WSGI application using Paste composite applications. Just choose a URL path for it and add the corresponding section:

[composite:main]
use = egg:Paste#urlmap
/ = myapp
/dbbrowser = dbbrowser

[app:myapp]
use = egg:myapp#app

[app:dbbrowser]
use = egg:repoze.dbbrowser#dbbrowser
db_string = sqlite:///%(here)s/myapp.db
theme_switcher = true
default_theme = redmond

The only required parameter is ‘db_string’, which is an sqlalchemy database connection string.

The ‘theme_switcher’ parameter is a boolean indicating if JQuery UI theme switching functionality should be enabled.

The ‘default_theme’ parameter is a string giving the name of the JQuery UI theme to be used for the default dbbrowser UI. Keep in mind that JQuery stores this id in a cookie, so you may have to clear cookies for this setting to take effect if a previous theme was selected with the switcher.

Reporting Bugs / Development Versions

Visit http://bugs.repoze.org to report bugs. Visit http://svn.repoze.org to download development or tagged versions.

Changelog

0.1 (2010-03-02)

  • Initial release.

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

repoze.dbbrowser-0.1.tar.gz (306.0 kB view details)

Uploaded Source

Built Distribution

repoze.dbbrowser-0.1-py2.6.egg (361.8 kB view details)

Uploaded Source

File details

Details for the file repoze.dbbrowser-0.1.tar.gz.

File metadata

File hashes

Hashes for repoze.dbbrowser-0.1.tar.gz
Algorithm Hash digest
SHA256 718f2edef0a57091b7a77906d4cb746f1c45e9e790760fdbc6b3e97f81457da5
MD5 f4cea83fd06cfd705bc6c7bdd0df1445
BLAKE2b-256 4d6b645873a89e61a3379f1e44365b4d655d26c481a599d000b32710c6bf9a9b

See more details on using hashes here.

File details

Details for the file repoze.dbbrowser-0.1-py2.6.egg.

File metadata

File hashes

Hashes for repoze.dbbrowser-0.1-py2.6.egg
Algorithm Hash digest
SHA256 0799563bc296ea9a7f289b1de992c9f76a360a2614408cd60d06b33bfd39dc84
MD5 0374ce69498bdca8e7b3da46d3e18d6e
BLAKE2b-256 243bd1c6e432414624dd76e588a825929d7b5392a5e1d194cdfc4c27cd1e4d52

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page