aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/edit/routing.py
Commit message (Collapse)AuthorAgeFilesLines
* Allowing to delete a user account (#302)Sebastian Spaeth2013-01-171-0/+2
| | | | | | | | | | | | | Add a "Delete user account" template and link to it from the user account settings page. Create a delete_account function and fill in most blanks. We can now successfully delete our own account. Thanks to Elrond for catching a stray csrf_exempt in a previous iteration of this patch. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
* Enable /u/USERNAME/edit/ pattern #588Sebastian Spaeth2013-01-091-1/+3
| | | | | | | | Transition from the inconsistent /edit/profile/?username=FOO to the nicer /u/FOO/edit/. The old pattern will still work and redirects to the new URL. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
* Move things from routing.py to tools/routing.pyElrond2012-12-231-1/+1
| | | | | | | This stops a cyclic import. Move add_route, mount and endpoint_to_controller into tools/routing.py and change all callers.
* Switched most stuff over from RoutesJoar Wandborg2012-10-141-9/+5
| | | | | | | | | | Removed the Routes routing functionality and replaced it with werkzeug.routes. Most views are functional. Known issues: - Translation integration with the request object is not yet figured out. This breaks 404 pages.
* Added basic collection functionalityAaron Williamson2012-09-181-1/+1
|
* It's 2012 all up in hereChristopher Allan Webber2012-02-021-1/+1
|
* Create edit_account.htmlJef van Schendel2012-01-051-1/+4
|
* 508. Updates copyright/license informationWill Kahn-Greene2011-09-011-1/+1
|
* I don't think we need the username to be part of the profile editing URLChristopher Allan Webber2011-06-211-1/+1
|
* enables entering user details including website url and biocfdv2011-06-181-2/+1
| | | | fixes usage of objects. still need to display the data on user page
* baby step towards enabling profile editscfdv2011-06-181-0/+2
| | | | | | | | | | | | | | | adds * url and bio fields to database * form for editing the user profile * route to the edit profile controller * view for the profile editing page * template for the profile editing page * link to edit profile in the welcome page still needs * thorough inspection to see if it makes sense * tests * ?
* Mount media editing under /u/{username}/m/{media}/edit/Christopher Allan Webber2011-06-041-2/+2
|
* Prepare for moving /edit/ under /u/.../edit/Elrond2011-06-021-1/+1
| | | | | To make moving the whole thing under /u/ easier, prepare to pass in the {user} needed for that.
* Starting "edit" functionality.Elrond2011-05-261-0/+22
This adds a link to the "edit" form, the form, the view for displaying the form and that's about it.