aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Merge branch 'master' of gitorious.org:mediagoblin/mediagoblinChristopher Allan Webber2012-01-109-49/+145
| |\ | | | | | | | | | | | | Conflicts: mediagoblin/db/mongo/models.py
| | * Added check for request.user to media.html attachment-related conditionalJoar Wandborg2012-01-101-0/+1
| | |
| | * Test Suite: Enable attachments, add failing testElrond2012-01-102-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | attachments are an optional part. But it doesn't hurt to enable them in the test suite at all. Also (with enabled attachmemtns) the main media view fails, if one isn't logged in (joar found it!). So add a simple (currently failing) test for this.
| | * Fix reset.css reference and drop link to video-js.cssElrond2012-01-091-3/+1
| | | | | | | | | | | | | | | | | | | | | 1. reset.css was moved to /css/extlib/ some time ago. So update the staticdirect link to it. 2. We don't have video-js.css (any more?). Drop link to it.
| | * Warn about unknown staticdirect paths.Elrond2012-01-091-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | Use pkg_resource to check for the existence of any files referenced by staticdirect. If they don't exist, warn about this. This might raise false warnings in the future for more advanced setups.
| | * Create a default logging configElrond2012-01-091-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | paste uses paste.ini to configure python's logging module. Until now, there was NO config, not even a useful default one. This means: any messages went away unseen. Not good. The new default logs everything to stderr at level INFO and higher. Maybe not the best, but a good starting point.
| | * Add DB Mixin classes and use themElrond2012-01-083-61/+97
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A bunch of functions on the db objects are really more like "utility functions": They could live outside the classes and be called "by hand" passing the appropiate reference. They usually only use the public API of the object and rarely use database related stuff. Goals: - First, simple: Share the code with the SQL objects, so that the code doesn't need to be duplicated. - Second, it might unclutter the db models and make them more into "model only" stuff. - Doesn't really hurt.
| * | Fixed #724 and added extra infos to the atom feed (author uri and links to ↵Michele Azzolari2012-01-103-11/+49
| |/ | | | | | | the html version of each entry)
| * Committing extracted and compiled translationsChristopher Allan Webber2012-01-0738-2345/+3640
| |
| * Committing present MediaGoblin translations before pushing extracted messagesChristopher Allan Webber2012-01-073-93/+132
| |
| * Increase docs sidebar widthJef van Schendel2012-01-071-0/+4
| |
| * New docs logo, small css changesJef van Schendel2012-01-062-3/+3
| |
| * First push with new style (includes css file, logo image, fonts)Jef van Schendel2012-01-069-3/+245
| |
| * Fix div breaking in user.html; add media query bitsJef van Schendel2012-01-062-4/+17
| |
| * Resize image below 660px widthJef van Schendel2012-01-061-0/+9
| |
| * * Rename mediagoblin_header, mediagoblin_body, mediagoblin_footer, ↵Jef van Schendel2012-01-055-18/+44
| | | | | | | | | | | | | | mediagoblin_header_right, mediagoblin_logo * Add html5shiv for older browsers * Small size fix (940px instead of 960pgx)
| * Add closing bracket so the whole thing doesn't break downJef van Schendel2012-01-051-0/+1
| |
| * Remove last 960.gs leftover; fix classes for edit formsJef van Schendel2012-01-053-4/+4
| |
| * Fix merge conflictsJef van Schendel2012-01-0527-936/+201
| |\
| | * Several changes for mobile layoutJef van Schendel2012-01-053-24/+11
| | |
| | * Random changes that break stuff and eat pigletsJef van Schendel2011-12-301-22/+19
| | |
| | * Lots of little fixes and removal of all 960.gs classes:Jef van Schendel2011-12-3016-105/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Removed <p> margin-top * Vertically align logo so Add-media button does not fall off * Remove last 960.gs traces (grid_X/container_X) and add custom classes/sizes to css * Add clear class * Update form_box and add form_box_xl for bigger forms * Switch all pages that use forms to new classes * Remove padding from notification messages so they take full width * Other tiny fixes I forgot about
| | * Change widths to percentages for small devicesJef van Schendel2011-12-181-2/+15
| | |
| | * Add styles to make media.html not fall apart entirelyJef van Schendel2011-12-182-2/+16
| | |
| | * Move reset.css to extlib and symlink itJef van Schendel2011-12-182-0/+1
| | |
| | * Remove first 960.gs classesJef van Schendel2011-12-182-16/+23
| | |
| | * Media query for everything(?) below 960px wideJef van Schendel2011-12-181-1/+1
| | |
| | * Remove 960.gs stylesheets, add Eric Meyer's reset.cssJef van Schendel2011-12-1810-817/+50
| | |
| | * First test lines for responsive designJef van Schendel2011-12-181-0/+17
| | |
| * | Always show 'Change account settings' linkJef van Schendel2012-01-051-7/+6
| | |
| * | Fix Unit Tests for new password changingElrond2012-01-051-8/+4
| | |
| * | Make show-password-js work for change password tooElrond2012-01-052-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | The show password js depends on the password field to have an id of "password". So give it a proper id. Also fixed the label generation for the case of field.name and field.id being different.
| * | Fix more StrictUndefined issuesElrond2012-01-051-2/+2
| | |
| * | Add change-account-settings link to user.htmlJef van Schendel2012-01-051-0/+5
| | |
| * | Merge branch 'master' of gitorious.org:mediagoblin/mediagoblinJef van Schendel2012-01-055-5/+10
| |\ \
| | * | f691: Use StrictUndefined for templates and fix some issuesElrond2012-01-043-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | References to undefined variables in templates were silently ignored/converted to None/empty strings. This makes coding lazy stuff easy, but it makes catching typos harder. (It would have catched one of the SQL things earlier!) But on the other hand it might make the current templates error out everywhere. In fact, early testing has shown two instances, that errored out. Those are fixed with this commit too. If this turns out to make things more complex and useless than actually solving any problems, it can easily be dropped again.
| | * | Import MigrationManager from mongo in mongo backend.Elrond2012-01-042-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Inside the mongo db backend, use the mongo MigrationManager. This is hopefully the last reference to the generic MigrationManager reference on db.util.
| * | | Create edit_account.htmlJef van Schendel2012-01-054-21/+92
| |/ /
| * | Add Markdown for submit page, edit page, profile edit page; thus fixing ↵Jef van Schendel2012-01-044-5/+16
| | | | | | | | | | | | ticket #690
| * | Dot-Notation for MediaEntry.queued_media_fileElrond2012-01-043-4/+4
| | |
| * | Dot-Notation for MediaEntry.stateElrond2012-01-042-3/+3
| | |
| * | Dot-Notation for MediaEntry.media_filesElrond2012-01-0410-16/+16
| | |
| * | sql convert: Use more library functionsElrond2012-01-011-11/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Use the new setup_connection_and_db_from_config in the sql backend. 2. Use sql and mongo specific functions wherever appropiate instead of the generic "db.X" one. This makes the converter more indepedent of the current backend choice.
| * | Seperate jQuery bit that was still in media.htmlJef van Schendel2012-01-012-11/+11
| | |
| * | Fix unit tests for new forget password flowElrond2012-01-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | After changing the password, the login page is now shown. It contains a message. (we can't test for that easily currently. There is a bug open on this problem.) At least for the login page being shown now.
| * | Remove fp_changed_success.html, use log in page + notification message insteadJef van Schendel2012-01-013-33/+6
| | |
| * | Remove fp_email_sent.html and refs to itJef van Schendel2012-01-012-32/+0
| | |
| * | Factor out check_db_migrations_currentElrond2012-01-014-22/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When initializing the database connection the current mongo based setup checked for new migrations and warned about them. This was mongo specific so factor'd it out into a more generic check_db_migrations_current function in the mongo backend. Also created a dummy one in the sql backend.
| * | Forgot this one. Also disable horizontal resize for the bio fieldJef van Schendel2012-01-011-1/+1
| | |
| * | Remove border-bottom from media_specsJef van Schendel2012-01-011-1/+0
| | |