Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Patch #396284 by Berdir, chx, jcfiala, csevb10 et al: make sure to order ↵ | Dries Buytaert | 2009-05-22 |
| | | | | by table headers first, before ordering by other fields. | ||
* | - Patch #212233 by lilou, catch: remove SQL report. | Dries Buytaert | 2009-05-22 |
| | |||
* | Roll-back of #310467: Breaks installer requirements check and update.php. | Angie Byron | 2009-05-21 |
| | |||
* | - Patch #428744 by Gabor: make the main page content a real block and clean ↵ | Dries Buytaert | 2009-05-21 |
| | | | | up some of the content API. | ||
* | - Patch #394572 by Berdir: converted system module to the new database ↵ | Dries Buytaert | 2009-05-16 |
| | | | | abstraction layer. | ||
* | - Patch #310467 by chx, moshe weitzman: made hook_theme slimmer. | Dries Buytaert | 2009-05-14 |
| | |||
* | - Patch #353069 by Moshe Weitzman, dmitrig01: make drupal_get_form() return ↵ | Dries Buytaert | 2009-05-12 |
| | | | | unrendered forms. | ||
* | - 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. | ||
* | - 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 #330748 by stBorchert: remove from theme_pager*. | Dries Buytaert | 2009-04-26 |
| | |||
* | - Patch #383220 by mr.baileys: cron trigger needs an action. | Dries Buytaert | 2009-04-26 |
| | |||
* | - Patch #445070 by Arancaytar: added missing parameter documentation. | Dries Buytaert | 2009-04-26 |
| | |||
* | - Patch #19837 by xmacinfo, j.somers: make 'not verified' togglable as a ↵ | Dries Buytaert | 2009-04-26 |
| | | | | theme setting. | ||
* | - Patch #440826 by brianV: whitespace clean-up. | Dries Buytaert | 2009-04-25 |
| | |||
* | - Patch #147310 by c960657 et al: better cache headers for reverse proxies. | Dries Buytaert | 2009-04-22 |
| | |||
* | - Patch #375482 by mfb: avoid PDO exceptions when block module is not enabled. | Dries Buytaert | 2009-04-21 |
| | |||
* | - Patch #430342 by kkaefer et al: usability improvement: changed 'site ↵ | Dries Buytaert | 2009-04-19 |
| | | | | maintenance' to 'maintenance mode'. | ||
* | #372563 by cytefx: Rename drupal_set_html_head() to drupal_ADD_html_head() ↵ | Angie Byron | 2009-04-15 |
| | | | | which actually describes what it does. | ||
* | - Patch #394332 by Xano: clean up language around logging and alerts. | Dries Buytaert | 2009-04-13 |
| | |||
* | #323112 by dmitrig01, kkaefer, quicksketch, frando and many many more: Now ↵ | Angie Byron | 2009-04-11 |
| | | | | presenting... Vertical Tabs. Fantastic new UI improvement for node forms and hopefully more in the future. | ||
* | #410638 follow-up by foxtrotcharlie and David Rothstein: Fix help text on ↵ | Angie Byron | 2009-03-25 |
| | | | | blocks so that 'Powered by' doesn't show up on all system blocks. | ||
* | #410638 by foxtrotcharlie: Prevent 'Powered by Drupal' settings showing up ↵ | Angie Byron | 2009-03-25 |
| | | | | on all system blocks. | ||
* | - Patch #273137 by pwolanin, David_Rothstein, chx, et al: split navigation ↵ | Dries Buytaert | 2009-03-20 |
| | | | | to user and administration menu. Will require follow-up patches. | ||
* | - Patch #333156 by stella: add ability to configure the default country. | Dries Buytaert | 2009-03-17 |
| | |||
* | #347250 by catch, drewish, and Berdir: Add function for loading multiple ↵ | Angie Byron | 2009-03-14 |
| | | | | users in one request. | ||
* | - Patch #373613 by quicksketch and drewish: in order to operate on images ↵ | Dries Buytaert | 2009-03-09 |
| | | | | | | | | | | multiple times (such as crop, scale, then desaturate) without quality loss, we need to pass images by their raw GD (or other library) resources rather than re-opening the same image repeatedly, which causes wasted processing and loss of quality when using JPEG images. This patch reworks the image toolkits, adds some new image manipulations and adds some impressive SimpleTests. | ||
* | - Patch #244904 by keith.smith, edmund.kwok, xano, David_Rothstein: rename ↵ | Dries Buytaert | 2009-03-08 |
| | | | | 'input formats'. | ||
* | #383066 by David Strauss: Rename hook_nodeapi_X to hook_node_X. | Angie Byron | 2009-03-08 |
| | |||
* | - Patch #380064 by c960657: make file_scan_directory() use save property ↵ | Dries Buytaert | 2009-02-22 |
| | | | | names as file_load(). | ||
* | #135976 by Dave Reid: Move Administration Theme setting to the themes page ↵ | Angie Byron | 2009-02-11 |
| | | | | where it is findable (with tests). | ||
* | - Patch #355236 by Frando: refactor drupal_render() theming. | Dries Buytaert | 2009-02-03 |
| | |||
* | - Patch #367380 by Moshe: make block module optional. | Dries Buytaert | 2009-02-03 |
| | |||
* | #360128 by quicksketch: Create centralized ahah callback to reduce duplicate ↵ | Angie Byron | 2009-02-01 |
| | | | | code. | ||
* | #349836 by lut4rp: Remove ellipsis in menu description. | Angie Byron | 2009-01-31 |
| | |||
* | #242962 by Heine: Add a 'tablesort' Form API element to unify various places ↵ | Angie Byron | 2009-01-28 |
| | | | | we use a big table with JS-enabled checkboxes next to each item (with tests). | ||
* | - Patch #351235 by dmitrig01, webchick, frando, moshe weitzman, et al: ↵ | Dries Buytaert | 2009-01-27 |
| | | | | hook_page_alter. Oh, behave. | ||
* | - Patch #291026 by Dave Reid et al: further (usability) improvements to the ↵ | Dries Buytaert | 2009-01-21 |
| | | | | E_NOTICE handling. | ||
* | - Patch #245990 by pwolanin: further clean-up of the HTTP request status ↵ | Dries Buytaert | 2009-01-14 |
| | | | | fail problem. | ||
* | - Patch #266246 by David Strauss: added smart defaults for ↵ | Dries Buytaert | 2009-01-11 |
| | | | | system_settings_form(). | ||
* | #143434 by Jody Lynn: Move 'display post information' to where users would ↵ | Angie Byron | 2009-01-09 |
| | | | | expect. | ||
* | #352956 by Damien Tournoud, Josh Waihi, drewish: Fix PDOException on install ↵ | Angie Byron | 2009-01-05 |
| | | | | on some versions of PHP. | ||
* | - Patch #353019 by agentrickard: remove underscores from time zone display ↵ | Dries Buytaert | 2009-01-02 |
| | | | | names. | ||
* | - Patch #330633 by drewish: temporary file clean-up _and_ unit tests. Oh yeah. | Dries Buytaert | 2008-12-28 |
| | |||
* | - Patch #245990 by kellyllek, chx, dww: improved the HTTP request test to be ↵ | Dries Buytaert | 2008-12-24 |
| | | | | more robust. | ||
* | - Patch #319404 by Dave Reid: simplify actions_sychronize and remove paramater. | Dries Buytaert | 2008-12-20 |
| | |||
* | - Patch #345866 by alexanderpas, justinrandell, Dave Reid: remove from ↵ | Dries Buytaert | 2008-12-16 |
| | | | | hook_block(). | ||
* | - Patch #248205 by Damien Tournoud: up requirement for PostgreSQL to ↵ | Dries Buytaert | 2008-11-28 |
| | | | | PostgreSQL 8.3. | ||
* | - Patch #314870 by drewish: removed some code that accidentically got ↵ | Dries Buytaert | 2008-11-26 |
| | | | | committed with api.php and that broke the tests. |