| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-01-06 | Fix bad redirects; we only have feeds for albums not photos | Bharat Mediratta | |
| 2009-01-06 | add fileSize attribute to thumbnail/resize/full images | Bharat Mediratta | |
| 2009-01-06 | Wrap content in htmlspecialchars so that we don't break the RSS feed | Bharat Mediratta | |
| 2009-01-01 | Change the preamble for views in two ways: | Bharat Mediratta | |
| 1) drop unnecessary semicolon 2) start with <?php for extra security in the case that the server itself doesn't have short_tags enabled (the app won't work, but we need to make sure that we're still secure) | |||
| 2008-12-22 | Change the way that we track modules. | Bharat Mediratta | |
| Each module now has a "module.info" file that has information about the module, including the core. We can display the installed version, and the version in the code. Also take a first shot at a modules admin page. | |||
| 2008-12-18 | Add <fh:complete/> | Bharat Mediratta | |
| 2008-12-18 | Add <generator> element to try to make Polar Rose happy (it doesn't work, ↵ | Bharat Mediratta | |
| though) | |||
| 2008-12-18 | Absoluteify some urls to make feedvalidator.org happy | Bharat Mediratta | |
| 2008-12-18 | Add item view permission checks. | Bharat Mediratta | |
| Switch from absolute urls to relative ones. Relative urls break the flash based slideshow, but the Cooliris extension works. I'll file a bug. | |||
| 2008-12-17 | Separate thumbnails out into var/thumbs. This clears up some ambiguity in ↵ | Bharat Mediratta | |
| Item_Model and simplifies file_proxy. It also means we can stop munging file names in the var/resizes hierarchy. In the process, rename "thumbnail" to "thumb" everywhere in honor of Chad (well, ok because it's shorter).. | |||
| 2008-11-28 | Move the <media:thumbnail> outside of the <media:group> to work around a bug ↵ | Bharat Mediratta | |
| in Cooliris. | |||
| 2008-11-28 | Set the page size to 30 images. No need to limit ourselves to 10 in a feed. | Bharat Mediratta | |
| 2008-11-28 | Create media_rss helper and move feed generation in there, so that we | Bharat Mediratta | |
| can get to the feed from other parts of the code. | |||
| 2008-11-28 | Fix some minor issues with the feed format | Bharat Mediratta | |
| 2008-11-28 | Fix a bug where we were loading the wrong item/tag | Bharat Mediratta | |
| 2008-11-28 | Add a media_rss feed for tag views. | Bharat Mediratta | |
| When visiting a photo, show the feed for the parent album. | |||
| 2008-11-27 | Centralize logging around installing/uninstalling modules. | Bharat Mediratta | |
| 2008-11-26 | Add a new "tag" page type. | Bharat Mediratta | |
| Create the concept of "page types" which let us specify the kind of page that we're rendering in high level terms. Currently there are three page types: album, photo and tag. The tag page type uses slightly different variables. It has a $tag but no $item. Adjust all sidebar_block() functions to avoid printing stuff that's dependent on the item if there is no item. Simplify the tag code to stop trying to fake an item. Update the theme slightly to use $item and $tag where appropriate (notably, for making the <title> element). | |||
| 2008-11-21 | 2nd attempt at inserting html by modules. | Tim Almdal | |
| 2008-11-21 | Revert module block approach | Tim Almdal | |
| 2008-11-20 | Use rest::http_content_type() instead of the header() method to set response ↵ | Tim Almdal | |
| content | |||
| 2008-11-20 | A look at away to allow modules to define html head contents (links and js) ↵ | Tim Almdal | |
| and also allow modules to contribute blocks to the layout. | |||
| 2008-11-20 | Clean up the MediaRSS module a little bit: | Bharat Mediratta | |
| * Media_RSS_Controller::$LIMIT is now self::$page_size * We use ORM_MPTT descendant_counts() * If the page is out of bounds, put it on a boundary * Move pub_date into the controller to simplify the mrss file * Put all the view assignment in one block for easier reading * Removed stray ; from the end of lines in the mrss file Clean up ORM_MPTT a bit: * fix spelling: decendent -> descendant * Remove unnecessary order_by() clauses * Set the default for $type to null (not "all"). | |||
| 2008-11-20 | changed descendents_by_type to descendents and added descendent_count | Tim Almdal | |
| 2008-11-19 | Create url::abs_site() and url::abs_file() to allow us to generate | Bharat Mediratta | |
| full URLs with a clean API, and isolate the cruddy party where we have to hardcode the server protocol into a single file. | |||
| 2008-11-19 | clean up feed template | Tim Almdal | |
| 2008-11-19 | Integrate Piclens lite as the slideshow | Tim Almdal | |
| 2008-11-19 | Update the media rss template to include the resize and the fullsize | Tim Almdal | |
| added descendants by type method to the item model to allow for the selection of children by type | |||
| 2008-11-19 | Cleanup media rss feed | Tim Almdal | |
| added parameters to thumbnail_url and resizes_url to be passed to the url::base call to generate ful urls | |||
| 2008-11-19 | Set the content type to application/rss+xml | Bharat Mediratta | |
| 2008-11-19 | rename views/feed.media_rss.php to views/feed.mrss.php because | Bharat Mediratta | |
| mrss is a more standard abbreviation for MediaRSS. Sigh. | |||
| 2008-11-19 | Rename views/media_rss.html.php -> views/feed.media_rss.php because as | Bharat Mediratta | |
| Tim points out, "it's not html". My bad! | |||
| 2008-11-19 | rename views/media.rss.php to views/media_rss.html.php for consistency. | Bharat Mediratta | |
| 2008-11-19 | Change Media_RSS_Controller so that it does not extend REST_Controller, since it | Bharat Mediratta | |
| doesn't refer to a fixed resource or collection of resources. Fix some minor bugs in the code so that we can actually generate a feed. It looks pretty cool! Improved pagination links, but didn't actually test them. | |||
| 2008-11-19 | fix a few minor issues | Tim Almdal | |
| 2008-11-19 | The continuing evolution of the slideshow... | Tim Almdal | |
| 1) added a mime_type property to the item module(no database change) 2) created a media_rss module 3) moved most of the functionality for the downloading the images to the media_rss module | |||
