Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use cleaned_markdown_conversion in both cases in edit/views.py | Christopher Allan Webber | 2011-07-14 | 1 | -11/+6 |
| | |||||
* | Markdown-enable user bio (Feature 410) | Aaron Williamson | 2011-07-10 | 1 | -0/+4 |
| | |||||
* | Sorry, that OptionalField belonged there. | Christopher Allan Webber | 2011-07-09 | 1 | -1/+2 |
| | | | | I am a bad person and am not allowed to commit anything else today. | ||||
* | <Elrond> Oh well... Did I really have this wtforms cruft in my setup_workbench | Christopher Allan Webber | 2011-07-09 | 1 | -2/+1 |
| | | | | commit. :-( I don't know even, how it got in there. :-| | ||||
* | Merge remote branch 'remotes/gullydwarf-cfdv/b404_v3_edit_profile_submit_fail' | Christopher Allan Webber | 2011-07-09 | 1 | -1/+1 |
|\ | |||||
| * | bug #404 - corrects querystring variable name in redirect | Caleb Forbes Davis V | 2011-07-07 | 1 | -1/+1 |
| | | |||||
* | | Bug #437 - adds required validator to slug field for media edit' | Caleb Forbes Davis V | 2011-07-07 | 1 | -1/+2 |
|/ | | | | otherwise we get a 404 because we navigate to blank slug | ||||
* | Merge remote branch ↵ | Christopher Allan Webber | 2011-07-06 | 1 | -2/+2 |
|\ | | | | | | | | | | | | | 'remotes/gullydwarf-cfdv/b404_v2_redirect_after_profile_edit' Conflicts: mediagoblin/edit/views.py | ||||
| * | edit profile submit redirects to user home page | Caleb Forbes Davis V | 2011-07-06 | 1 | -1/+3 |
| | | |||||
* | | B #429 - form validation allows blank profile url | Caleb Forbes Davis V | 2011-07-05 | 1 | -1/+2 |
| | | |||||
* | | Switching single-quoted strings to double-quote to avoid escaping the ↵ | Christopher Allan Webber | 2011-07-03 | 1 | -2/+2 |
| | | | | | | | | apostrophe.. :) | ||||
* | | Caution an admin when they're editing someone else's media. | Christopher Allan Webber | 2011-07-03 | 1 | -0/+8 |
| | | |||||
* | | uses new 'username' variable in querystring to specify the user to edit | Caleb Forbes Davis V | 2011-07-03 | 1 | -2/+15 |
|/ | | | | | | | | | Previously, this view only allowed editing of the logged-in user. Now you can specify the user to edit in the querystring. If you are an admin the view allows you to edit any user's profile, with a warning message. The warning only shows up if the admin is editing another user's profile. Make sure to pass the username to this view at every step in the process | ||||
* | Bug #404 - Successful profile edit is successful! | Caleb Forbes Davis V | 2011-07-01 | 1 | -1/+5 |
| | | | | user is notified of successful profile edit w/o extra navigation | ||||
* | Several small UI changes to edit profile page: moved header, changed form ↵ | Jef van Schendel | 2011-06-22 | 1 | -3/+3 |
| | | | | wording, changed css class | ||||
* | I don't think we need the username to be part of the profile editing URL | Christopher Allan Webber | 2011-06-21 | 1 | -1/+1 |
| | |||||
* | Adding an extra space between function definitions | Christopher Allan Webber | 2011-06-21 | 1 | -0/+1 |
| | |||||
* | Merge remote-tracking branch 'origin/master' into is315 | cfdv | 2011-06-20 | 1 | -2/+11 |
|\ | |||||
| * | Made changes according to http://bugs.foocorp.net/issues/363#note-5 | Joar Wandborg | 2011-06-15 | 1 | -4/+6 |
| | | |||||
| * | Added Markdown rendering for `media_entry` | Joar Wandborg | 2011-06-12 | 1 | -1/+8 |
| | | |||||
* | | enables entering user details including website url and bio | cfdv | 2011-06-18 | 2 | -5/+5 |
| | | | | | | | | fixes usage of objects. still need to display the data on user page | ||||
* | | baby step towards enabling profile edits | cfdv | 2011-06-18 | 3 | -0/+29 |
|/ | | | | | | | | | | | | | | | 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 * ? | ||||
* | I have a strong preference for aligning all parameters in a function call. | Christopher Allan Webber | 2011-06-05 | 1 | -1/+2 |
| | |||||
* | Create redirect shortcut and use it around | Elrond | 2011-06-05 | 1 | -5/+3 |
| | | | | | This is just replacing exc.HTTPFound(location=request.urlgen(...)) by redirect(request, ...). No magic. | ||||
* | Reformat render_to_response calls | Elrond | 2011-06-05 | 1 | -5/+4 |
| | | | | | Just a simple indentation and ordering change, no functional change. | ||||
* | Create render_to_reponse and use it everywhere. | Elrond | 2011-06-05 | 1 | -5/+4 |
| | | | | Just a shortcut for Response(render_template(...)) | ||||
* | Moving all views over to using util.render_template()! | Christopher Allan Webber | 2011-06-04 | 1 | -5/+4 |
| | |||||
* | Mount media editing under /u/{username}/m/{media}/edit/ | Christopher Allan Webber | 2011-06-04 | 1 | -2/+2 |
| | |||||
* | Let's redirect back to the media homepage using the slug instead of the id | Christopher Allan Webber | 2011-06-04 | 1 | -1/+1 |
| | |||||
* | I shouldn't have removed the .save() entirely :) | Christopher Allan Webber | 2011-06-04 | 1 | -0/+1 |
| | |||||
* | Find out if such a slug exists via a query instead of via a .save() call | Christopher Allan Webber | 2011-06-03 | 1 | -12/+19 |
| | |||||
* | Add GNU headers to new *.py | Elrond | 2011-06-02 | 2 | -0/+31 |
| | |||||
* | Handle Exceptions from save(); Move may_edit_media | Elrond | 2011-06-02 | 2 | -10/+13 |
| | | | | | | | | Turn .save() excpetions into a HTTPConflict. Not nice, but at least the user gets the error. Until there is a proper way to validate things and get nice errors. Move may_edit_media() to lib.py, as it's not a view. | ||||
* | Prepare for moving /edit/ under /u/.../edit/ | Elrond | 2011-06-02 | 2 | -3/+3 |
| | | | | | To make moving the whole thing under /u/ easier, prepare to pass in the {user} needed for that. | ||||
* | Check for edit permission. | Elrond | 2011-06-02 | 1 | -0/+13 |
| | | | | | You need to own the media, or be an admin to use the edit form. As simple as that, for now. | ||||
* | "edit": Finally implement saving. | Elrond | 2011-05-27 | 1 | -1/+12 |
| | | | | | | Currently no checks. Probably not so good. And especially, every logged in user currently can edit the data for any other user's media. | ||||
* | Starting "edit" functionality. | Elrond | 2011-05-26 | 4 | -0/+72 |
This adds a link to the "edit" form, the form, the view for displaying the form and that's about it. |