Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Store the task id of a processing action in the database. | Christopher Allan Webber | 2011-07-24 | 1 | -0/+3 | |
|/ / | ||||||
* | | docstring for MediaComment's structure | Christopher Allan Webber | 2011-07-17 | 1 | -1/+12 | |
| | | ||||||
* | | Described the MediaEntry structure in the docstring. | Christopher Allan Webber | 2011-07-17 | 1 | -6/+81 | |
| | | ||||||
* | | Docstring for the User model's various schema fields | Christopher Allan Webber | 2011-07-17 | 1 | -0/+26 | |
| | | ||||||
* | | Merge remote branch 'remotes/jwandborg/feature_400-resize_images_to_fit_page' | Christopher Allan Webber | 2011-07-16 | 1 | -0/+22 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: mediagoblin/db/migrations.py mediagoblin/db/models.py mediagoblin/process_media/__init__.py mediagoblin/templates/mediagoblin/user_pages/media.html mediagoblin/util.py | |||||
| * | | Removed debug code, erroneously included in my last commit | Joar Wandborg | 2011-07-03 | 1 | -1/+1 | |
| | | | ||||||
| * | | Feature #400 - Resize images to fit on page - Additions | Joar Wandborg | 2011-07-03 | 1 | -0/+19 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * `migrations.py` * Removed empty line * Added empty line * `models.py` * Added `MediaEntry.get_display_media()` helper function * `process_media.__init__.py` * Updated `process_media_initial()` * Renamed `main` => `original`. * Added condition to `medium`, it's only created if the original dimensions exceed the MEDIUM_SIZE dimensions. * `media.html` * The image tag is now populated by `MediaEntry.get_display_media()` * `util.py` * Added `DISPLAY_IMAGE_FETCHING_ORDER`, used by `MediaEntry.get_display_media()` | |||||
* | | | Merge remote branch 'remotes/aaronw/feature410_markdown_bio' | Christopher Allan Webber | 2011-07-13 | 1 | -1/+2 | |
|\ \ \ | ||||||
| * | | | Markdown-enable user bio (Feature 410) | Aaron Williamson | 2011-07-10 | 1 | -1/+2 | |
| | |/ | |/| | ||||||
* / | | Removing old style migrations... not in use anymore | Christopher Allan Webber | 2011-07-11 | 1 | -6/+2 | |
|/ / | ||||||
* | | This should actually fix the next and previous buttons now. Sorry I borked ↵ | Christopher Allan Webber | 2011-07-07 | 1 | -2/+2 | |
| | | | | | | | | the merge! | |||||
* | | Merge remote branch ↵ | Christopher Allan Webber | 2011-07-06 | 1 | -3/+3 | |
|\ \ | | | | | | | | | | | | | | | | | | | 'remotes/gullydwarf-cfdv/f423_match_image_ordering_between_scroll_and_gallery' Conflicts: mediagoblin/db/models.py | |||||
| * | | Feature #423 - gallery and scroll image ordering match | Caleb Forbes Davis V | 2011-07-04 | 1 | -4/+4 | |
| | | | ||||||
* | | | Merge remote branch 'remotes/gullydwarf-cfdv/f435_limit_prev_next_by_processed' | Christopher Allan Webber | 2011-07-06 | 1 | -2/+4 | |
|\ \ \ | ||||||
| * | | | f#435 - avoids linking to unprocessed media in prev and next | Caleb Forbes Davis V | 2011-07-05 | 1 | -2/+4 | |
| |/ / | ||||||
* / / | slug-style urls in previous and next urls look much better | Caleb Forbes Davis V | 2011-07-05 | 1 | -2/+2 | |
|/ / | | | | | | | Bug #434 - identifies media by slug instead of _id in prev/next | |||||
* | | Merge remote branch 'remotes/gullydwarf-cfdv/f401_prev_next_media_nav' | Christopher Allan Webber | 2011-07-02 | 1 | -1/+27 | |
|\ \ | | | | | | | | | | | | | | | | Conflicts: mediagoblin/db/models.py mediagoblin/templates/mediagoblin/user_pages/media.html | |||||
| * | | adds previous and next links in the sidebar | Caleb Forbes Davis V | 2011-07-02 | 1 | -1/+27 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Feature #401 - previous/next navigation on media pages * media.html includes a new prev_next.html template containing the links * prev_next.html calls functions added to the media model to retrieve the appropriate objects from the database, formatted with urlgen * a small change to util.py brings ASCENDING into the mix | |||||
| * | | Merge remote branch 'remotes/jwandborg/feature_362-simple_comments' | Christopher Allan Webber | 2011-06-29 | 1 | -3/+43 | |
| |\ \ | ||||||
* | | | | Issue #362 - Simple comments - Changes based on feedback recieved from ↵ | Joar Wandborg | 2011-07-01 | 1 | -17/+5 | |
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #mediagoblin * `db.models` - Removed `MediaEntry.get_comments()` and replaced it with a helper which just returns a cursor for the comments query * `media.html` - Added `{% set comment_author = comment.author() %}` * `user_pages.views` - media_home() now passes `MediaEntry.get_comments()` directly to `Pagination`, handles pagination for comments. * Added `MEDIA_COMMENTS_PER_PAGE` to define the number of comments per page in the `media_home()` view. | |||||
* | | | Merge branch 'feature_362-simple_comments' | Joar Wandborg | 2011-06-29 | 1 | -3/+43 | |
|\ \ \ | |/ / |/| / | |/ | ||||||
| * | Issue #362 - Updated the MediaComment model | Joar Wandborg | 2011-06-29 | 1 | -4/+20 | |
| | | | | | | | | | | | | | | * `MediaComment.get_comments()` now uses pagination * `MediaComment.get_comments()` now sorts by `created` DESC * `MediaComment.media_entry` is now **required** * `MediaComment.media_entry()` now returns parent `MediaEntry` | |||||
| * | Issue 362 - Add simple comments | Joar Wandborg | 2011-06-27 | 1 | -1/+25 | |
| | | | | | | | | | | * Added MediaComment database model Holds `media_entry` (`ObjectId`), `author` (`ObjectId`), `created`, `content` and `content_html`. | |||||
* | | Adding our current indexes and removing the index that was in models.py | Christopher Allan Webber | 2011-06-27 | 1 | -5/+0 | |
|/ | ||||||
* | assigns migration steps to User database objects | cfdv | 2011-06-20 | 1 | -0/+2 | |
| | | | | | | adds the migration_handler to the User db class, connecting the migration steps in ../db/migrations.py to the migration code in gmg_commands | |||||
* | Merge remote-tracking branch 'origin/master' into is315 | cfdv | 2011-06-20 | 1 | -1/+2 | |
|\ | ||||||
| * | Merge branch 'master' of http://git.gitorious.org/mediagoblin/mediagoblin | Joar Wandborg | 2011-06-15 | 1 | -2/+2 | |
| |\ | ||||||
| * | | Added Markdown rendering for `media_entry` | Joar Wandborg | 2011-06-12 | 1 | -1/+2 | |
| | | | ||||||
* | | | baby step towards enabling profile edits | cfdv | 2011-06-18 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 * ? | |||||
* | | | adds user bio and website url fields to the database | cfdv | 2011-06-18 | 1 | -0/+2 | |
| |/ |/| | ||||||
* | | mediagoblin.globals->mediagoblin.mg_globals | Christopher Allan Webber | 2011-06-12 | 1 | -2/+2 | |
|/ | ||||||
* | No need for a method for generating the verification key as a method | Christopher Allan Webber | 2011-06-02 | 1 | -8/+0 | |
| | | | | on the class, can just do that in the view | |||||
* | Merge remote branch 'remotes/aleks/aleks' | Christopher Allan Webber | 2011-05-31 | 1 | -0/+8 | |
|\ | ||||||
| * | Added the ability to regenerate a verification key. | Aleksandar Micovic | 2011-05-31 | 1 | -0/+8 | |
| | | ||||||
* | | Add an index on MediaEntries making sure slugs + uploader combos are unique | Christopher Allan Webber | 2011-05-30 | 1 | -6/+5 | |
|/ | ||||||
* | remove all 'username_repr' stuff | Jakob Kramer | 2011-05-29 | 1 | -2/+1 | |
| | ||||||
* | this should fix #354 | Jakob Kramer | 2011-05-29 | 1 | -1/+2 | |
| | ||||||
* | Update all the views so that they use the uploader reference instead | Christopher Allan Webber | 2011-05-22 | 1 | -2/+7 | |
| | | | | of uploader embedding | |||||
* | User migration works (but the rest of the system isn't updated for new user ↵ | Christopher Allan Webber | 2011-05-22 | 1 | -1/+5 | |
| | | | | setup yet) | |||||
* | Added a url_for_self method for generating mediaentry links | Christopher Allan Webber | 2011-05-20 | 1 | -0/+18 | |
| | | | | This allows for optionally making the url based off of slugs or ids | |||||
* | Move models into new db/ directory | Elrond | 2011-05-18 | 1 | -0/+128 | |
The database is a central point of interest/discussion. Represent that by its own directory. This will surely become more interesting when we have migrations for example. |