| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-05-13 | Gee it's May already. Update copyright to 2009. | Bharat Mediratta | |
| 2009-05-13 | Set the default transparency to 1 (no transparency at all) | Bharat Mediratta | |
| 2009-05-13 | Fix the logical inversion of the transparency field. Now, 100% is max | Bharat Mediratta | |
| transparency and 1% is min transparency (no transparency at all). Fixes ticket #204. | |||
| 2009-03-16 | Ticket #97. Applied button css where missing. Minor form css improvements. | Chad Kieffer | |
| 2009-02-28 | Change the pattern to identify tables that need prefix substitution to | Tim Almdal | |
| mirror the drupal pattern of using braces {}. | |||
| 2009-02-27 | This implement table prefix for the watermark notification modules (Ticket #68) | Tim Almdal | |
| 2009-02-24 | remove the extension and just use the IMAGETYPE_xxx constants | Tim Almdal | |
| 2009-02-23 | Include jpg as valid graphic files | Tim Almdal | |
| 2009-02-23 | Revert to using IMAGETYPE_XXX constants (at least for now) | Bharat Mediratta | |
| 2009-02-21 | Hardcode extensions instead of using Image::$allowed_types because we | Bharat Mediratta | |
| don't support TIFF files. TIFF files are not viewable directly in most browsers | |||
| 2009-02-20 | Use Image::$allowed_types instead of array(IMAGETYPE_GIF, | Tim Almdal | |
| IMAGETYPE_JPEG, IMAGETYPE_PNG) as IMAGETYPE_GIF, IMAGETYPE_JPEG and IMAGETYPE_PNG are not defined as constants | |||
| 2009-01-25 | Undo the adding underscores to the id on forge generated forms | Tim Almdal | |
| 2009-01-24 | Supply a form id on all forms. This id can be used by modules other | Tim Almdal | |
| than the originating module to provide additional functionality to the form. | |||
| 2009-01-15 | Changing t() placeholder syntax from {{replace_me}} to %replace_me. | Andy Staudacher | |
| 2009-01-14 | Make sure that helper functions are all static. Add new | Bharat Mediratta | |
| File_Structure_Test to make sure we don't regress. According to the PHP docs, the "public" keyword is implied on static functions, so remove it. Also, require private static functions to start with an _. http://php.net/manual/en/language.oop5.visibility.php | |||
| 2009-01-12 | Updated for new Form_Submit API. | Bharat Mediratta | |
| OLD: $form->submit("Foo") --> <input type="submit" value="Foo"> New: $form->submit("foo_button")->("Foo") --> <input type="submit" name="foo_button" value="Foo"> Mostly we don't care what the button is so we leave the name blank. | |||
| 2009-01-08 | i18n refactoring: Rename all _() (reserved by gettext) calls to t(). | Andy Staudacher | |
| - And refactor printf to our string interpolation / pluralization syntax - Also, a slight change to the translations_incomings table, using binary(16) instead of char(32) as message key. | |||
| 2009-01-06 | Fix up all the various little forms to have submit buttons, fieldset ↵ | Bharat Mediratta | |
| legends, etc etc. | |||
| 2009-01-04 | Wrap div with another div instead of a paragraph | Chad Kieffer | |
| 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-30 | Make some columns smaller so that multi-column keys don't exceed 1024 | Bharat Mediratta | |
| bytes on some systems. | |||
| 2008-12-29 | Remove rest::JSON content type; it's causing lots of problems and it doesn't ↵ | Bharat Mediratta | |
| directly help since text/html works just as well for our JSON communications | |||
| 2008-12-29 | Add transparency support | Bharat Mediratta | |
| 2008-12-29 | Clean up _update_graphics_rules() to make it more robust | Bharat Mediratta | |
| 2008-12-26 | Added content type to JSON output functions | Felix Rabinovich | |
| 2008-12-26 | Move Watermarks under Content in the Site Admin menu. | Bharat Mediratta | |
| 2008-12-26 | Add the graphics rules for both thumbs and resizes (instead of just thumbs). | Bharat Mediratta | |
| 2008-12-26 | Added the concept of "permanent" messages that we show to admins. Use | Bharat Mediratta | |
| this to show a "your thumbs/resizes are out of date" message whenever we change the graphics rules. Tweak watermark module to add graphics rules whenever we make a change, which triggers the graphics module to add the permanent message. | |||
| 2008-12-26 | Fix get_add_form() to use self::positions() so that we get the right ↵ | Bharat Mediratta | |
| key/value pairs. | |||
| 2008-12-26 | Added graphics::mark_all_dirty(). The watermark code now marks images | Bharat Mediratta | |
| as dirty if the admin changes the watermark at all. | |||
| 2008-12-26 | Add missing '=' causing <img> height not to get set. | Bharat Mediratta | |
| 2008-12-26 | More watermark changes: | Bharat Mediratta | |
| Change admin/watermarks/upload -> admin/watermarks/add for consistency. Internationalize position text, store it as text in the database, display it to the admin. Make i18n strings consistent to reduce l10n load. | |||
| 2008-12-26 | Remove an HTTP redirect that was breaking the Ajax interface. | Bharat Mediratta | |
| 2008-12-26 | Simplify the watermark module. We can now upload, edit and delete one | Bharat Mediratta | |
| watermark. The UI is rough and we don't yet apply the watermark to images.. that's next. | |||
| 2008-12-25 | Rework log and message helpers to be parallel, but separate. | Bharat Mediratta | |
| 1) they now have their own matching severity constants 2) they both have convenience functions success(), info(), warning() and error() 3) they both have severity_class() | |||
| 2008-12-25 | Add edit/delete links (they're just stubs now, but they open a dialog). | Bharat Mediratta | |
| Add active/position to Watermark_Model | |||
| 2008-12-25 | Remove extra uniquifying text that Forge adds to uploaded files. | Bharat Mediratta | |
| 2008-12-24 | Remove stray response:: (not yet time for this.. it's coming!) | Bharat Mediratta | |
| 2008-12-24 | Normalize our Admin controllers so that functions always print out | Bharat Mediratta | |
| their results, as opposed to having them return their view back upstream. This is a little more code in every controller, but it's much less magical and more consistent. Look up the active_theme and active_admin_theme inside the view itself, no need to do that in the controllers. This makes view initialization easier in the controllers. | |||
| 2008-12-23 | Add very simple graphics toolkits. | Bharat Mediratta | |
| Track a set of rules in Graphics_Rule_Model which specify how we turn original images into thumbnails and resizes. There's one set of rules that applies to every image in the Gallery. Track the state of thumbs and resizes with a "dirty" bit. The new graphics helper manages the rules and can rebuild the thumbs and resizes for any images that are considered "dirty". Introduce the concept of an "album cover" which is an item that an album points to. We'll use that item as the source for the album's thumbnail/resize. Conflated with this change (sorry!) I also changed the Var table to use module_name instead of module_id. This may be marginally less efficient, but it's much easier to follow in the database. | |||
| 2008-12-23 | Allow the site admin to upload watermark images. Can't do much with them yet. | Bharat Mediratta | |
| 2008-12-23 | Step 1 of converting watermarks over to be an admin page. | Bharat Mediratta | |
| 2008-12-23 | Add attribute to <script> element. | Bharat Mediratta | |
| 2008-12-23 | Remove stray comma. | Bharat Mediratta | |
| 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 | Refactor site admin menu into a theme function and build the menus in | Bharat Mediratta | |
| the various modules. In the process, rename xxx_menu::site_navigation() to just xxx_menu::site(). And add xxx_menu::admin(). The menus are the same as before, but I changed the HTML to be consistent with the way that we do it in the regular site, and this broke the superfish styles. I don't know how to fix this.. help me Chad! | |||
| 2008-12-17 | Drag & Drop the watermark now works and so does the dropdown box. The ↵ | Tim Almdal | |
| target image is divided into a 3x3 quadrant referenced as: northwest, north, northeast, west, center, east, southeast, south, southwest. Similiar to the imagemagik garvities. Currently the watermark is placed in the left top of the particular quadrant. | |||
| 2008-12-16 | Fix preamble | Bharat Mediratta | |
| 2008-12-16 | Oops, remove the () on the parameter to $("#Dialog").ready(...) so we pass ↵ | Tim Almdal | |
| the function, not the results of the function call. | |||
| 2008-12-16 | Separate the handling of the dialog resizing into the watermark.js, so we ↵ | Tim Almdal | |
| don't have to download the watermark dialog initialization with each request. | |||
