summaryrefslogtreecommitdiff
path: root/modules/system
Commit message (Collapse)AuthorAge
* - Patch #423196 by frega, Xano, alienbrain et al: clean up the URL settings ↵Dries Buytaert2009-05-29
| | | | page.
* #475348 by boombatower: Move admin/development to system.module so it's ↵Angie Byron2009-05-29
| | | | available to other modules.
* #306358 by dvessel, JohnAlbin, and flobruit: Add a single $classes string ↵Angie Byron2009-05-28
| | | | (and corresponding $classes_array) for all dynamic classes in template files.
* - Patch #473012 by stella: improve help text on uninstall page.Dries Buytaert2009-05-27
|
* - Patch #472642 by stella, agentrickard: remove 'implementation of' ↵Dries Buytaert2009-05-27
| | | | nominalizations from Docblocks.
* - Patch #351487 by JohnAlbin, deviantintegral et al: remove default values ↵Dries Buytaert2009-05-27
| | | | for stylesheets and scripts.
* #296693 by Damien Tournoud, boombatower, sun, and Xano: Hide parent ↵Angie Byron2009-05-27
| | | | administrative menu items when user has no access to any of their children.
* - Patch #472658 by agentrickard: clean up of inline code comments.Dries Buytaert2009-05-26
|
* - Patch #137932 by grendzy, Alan D, lilou et al: automatic enctype on adding ↵Dries Buytaert2009-05-25
| | | | a file field.
* - Patch #471800 by stella: more code style fixes.Dries Buytaert2009-05-25
|
* - Patch #470594 by Moshe: convert more pages and blocks to return arrays.Dries Buytaert2009-05-25
|
* - Patch #471070 by stella: millions of code style fixes.Dries Buytaert2009-05-24
|
* #212233 follow-up by catch: Remove some left-over code after removing SQL ↵Angie Byron2009-05-22
| | | | status report.
* - Patch #396284 by Berdir, chx, jcfiala, csevb10 et al: make sure to order ↵Dries Buytaert2009-05-22
| | | | by table headers first, before ordering by other fields.
* - Patch #212233 by lilou, catch: remove SQL report.Dries Buytaert2009-05-22
|
* Roll-back of #310467: Breaks installer requirements check and update.php.Angie Byron2009-05-21
|
* - Patch #428744 by Gabor: make the main page content a real block and clean ↵Dries Buytaert2009-05-21
| | | | up some of the content API.
* #332123 follow-up by quicksketch: Fix API documentation for hook_schema() to ↵Angie Byron2009-05-20
| | | | reflect that descriptions should not be t()ed.
* - Patch #382896 by jmburnz: move and out of the content div.Dries Buytaert2009-05-19
|
* #456824 follow-up by catch: Fix D6 -> D7 upgrade path failure.Angie Byron2009-05-16
|
* #455576 by Xano and sirkitree: Revamp user settings page with vertical tabs, ↵Angie Byron2009-05-16
| | | | better organization, etc. Awesomeness.
* - Patch #456824 by catch: add better caching to drupal_lookup_path().Dries Buytaert2009-05-16
|
* - Patch #394572 by Berdir: converted system module to the new database ↵Dries Buytaert2009-05-16
| | | | abstraction layer.
* #196862 by Damien Tournoud, et al: Replace COUNT(*) queries with SELECT 1 ↵Angie Byron2009-05-16
| | | | ... LIMIT 1 queries when all that's required is a check for whether rows exist.
* - Patch #459836 by Xano: rework admin/settings/regional-settings.Dries Buytaert2009-05-15
|
* - Patch #310467 by chx, moshe weitzman: made hook_theme slimmer.Dries Buytaert2009-05-14
|
* #320011 by lilou, snufkin, and karschp: Add consistent @file declarations to ↵Angie Byron2009-05-13
| | | | all .install files.
* - Patch #210876 by deekayen: log enabling and disabling of modules, and ↵Dries Buytaert2009-05-12
| | | | wrote a handy assertLogMessage() function to assert watchdog messages.
* - Patch #453080 by Gabor Hojtsy: moved the footer message to a block.Dries Buytaert2009-05-12
|
* - Patch #372471: box.tpl.php is dead.Dries Buytaert2009-05-12
|
* - Patch #353069 by Moshe Weitzman, dmitrig01: make drupal_get_form() return ↵Dries Buytaert2009-05-12
| | | | unrendered forms.
* - Patch #428800 by Gabor Hojtsy: convert the mission statement to a block so ↵Dries Buytaert2009-05-12
| | | | we have more flexibility to place it.
* #124158 by nedjo, jcnventura: Pull all PHP handling into PHP module.Angie Byron2009-05-07
|
* - Patch #271515 by JamesAn: corrected PHPdoc.Dries Buytaert2009-05-06
|
* - Patch #391340 by chx, dww, neclimdul, Crell, alex_b, et al: job queue API.Dries Buytaert2009-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 #329015 by Damien Tournoud: improved error handling of batch API.Dries Buytaert2009-05-03
|
* - Patch #240873 by Gábor Hojtsy, sun: block system clean-ups. Thanks for ↵Dries Buytaert2009-04-30
| | | | the review sun.
* - Patch #240873 by Gábor Hojtsy: move custom help settings to blocks. Very ↵Dries Buytaert2009-04-29
| | | | exciting.
* #331832 follow-up by jhodgdon: Fix spelling of hook_form_FORM_ID_alter().Angie Byron2009-04-28
|
* #444402 follow-up by kkaefer: Fix autocomplete, enforce code style for ↵Angie Byron2009-04-27
| | | | anonymous JS functions.
* - Patch #445966 by Damien Tournoud: allow theme engine and theme settings form.Dries Buytaert2009-04-27
|
* #359391 by kresimir: Clarify that various caching modes are 'page' caching ↵Angie Byron2009-04-27
| | | | modes.
* - Patch #330748 by stBorchert: remove from theme_pager*.Dries Buytaert2009-04-26
|
* #444402 by kkaefer and RobLoach: Enforce coding standards on all core ↵Angie Byron2009-04-26
| | | | JavaScript.
* - Patch #368821 by Senpai, sun, JuliaKM: documentation improvements.Dries Buytaert2009-04-26
|
* - Patch #445062 by Arancaytar: check for PHP tokenizer extension to be ↵Dries Buytaert2009-04-26
| | | | installed.
* - Patch #383220 by mr.baileys: cron trigger needs an action.Dries Buytaert2009-04-26
|
* - Patch #445070 by Arancaytar: added missing parameter documentation.Dries Buytaert2009-04-26
|
* - Patch #19837 by xmacinfo, j.somers: make 'not verified' togglable as a ↵Dries Buytaert2009-04-26
| | | | theme setting.
* - Patch #352880 by dereine, Dave Reid: replace strstre with strpos.Dries Buytaert2009-04-26
|