summaryrefslogtreecommitdiff
path: root/modules/block
Commit message (Collapse)AuthorAge
...
* - Patch #87298 by webchick, neil, dww et al: show version numbers on modules ↵Dries Buytaert2006-11-21
| | | | page.
* - Patch #92992 by webchick and neclimdul: clean up documentation that is ↵Dries Buytaert2006-11-21
| | | | superseded by the new 'by module' administration dashboard.
* - Patch #63267 by profix et al: trim the content of the 'pages' setting so ↵Dries Buytaert2006-11-08
| | | | it can be evaluated properly.
* - Patch #91906 by kkaefer and RobRoy: usability improvement to the block ↵Dries Buytaert2006-11-08
| | | | administration interface.
* - Patch #93536 by Gabor: eliminate remaining bluemarine traces from core code.Dries Buytaert2006-11-08
|
* #90508 by Heine and the security team. Every form gets a token.Neil Drumm2006-10-31
|
* #84146: Use 'Sentence capitalization' for menu items, page titles, form ↵Steven Wittens2006-10-22
| | | | items, etc
* - Patch #87057 by chx and profix898: fixed problem with not being able to ↵Dries Buytaert2006-10-08
| | | | configure blocks per theme.
* - Patch #81740 by merlinofchaos, webchick, moshe, neclimdul et al: added ↵Dries Buytaert2006-10-05
| | | | package support to the modules page.
* #42514 by wtanaka and dopry. More thoroughly delete custom blocks.Neil Drumm2006-09-05
|
* #82336 by jvandyk. Set the default input format if we don't have one.Neil Drumm2006-09-05
|
* - Patch #80952 by earl, webchick, neclimdul et al: .info filesDries Buytaert2006-08-31
|
* #68187 by Zen. Blovk visibity by path checks both aliased and non-aliased paths.Neil Drumm2006-08-31
|
* - Patch #80934 by timnc: more t() fixes.Dries Buytaert2006-08-27
|
* #80352 by Zacker. Manually created blocks now appear in block listing.Neil Drumm2006-08-25
|
* #80150 by webchick. Cleanup from #76666.Neil Drumm2006-08-23
|
* #80079 by drewish, fix some double placeholdering and other bugs with using t().Neil Drumm2006-08-23
|
* - Patch #76666 by hunmonk: custom block titles.Dries Buytaert2006-08-22
|
* - Use consistent terminology: placement -> region.Dries Buytaert2006-08-21
|
* - Patch #77924 by RobRoy: fixed race condition in block administration that ↵Dries Buytaert2006-08-20
| | | | might have caused data loss.
* #79601: module_exist() -> module_exists()Steven Wittens2006-08-20
|
* - Patch #77919 by chx, eaton, moshe, et al: enable programmaticaly submitted ↵Dries Buytaert2006-08-18
| | | | forms via the pull model.
* #76802: Introduce placeholder magic into t()Steven Wittens2006-08-18
| | | | See: http://drupal.org/node/64279#t-placeholders
* #77183 by m3avrck and timcn, split up drupal.css by module.Neil Drumm2006-08-14
|
* - Patch #74326 by Eaton, Royboy, chx, et al: building $node->body with ↵Dries Buytaert2006-08-10
| | | | | | arrays like FAPI for viewing. Once again, we're paving the path for CCK in core ... :)
* - Patch #77422 by timcn: corrected various paths in the documentation.Dries Buytaert2006-08-07
|
* - Patch #72079 by Earl et al: give Drupal an overall administration page ... :-)Dries Buytaert2006-07-31
|
* #71772 by Bart Jansens, fix various php warningsNeil Drumm2006-07-02
|
* - Patch #18018 by dww, nedjo, tostinne, luke et al: block visibility by role.Dries Buytaert2006-05-26
|
* #62262 by dww, fix block help text.Neil Drumm2006-05-23
|
* #61802 by Zen, Double spaced sentences clean upNeil Drumm2006-05-07
|
* #60563, missing block name in delete dialoge, patch by Steve McKenzieGerhard Killesreiter2006-04-26
|
* - Removing trailing whitespace.Dries Buytaert2006-04-17
|
* #56813: Simplify admin/block code, and fix sorting of blocks in the listingSteven Wittens2006-04-04
|
* - Patch #52381 by Zen:Dries Buytaert2006-03-04
| | | | | | | * Converts the block administration page to the fapi model. * Removes some 'type=markup' elements. * Adds a form_render($form['form_id']); in the theme function. Adding a form_render($form) just outputs an unthemed form. I suspect this is because of the heavy nesting of form elements and the rather dodgy array declaration, but I'm unsure. * Documentation/language fixes.
* - Patch #49912: www.drupal.org -> drupal.org. (Today's critical bugfix #5.)Dries Buytaert2006-02-21
|
* - Patch #48622 by adrian: remove drupal_goto from _submit functions.Dries Buytaert2006-02-10
|
* - Patch #46827 by wulff: fixed incorrect links.Dries Buytaert2006-01-29
|
* - Patch #36029 by asimmonds/dopry: fixed critical bug in block administration.Dries Buytaert2006-01-26
|
* - Patch #46106 by markus: usability improvement: moved the block description ↵Dries Buytaert2006-01-24
| | | | textfield up.
* - Patch #45530 by Morbus: filter_form shouldn't default to #weight 0Dries Buytaert2006-01-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When a form element doesn't specify a #weight, it is assumed internally as #weight 0. However, to ensure that our form elements display visually *as they were defined in the array* we, in form_builder, count the number of elements, divide by 1000, and set that as the weight: # Assign a decimal placeholder weight to preserve original array order if (!isset($form[$key]['#weight'])) { $form[$key]['#weight'] = $count/1000; } The above code will set the #weights of elements that have not defined a weight to something like 0 (first element in array definition), 0.001, 0.002, and so on. However, anytime a form element *explicitly* defines a #weight of 0, that #weight is kept at exactly 0, which would cause that form element to appear BEFORE the elements that didn't have a #weight defined (and thus received a #weight such as 0.002). Consider the following pseudo example: $form['game_title'] = array( '#type' => 'textfield', ... ); $form['game_description'] = array( '#type' => 'textarea', ... ); $form['game_format'] = filter_form(variable_get('game_format', NULL)); return $form; Here, we're not definiing weights on our two textfields. We then add an filter_form. The second parameter of the filter_form is $weight, which defaults to 0. After this $form hits form_builder, we have weights 0 (game_title), 0.001 (game_description), and 0 (filter_form) respectively. This is then sorted by weight, which causes filter_form (the third element in the array) to appear BEFORE game_description (0 is lighter than 0.001). The short lesson is: explicitly defining #weight 0 for a form element is probably a bad idea. This patch changes the default #weight of filter_form to NULL, instead of 0, and also removes any other explicit setting of #weight to 0 in core.
* - Patch #45349 by Morbus Iff: input filters aren't sorting correctly ↵Dries Buytaert2006-01-19
| | | | infForms API.
* - Patch #44163 by m3avrck: fixed typo in permission and fixed incorrect ↵Dries Buytaert2006-01-12
| | | | description.
* - #43495: Separate permission for PHP-based block visibilitySteven Wittens2006-01-08
|
* - Patch #35667 by Crell: bug fix: on ?q=admin/block style.css was imported ↵Dries Buytaert2006-01-06
| | | | twice.
* - Patch #40631 by Chris Johnson: is_array() slower than isset() or empty().Dries Buytaert2005-12-14
|
* - Patch #39778 by chx: obliterate nodeapi op form in favor of the forms ↵Dries Buytaert2005-12-05
| | | | API's way of doing things. Tested with help from webchick.
* - Patch #39576 by chx: rename '_execute' to '_submit' and '#execute' to ↵Dries Buytaert2005-12-02
| | | | '#submit'.
* - Patch #37714 by asimmonds: fixed saving of blocks.Dries Buytaert2005-11-16
|
* - Patch #35524 by asimmonds / drewish: converted the custom block forms code ↵Dries Buytaert2005-11-13
| | | | to the forms API's execute model.