aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/db
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'remotes/gullydwarf-cfdv/f360_tagging' (early part) into mergetagsChristopher Allan Webber2011-07-302-1/+16
|\ | | | | | | | | | | | | Conflicts: mediagoblin/config_spec.ini mediagoblin/edit/views.py mediagoblin/util.py
| * updates indices to index on the slug component of the tag listCaleb Forbes Davis V2011-07-271-2/+2
| | | | | | | | | | - uses dot notation to reach into the JSON-style MediaEntry tags field object to index on the slug property of each tag
| * changes tags to a list of dicts in the db, adding tag slugsCaleb Forbes Davis V2011-07-271-1/+1
| | | | | | | | | | | | | | | | | | - adds a function to convert the tag list of dicts to a text string properly delimited for loading into forms - tag string conversion function updated to generate list of dicts - updates all mentions of the conversion of the string to the tags db object - adds a tags template utility and updates the media template accordingly
| * adds "state" to tags indicesCaleb Forbes Davis V2011-07-131-6/+8
| |
| * adds index for searching across all users' tagged imagesCaleb Forbes Davis V2011-07-131-0/+6
| |
| * adds index for tag searches by an uploaderCaleb Forbes Davis V2011-07-101-0/+7
| |
* | docstring for MediaComment's structureChristopher Allan Webber2011-07-171-1/+12
| |
* | Described the MediaEntry structure in the docstring.Christopher Allan Webber2011-07-171-6/+81
| |
* | Docstring for the User model's various schema fieldsChristopher Allan Webber2011-07-171-0/+26
| |
* | Migration for mediafiles main->originalChristopher Allan Webber2011-07-171-0/+16
| |
* | Merge remote branch 'remotes/jwandborg/feature_400-resize_images_to_fit_page'Christopher Allan Webber2011-07-161-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 commitJoar Wandborg2011-07-031-1/+1
| | |
| * | Feature #400 - Resize images to fit on page - AdditionsJoar Wandborg2011-07-032-1/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * `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()`
* | | First migration: Add markdown bio!Christopher Allan Webber2011-07-141-3/+17
| | |
* | | Merge remote branch 'remotes/aaronw/feature410_markdown_bio'Christopher Allan Webber2011-07-131-1/+2
|\ \ \
| * | | Markdown-enable user bio (Feature 410)Aaron Williamson2011-07-101-1/+2
| | | |
* | | | Merge branch 'master' into f411_new_migrationsChristopher Allan Webber2011-07-133-8/+18
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: mediagoblin/db/open.py
| * | | | Move db_name default into config_spec.iniElrond2011-07-111-1/+1
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | The default name of the database ("mediagoblin") was coded in db/open.py and init/celery/__init__.py. Instead use the new config system to have this as the default for the "db_name" config option.
| * | | Adjusting documentation in indexes.py also re: more info in deprecationChristopher Allan Webber2011-07-091-4/+6
| | | |
| * | | Changing things back so that we keep information about deprecatedChristopher Allan Webber2011-07-091-3/+10
| | |/ | |/| | | | | | | indexes around.
* | | Duplicate migration numbers not allowed, broChristopher Allan Webber2011-07-131-0/+2
| | |
* | | We should *raise* MissingCurrentMigration :)Christopher Allan Webber2011-07-131-1/+1
| | | | | | | | | | | | Thanks for the catch, Elrond.
* | | Removing old style migrations... not in use anymoreChristopher Allan Webber2011-07-112-63/+3
| | |
* | | Just making a note of where the new migrations will go!Christopher Allan Webber2011-07-101-0/+11
| | |
* | | give option in connect_database_from_config to connect to a pymongo.ConnectionChristopher Allan Webber2011-07-101-8/+25
| | |
* | | Made it so that it's migrate_new() which installs the migrationChristopher Allan Webber2011-07-101-3/+18
| | | | | | | | | | | | version if missing, migrations_to_run just throws an error if not set
* | | No reason to have migration_number optional or default to NoneChristopher Allan Webber2011-07-101-1/+1
| | |
* | | Move the call to install_migration_version_if_missing() to migrations_to_run()Christopher Allan Webber2011-07-101-5/+7
| | | | | | | | | | | | | | | This means there's a serious side effect of calling this, but there's no way to get useful data here unless if that's set anyway.
* | | install_migration_version_if_missing() now a separate functionChristopher Allan Webber2011-07-101-7/+19
| | | | | | | | | | | | | | | Also added it to MigrationManager.migrate_new(), because we'll always need a migration number when migrating.
* | | Make sure all these strings in db/util.py are unicodeChristopher Allan Webber2011-07-101-6/+6
| | |
* | | Simpler run_migrations method.Christopher Allan Webber2011-07-101-16/+13
| | | | | | | | | | | | | | | | | | | | | | | | Allows for calbacks, should be useful for printing output and catching things in tests. Gets rid of the generator stuff which now that I think of it is a messy idea.
* | | Making sure migration_number > 0 :)Christopher Allan Webber2011-07-091-1/+3
| | |
* | | run_new_migrations() makes more senseChristopher Allan Webber2011-07-091-1/+1
| | |
* | | Some instructions in the RegisterMigration docstring on how to use.Christopher Allan Webber2011-07-091-0/+13
| | |
* | | latest_migration now returns migration numbers only, and 0 if no migrations.Christopher Allan Webber2011-07-091-6/+10
| | |
* | | Migrating quietly, not iteratively, that comment should say!Christopher Allan Webber2011-07-091-1/+1
| | |
* | | New migration utility code.... I haven't tested this! ;)Christopher Allan Webber2011-07-091-0/+136
|/ / | | | | | | | | | | | | | | I think it's looking right though. - Provides MigrationManager which should have plenty of utilities for doing migrations hopefully correctly :) - Provides RegisterMigration which should be able to decorate migrations and register them in doing so
* | This should actually fix the next and previous buttons now. Sorry I borked ↵Christopher Allan Webber2011-07-071-2/+2
| | | | | | | | the merge!
* | Merge remote branch ↵Christopher Allan Webber2011-07-061-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 matchCaleb Forbes Davis V2011-07-041-4/+4
| | |
* | | Merge remote branch 'remotes/gullydwarf-cfdv/f435_limit_prev_next_by_processed'Christopher Allan Webber2011-07-061-2/+4
|\ \ \
| * | | f#435 - avoids linking to unprocessed media in prev and nextCaleb Forbes Davis V2011-07-051-2/+4
| |/ /
* / / slug-style urls in previous and next urls look much betterCaleb Forbes Davis V2011-07-051-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 Webber2011-07-022-2/+28
|\ \ | | | | | | | | | | | | | | | Conflicts: mediagoblin/db/models.py mediagoblin/templates/mediagoblin/user_pages/media.html
| * | adds previous and next links in the sidebarCaleb Forbes Davis V2011-07-022-2/+28
| |/ | | | | | | | | | | | | | | 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
* | Note from Chris Webber prefacing Elrond's DB abstraction idea.Christopher Allan Webber2011-07-021-0/+12
| |
* | Merge remote branch 'remotes/elrond/idea/db_doc'Christopher Allan Webber2011-07-021-0/+34
|\ \
| * | Document the db submodule a bitElrond2011-06-301-0/+34
| |/ | | | | | | | | Document the ideas behind the db submodule. And document what that actually means.
* | Merge remote branch ↵Christopher Allan Webber2011-07-021-17/+5
|\ \ | |/ |/| | | | | | | | | 'remotes/jwandborg/feature_362-simple_comments-acts_on_feedback' Conflicts: mediagoblin/templates/mediagoblin/user_pages/media.html
| * Issue #362 - Simple comments - Changes based on feedback recieved from ↵Joar Wandborg2011-07-011-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.