Commit Graph

6643 Commits (6fc4eb9f945ecd7c2bea4742e3febe4632c88e99)

Author SHA1 Message Date
Dries Buytaert 28afeba170 - Patch #295971 by deekayen: option for user contact options is badly phrased. 2009-05-10 18:24:06 +00:00
Dries Buytaert 2c71644dbc - Patch #394510 by Berdir, ksenzee: convert to new database abstraction layer. 2009-05-10 16:50:19 +00:00
Dries Buytaert 43ad4ad140 - Patch #458566 by chx: work around PHP's curly bracket madness. 2009-05-10 16:46:24 +00:00
Dries Buytaert b9b0063a48 - Patch #453572 by Xano: improve language. 2009-05-10 05:06:50 +00:00
Dries Buytaert 76f35b4ecf - Patch #367525 by zzolo: drupal_alter instead of hook_field_attach_view(). 2009-05-09 19:02:11 +00:00
Dries Buytaert e217837372 - Patch #382834 by cwgordon7: more documentation fixes. 2009-05-09 18:44:55 +00:00
Dries Buytaert 0e0ca3b589 - Patch #457532 by Berdir: more PHP5 'fixes'. 2009-05-09 18:28:13 +00:00
Dries Buytaert 557128c919 - Patch #411388 lilou et al: added missing documentation for _search hook. 2009-05-09 10:45:57 +00:00
Dries Buytaert f116acc887 - Patch #251245 by c960657: moving the test files to their rightful place. 2009-05-08 21:44:48 +00:00
Dries Buytaert 89f2f4acdd - Patch #390774 by jhodgdon: API doc improvements and corrections. 2009-05-08 12:23:32 +00:00
Dries Buytaert 7f4a4c7593 - Patch #276517 by chx, naxoc: added basic tests for blog pages. 2009-05-08 12:19:52 +00:00
Dries Buytaert 0ccac642b9 - Patch #409598 by pwolanin, swentel: fixed problem with content type descriptions not being updated. 2009-05-07 16:24:33 +00:00
Dries Buytaert f3526a344e - Patch #394476 by Berdir, pwolanin, Crell: converted the module to the new database abstraction layer. 2009-05-07 16:22:45 +00:00
Angie Byron 0f08d97b21 #124158 by nedjo, jcnventura: Pull all PHP handling into PHP module. 2009-05-07 15:29:08 +00:00
Angie Byron 8550540b51 #270685 follow-up by JamesAn: Remove unneeded code. 2009-05-07 15:15:43 +00:00
Dries Buytaert 7cf957f5db - Patch #300750 by brianV: documented a variable. 2009-05-07 10:39:38 +00:00
Angie Byron d70915b1ab #453962 by neclimdul: Change all instances of getInfo() to static functions. 2009-05-06 19:56:21 +00:00
Dries Buytaert 511115f6b8 - Patch #453720 by yched: fixed the display of user fields. 2009-05-06 11:31:44 +00:00
Dries Buytaert 11067d384d - Patch #271515 by JamesAn: corrected PHPdoc. 2009-05-06 11:30:19 +00:00
Dries Buytaert 690804580e - Patch #366610 by mr.baileys: make sure we generate valid markup. 2009-05-06 11:28:47 +00:00
Dries Buytaert 160e652819 - Patch #370276 by JamesAn: improved help text of authoring field. 2009-05-06 11:27:47 +00:00
Dries Buytaert 8eebf6d805 - Patch #424640 by mustafau: remove non-existing reference. 2009-05-06 10:49:08 +00:00
Dries Buytaert 2938bfcc63 - Patch #424660 by mustafau: remove non-existing reference. 2009-05-06 10:48:01 +00:00
Dries Buytaert 9066709443 - Patch #267333 by cwgordon7, David_Rothstein, lilou, et al: fixed batch api rounding. 2009-05-06 10:41:43 +00:00
Dries Buytaert a304502f8a - Patch #445468 by reaneyk: remove no-op block_update_7000(). 2009-05-06 10:39:42 +00:00
Dries Buytaert a40002c76b - Patch #453596 by Xano: clean-up of function names. 2009-05-06 10:38:40 +00:00
Dries Buytaert 4ef77a590c - 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.
2009-05-06 10:37:28 +00:00
Dries Buytaert 1883e93f14 - Patch #352872 by Damien Tournoud: clean-up xmlrpc() wrapper. 2009-05-04 10:38:47 +00:00
Angie Byron 17df77c3a4 #295864 follow-up by boombatower: Clarify when to use randomName() vs. randomString(). 2009-05-03 20:01:11 +00:00
Dries Buytaert 53fdfb3184 - Patch #451678 by Damien Tournoud: fixed broken query. 2009-05-03 10:44:04 +00:00
Dries Buytaert a8c30ed91e - Patch #449718 by alienbrain: node_feed() is now using new node building API. 2009-05-03 10:11:35 +00:00
Dries Buytaert 3d951475ea - Patch #402264 by yched, bjaspan: adapt field's add-more js handler to recent fapi changes. Added tests. 2009-05-03 09:49:32 +00:00
Dries Buytaert 8c7fd11fd4 - Patch #419114 by boombatower: clean up assertions. 2009-05-03 09:30:21 +00:00
Dries Buytaert c5926f4961 - Patch #396578 by Damien Tournoud: added db_truncate_table() to the database layer. 2009-05-03 08:56:19 +00:00
Dries Buytaert ac5e86e05c - Patch #329015 by Damien Tournoud: improved error handling of batch API. 2009-05-03 07:35:37 +00:00
Dries Buytaert cdb326fc74 - Patch #451660 by Damien Tournoud: fixed menu creation/deletion tests. 2009-05-03 05:06:11 +00:00
Dries Buytaert ce50ea5a20 - Patch #392696 by yched et al: save default values on insert. 2009-05-01 19:17:46 +00:00
Dries Buytaert 9fd65b6617 - Patch #392696 by yched et al: save default values on insert. 2009-05-01 15:28:13 +00:00
Angie Byron c1e05db993 #445950 follow-up: Committing missing simpletest.pages.inc. 2009-05-01 13:40:56 +00:00
Dries Buytaert 4b7943a257 - Patch #445950 by boombatower: interface improvements for SimpleTest. 2009-05-01 11:01:53 +00:00
Dries Buytaert 5f08579bfe - Patch #240873 by Gábor Hojtsy, sun: block system clean-ups. Thanks for the review sun. 2009-04-30 21:44:20 +00:00
Dries Buytaert 1faa09b1af - Patch #394594 by Berdir: additional conversion to the new database abstraction layer plus clean-up. 2009-04-30 16:10:10 +00:00
Dries Buytaert 4516d0c7bd - Patch #392706 by yched: clean of field tests:
+ fixes a few missing whitelines
   + makes it clear that the same function tests field_attach_insert(), field_attach_update() and field_attach_load()
   + streamlines a few overly detailed explanations
   + add missing t() functions
2009-04-30 15:17:13 +00:00
Dries Buytaert fdd553f627 - Patch #441180 by bjaspan: added a point. 2009-04-30 14:41:41 +00:00
Dries Buytaert 34ed1f2a37 - Patch #374068 by alienbrain, bjaspan: improved documentation of field display settings. 2009-04-30 14:40:03 +00:00
Angie Byron 0bb5112239 #356908 by andypost and yched: Run field prefixes and suffixes through field_filter_xss() rather than check_plain() to prevent funny characters. 2009-04-29 22:36:42 +00:00
Dries Buytaert 16cb95557d - Patch #295864 by boombatower, sun: fixed typos in the documentation. Nice catches, sun\! 2009-04-29 21:35:38 +00:00
Dries Buytaert 4c05294527 - Patch #392706 by bjaspan, yched, puradata: some of the field attach tests in field.test use database queries to verify correct functionality. This makes the field attach tests work only if field_sql_module is the only field storage module in use. Instead, tests of database storage should be in the field storage module's tests, and field attach tests should operate purely at the field attach api level. 2009-04-29 21:33:00 +00:00
Angie Byron cac7e7c42e #220592 by dww and pwolanin: Update module now always uses the database for caching so that drupal.org project data persists and site performance (in both directions) is not horrifically mangled. 2009-04-29 18:39:50 +00:00
Dries Buytaert cce402d1cb - Patch #446742 by sun, dmitrig01: fixed various bugs. 2009-04-29 17:48:11 +00:00
Dries Buytaert e721147363 - Patch #295864 by boombatower: cleaned up the randomName() method by removing unnecessary prefix code, and added a new randomString() method which includes characters like spaces. 2009-04-29 12:08:28 +00:00
Dries Buytaert 7bf8e72aaa - Patch #340081 by dmitrig01, boombatower: clean-up of drupalCreateUser() 2009-04-29 12:04:47 +00:00
Dries Buytaert 94c3dceeda - Patch #240873 by Gábor Hojtsy: move custom help settings to blocks. Very exciting. 2009-04-29 08:04:24 +00:00
Dries Buytaert 1ed25923a3 - Patch #251245 by c960657: added tests for the OpenID module. The test module implements a dummy OpenID provider/server. Most impressive patch of the month. 2009-04-29 07:29:59 +00:00
Dries Buytaert 2e709fe3cd - Patch #302632 by recidive, c960657: use PHP5 functionality for _openid_sha1(). Simplified some code. 2009-04-29 07:22:49 +00:00
Dries Buytaert f918903428 - Patch #408024 by brianV et al: rename drupal_execute() to drupal_submit_form(). 2009-04-29 07:18:04 +00:00
Angie Byron a703b3ee8a #431148 by pwolanin: Make it easier to visually distinguish between security updates and regular updates. 2009-04-29 03:57:21 +00:00
Angie Byron 37c8197b25 #445530 by jmburnz: Remove redundant title attribute from node title links. 2009-04-28 19:56:00 +00:00
Angie Byron 9e5f8a037b #445094 by yched: Fix failing tests in SQLite/PostgreSQL due to passing in NULL values for ftid and ftvid. 2009-04-28 05:24:41 +00:00
Angie Byron b8aad0a764 #446878 by boombatower: Fix concatenation typo in field tests. 2009-04-28 04:21:15 +00:00
Angie Byron 319220aaa2 #331832 follow-up by jhodgdon: Fix spelling of hook_form_FORM_ID_alter(). 2009-04-28 00:27:06 +00:00
Angie Byron fc7283235b #444402 follow-up by kkaefer: Fix autocomplete, enforce code style for anonymous JS functions. 2009-04-27 20:19:38 +00:00
Dries Buytaert 031ba7d665 - Patch #345591 by pwolanin, c960657: make the tests work when running with CGI. 2009-04-27 19:11:25 +00:00
Angie Byron 468d7beea7 #362852 by Dave Reid: Convert enabled/disabled radios on statistics form to checkboxes. 2009-04-27 18:58:41 +00:00
Dries Buytaert c73a93e870 - Patch #382834 by cwgordon7: hook_menu API docs missedsome elements. 2009-04-27 16:35:05 +00:00
Dries Buytaert 5349ff1d26 - Patch #445966 by Damien Tournoud: allow theme engine and theme settings form. 2009-04-27 16:33:05 +00:00
Dries Buytaert 91e7dc1365 - Patch #368067 by catch: move testing to a 'Development' menu. 2009-04-27 07:44:09 +00:00
Dries Buytaert b9f60c75a7 - Patch #353328 by brianV, catch: fixed glitch in comment paging. 2009-04-27 07:09:58 +00:00
Dries Buytaert 18117a43f4 - Patch #361529 by j.somers: illogical syntax for book_toc(). 2009-04-27 07:08:00 +00:00
Angie Byron 8e4022fe6d #359391 by kresimir: Clarify that various caching modes are 'page' caching modes. 2009-04-27 02:07:48 +00:00
Dries Buytaert c7d8e2060a - Patch #445600 by Rob Loach: allow 1 minimum number of words in content types. 2009-04-26 20:57:01 +00:00
Angie Byron 93688e77b1 #229660 by Dave Reid: Use theme_username() in personal contact form. 2009-04-26 20:09:12 +00:00
Angie Byron dac6a2be3d #423886 by Berdir: Fix fatal error when submitting aggregator block. 2009-04-26 19:59:31 +00:00
Dries Buytaert 7a6f73f49d - Patch #330748 by stBorchert: remove from theme_pager*. 2009-04-26 19:44:40 +00:00
Angie Byron bda52632a5 #444402 by kkaefer and RobLoach: Enforce coding standards on all core JavaScript. 2009-04-26 19:18:46 +00:00
Dries Buytaert a4dc8467bb - Patch #368821 by Senpai, sun, JuliaKM: documentation improvements. 2009-04-26 16:44:25 +00:00
Dries Buytaert f2cbf55033 - Patch #440894 by brianV: code style and documentation clean-up. 2009-04-26 16:31:23 +00:00
Dries Buytaert 2a7c00bc4a - Patch #441962 by brianV: code style and documentation clean-up. 2009-04-26 16:30:28 +00:00
Dries Buytaert f83776a064 - Patch #444876 by Damien Tournoud: remove node_invoke_node(). 2009-04-26 15:40:24 +00:00
Dries Buytaert b5201d3797 - Patch #445410 by Damien Tournoud: fix $ tags. 2009-04-26 15:14:55 +00:00
Dries Buytaert 116d091a0c - Patch #392582 by karschsp: fixed broken anchor tags on permissions page. 2009-04-26 15:03:22 +00:00
Dries Buytaert 5c629b76c7 - Patch #445062 by Arancaytar: check for PHP tokenizer extension to be installed. 2009-04-26 14:57:36 +00:00
Dries Buytaert 38fca49ad6 - Patch #383220 by mr.baileys: cron trigger needs an action. 2009-04-26 14:54:31 +00:00
Dries Buytaert 840be5ba4e - Patch #444966 by dereine: code style clean-up. 2009-04-26 09:53:50 +00:00
Dries Buytaert d175324b0f - Patch #267484 by deviantintegral: corrected the filter api documentation. 2009-04-26 09:40:25 +00:00
Dries Buytaert 2abe0e0122 - Patch #445070 by Arancaytar: added missing parameter documentation. 2009-04-26 09:25:42 +00:00
Dries Buytaert 8e50687d8b - Patch #441180 by bjaspan, yched: field_attach_delete_bundle() called hook_field_attach_delete_bundle too soon. 2009-04-26 09:18:20 +00:00
Dries Buytaert 1c076bc89f - Patch #19837 by xmacinfo, j.somers: make 'not verified' togglable as a theme setting. 2009-04-26 09:14:32 +00:00
Dries Buytaert 3fe4c4e1c4 - Patch #352880 by dereine, Dave Reid: replace strstre with strpos. 2009-04-26 06:00:31 +00:00
Angie Byron 7138a5d5d0 #270685 by JamesAn: Expand title/body fieldset by default so that it can be found. 2009-04-26 05:26:17 +00:00
Angie Byron edb9752723 #369409 by dropcube: Move block.tpl.php to block.module rather than system.module. 2009-04-26 01:15:04 +00:00
Angie Byron fde09054f6 #444920 by Damien Tournoud: Fix broken book breadcrumbs (with tests). 2009-04-25 23:01:43 +00:00
Angie Byron 279f33c6c5 #339210 by klausi and dmenefee: Allow SimpleTest module to work on sites with HTTP authentication. 2009-04-25 22:35:49 +00:00
Dries Buytaert 25fad504f2 - Patch #394146 by ksenzee, csevb10, dropcube: converted to the new database abstraction layer. 2009-04-25 18:01:10 +00:00
Angie Byron fb5d44bc2c #303965 by moshe weitzman and snufkin: Allow data import scripts to set /->is_new programmatically. 2009-04-25 17:52:43 +00:00
Dries Buytaert 96ca81fb00 - Patch #394484 by Berdir and Crell: converted node module to the new database abstraction layer. Yay. 2009-04-25 16:33:48 +00:00
Dries Buytaert 9f54584c25 - Patch #440768 by Dave Reid: proper check for whether the schema is installed or not. 2009-04-25 14:01:05 +00:00
Dries Buytaert e9946015c7 - Patch #345591 by pwolanin, JacobSingh: drupal_http_request() should return the original status message and protocol. 2009-04-25 13:56:06 +00:00
Dries Buytaert 453d7c566e - Patch #440826 by brianV: whitespace clean-up. 2009-04-25 13:47:15 +00:00
Dries Buytaert 598dc48357 - Patch #335756 by Damien Tournoud, hass: fixed simpletest file directory path. 2009-04-25 13:40:41 +00:00
Dries Buytaert 3564fb04b4 - Patch #410044 by WorldFallz, jmburnz: don't output an empty div. 2009-04-24 09:03:21 +00:00
Dries Buytaert 6e334892f2 - Patch #440768 by Dave Reid: move {node_counter} table from node module to statistics module. 2009-04-24 08:23:02 +00:00
Dries Buytaert e99838fbf4 - Patch #147310 by c960657: added tests for private files, fixed a problem with private files and minor improvements. 2009-04-24 08:16:56 +00:00
Angie Byron c7f7f6326e #443488 by chx: Fix typo in field API docs. 2009-04-24 03:44:17 +00:00
Dries Buytaert c1aadd2a21 - Patch #440920 by brianV: whitespace and coding style clean-up. 2009-04-22 15:53:00 +00:00
Dries Buytaert 26395c843f - Patch #308296 by Dave Reid, Damien Tournoud: clean-up of drupalCreateNode(). 2009-04-22 09:57:10 +00:00
Dries Buytaert 526401c4c8 - Patch #147310 by c960657 et al: better cache headers for reverse proxies. 2009-04-22 09:45:03 +00:00
Dries Buytaert 2bc19555bf - Patch #302240 by fago: fixed various problems with form storage and added tests. Yay. 2009-04-22 09:12:44 +00:00
Dries Buytaert 04b3e8d08a - Patch #299176 by Dave Reid: fixed broken query in forum block. 2009-04-21 10:57:48 +00:00
Dries Buytaert 3fbda2307d - Patch #375482 by mfb: avoid PDO exceptions when block module is not enabled. 2009-04-21 09:31:31 +00:00
Dries Buytaert a7c324f42c - Patch #282858 by Dave Reid, Ian Ward: nicer message for the contact form when it has not yet been configured. 2009-04-21 09:27:52 +00:00
Dries Buytaert 1280c324fa - Patch #423948 by mfb: updated documentation, update functions should include schema descriptions. 2009-04-21 05:07:08 +00:00
Dries Buytaert a4d3da9ec5 - Patch #413060 by pp: added a test for contact module. 2009-04-21 05:05:27 +00:00
Dries Buytaert e81096f5bc - Patch #372471 by JamesAn et al: killed theme_box(). 2009-04-20 21:28:15 +00:00
Dries Buytaert a6233dfe20 - Patch #439038 by JeremyFrench: fixed typo in CSS file. 2009-04-20 20:07:14 +00:00
Dries Buytaert f09028107c - Patch #413732 by brianV: database code clean-up. 2009-04-20 20:02:31 +00:00
Dries Buytaert 10931908b5 - Patch #318496 by DeeLay: node_delete does not clean up history. 2009-04-20 19:57:18 +00:00
Dries Buytaert 01a33182a5 - Patch #299176 by chx, Crell: added example of hook_query_alter to API documentation. 2009-04-20 07:42:22 +00:00
Dries Buytaert ff9b6c611e - Patch #427296 by taz88ny: move some code from system.module to bloc.module where it belongs. 2009-04-20 07:36:34 +00:00
Angie Byron d91848a92a #368559 by moshe weitzman: Return renderable arrays from profile pages. 2009-04-20 04:41:35 +00:00
Angie Byron 957feb0cd3 #404116 by neclimdul: Provide default choices on poll translations. 2009-04-20 03:41:36 +00:00
Angie Byron 4ffebc570c #368639 by puradata: Remove drupalCreateField/Instance in favour of standard API functions. 2009-04-20 02:46:25 +00:00
Angie Byron d30a41e791 Roll-back of #333054; needs more discussion. 2009-04-20 02:23:17 +00:00
Dries Buytaert 3b4e3d0334 - Patch #437930 by soxofaan: remove tabindex attributes from user_login form. 2009-04-19 20:54:02 +00:00
Dries Buytaert 2f9af75438 - Patch #430342 by kkaefer et al: usability improvement: changed 'site maintenance' to 'maintenance mode'. 2009-04-19 19:10:08 +00:00
Dries Buytaert 680979845a - Patch #160226 by Berdir, Dave Reid, karschsp: fixed SQL query in statistics_node_tracker function. 2009-04-19 18:51:37 +00:00
Dries Buytaert 6886aeec5e - Patch #437120 by mfb: prevent double escaping of taxonmy term names. 2009-04-18 06:32:24 +00:00
Dries Buytaert 669d112af5 - Patch #239945 by JeremyFrench: moved depth check out of loop. 2009-04-17 19:59:51 +00:00
Dries Buytaert 9179976227 - Patch #434336 by klausi: fixed simpletest on lighttpd. Curl header funkiness. 2009-04-17 07:07:09 +00:00
Dries Buytaert 34cd317476 - Patch #394584 by Berdir: converted translation module to the new database abstraction layer. 2009-04-17 06:55:07 +00:00
Angie Byron cb3cde8be1 #372563 by cytefx: Rename drupal_set_html_head() to drupal_ADD_html_head() which actually describes what it does. 2009-04-15 23:49:08 +00:00
Angie Byron bb62eec3ce #396224 - SA-CORE-2009-03 - Disallow nulls and slashes from file names in theme. 2009-04-15 20:45:46 +00:00
Dries Buytaert 383f7e5721 - Patch #302412 by Berdir: converted more of taxonomy module to the new database abstraction layer. 2009-04-15 14:12:55 +00:00
Dries Buytaert 7174f68476 - Patch #302234 by Berdir: converted blog module to the new database abstraction layer. 2009-04-15 13:50:08 +00:00
Dries Buytaert a41bd361c2 - Patch #431130 by alienbrain: removed unused arguments in internal taxonomy functions. 2009-04-15 13:48:03 +00:00
Dries Buytaert dfff6528ff - Patch #385602 by Damien Tournoud, desbeers, Gabor Hojtsy: log message sometimes lost on node preview. With a test\! 2009-04-15 13:28:08 +00:00
Dries Buytaert 852b762231 - Patch #431560 by JeremyFrench, jredding: fixed typo in the documentation. 2009-04-15 13:25:39 +00:00
Dries Buytaert 31dbee5459 - Patch #432154 by Berdir: fixed bug in taxonomy_vocabulary_load_multiple. With tests. 2009-04-13 18:52:38 +00:00
Dries Buytaert d79481b3a0 - Patch #394332 by Xano: clean up language around logging and alerts. 2009-04-13 18:50:43 +00:00
Dries Buytaert bb253b0539 - Patch #423690 by Berdir: fixed bug in menu_link_maintain(). With tests. 2009-04-13 12:18:52 +00:00
Dries Buytaert a85971199d - Patch #394594 by ksenzee: converted most of the user module code to the new database abstraction layer. 2009-04-13 12:14:57 +00:00
Dries Buytaert 079cac337e - Patch #428242 by David_Rothstein: small code clean-up in check_markup(). 2009-04-13 12:07:00 +00:00
Dries Buytaert dd3e3989cd - Patch #394560 by Berdir: converted statistics module to the new database abstraction layer. 2009-04-13 10:40:13 +00:00
Dries Buytaert 976dc16b0c - Patch #394382 by Xano, dereine: clean up logging configuration page. 2009-04-13 08:49:01 +00:00
Angie Byron a4501a2cca #431870 by yched: Whitespace clean-up. 2009-04-13 05:18:18 +00:00
Dries Buytaert 1372d90cf1 - Patch #317775 by pwolanin, chx et al: caching the entire {menu_router} table causes problems. 2009-04-12 19:52:38 +00:00
Angie Byron 6d3ba59ef9 #431304 by pwolanin: Vertical Tabs typo fix. 2009-04-12 03:52:22 +00:00
Angie Byron 73e755d6c2 #323112 follow-up by yched: Oops, Vertical Tabs broke field widgets (with tests so we don't do it again). 2009-04-12 02:18:51 +00:00
Angie Byron e888f0061c #323112 by dmitrig01, kkaefer, quicksketch, frando and many many more: Now presenting... Vertical Tabs. Fantastic new UI improvement for node forms and hopefully more in the future. 2009-04-11 22:19:46 +00:00
Angie Byron c7095deb64 #423664 by Berdir: Fix dependency checking of non-existing modules. (with corrected tests) 2009-04-11 17:58:18 +00:00
Dries Buytaert 1de1293df0 - Patch #369587 by JamesAn: removed code comment that is incorrect. 2009-04-08 03:23:46 +00:00
Dries Buytaert b658330d28 - Patch #424252 by swentel: move block cache settings from system module to block module now block module is optional. 2009-04-05 12:31:57 +00:00
Dries Buytaert 1067fbaa30 - Patch #394582 by Damien Tournoud: convert tracker module to new DB abstraction layer. 2009-04-05 12:26:12 +00:00
Dries Buytaert 756784a62b - Patch #424094 by chx: fixed taxonomy tests. 2009-04-05 12:21:12 +00:00
Dries Buytaert 400061e489 - Patch #413852 by Berdir: correctly validate emails on PHP 5.3. 2009-04-05 12:10:56 +00:00
Dries Buytaert 562f0ae344 - Patch #372414 by Todd Nienkerk, JohnAlbin: don't output empty comments. 2009-04-04 12:35:16 +00:00
Dries Buytaert 438aa99018 - Patch #392362 by Xano, Dave Reid: remove clean URL option from the installation process -- automatically enable clean URLs when possible, or hide the option when clean URLs cannot be enabled. 2009-04-04 00:35:46 +00:00
Dries Buytaert 022fdbc450 - Patch #290887 by Dave Reid, Jody Lynn: checked permission using the wrong permission name. 2009-04-03 20:24:57 +00:00
Dries Buytaert ee9421a84c - Patch #363262 by Dave Reid: adds a lost index to the URL table. 2009-04-03 17:50:21 +00:00
Dries Buytaert 238c2a61e6 - Patch #417560 by JamesAn: moving the test files to a test directory. 2009-04-02 20:50:37 +00:00
Dries Buytaert f3c784ae40 - Patch #418760 by JamesAn: moving the test files to the test directory. 2009-04-02 20:47:54 +00:00
Dries Buytaert 3a35e28f92 - Patch #254491 by chx, catch, justinrandell, pwolanin, David_Rothstein, et al: centralized static caching to improve testability of the Drupal code, and to remove $reset-parameters. Thanks for taking the time to convince me, catch! 2009-04-02 20:39:45 +00:00
Dries Buytaert b25e08ba75 - Patch #317775 by pwolanin, justinrandell: caching entire {menu_router} table causes MySQL error/slow rebuilds and slows menu_link_save. 2009-04-02 03:40:05 +00:00
Dries Buytaert 27d7455edb - Patch #333054 by c960657: page cache should be case sensitive. 2009-04-01 20:00:47 +00:00
Dries Buytaert c403b16006 - Patch #397800 by JamesAn: cleaned up some PHPdocs. 2009-04-01 19:56:34 +00:00
Dries Buytaert 4f36a54832 - Patch #233425 by catch, Jody Lynn, lilou: remove dependency on blog module. 2009-04-01 01:28:24 +00:00
Dries Buytaert 4718f59021 - Patch #316515 by jmburnz, momendo: fixed position of OpenID logo. 2009-03-31 10:48:06 +00:00
Angie Byron 7e98216936 #368064 by catch: Provide a top-level 'International' menu item for localization and translation-related items. 2009-03-31 02:02:23 +00:00
Angie Byron 96cfdcf7e0 #369964 follow-up by yched: Remove deprecated function call. 2009-03-31 01:59:34 +00:00
Angie Byron f40532da76 #376129 by boombatower, Damien Tournoud, and chx: Change getInfo() to a static method to reduce memory footprint of SimpleTest. 2009-03-31 01:49:55 +00:00
Angie Byron 5cc1704a3f #402226 follow-up by pwolanin: Rename menu 'item' to 'link' in menu module. 2009-03-31 01:45:31 +00:00
Angie Byron 8fc513e1d8 #408562 by BruceBGordon: Code clean-up. 2009-03-30 05:40:44 +00:00
Angie Byron f85f7cf8c1 #349237 by c960657: Fix assertTitle()'s encoding of HTML attributes (with tests). 2009-03-30 05:35:35 +00:00
Angie Byron 9a6fa8920f #367356 by ultimateboy: Add label above path form for consistency. 2009-03-30 05:30:39 +00:00
Angie Byron 2302a608be #402044 by yched: Make Field CSS RTL compatible. 2009-03-30 05:28:41 +00:00
Angie Byron 243ecdaf52 #394246 by flobruit: Check to ensure that field type is specified. 2009-03-30 05:24:38 +00:00
Angie Byron 9f7aaa2341 #351797 by catch: Allow loading multiple vocabularies at once (with tests). 2009-03-30 05:18:49 +00:00
Angie Byron a0cca9a472 #259368 by Rob Loach, mfer, and sun: Allow drupal_add_css() to add/aggregate inline CSS. 2009-03-30 05:13:45 +00:00
Angie Byron fbabc0d985 #368674 by bjaspan, Eaton, chx, and yched: Provide hooks to allow hybrid field/bundle-level storage for fields in core. 2009-03-30 03:44:55 +00:00
Angie Byron 28aaa036e4 #304330 follow-up by sun: Clean-up of text format widget patch. 2009-03-30 03:15:41 +00:00
Angie Byron 2feffc2d61 #415762 by boombatower: Clean SimpleTest environment on module uninstall. 2009-03-29 23:14:53 +00:00
Angie Byron 3c8f1540e1 #414218 by cha0s: Document hook_update_N()'s ability to use batch API. 2009-03-29 23:11:09 +00:00
Angie Byron 95023b8c13 #297972 by scor, yched, Steven Jones, and heyrocker: Allow drupal_execute() to be performed within batch API (with tests). 2009-03-28 18:09:11 +00:00
Dries Buytaert 1c2033f0f8 - Patch #402226 by stompeers, catch et al: menu admin page uses inconsistent formatting. 2009-03-28 03:58:55 +00:00
Angie Byron 59e5caac2f Roll-back of #401956, which needs more discussion. 2009-03-27 00:40:42 +00:00
Angie Byron 0f95dd45a9 #376408 by pwolanin and ajevans85: Stop phantom () appearing in search results. 2009-03-27 00:16:16 +00:00
Angie Byron eecab1083a #369964 by yched and bjaspan: Refactor field validation and error reporting. Field API no longer coupled to Form API. Hooray. 2009-03-26 13:31:28 +00:00
Angie Byron df6ec4d7ff #410638 follow-up by foxtrotcharlie and David Rothstein: Fix help text on blocks so that 'Powered by' doesn't show up on all system blocks. 2009-03-25 18:40:50 +00:00
Dries Buytaert f8083c48db - Patch #296482 by mr.baileys: additional tests for the comments block. 2009-03-25 16:54:24 +00:00
Dries Buytaert 617ccc1da3 - Patch #373177 by Moshe Weitzman: node upload table should use late rendering. 2009-03-25 16:43:02 +00:00
Dries Buytaert 7d35ed90d9 - Patch #413382 by brianV: whitespace fixes. 2009-03-25 16:31:18 +00:00
Angie Byron ab8090c77c #273137 follow-up by David Rothstein: Fix menu descriptions. 2009-03-25 13:55:22 +00:00
Angie Byron 4bfda4db83 #410638 by foxtrotcharlie: Prevent 'Powered by Drupal' settings showing up on all system blocks. 2009-03-25 13:48:42 +00:00
Angie Byron f9693e5815 #413060 by pp: Fix typo preventing contact categories from appearing in table. 2009-03-25 13:45:00 +00:00
Angie Byron 84f30b9a6f #141965 by jeffschuler: Remove newline so hook_term_path() docs show up. 2009-03-21 00:59:02 +00:00
Dries Buytaert 2c940c9494 - Patch #408564 by brianV: make table columns align with table header. 2009-03-20 20:53:38 +00:00
Dries Buytaert 32076b4d32 - Patch #273137 by pwolanin, David_Rothstein, chx, et al: split navigation to user and administration menu. Will require follow-up patches. 2009-03-20 19:18:11 +00:00
Dries Buytaert c49a925eb8 - Patch #357031 by aaronbauman, hinfox, dereine: passing the wrong parameter. 2009-03-20 19:14:51 +00:00
Dries Buytaert d1a12948fb - Patch #297391 by mr.baileys: removed unused code. 2009-03-20 08:14:34 +00:00
Dries Buytaert 7feb58e5a6 - Patch #394488 by Dave Reid: corrected some database conversions. 2009-03-18 09:49:31 +00:00