aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Require werkzeug >= 0.7Elrond2012-11-241-1/+1
| | | | | | We need it, really. For csrf.py's request.scheme. Thanks to Sebastian Spaeth!
* Very small typo fix in deploying docs.Elrond2012-11-201-2/+2
| | | | Thanks to #mediagoblin.
* Suggest checking out the wiki for additional recipesChristopher Allan Webber2012-11-191-0/+5
|
* Borrowing an image from Tango!Christopher Allan Webber2012-11-151-0/+6
|
* Simplify/Robustify the thumbnail URL usage in templatesSebastian Spaeth2012-11-1510-25/+37
| | | | | | | | | | | | | | | | | | | | | | So far templates required a very complex blurb to simply insert a thumbnail URL, exposing much of the internal logic to the template designer. In addition, we would fail with an error if for some reason the media_files['thumb'] entry was never populated. This adds the MediaEntry.thumb_url property that template designers can simply use. It will do the right thing, either fetching the proper thumbnail or hand back a generic icon specified in a media's MEDIA_MANAGER as "default_thumb". Add an image default fallback icon (stolen from Tangos, which are Public Domain since version 0.8.90 as I understand) since the one we referred to was not existing. Perhaps, a "broken image" icon would be better, but I'll leave that to our capable designers. All templates have been modified to make use of the new thumb_url function. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
* Merge remote-tracking branch ↵Christopher Allan Webber2012-11-132-6/+9
|\ | | | | | | 'refs/remotes/spaetz/trac_475_email_notification_checkbox'
| * Don't put checkbox text on separate line (#475)LotusEcho2012-11-132-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Manually render the "notify me" checkbox line in the account settings to not put the form label as a heading but in the same line as the checkbox. Edit forms.py to use the label attribute for the caption. Original patch modified by Sebastian Spaeth to 1) not translate the checkbox label in the template, it is translated in forms.py already. 2) Simplify the HTML, manually constructing the <label> tag is not necessary, WTforms does it automatically. Author: LotusEcho <Emma.C.Echo@gmail.com> Modified-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
* | Revert thumbnail styling and sizing; allows for 5 thumbnails per rowJef van Schendel2012-11-012-6/+4
| |
* | Change to 5 thumbnails per rowJef van Schendel2012-11-011-2/+2
| |
* | Change thumbnail width to 212pxJef van Schendel2012-11-011-1/+1
| |
* | Update Airy's base.htmlJef van Schendel2012-10-231-14/+7
| |
* | Move <a> end tagJef van Schendel2012-10-231-1/+2
| |
* | Remove obsolete dropdown stylingJef van Schendel2012-10-231-10/+0
| |
* | Don't show link to original when the file is an imageJef van Schendel2012-10-231-11/+0
| |
* | Don't show zoom in cursor if there is no larger versionJef van Schendel2012-10-231-1/+1
| |
* | Fixed attachmentsJoar Wandborg2012-10-233-14/+16
| |
* | Merge branch 'master' of gitorious.org:mediagoblin/mediagoblinChristopher Allan Webber2012-10-2211-88/+105
|\ \ | | | | | | | | | | | | | | | | | | | | | # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit.
| * | Replace dropdown in top right with regular linksJef van Schendel2012-10-213-74/+7
| | |
| * | Move "Add collection" and "Change account settings" links to root.htmlJef van Schendel2012-10-213-7/+9
| | |
| * | Add "Add collection" link to Airy themeJef van Schendel2012-10-211-0/+1
| | |
| * | Merge branch 'master' of gitorious.org:mediagoblin/mediagoblinJef van Schendel2012-10-211-0/+58
| |\ \
| | * | Added HTTP API auth pluginJoar Wandborg2012-10-201-0/+58
| | | |
| * | | Styling edits to Airy themeJef van Schendel2012-10-211-7/+3
| |/ /
| * | Implement new RSS icon for Airy themeJef van Schendel2012-10-201-1/+1
| | |
| * | Replace icon_feed.png with proper Airy versionJef van Schendel2012-10-202-0/+23
| | |
| * | Replace dark empty_dots.png for Airy themeJef van Schendel2012-10-202-0/+4
| | |
* | | Set the user page to two columns wide so we don't have this weird wrapping.Christopher Allan Webber2012-10-221-1/+1
|/ / | | | | | | This is a stopgap solution!
* | Fix thumbnail aspect ratiosJef van Schendel2012-10-201-1/+1
| |
* | Removed Routes dependency, added admin routesJoar Wandborg2012-10-206-15/+13
| |
* | Styling edits for buttons (Airy only)Jef van Schendel2012-10-191-3/+6
| |
* | Thumbnail styling edits plus edits to the object_gallery (4 columns instead ↵Jef van Schendel2012-10-192-7/+11
| | | | | | | | of 5 by default)
* | Thumbnail styling edits to base theme and Airy themeJef van Schendel2012-10-192-3/+7
| |
* | Fixed OAuth access_token duplicate routeJoar Wandborg2012-10-156-10/+18
| | | | | | | | Changed route name to "[...]list_connections"
* | Added rudimentary route "mounting" w/ werkzeug routes; fixed auth routesChristopher Allan Webber2012-10-143-34/+33
| | | | | | | | | | | | auth routes fixes: - mounted the auth routes at /auth/ - removed crufty old verification email route
* | Fixed 404 page under werkzeug.routingJoar Wandborg2012-10-144-26/+22
| | | | | | | | | | - Removed ?lang=<langcode> feature due to incompatibility with werkzeug routes in the current state of the architecture.
* | Switched most stuff over from RoutesJoar Wandborg2012-10-1411-178/+191
| | | | | | | | | | | | | | | | | | | | 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.
* | Fixing the airy attribution in the header.Christopher Allan Webber2012-10-071-2/+2
| | | | | | | | Not written by me, and not goblincities! :)
* | Fixed pylint issues, removed unused importJoar Wandborg2012-10-022-2/+1
| |
* | Added VideoThumbnailerMarkIIJoar Wandborg2012-10-022-8/+301
| | | | | | | | - Set video.processing to use VideoThumbnailerMarkII.
* | Changed copy.copy(get_params) to dict(get_params)Joar Wandborg2012-09-301-1/+1
| | | | | | | | | | in pagination because request.GET/request.args is immutable since the switch to werkzeug.
* | Removed debugging stuff from masterJoar Wandborg2012-09-301-8/+0
| |
* | Use RawConfigParser instead of dict.viewitemsJoar Wandborg2012-09-301-3/+7
| | | | | | | | dict.viewitems breaks python 2.6 compatibility.
* | Set up celery logging from paste iniJoar Wandborg2012-09-301-0/+65
| |
* | Replaced all request.POST with request.form, ...Joar Wandborg2012-09-2911-105/+144
| | | | | | | | | | - Fixed error handling in OAuth plugin - Changed request.POST file fields to request.files
* | Added OAuth testJoar Wandborg2012-09-291-0/+50
| |
* | Fixed pylint/pep8 warnings in test/tools.pyJoar Wandborg2012-09-291-2/+2
| |
* | Switch from webob.Request to werkzeug.wrappers.RequestJoar Wandborg2012-09-295-27/+382
| |
* | Grammar re: libasound2-devJoar Wandborg2012-09-291-4/+4
| |
* | Added note about libasound2-dev to docs.Joar Wandborg2012-09-291-0/+7
| |
* | Added cascade all, delete-orphan to ProcessingMetaDataJoar Wandborg2012-09-271-5/+7
| |