Size: 1543
Comment:
|
Size: 2599
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
#pragma page-filename DEV/versions/10715336 | #pragma page-filename DEV/versions/10715337 |
Line 3: | Line 3: |
This page should serve as a place to update everyone with the current state of development on the Mailman web UI, but also to discuss the progress and/or decisions being made while developing. | This page should serve as a place to update everyone on the current state of development, but also to discuss the progress and/or decisions being made while developing. |
Line 5: | Line 5: |
== Web Framework == For now we have decided on using Django as the web framework for the UI. |
== Components == The Mailman Web UI consists of three components: |
Line 8: | Line 8: |
Django distincts between ''projects'' and ''applications'' (a project being a website or a set of applications). One advantage of that is the possibility to make a django app reusable in other django projects/websites. Ideally people should be able to choose to either install the web ui as a stand-alone django project or to integrate the mailmanweb app into their existing django website. | 1. a '''REST client module''' that handles all communication with Mailman 1. "'''mailman-django'''": a reusable Django app that makes use of the client module and delivers the web front-end 1. a '''django project/site''' that includes mailman-django Why not just ship one thing? Because this way we cover a number of different scenarios, i.e.: |
Line 10: | Line 13: |
== REST Communication == The web UI communicates with Mailman over the REST server included in MM3. The request methods to acces the server are placed in a separate REST client module which will be used by the web ui. The idea is to make it really easy for other Python programs to import the module and talk to Mailman. |
* Use 1., 2. & 3. if you have Mailman installed but are not running an existing Django site. * Use 1. & 2. if you already have an existing Django web site and would like to entend it with a Mailman interface. * Use 1. if you are developing a completely different Python application that needs to communicate with Mailman. === The REST client module === A current draft contains two classes: '''MailmanRESTClient:''' Example Methods: get_lists(), get_list(), new_list(), join_list(), etc. '''MailmanRESTClientError:''' Exception Class It currently uses urllib and urllib2 to talk to Mailman but this has to be changed to use httlib to make use of the DELETE and PUT request methods (since Mailman's REST Server now uses Restish). === mailman-django === A reusable Django app. Lives outside the Django project, somewhere on the Python path. Directory structure so far: {{{ mailman-django/ media/ mailman-django/ css/ img/ js/ templates/ mailman-django/ lists/ members/ }}} The "mailman-django" folders inside "media" and "templates" may seem redundant but help maintain clarity and prevent conflicts when integrating the app into an existing environment. === The Django website/project === Uses the standard set of files when doing: {{{ django-admin.py startproject mailmanweb }}} Could further be reduced to only contain settings.py and urls.py. |
Line 16: | Line 53: |
== h2. Features to be implemented first == | == Features to be implemented first == |
Web UI - Status
This page should serve as a place to update everyone on the current state of development, but also to discuss the progress and/or decisions being made while developing.
Components
The Mailman Web UI consists of three components:
a REST client module that handles all communication with Mailman
"mailman-django": a reusable Django app that makes use of the client module and delivers the web front-end
a django project/site that includes mailman-django
Why not just ship one thing? Because this way we cover a number of different scenarios, i.e.:
Use 1., 2. & 3. if you have Mailman installed but are not running an existing Django site.
Use 1. & 2. if you already have an existing Django web site and would like to entend it with a Mailman interface.
- Use 1. if you are developing a completely different Python application that needs to communicate with Mailman.
The REST client module
A current draft contains two classes:
MailmanRESTClient: Example Methods: get_lists(), get_list(), new_list(), join_list(), etc.
MailmanRESTClientError: Exception Class
It currently uses urllib and urllib2 to talk to Mailman but this has to be changed to use httlib to make use of the DELETE and PUT request methods (since Mailman's REST Server now uses Restish).
mailman-django
A reusable Django app. Lives outside the Django project, somewhere on the Python path. Directory structure so far:
mailman-django/ media/ mailman-django/ css/ img/ js/ templates/ mailman-django/ lists/ members/
The "mailman-django" folders inside "media" and "templates" may seem redundant but help maintain clarity and prevent conflicts when integrating the app into an existing environment.
The Django website/project
Uses the standard set of files when doing:
django-admin.py startproject mailmanweb
Could further be reduced to only contain settings.py and urls.py.
Test Server
A test server with a basic setup of the web UI is currently being set up.
Features to be implemented first
- Ability for users to subscribe, manage subscriptions, unsubscribe, change emails
- Admin ability to create/delete lists via pre-defined styles
- Users ability to customize their subscirptions
- Moderation
- Aite admin ability to create domains, add and modify styles
- List admin ability to customize lists