Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | * | | | | | Dot-Notation for "_id" | Elrond | 2011-11-15 | 14 | -50/+50 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Note: Migrations can't use "Dot Notation"! Migrations run on pymongo, not mongokit. So they can't use the "Dot Notation". This isn't really a big issue, as migrations are anyway quite mongo specific. | |||||
| | * | | | | | Enable mongokit's "Dot notation" | Elrond | 2011-11-15 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mongokit documents can allow to use x.FIELD instead of x["FIELD"]. First it looks a lot more pythonic. Second it might allow us an easier migration path towards an sqlalchemy database backend. Docs: http://namlook.github.com/mongokit/tutorial.html#dot-notation | |||||
| | * | | | | | export: Handle Unicode titles better in logging | Elrond | 2011-11-15 | 1 | -2/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | log("ascii %s" % unicode_string) tries to convert unicode to ascii, which might fail. Better use log(u"unicode format %s" % unicode_string) and let the logging framework handle the conversion. This works much better and the exceptions still happening aren't stopping the main app. Also remove one useless import. | |||||
| | * | | | | | Only show "post a comment" link if comments already exist | Christopher Allan Webber | 2011-11-13 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The purpose of the link is to help you jump past comments to the comment box, and so... Even with this new conditional, I'm not entirely sure I like that link ;) | |||||
| | * | | | | | Merge remote-tracking branch 'remotes/nyergler/pep8-ification' | Christopher Allan Webber | 2011-11-13 | 44 | -123/+159 | |
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: mediagoblin/db/migrations.py mediagoblin/db/models.py mediagoblin/user_pages/views.py mediagoblin/util.py | |||||
| | | * | | | | | has_key is deprecated, converting uses to use "in" operator. | Nathan Yergler | 2011-10-01 | 8 | -23/+23 | |
| | | | | | | | | ||||||
| | | * | | | | | Whitespace and formatting cleanup. | Nathan Yergler | 2011-10-01 | 38 | -113/+135 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Removed trailing whitespace * Line length < 80 where possible * Honor conventions on number of blank lines * Honor conventions about spaces around :, = | |||||
| | * | | | | | | Improving <title> on tag page *and* adjusting translation for RTL reasons | Christopher Allan Webber | 2011-11-13 | 1 | -1/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Basically moving the variable inside the translation to give translators more flexibility | |||||
| | * | | | | | | Enhanced title on the user's main media gallery | Christopher Allan Webber | 2011-11-13 | 1 | -0/+6 | |
| | | | | | | | | ||||||
| | * | | | | | | If the gallery view makes sure we have a user anyway, do we need this check? | Christopher Allan Webber | 2011-11-13 | 1 | -22/+17 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Seems like the classic annoying "SHOULD NEVER HAPPEN" else: statement :) | |||||
| | * | | | | | | Enhanced title for user profile page | Christopher Allan Webber | 2011-11-13 | 1 | -0/+11 | |
| | | | | | | | | ||||||
| | * | | | | | | Improved title block on media page | Christopher Allan Webber | 2011-11-13 | 1 | -0/+2 | |
| | | | | | | | | ||||||
| | * | | | | | | Merge remote-tracking branch 'remotes/nyergler/issue-653-csrf-exception' | Christopher Allan Webber | 2011-11-13 | 1 | -1/+1 | |
| | |\ \ \ \ \ \ | ||||||
| | | * | | | | | | Issue 653: This time for sure! | Nathan Yergler | 2011-11-13 | 1 | -1/+1 | |
| | | | | | | | | | ||||||
| | | * | | | | | | Issue 653: Handle the case where request.vary is None | Nathan Yergler | 2011-11-13 | 1 | -1/+1 | |
| | | | | | | | | | ||||||
| | | * | | | | | | Issue 653: Don't throw exception if response has no vary header. | Nathan Yergler | 2011-11-13 | 1 | -1/+1 | |
| | | | | | | | | | ||||||
| | * | | | | | | | Mark two strings for translation | Elrond | 2011-11-13 | 2 | -2/+2 | |
| | |/ / / / / / | ||||||
| | * | | | | | | Final step for non-force-conversion to jpeg | Christopher Allan Webber | 2011-11-12 | 1 | -9/+6 | |
| | | | | | | | | ||||||
| | * | | | | | | Don't force-convert resized images to JPEG. | Christopher Allan Webber | 2011-11-12 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | That's just not nice for those of us who like transparency! | |||||
| * | | | | | | | Accidentally had user['profile'] where it shoulda been user['bio'] | Christopher Allan Webber | 2011-11-16 | 1 | -1/+1 | |
| |/ / / / / / | ||||||
| * | | | | | | Probably should have MANIFEST.in checked in, for doing python sdists | Christopher Allan Webber | 2011-11-12 | 1 | -0/+5 | |
| | | | | | | | ||||||
| * | | | | | | 640: Configuration files should mention their _local versions | Elrond | 2011-11-12 | 2 | -0/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks go to Aleksej Serdjukov for bringing this up and providing the patch in the bug! | |||||
| * | | | | | | Merge branch 'idea/check_mgoblin_static' | Elrond | 2011-11-12 | 3 | -2/+54 | |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * idea/check_mgoblin_static: Move TestingMiddleware to tests/tools.py Some docs for the TestingMiddleware 591: Let Testing Middleware check for staticdirect() usage | |||||
| | * | | | | | | Move TestingMiddleware to tests/tools.py | Elrond | 2011-11-12 | 2 | -60/+45 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This middleware isn't needed outside of the tests, so let's just put it there. | |||||
| | * | | | | | | Some docs for the TestingMiddleware | Elrond | 2011-11-12 | 2 | -0/+27 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To make the TestingMiddleware actually more useful in the future, start to document it. | |||||
| | * | | | | | | 591: Let Testing Middleware check for staticdirect() usage | Elrond | 2011-10-19 | 4 | -2/+42 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All references to static, shipped content should go via request.staticdirect(). So insert a TestingMiddleware in the chain, which tests for this on all requests/reponses happening in the test suite. It's a simple text search for a bogus usage pattern. | |||||
| * | | | | | | | Merge branch 'master' of gitorious.org:mediagoblin/mediagoblin | Christopher Allan Webber | 2011-11-04 | 6 | -59/+38 | |
| |\ \ \ \ \ \ \ | ||||||
| | * | | | | | | | Tiny padding change to vertically center navigation button arrows | Jef van Schendel | 2011-11-04 | 1 | -1/+1 | |
| | | | | | | | | | ||||||
| | * | | | | | | | Small style changes to navigation buttons | Jef van Schendel | 2011-11-04 | 1 | -3/+6 | |
| | | | | | | | | | ||||||
| | * | | | | | | | On second thought, let's use this title for forgot_password.html | Jef van Schendel | 2011-11-04 | 1 | -1/+1 | |
| | | | | | | | | | ||||||
| | * | | | | | | | Text edits and rearrangements to login.html | Jef van Schendel | 2011-11-04 | 1 | -14/+10 | |
| | | | | | | | | | ||||||
| | * | | | | | | | Add translation brackety things to forgot-password page, I forgot those | Jef van Schendel | 2011-11-04 | 1 | -1/+1 | |
| | | | | | | | | | ||||||
| | * | | | | | | | Text changes to forgot-paddword page | Jef van Schendel | 2011-11-04 | 1 | -7/+2 | |
| | | | | | | | | | ||||||
| | * | | | | | | | Text changes to front page, as described in ticket #637 | Jef van Schendel | 2011-11-04 | 1 | -14/+5 | |
| | | | | | | | | | ||||||
| | * | | | | | | | Several small changes (reordering/restyling) for media descriptions and comments | Jef van Schendel | 2011-11-04 | 3 | -20/+14 | |
| | | | | | | | | | ||||||
| * | | | | | | | | Updating translations | Christopher Allan Webber | 2011-11-04 | 10 | -50/+568 | |
| |/ / / / / / / | ||||||
| * | | | | | | | Correcting the mediagoblin static/media aliases in the deployment guide | Christopher Allan Webber | 2011-11-03 | 1 | -2/+2 | |
| | | | | | | | | ||||||
| * | | | | | | | A correct but compact set of instructions for fastcgi on nginx | Christopher Allan Webber | 2011-11-03 | 1 | -1/+5 | |
| | | | | | | | | ||||||
| * | | | | | | | Indentation was off by one ;) | Christopher Allan Webber | 2011-11-03 | 1 | -1/+1 | |
| | | | | | | | | ||||||
| * | | | | | | | We left out a critical fastcgi variable from the nginx config | Christopher Allan Webber | 2011-11-03 | 1 | -0/+1 | |
| | | | | | | | | ||||||
| * | | | | | | | Recommendation to install flup! | Christopher Allan Webber | 2011-11-03 | 1 | -0/+5 | |
| | | | | | | | | ||||||
| * | | | | | | | 0.1.0, also in the docs file! ;) | Christopher Allan Webber | 2011-11-02 | 1 | -2/+2 | |
| | | | | | | | | ||||||
| * | | | | | | | 0.1.0! | Christopher Allan Webber | 2011-11-02 | 1 | -1/+1 | |
| | | | | | | | | ||||||
* | | | | | | | | First crack at basic license support. | Aaron Williamson | 2012-01-17 | 6 | -3/+30 | |
|/ / / / / / / | ||||||
* | | | | | | | Removed the bloof print debugging | Christopher Allan Webber | 2011-11-02 | 1 | -1/+0 | |
| | | | | | | | ||||||
* | | | | | | | Make sure you can't force comments on entries that don't exist. | Christopher Allan Webber | 2011-11-02 | 1 | -5/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | See: http://bugs.foocorp.net/issues/621 | |||||
* | | | | | | | Updated logo from Thorsten Wilms! | Christopher Allan Webber | 2011-11-01 | 2 | -0/+116 | |
| | | | | | | | ||||||
* | | | | | | | Updated translations | Christopher Allan Webber | 2011-11-01 | 39 | -721/+2551 | |
| | | | | | | | ||||||
* | | | | | | | Merge remote branch 'remotes/j1mc/master' | Christopher Allan Webber | 2011-10-31 | 1 | -4/+4 | |
|\ \ \ \ \ \ \ | ||||||
| * | | | | | | | docs - tweaked configuration.rst for style. | Jim Campbell | 2011-10-31 | 1 | -4/+4 | |
| | | | | | | | |