Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Patch #103785 by Goba: fix blog.module confusion. | Dries Buytaert | 2006-12-17 |
| | |||
* | - Patch #102413 by yched: path node/add/[poll|forum|blog] defined twice. | Dries Buytaert | 2006-12-10 |
| | |||
* | - Patch #99287 by webchick: missed some title capitalizations. | Dries Buytaert | 2006-11-23 |
| | |||
* | - Patch #87298 by webchick, neil, dww et al: show version numbers on modules ↵ | Dries Buytaert | 2006-11-21 |
| | | | | page. | ||
* | - Patch #92992 by webchick and neclimdul: clean up documentation that is ↵ | Dries Buytaert | 2006-11-21 |
| | | | | superseded by the new 'by module' administration dashboard. | ||
* | - Patch #98359 by webchick and webernet: standardize on terminology: ↵ | Dries Buytaert | 2006-11-21 |
| | | | | 'website' and 'web page'. | ||
* | - Patch #59832 by markus and chx: simplified SQL query. | Dries Buytaert | 2006-10-30 |
| | |||
* | #84146: Use 'Sentence capitalization' for menu items, page titles, form ↵ | Steven Wittens | 2006-10-22 |
| | | | | items, etc | ||
* | - Patch #81740 by merlinofchaos, webchick, moshe, neclimdul et al: added ↵ | Dries Buytaert | 2006-10-05 |
| | | | | package support to the modules page. | ||
* | - Patch #80952 by earl, webchick, neclimdul et al: .info files | Dries Buytaert | 2006-08-31 |
| | |||
* | - Patch #80934 by timnc: more t() fixes. | Dries Buytaert | 2006-08-27 |
| | |||
* | #70097 by magico. Fix the ordering of blog pages. | Neil Drumm | 2006-08-26 |
| | |||
* | Fixing Drupal. | Neil Drumm | 2006-08-23 |
| | |||
* | - Patch #66569 by m3avrck: Consolidate the drupal_add_link() calls. | Dries Buytaert | 2006-08-23 |
| | |||
* | #66569 by m3avrck. Put all the feed icons in the same place. | Neil Drumm | 2006-08-23 |
| | |||
* | - Patch #79476 by assimonds and webchick: fixed broken t()-iness. | Dries Buytaert | 2006-08-20 |
| | | | | CVS: ---------------------------------------------------------------------- | ||
* | blog: Remove unnecessary emphasis due to #76802 | Steven Wittens | 2006-08-18 |
| | |||
* | #76802: Introduce placeholder magic into t() | Steven Wittens | 2006-08-18 |
| | | | | See: http://drupal.org/node/64279#t-placeholders | ||
* | - Patch #74326 by Eaton, Royboy, chx, et al: building $node->body with ↵ | Dries Buytaert | 2006-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 Buytaert | 2006-08-07 |
| | |||
* | #62340 by chx, webchick, Jaza, Eaton, mathieu, and myself. Configurable node ↵ | Neil Drumm | 2006-08-06 |
| | | | | types. | ||
* | - Patch #72079 by Earl et al: give Drupal an overall administration page ... :-) | Dries Buytaert | 2006-07-31 |
| | |||
* | #75594 by eafarris, remove of gender-specific pronouns | Neil Drumm | 2006-07-27 |
| | |||
* | #73605 by RobRoy, make hook_link() implementations consistent with ↵ | Neil Drumm | 2006-07-19 |
| | | | | documentation. | ||
* | #71925 by Steven, remove # prefix from link array keys. | Neil Drumm | 2006-07-04 |
| | |||
* | - Patch #18260 by Ber, m3averck et al: allow overriding of links returned by ↵ | Dries Buytaert | 2006-05-18 |
| | | | | modules | ||
* | - Patch #63492 by zirafa: removed redundant semicolon. | Dries Buytaert | 2006-05-15 |
| | |||
* | #61802 by Zen, Double spaced sentences clean up | Neil Drumm | 2006-05-07 |
| | |||
* | - Patch #44473 by Frodo: fixed broken links in help text. | Dries Buytaert | 2006-05-04 |
| | |||
* | #56105, remove title validation, already enforced by #required, patch by Moshe | Gerhard Killesreiter | 2006-03-27 |
| | |||
* | - Patch #49912: www.drupal.org -> drupal.org. (Today's critical bugfix #5.) | Dries Buytaert | 2006-02-21 |
| | |||
* | - Patch #40200 by Ax, Drewish, Zen et al: user_view() isn't merging view ↵ | Dries Buytaert | 2006-01-26 |
| | | | | items correctly + CSS cleanup + form handling cleanup. | ||
* | - Patch #45530 by Morbus: filter_form shouldn't default to #weight 0 | Dries Buytaert | 2006-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 Buytaert | 2006-01-19 |
| | | | | infForms API. | ||
* | - Patch #45301 by Morbus: corrected the weight of form item titles of nodes. | Dries Buytaert | 2006-01-18 |
| | |||
* | - #42234: Use standardized feed icon for RSS | Steven Wittens | 2005-12-29 |
| | |||
* | - Patch #39778 by chx: obliterate nodeapi op form in favor of the forms ↵ | Dries Buytaert | 2005-12-05 |
| | | | | API's way of doing things. Tested with help from webchick. | ||
* | - Patch #35644 by webchick: fixed the sizes of the textareas on the node ↵ | Dries Buytaert | 2005-11-23 |
| | | | | edit forms. | ||
* | - Patch #35644 by webchick: forms API simplificiations. | Dries Buytaert | 2005-11-12 |
| | |||
* | #36791: node_validate was called twice | Steven Wittens | 2005-11-12 |
| | |||
* | - Patch #26139 by webchick / Kieran / documentation team: improved admin ↵ | Dries Buytaert | 2005-11-01 |
| | | | | help of core modules! / | ||
* | - Patch #33752 by chx, adrian, et al: another batch of form API changes/fixes. | Dries Buytaert | 2005-10-11 |
| | |||
* | - Removing tabs and trailing whitespaces. | Dries Buytaert | 2005-10-07 |
| | |||
* | - Patch #29465: new form API by Adrian et al. | Dries Buytaert | 2005-10-07 |
| | | | | | | | TODO: + The contact.module was broken; a new patch for contact.module is needed. + Documentation is needed. + The most important modules need to be updated ASAP. | ||
* | - Modified patch #30620 by Geary: 'personal blog entry' -> 'blog entry'. | Dries Buytaert | 2005-09-28 |
| | | | | Improves consistency. | ||
* | - Patch #10056: allow the node title forms to be customized. | Dries Buytaert | 2005-09-23 |
| | |||
* | - Patch #3986 by James (and Boris :)):consolidated all feed-related settings ↵ | Dries Buytaert | 2005-09-18 |
| | | | | | | | | | | | in one place. * adds a "feed settings" section to admin/settings where 2 new settings are introduced: * number of items per feed * default length of feed descriptions (title only, teaser, full) * patches all of core to obey the above - including the new aggregator (out) feeds * adds support for adding namespaces in _nodeapi('rss item') - which means things like iTunes RSS and yahoo's media rss can be implemented by the appropriate modules (i.e. audio.module) * includes some additional info in the default node feed - specifically the element (links directly to comments) - and dc:creator - to show node author information. | ||
* | - Patch #31123 by Ber: make it easier to theme the user profile pages. | Dries Buytaert | 2005-09-14 |
| | |||
* | - Patch #7582 by Gerhard: updated the blog.module to use the new node revisions. | Dries Buytaert | 2005-09-07 |
| | |||
* | - Renamed _node() to _node_info()! We reserve _node for _nodeapi. | Dries Buytaert | 2005-08-29 |
| |