summaryrefslogtreecommitdiff
path: root/modules/blog/blog.module
Commit message (Collapse)AuthorAge
* - Patch #128082 by Goba et al: Allow localization of built-in menu items.Dries Buytaert2007-04-30
|
* - Patch #128600 by scott.mclewin and spatz4000: ambigious field use in SQL ↵Dries Buytaert2007-04-23
| | | | query.
* - Patch #107061 by Steven et al: add jQuery teaser splitter.Dries Buytaert2007-04-09
|
* #130971: Kitchen sink (E_NOTICE compliance / Code style / Bugfix in book toc)Steven Wittens2007-03-27
|
* - Patch #117953 by Matt Westgate: make blog module hook_profile_alter friendly.Dries Buytaert2007-03-07
|
* - Patch #111347 by Steven: refactor url() and l().Dries Buytaert2007-02-15
|
* - Patch #113603 by chx: first crack at re-implementing tabs.Dries Buytaert2007-02-11
|
* - Patch #112715 by chx, webchick, asimmonds, et al: fixing E_ALL notices. ↵Dries Buytaert2007-01-31
| | | | Thanks.
* - Patch #34755 by chx et al: faster menu system. HEAD is temporary broken ↵Dries Buytaert2007-01-24
| | | | and there is no upgrade path yet.
* - Patch #102413 by yched: path node/add/[poll|forum|blog] defined twice.Dries Buytaert2006-12-10
|
* - Patch #99287 by webchick: missed some title capitalizations.Dries Buytaert2006-11-23
|
* - Patch #92992 by webchick and neclimdul: clean up documentation that is ↵Dries Buytaert2006-11-21
| | | | superseded by the new 'by module' administration dashboard.
* - Patch #98359 by webchick and webernet: standardize on terminology: ↵Dries Buytaert2006-11-21
| | | | 'website' and 'web page'.
* - Patch #59832 by markus and chx: simplified SQL query.Dries Buytaert2006-10-30
|
* #84146: Use 'Sentence capitalization' for menu items, page titles, form ↵Steven Wittens2006-10-22
| | | | items, etc
* - Patch #80952 by earl, webchick, neclimdul et al: .info filesDries Buytaert2006-08-31
|
* - Patch #80934 by timnc: more t() fixes.Dries Buytaert2006-08-27
|
* #70097 by magico. Fix the ordering of blog pages.Neil Drumm2006-08-26
|
* Fixing Drupal.Neil Drumm2006-08-23
|
* - Patch #66569 by m3avrck: Consolidate the drupal_add_link() calls.Dries Buytaert2006-08-23
|
* #66569 by m3avrck. Put all the feed icons in the same place.Neil Drumm2006-08-23
|
* - Patch #79476 by assimonds and webchick: fixed broken t()-iness.Dries Buytaert2006-08-20
| | | | CVS: ----------------------------------------------------------------------
* blog: Remove unnecessary emphasis due to #76802Steven Wittens2006-08-18
|
* #76802: Introduce placeholder magic into t()Steven Wittens2006-08-18
| | | | See: http://drupal.org/node/64279#t-placeholders
* - 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
|
* #62340 by chx, webchick, Jaza, Eaton, mathieu, and myself. Configurable node ↵Neil Drumm2006-08-06
| | | | types.
* - Patch #72079 by Earl et al: give Drupal an overall administration page ... :-)Dries Buytaert2006-07-31
|
* #75594 by eafarris, remove of gender-specific pronounsNeil Drumm2006-07-27
|
* #73605 by RobRoy, make hook_link() implementations consistent with ↵Neil Drumm2006-07-19
| | | | documentation.
* #71925 by Steven, remove # prefix from link array keys.Neil Drumm2006-07-04
|
* - Patch #18260 by Ber, m3averck et al: allow overriding of links returned by ↵Dries Buytaert2006-05-18
| | | | modules
* - Patch #63492 by zirafa: removed redundant semicolon.Dries Buytaert2006-05-15
|
* #61802 by Zen, Double spaced sentences clean upNeil Drumm2006-05-07
|
* - Patch #44473 by Frodo: fixed broken links in help text.Dries Buytaert2006-05-04
|
* #56105, remove title validation, already enforced by #required, patch by MosheGerhard Killesreiter2006-03-27
|
* - Patch #49912: www.drupal.org -> drupal.org. (Today's critical bugfix #5.)Dries Buytaert2006-02-21
|
* - Patch #40200 by Ax, Drewish, Zen et al: user_view() isn't merging view ↵Dries Buytaert2006-01-26
| | | | items correctly + CSS cleanup + form handling cleanup.
* - 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 #45301 by Morbus: corrected the weight of form item titles of nodes.Dries Buytaert2006-01-18
|
* - #42234: Use standardized feed icon for RSSSteven Wittens2005-12-29
|
* - 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 #35644 by webchick: fixed the sizes of the textareas on the node ↵Dries Buytaert2005-11-23
| | | | edit forms.
* - Patch #35644 by webchick: forms API simplificiations.Dries Buytaert2005-11-12
|
* #36791: node_validate was called twiceSteven Wittens2005-11-12
|
* - Patch #26139 by webchick / Kieran / documentation team: improved admin ↵Dries Buytaert2005-11-01
| | | | help of core modules! /
* - Patch #33752 by chx, adrian, et al: another batch of form API changes/fixes.Dries Buytaert2005-10-11
|
* - Removing tabs and trailing whitespaces.Dries Buytaert2005-10-07
|
* - Patch #29465: new form API by Adrian et al.Dries Buytaert2005-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.