Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | - Patch #394572 by Berdir: converted system module to the new database ↵ | Dries Buytaert | 2009-05-16 | |
| | | | | abstraction layer. | |||
* | #320011 by lilou, snufkin, and karschp: Add consistent @file declarations to ↵ | Angie Byron | 2009-05-13 | |
| | | | | all .install files. | |||
* | - Patch #453080 by Gabor Hojtsy: moved the footer message to a block. | Dries Buytaert | 2009-05-12 | |
| | ||||
* | - Patch #428800 by Gabor Hojtsy: convert the mission statement to a block so ↵ | Dries Buytaert | 2009-05-12 | |
| | | | | we have more flexibility to place it. | |||
* | #124158 by nedjo, jcnventura: Pull all PHP handling into PHP module. | Angie Byron | 2009-05-07 | |
| | ||||
* | - Patch #391340 by chx, dww, neclimdul, Crell, alex_b, et al: job queue API. | Dries Buytaert | 2009-05-06 | |
| | | | | | | | | | | | | | | | | The queue system allows placing items in a queue and processing them later. The system tries to ensure that only one consumer can process an item. Before a queue can be used it needs to be created by DrupalQueueInterface::createQueue(). Items can be added to the queue by passing an arbitrary data object to DrupalQueueInterface::createItem(). To process an item, call DrupalQueueInterface::claimItem() and specify how long you want to have a lease for working on that item. When finished processing, the item needs to be deleted by calling DrupalQueueInterface::deleteItem(). If the consumer dies, the item will be made available again by the DrapalQueueInterface implementation once the lease expires. Another consumer will then be able to receive it when calling DrupalQueueInterface::claimItem(). The $item object used by the DrupalQueueInterface can contain arbitrary metadata depending on the implementation. Systems using the interface should only rely on the data property which will contain the information passed to DrupalQueueInterface::createItem(). The full queue item returned by DrupalQueueInterface::createItem() needs to be passed to DrupalQueueInterface::deleteItem() once processing is completed. While the queue system makes a best effort to preserve order in messages, due to the pluggable nature of the queue, there is no guarantee that items will be delivered on claim in the order they were sent. For example, some implementations like beanstalkd or others with distributed back-ends like Amazon SQS will be managing jobs for a large set of producers and consumers where a strict FIFO ordering will likely not be preserved. The system also makes no guarantees about a task only being executed once: callers that have non-idempotent tasks either need to live with the possiblity of the task being invoked multiple times in cases where a claim lease expires, or need to implement their own transactions to make their tasks idempotent. | |||
* | - Patch #240873 by Gábor Hojtsy, sun: block system clean-ups. Thanks for ↵ | Dries Buytaert | 2009-04-30 | |
| | | | | the review sun. | |||
* | - Patch #240873 by Gábor Hojtsy: move custom help settings to blocks. Very ↵ | Dries Buytaert | 2009-04-29 | |
| | | | | exciting. | |||
* | - Patch #445062 by Arancaytar: check for PHP tokenizer extension to be ↵ | Dries Buytaert | 2009-04-26 | |
| | | | | installed. | |||
* | Roll-back of #333054; needs more discussion. | Angie Byron | 2009-04-20 | |
| | ||||
* | - Patch #430342 by kkaefer et al: usability improvement: changed 'site ↵ | Dries Buytaert | 2009-04-19 | |
| | | | | maintenance' to 'maintenance mode'. | |||
* | - Patch #363262 by Dave Reid: adds a lost index to the URL table. | Dries Buytaert | 2009-04-03 | |
| | ||||
* | - Patch #333054 by c960657: page cache should be case sensitive. | Dries Buytaert | 2009-04-01 | |
| | ||||
* | - Patch #333156 by stella: add ability to configure the default country. | Dries Buytaert | 2009-03-17 | |
| | ||||
* | #304163 by chx: Allow update.php to re-generate settings.php. Now possible ↵ | Angie Byron | 2009-03-01 | |
| | | | | to upgrade Drupal 6 to Drupal 7. Oh, yeah. | |||
* | Roll-back of users -> user table name change in #330983: Broken pgsql is no fun. | Angie Byron | 2009-02-26 | |
| | ||||
* | - Patch #383318 by mr.baileys: incorrect memory shortage warning when memory ↵ | Dries Buytaert | 2009-02-25 | |
| | | | | limit is unlimited. | |||
* | #330983 by recidive and boombatower: Rename users/users_roles tables to ↵ | Angie Byron | 2009-02-18 | |
| | | | | user/user_role for consistency. | |||
* | #215080 by drifter and robertDouglass: Add index on system name and type to ↵ | Angie Byron | 2009-02-18 | |
| | | | | speed query. | |||
* | - Patch #367380 by Moshe: make block module optional. | Dries Buytaert | 2009-02-03 | |
| | ||||
* | #88264 by Rob Loach and kscheirer: Make variable_get()'s defaultparameter ↵ | Angie Byron | 2009-01-31 | |
| | | | | default to NULL so that NULLs do not need to be specified. | |||
* | #227486 follow-up by catch: Move update 7010 to 6048 so that the 6.x and 7.x ↵ | Angie Byron | 2009-01-25 | |
| | | | | updates stay in sync. | |||
* | #363262 by catch and Damien Tournoud: Replace src index on the {url_alias} ↵ | Angie Byron | 2009-01-25 | |
| | | | | table with src, language for better performance. | |||
* | #363644 by chx: Remove annoying whitespace. | Angie Byron | 2009-01-25 | |
| | ||||
* | - Patch #244904 by edkwh, keith.smith: renamed 'input format' to 'text ↵ | Dries Buytaert | 2009-01-21 | |
| | | | | format' based on UMN usability study. | |||
* | - Patch #201122 by c960657, Moshe Weitzman: never write anonymous sessions, ↵ | Dries Buytaert | 2009-01-19 | |
| | | | | unless something has been written to . This is an important performance improvements -- as long as you use modules that use carefully. It might be good to report some analytics about this in the performance settings page so administrators can see if there is a 'broken' module. | |||
* | #360104 by drewish: Allow taxomomy module to be uninstalled. | Angie Byron | 2009-01-19 | |
| | ||||
* | #360106 by Dave Reid: Allow comment module to be uninstalled. | Angie Byron | 2009-01-19 | |
| | ||||
* | - Patch #245990 by pwolanin: further clean-up of the HTTP request status ↵ | Dries Buytaert | 2009-01-14 | |
| | | | | fail problem. | |||
* | #143434 by Jody Lynn: Move 'display post information' to where users would ↵ | Angie Byron | 2009-01-09 | |
| | | | | expect. | |||
* | - Patch #352470 by scor: fixed typos and grammar in comments. | Dries Buytaert | 2008-12-30 | |
| | ||||
* | - Patch #339588 by jhedstrom, Josh Waihi, mikl: remove *_unsigned types and ↵ | Dries Buytaert | 2008-12-26 | |
| | | | | rework their sizes. Fixes exception on PostgreSQL. | |||
* | - Patch #349504 by keith.smith: clean up sentence spacing in code comments. | Dries Buytaert | 2008-12-20 | |
| | ||||
* | - Patch #323528 by jhedstrom: fixed alias usage in queries for PostgreSQL. | Dries Buytaert | 2008-12-19 | |
| | ||||
* | - Patch #335086 by recidive: rename node, filter and comment module tables ↵ | Dries Buytaert | 2008-12-03 | |
| | | | | to singular for consistency. Oh my. | |||
* | - Patch #337820 by Dave Reid, Damien Tournoud, et al: rename menu path ↵ | Dries Buytaert | 2008-11-29 | |
| | | | | 'logout' to 'user/logout'. For real now. | |||
* | Reverting #337820 once more, as it causes mysterious test failures. | Angie Byron | 2008-11-27 | |
| | ||||
* | - Patch #337820 by Dave Reid: rename menu path logout to user/logout. | Dries Buytaert | 2008-11-25 | |
| | ||||
* | - Patch #333143 by justinrandell: cleaning up the Drupal bootstrap code, ↵ | Dries Buytaert | 2008-11-24 | |
| | | | | removing bootstrap flag in system table. | |||
* | Reverting #337820 which causes menu tests to fail, unbeknownst to testing ↵ | Angie Byron | 2008-11-24 | |
| | | | | bot. Hrm... | |||
* | #337820 by Dave Reid: Rename menu path 'logout' to 'user/logout' for ↵ | Angie Byron | 2008-11-23 | |
| | | | | consistency. | |||
* | #337820 follow-up: Reverting conflict cruft that somehow got introduced the ↵ | Angie Byron | 2008-11-23 | |
| | | | | last commit. | |||
* | - Patch #332980 by scor and keith.smith: documentation improvements + typo ↵ | Dries Buytaert | 2008-11-23 | |
| | | | | fixed. | |||
* | - Patch #245504 by David Rothstein: throttle module is gone now. For real. | Dries Buytaert | 2008-11-22 | |
| | ||||
* | #11077 by mfb, KarenS, macgirvin, and jjkd: Can you say Daylight Savings ↵ | Angie Byron | 2008-11-20 | |
| | | | | Time? I bet you didn't think Drupal ever would! :) | |||
* | - Patch #332123 by webchick, lilou: remove t() function from schema ↵ | Dries Buytaert | 2008-11-15 | |
| | | | | descriptions. | |||
* | - Patch #331570 by recidive: rename block module tables to singular. ↵ | Dries Buytaert | 2008-11-15 | |
| | | | | Requires you to run update.php. | |||
* | - Patch #93509 by catch: automatically run cron after installation, improve ↵ | Dries Buytaert | 2008-11-05 | |
| | | | | the cron notifications. | |||
* | #257910 follow-up by Damien Tournoud: Fix location of search.install update ↵ | Angie Byron | 2008-11-03 | |
| | | | | code and remove redundant index. | |||
* | #303889 by David_Rothstein, kbahey, and chx: Make it possible to update D6 ↵ | Angie Byron | 2008-11-03 | |
| | | | | -> D7. |