Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2007-04-26 06:12:04
Size: 639
Editor: 10
Comment:
Revision 3 as of 2007-05-07 17:22:55
Size: 1337
Editor: SoloTurn
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

== Requirements ==
Line 26: Line 28:

== Implementation ==

Currently, I'm experimenting with using [http://www.djangoproject.com/ Django] to build a wrapper around hgweb.
Django has a simple templating scheme, and a nice admin interface for editing users, groups, and other database bits. Naturally, it's all Python. It's happy to work with sqlite, too.

In theory, hgweb should be embeddable within Django using WSGI glue. If that proves hard, we can just carve out a spot for it in URL space and have Apache call it directly. And there's a simple recipe for sharing Django's auth database with Apache at: http://www.djangoproject.com/documentation/apache_auth/.

 why are you not using edgewall trac?

Being able to manage a collection of repositories via the web is handy for both departmental servers and public ones.

Requirements

Features for a web interface:

  • ability to register user and passwords for htaccess
  • ability to reset passwords

User and admin capabilities:

  • initialize or clone new repositories
  • edit existing repositories
  • change password
  • change email address

Repo administration:

  • delete repo
  • verify
  • rollback
  • strip
  • set description
  • set notify addresses
  • set allowed users for push (default owner-only)
  • set default web encoding? (UTF-8)
  • set per-repo message of the day

Implementation

Currently, I'm experimenting with using [http://www.djangoproject.com/ Django] to build a wrapper around hgweb. Django has a simple templating scheme, and a nice admin interface for editing users, groups, and other database bits. Naturally, it's all Python. It's happy to work with sqlite, too.

In theory, hgweb should be embeddable within Django using WSGI glue. If that proves hard, we can just carve out a spot for it in URL space and have Apache call it directly. And there's a simple recipe for sharing Django's auth database with Apache at: http://www.djangoproject.com/documentation/apache_auth/.

  • why are you not using edgewall trac?

HostingDesign (last edited 2011-02-18 03:20:14 by ruby)