Parent Directory
|
Revision Log
|
Revision Graph
| Links to HEAD: | (view) (download) (as text) (annotate) |
| Sticky Tag: |
- Patch #608478 by seutje, Bojhan: replace 'Powered by' icon with text.
- Patch #589126 by mfb: fixed bug with user module using a flood window of 6 hours, but flood events more than 1 hour old being deleted by cron. Improved API documentation, and added tests.
#516150 by David_Rothstein, dropcube, Senpai, alexanderpas, sun: Add fallback for main content block rendering. (Make it so you can't render your site completely unusable by disabling block module. Oopsie.)
#606640 by eojthebrave and sun: Use proper menu router paths for the block module.
- Patch #581118 by Gábor Hojtsy: blocks admin user interface should not do theme switching.
- Patch #11623 by sun, stella, Gábor Hojtsy, Pancho: add ability to localize date formats.
#602958 by chx: Added API function to SimpleTest to run cron, avoiding fatal errors.
#557292 by peximo, plach, catch, and yched: Convert node title to Field API.
#67234 by Ralf, Dave Reid, David_Rothstein, Rob Loach, dww, et al: Added a permission to update.php.
- Patch #464862 by JohnAlbin, sun, dereine | dvessel, Jacine, Zarabadoo: added drupal_css_class() to clean class names and rename form_clean_id().
- Patch #484868 by sime, sun | Dries: split parser from drupal_parse_info_file().
- Patch #590014 by sun, mr.baileys | Dries: fixed undefined language when language is specified in .
- Patch #578520 by sun | c960657, mfb, Dries, catch, mattyoung: make in url() only accept an array. Another nice API clean-up!
Patch #579366 by sun, litwol | chx, Dries: simplified form API redirection handling. I can actually understand it now. ;-).
#571086 by sun and merlinofchaos: Added a 'wrapper callback' that executes before a form builder function, to facilitate common form elements. Clean-up from form_builder changes from CTools patch. Has nice side-benefit of making all form functions' signatures consistent.
#564562 by Gábor Hojtsy, Bojhan, yoroy, and catch: Added 'System' configuration section.
- Patch #423992 by JohnAlbin, Davy Van Den Bremt: remove show_blocks page variable.
- Patch #368408 by jeffschuler: improve consistency of API and settings on administration pages.
- Patch #549432 by jromine, Gábor Hojtsy: move ip blocking settings.
- Patch #113614 by John Morahan: small fix for token/placeholder substitution to core.
#201415 by sun: Add a permission to access site in maintenance mode.
- Patch #331611 by sun, joshmiller, TheRec, Rob Loach, Damien Tournoud: add a poormanscron-like feature to core.
- Patch rollback of #549432: tests didn't actually ran successfully.
- Patch #549432 by Gábor Hojtsy: moving 'IP blocking' to 'People and permissions'.
#367595 by plach, catch, sun, yched, et al: Added support for translatable fields to Field API.
- Patch #113614 by eaton, fago, et al: add centralized token/placeholder subsituation to core.
#517814 by jmstacey, justinrandell, pwolanin, drewish, Jody Lynn, aaron, dopry, and c960657: Converted File API to stream wrappers, for enhanced private/public file handling, and the ability to reference other storage mechanisms such as s3:// and flicker://.
#545952 by yoroy and Gábor Hojtsy: move modules to config/modules.
#533584 by chx, dww, and Nick Lewis: Allow version-level dependency support to work with beta, rc, etc.
- Patch #536440 by Gábor Hojtsy: the attached patch moves the Structure >> Themes section to the top level Appearance item as outlined in the D7UX IA.
- Patch #535990 by catch: removed a silly test.
- Patch #211747 by chx, alex_b, dww: allow specifying version information as part of module dependencies.
#292565 follow-up by John Morahan: Restore ability to set 'user' as the 403/404 page.
- Patch #521474 by bangpound, JuliaKM et al: rename admin/site-building to admin/structure.
- Patch #518750 by Damien Tournoud: rethink system settings form.
#500866 by boombatower: Remove t() from getInfo in tests.
- Patch #306027 by agentrickard, catch, dereine, Dave Reid, drewish, et al: automatically clean the {role_permission} table when modules are uninstalled.
#482346 by Berdir: Move module installation logic to module_enable() to prevent errors upon enabling modules.
#504016 by catch: Remove faulty assertion that makes assumptions about default installed modules.
- Patch #501466 by catch: move comment administration to a tab.
- Fixed a merge problem.
- Fixed a merge problem.
- Patch #391412 by JamesAn et al: move contact form, post, and user settings below Site configuration.
- Patch #372743 by bjaspan, yched, KarenS, catch et al: node body and teasers as fields. Oh, my.
- Patch #472642 by stella, agentrickard: remove 'implementation of' nominalizations from Docblocks.
#296693 by Damien Tournoud, boombatower, sun, and Xano: Hide parent administrative menu items when user has no access to any of their children.
- Patch #471070 by stella: millions of code style fixes.
- Patch #394572 by Berdir: converted system module to the new database abstraction layer.
- Patch #210876 by deekayen: log enabling and disabling of modules, and wrote a handy assertLogMessage() function to assert watchdog messages.
- Patch #391340 by chx, dww, neclimdul, Crell, alex_b, et al: job queue API. 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.
#376129 by boombatower, Damien Tournoud, and chx: Change getInfo() to a static method to reduce memory footprint of SimpleTest.
#135976 by Dave Reid: Move Administration Theme setting to the themes page where it is findable (with tests).
#363687 by chx: Simplify DBTNG codeflow.
- Patch #291026 by Dave Reid et al: further (usability) improvements to the E_NOTICE handling.
- Patch #320451 by chx, Damien Tournoud: improved Drupal's module dependency system. This helps with fields in core. Comes with tests\!
- Patch #266246 by David Strauss: added smart defaults for system_settings_form().
- Patch #353207 by CitizenKane and drewish: cleaned up the FILE_STATUS_TEMPORARY field.
- Patch #352470 by scor: fixed typos and grammar in comments.
- Patch #330633 by drewish: temporary file clean-up _and_ unit tests. Oh yeah.
- Patch #345866 by alexanderpas, justinrandell, Dave Reid: remove from hook_block().
- Patch #340557 by Dave Reid: use static caching in drupal_is_front_page().
- Patch #318016 by Dave Reid: step one to standardizing type-hinting.
- Patch #324313 by catch et al: load multiple nodes and terms at once.
- Patch #314870 by drewish: removed some code that accidentically got committed with api.php and that broke the tests.
#314870 by Rob Loach, drewish, catch, and sun: Add hook API documentation to Drupal core.
- Patch #333143 by justinrandell: cleaning up the Drupal bootstrap code, removing bootstrap flag in system table.
#11077 by mfb, KarenS, macgirvin, and jjkd: Can you say Daylight Savings Time? I bet you didn't think Drupal ever would! :)
- Patch #328719 by c960657: make the module list tests succeed again.
- Patch #327480 by chx: remove DB specific code from simpletest.
- Patch #296321 by pwolanin, swentel: link to cron.php broken when clean URLs are disabled.
Re-commit of #242873 by pwolanin and bjaspan: Make drupal_set_title() check_plain() by default.
Roll-back of #242873: This caused horrendous problems with SimpleTest on some configurations.
#253569 by aaron, agentrickard, and Dave Reid: Add hook_modules_X to allow modules to react when other modules are enabled, disabled, installed, or uninstalled.
#242873 by pwolanin and bjaspan: Make drupal_set_title() do check_plain() by default.
#296306 by swentel: Test for custom 403 page.
#319699 follow-up by Dave Reid: Simplify required module hiding in admin/build/modules.
#319699 by Dave Reid: Simplify logic for hiding required modules.
#318984 by Xano and Dave Reid: Change 'Core - optional' to 'Core' in modules UI.
#308534 by Dave Reid: Remove stray whitespace core-wide.
- Patch #296305 by Damien Tournoud, recidive, cwgordon7, chx: 404 page needs a test -- testing party
- Patch #297869 by boombatower: add xpath method to simpletest and refactor existing tests.
- Patch #229129 by dmitrig01: clean up system modules page.
- Patch #256886 by catch et al: comment out a test that fails due to a bug in cURL.
- Patch #275092 by kbahey: added test for meta-tag generator patch.
- Patch #268449 by catch: fixed some tests that failed due to invalid permissions.
- Patch #250918 by boombatower: cleaned up some tests and added some tests for the administration panels.
- Patch #261836 by dropcube: tests for cron.
- Patch #259871 by pwolanin: clean up system.test.
- Patch #256152 by catch: added additional tests for the IP address blocking and added a small usability improvement.
- Added a test framework to Drupal along with a first batch of tests for
Drupal core! This is an important milestone for the project so enable
the module and check it out ... :)
Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie
Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran
Lal, Moshe Weitzman, and the many other people that helped with testing
over the past years and that drove this home.
It all works but it is still rough around the edges (i.e. documentation
is still being written, the coding style is not 100% yet, a number of
tests still fail) but we spent the entire weekend working on it in Paris
and made a ton of progress. The best way to help and to get up to speed,
is to start writing and contributing some tests ... as well as fixing
some of the failures.
For those willing to help with improving the test framework, here are
some next steps and issues to resolve:
- How to best approach unit tests and mock functions?
- How to test drupal_mail() and drupal_http_request()?
- How to improve the admin UI so we have a nice progress bar?
- How best to do code coverage?
- See http://g.d.o/node/10099 for more ...
This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |