| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | Replace the string [table_name] with {$prefix}table_name. Slowly | Tim Almdal | |
| working through setting up the database access to support table prefixes. (Ticket#68) Before going ahead, just wanted to check this approach... whatcha think? | |||
| 2009-02-27 | Remove commented code | Tim Almdal | |
| Correct unbalanced brackets | |||
| 2009-02-26 | Removed raw update sql and replaced it with Database::update(...) | Tim Almdal | |
| calls. (ticket #68) | |||
| 2009-02-24 | Fix i18n create table sql (forgot to change core_install.php) | Andy Staudacher | |
| 2009-02-12 | Change i18n message key to include the plural form (to ensure that it's ↵ | Andy Staudacher | |
| truly unique). | |||
| 2009-02-10 | style fixes (style for method names, style for vars in locale.php) | Andy Staudacher | |
| 2009-02-09 | Add local localization functionality. Local = no means to upload / download ↵ | Andy Staudacher | |
| translations to a translation server yet. - Added an outgoing_translations table to store translations from the local translation UI. - I18n class is checking incoming_ and outgoing_translations for translations, giving the latter priority. - Not handling plural strings in the translations UI yet. | |||
| 2009-02-09 | Adding translation UI. Not backed by any model yet (submissions are ignored). | Andy Staudacher | |
| The code is based on the l10n_client module from Drupal 6, by Gabor Hojtsy (http://drupal.org/user/4166). | |||
| 2009-02-08 | Fix a bug that I think I introduced in my last sendmail refactor where | Bharat Mediratta | |
| I inverted the expectations on the result from mail() causing image uploads to fail (even though the mail gets sent!) | |||
| 2009-02-08 | Use the ORM method delete_all to remove selected records from the | Tim Almdal | |
| database instead of calling the Database::query with raw sql. | |||
| 2009-02-08 | rollback r20001-r19998, r19995. This may require a reinstall | Tim Almdal | |
| 2009-02-07 | The start of the exif module. so I can merger the exifer library | Tim Almdal | |
| 2009-02-07 | Changed the way album and photo creation guards against duplicate | Tim Almdal | |
| names. Added similiar code to insure that path names are not duplicated. | |||
| 2009-02-05 | Move test-related extensions to Sendmail into a subclass that we only | Bharat Mediratta | |
| use in the test code (Sendmail_For_Test). | |||
| 2009-02-02 | Fix sendmail tests (had mismatch between configured header separator and ↵ | Andy Staudacher | |
| expected results) | |||
| 2009-01-29 | Add support for pretty urls. So now instead of urls like: | Bharat Mediratta | |
| http://example.com/gallery3/index.php/albums/2 http://example.com/gallery3/index.php/photos/9 You'll see urls like: http://example.com/gallery3/index.php/Family/Weddings http://example.com/gallery3/index.php/Family/Weddings/Bob.jpg | |||
| 2009-01-28 | Create a sendmail library to wrap the call to the system sendmail | Tim Almdal | |
| facility. Something quirky is happening in the first test, see comment in code, but I couldn't figure it out. Left a @todo for now. | |||
| 2009-01-23 | Add support for parenthetical grouping to Database queries. Turns out | Bharat Mediratta | |
| that this is something they kind of want for Kohana :-) Upstream ticket for this change: http://dev.kohanaphp.com/ticket/1070 | |||
| 2009-01-19 | Fix up various little things to get File_Structure_Test to pass. | Bharat Mediratta | |
| 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-13 | Models should be named in adjective_noun form to make pluralizatoin | Bharat Mediratta | |
| more intuitive. Renamed Translations_Incoming to Incoming_Translation to suit. | |||
| 2009-01-11 | Remove path normalization, the current normalization code didn't go far ↵ | Andy Staudacher | |
| enough anyway. | |||
| 2009-01-11 | MySQL strict fix for Item_Model test. Set all fields that have no default value. | Andy Staudacher | |
| 2009-01-11 | Fix ORM MPTT tests for MySQL strict mode (can't omit Iten type in inserts, ↵ | Andy Staudacher | |
| it doesn't have a default value). | |||
| 2009-01-11 | Fix Access_Helper tests for MySQL strict mode (can't omit Iten type in ↵ | Andy Staudacher | |
| inserts, it doesn't have a default value). | |||
| 2009-01-11 | Fix all file structure issues (tabs, bad preambles, etc). | Bharat Mediratta | |
| Note: installer/install.php is now on the "direct access" list. | |||
| 2009-01-11 | Allow .txt.php views | Bharat Mediratta | |
| 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-08 | First step of i18n refactoring: | Andy Staudacher | |
| - Using DB table translations_incomings as translations storage (file cache to be added) - Removed overly complex i18n code which will be unnecessary with the future compiled cache files - Added t() as a translation function (global refactoring from _() to t() to follow) | |||
| 2009-01-08 | module::event now takes an unlimited number of args | Bharat Mediratta | |
| added module::incr_var() ftw. | |||
| 2009-01-04 | Make sure that create/update/delete fail without CSRF. | 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-31 | PhotoID -> PhotoId for consistency | Bharat Mediratta | |
| 2008-12-31 | Fix a bug where we were accidentally allowing view permissions when | Bharat Mediratta | |
| allowing or resetting permission further down in the tree. This bug was introduced when I refactored the view permission cache into the items table. Updated test to catch it. | |||
| 2008-12-31 | Fully implement the view_full permission. | Bharat Mediratta | |
| 2008-12-26 | Add module::clear_var() | Bharat Mediratta | |
| 2008-12-25 | Split Items_Controller_Test into Photos and Albums tests | Bharat Mediratta | |
| 2008-12-23 | Change photo::create() and album::create() to take ORM instances | Bharat Mediratta | |
| instead of ids. | |||
| 2008-12-22 | Update Selenium IDE test case file names. | Chad Kieffer | |
| 2008-12-21 | Removed my local dev url. | Chad Kieffer | |
| 2008-12-20 | Add "created" and "updated" timestamps to the items table. | Bharat Mediratta | |
| 2008-12-18 | I'm tired of clicking. Here are a few Selenium IDE tests. | Chad Kieffer | |
| 2008-12-17 | Change the album thumbnail/resize from _album.jpg to .album.pjg | Bharat Mediratta | |
| because the leading underscore confuses the Kohana router. | |||
| 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-12-16 | Make the profiler output more legible by adding some padding to the table. | Bharat Mediratta | |
| 2008-12-16 | Fix a bug where we were not deleting the .htaccess file on access::reset() | Bharat Mediratta | |
| 2008-12-16 | Create and delete .htaccess files based on the view permissions for | Bharat Mediratta | |
| the group::everybody() user. | |||
| 2008-12-16 | Permission only function on albums. | Bharat Mediratta | |
