| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-07-13 | Add quotes around all values that contain spaces in them, and add a | Bharat Mediratta | |
| test to make sure that we continue to do so. This makes sure that we don't have problems with 5.3 which treats the literal "on" as a boolean. | |||
| 2009-07-10 | Fix a bug where the task message was not being set | Tim Almdal | |
| 2009-07-09 | Revert "Revert "Add task logging to the "Update Search Index" task"" | Tim Almdal | |
| This reverts commit 5118afc959650469874733a1060fbe22364d8c28. | |||
| 2009-07-09 | Revert "Add task logging to the "Update Search Index" task" | Tim Almdal | |
| This reverts commit 6ac5238b83d58824eb9327406a2ee50b7e603214. | |||
| 2009-07-08 | Add task logging to the "Update Search Index" task | Tim Almdal | |
| 2009-07-07 | Revert "Forgot this when i was cleaning up for ticket #519" | Tim Almdal | |
| This reverts commit 31969a1d8211187e415eac51d155b4efded365f3. | |||
| 2009-07-07 | Forgot this when i was cleaning up for ticket #519 | Tim Almdal | |
| 2009-07-04 | Fix for ticket #477. Use nl2br method when rendering comment::text and | Tim Almdal | |
| item::description. In addition add p::clean or p::purify to places that xss cleaning had missed (i.e. rss feeds) | |||
| 2009-07-03 | Split the clean method into two clean and purify. clean is a light weight | Tim Almdal | |
| approach using html::specialchars and purify uses HTMLPurifier to intelligently cleanse the output fields. Use purifier for text and title fields where it is likely that a user would enter html to format their data. | |||
| 2009-06-24 | SQL is case insensitive | Romain LE DISEZ | |
| Signed-off-by: Bharat Mediratta <bharat@menalto.com> | |||
| 2009-06-24 | Improve compatibility with other RDBMS | Romain LE DISEZ | |
| Signed-off-by: Bharat Mediratta <bharat@menalto.com> | |||
| 2009-06-23 | Refactor the install/upgrade code to be more flexible. | Bharat Mediratta | |
| Add xxx_installer::upgrade($version) method so that upgrade stanzas are separate from install stanzas. In the old code, to do an upgrade meant that you had to re-evolve everything from the initial install because we'd step through each version's changes. But what we really want is for the initial install to start off in the perfect initial state, and the upgrades to do the work behind the scenes. So now the install() function gets things set up properly the first time, and the upgrade() function does any work to catch you up to the latest code. See gallery_installer.php for a good example. | |||
| 2009-06-02 | Fix for ticket #320 | Tim Almdal | |
| 2009-05-31 | Run p::clean() on any variables that contain data entered by users. | Bharat Mediratta | |
| 2009-05-27 | Update all references to the core application to now point to the | Bharat Mediratta | |
| gallery module. This type of mass update is prone to some small bugs. | |||
| 2009-05-26 | clean up whitespace errors introduced in last commit | Bharat Mediratta | |
| 2009-05-26 | Restructure the module lifecycle. | Bharat Mediratta | |
| Install: <module>_installer::install() is called, any necessary tables are created. Activate: <module>_installer::activate() is called. Module controllers are routable, helpers are accessible, etc. The module is in use. Deactivate: <module>_installer::deactivate() is called. Module code is not accessible or routable. Module is *not* in use, but its tables are still around. Uninstall: <module>_installer::uninstall() is called. Module is completely removed from the database. Admin > Modules will install and activate modules, but will only deactivate (will NOT uninstall modules). | |||
| 2009-05-20 | Avoid complex inserts in available_tasks() to make admin/maintenance | Bharat Mediratta | |
| run faster. This fixes ticket #235. Incidentally, refactor exif and search to use the same patterns overall so that if you understand one, you understand the other and they generally use the same strings for localization. | |||
| 2009-05-13 | Gee it's May already. Update copyright to 2009. | Bharat Mediratta | |
| 2009-05-11 | Index photos as they're added | Bharat Mediratta | |
| 2009-05-10 | Use a clearer query syntax for deleting extra search and exif records ↵ | Bharat Mediratta | |
| (thanks Romain LE DISEZ) | |||
| 2009-04-21 | Remove duplicate word from status message | Tim Almdal | |
| 2009-04-21 | Make the task iteration duration 1 second instead of 500ms. | Bharat Mediratta | |
| 2009-04-21 | Add a key on item_id for the search_records table so that when we left | Bharat Mediratta | |
| join it against the item table to find missing ids it's fast. | |||
| 2009-04-17 | Make the update_index task continue until it has used half a second | Bharat Mediratta | |
| before stopping. This is *way* more efficient than just doing 2 per request. | |||
| 2009-03-26 | Gracefully deal with the case where we resume a stalled task but there | Bharat Mediratta | |
| was no work left to be done. This fixes a divide by zero error. | |||
| 2009-03-21 | Refactor all translation strings that have ambiguous placeholders. | Andy Staudacher | |
| E.g. "%link_startClick here%link_end" is now '<a href="%url">Click here</a>'. Note: This isn't always the best solution. E.g. consider "Foo <a href='%url' class='gDialogLink'>bar</a>." Now the translator has to deal with preserving CSS classes too... | |||
| 2009-03-18 | Remove back ticks from sql | Tim Almdal | |
| 2009-03-18 | Couple of sql statements that had incorrect prefix handling or no | Tim Almdal | |
| prefix handling. | |||
| 2009-03-12 | Strip down the loin page (not sure if this is what bharat had in mind) | Tim Almdal | |
| 2009-03-09 | Get rid of Task_Definition types: they're not necessary. This | Bharat Mediratta | |
| incidentally fixes the the problem that admin/maintenance tasks have been broken. | |||
| 2009-03-05 | Avoid using default task types. Require task::get_definitions() to | Bharat Mediratta | |
| specify a single type and ask for it appropriately in admin_maintenance. Specify a type for every existing task. | |||
| 2009-03-03 | Fix issue identified by security review... some table names where not | Tim Almdal | |
| being translated. | |||
| 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 implements table prefix for all the queries in core, user, exif, | Tim Almdal | |
| tag, search, comment and notification modules (Ticket #68) | |||
| 2009-02-13 | Ticket #2. Tighten up search results UI. | Chad Kieffer | |
| 2009-02-12 | Corrected indentation | Tim Almdal | |
| 2009-02-12 | Correct typo in variable name | Tim Almdal | |
| 2009-02-06 | jQuery-based buttons! Form updates, short form updates. Need to fix add ↵ | Chad Kieffer | |
| user/group buttons and search form on search results page. | |||
| 2009-02-02 | Have the quick delete file "item_before_delete" so that search and | Tim Almdal | |
| notification modules can do their thing. In addition, correct search so it works properly and doesn't try to create an Item_id_Model class. | |||
| 2009-02-02 | Reconcile search_records and items when we list the tasks so that we can ↵ | Bharat Mediratta | |
| tell if there're any out of date records that need updating | |||
| 2009-02-02 | First time running search maintenance task, remove any search_records | Bharat Mediratta | |
| that are missing matching items. | |||
| 2009-01-18 | Change the event handlers for maintaining the search index to update | Tim Almdal | |
| the index when items change. | |||
| 2009-01-18 | Remove blank line at the top of the file | Tim Almdal | |
| 2009-01-18 | Update the index right away if there are only < 10 items | Bharat Mediratta | |
| 2009-01-18 | Rename theme callback helpers from xxx_block to xxx_theme to make room | Bharat Mediratta | |
| for us to rename the dashboard helper to be a block helper since sidebar blocks are not just in the dashboard. | |||
| 2009-01-17 | Fix typo.. rebuild_index -> update_index | Bharat Mediratta | |
| 2009-01-17 | Fix a silly bug in item_created() | Bharat Mediratta | |
| 2009-01-17 | Implement relevance ranked boolean searching on a full text index of | Bharat Mediratta | |
| item and comment data. Whew! It's not pretty yet. And you have to manually update the index currently in admin/maintenance. But it works. | |||
| 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 | |||
