Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Patch #44920 by Crell et al: added support for a sites/all directory. | Dries Buytaert | 2006-06-27 |
| | |||
* | - Patch #51561 by dww: fixed broken HTML. | Dries Buytaert | 2006-05-30 |
| | |||
* | - Modified patch #51561 by dww: optionally allow people to inspect votes, ↵ | Dries Buytaert | 2006-05-29 |
| | | | | and to cancel their vote. | ||
* | #61802 by Zen, Double spaced sentences clean up | Neil Drumm | 2006-05-07 |
| | |||
* | #57845, fixed broken link in poll help, patch by Markus Petrux | Gerhard Killesreiter | 2006-04-14 |
| | |||
* | #58166, fixes for typos, patch by Uwe Herrmann | Gerhard Killesreiter | 2006-04-11 |
| | |||
* | #56921, revert earlier patches, patch by chx | Gerhard Killesreiter | 2006-04-06 |
| | |||
* | #56921 by chx, removing the $form = from $form = form_builder($form_id, ↵ | Neil Drumm | 2006-04-02 |
| | | | | $form) then it works. | ||
* | #56789, remove left over call to node_title_validate, patch by chx | Gerhard Killesreiter | 2006-04-01 |
| | |||
* | #53348, Handling of deleted/blocked user accounts, patch by jreyero and Zen | Gerhard Killesreiter | 2006-03-26 |
| | |||
* | #54508, remove extra </div>, patch by introfini | Gerhard Killesreiter | 2006-03-17 |
| | |||
* | - Patch #49912: www.drupal.org -> drupal.org. (Today's critical bugfix #5.) | Dries Buytaert | 2006-02-21 |
| | |||
* | - Patch #50045 by merlinofchaos: fixed previews getting lost. | Dries Buytaert | 2006-02-21 |
| | |||
* | - Patch #48918 by chx: remove POST from poll. | Dries Buytaert | 2006-02-17 |
| | |||
* | - Patch #41755 by Cvbge: | Dries Buytaert | 2005-12-28 |
| | | | | | | | 1. "int(10)" -> "int", fixed typo in index name [pgsql change only] 2. added defaults for uid and hostname (needed for both) 3. postgres supports "DROP column" syntax 4. added missing DELETEs for new table in poll_delete() and poll_update() | ||
* | - Patch #41755 by Neil: normalize poll.polled database column. | Dries Buytaert | 2005-12-27 |
| | |||
* | - Patch #40630 by Morbus: made sure $teaser is always defined. | Dries Buytaert | 2005-12-14 |
| | |||
* | - Patch #39576 by chx: rename '_execute' to '_submit' and '#execute' to ↵ | Dries Buytaert | 2005-12-02 |
| | | | | '#submit'. | ||
* | - #39054: Missing url() for poll form action | Steven Wittens | 2005-11-28 |
| | |||
* | - Patch #38476 by crunchywelch: make voting on polls work from blocks in the ↵ | Dries Buytaert | 2005-11-23 |
| | | | | sidebar. | ||
* | - Patch #35644 by webchick: forms API simplificiations. | Dries Buytaert | 2005-11-12 |
| | |||
* | - SQL query maintenance: '%d' -> %d. | Dries Buytaert | 2005-11-12 |
| | |||
* | #36791: node_validate was called twice | Steven Wittens | 2005-11-12 |
| | |||
* | - Patch #35481 by javanaut: make the 'more choices' option for polls work. | Dries Buytaert | 2005-11-02 |
| | |||
* | - Patch #26139 by webchick / Kieran / documentation team: improved admin ↵ | Dries Buytaert | 2005-11-01 |
| | | | | help of core modules! / | ||
* | - Patch #35086 by stefan: improved themeability of the poll results. | Dries Buytaert | 2005-10-31 |
| | |||
* | - 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. | ||
* | - Patch #10056: allow the node title forms to be customized. | Dries Buytaert | 2005-09-23 |
| | |||
* | - Renamed _node() to _node_info()! We reserve _node for _nodeapi. | Dries Buytaert | 2005-08-29 |
| | |||
* | - Patch #29785 by Chx: multiple node types were broken so we refactored | Dries Buytaert | 2005-08-28 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | part of the node system! If you have a module that implements node types, you'll have to udpate its CVS HEAD version. We replaced _node_name() and _node_types() by _node(). The new _node() hook let's you define one or more node types, including their names. The implementation of the _node() hook needs to: return array($type1 => array('name' => $name1, 'base' => $base1), $type2 => array('name' => $name2, 'base' => $base2)); where $type is the node type, $name is the human readable name of the type and $base is used instead of <hook> for <hook>_load, <hook>_view, etc. For example, the story module's node hook looks like this: function story_node() { return array('story' => array('name' => t('story'), 'base' => 'story')); } The page module's node hook module like: function page_node() { return array('page' => array('name' => t('page'), 'base' => 'page')); } However, more complex node modules like the project module and the flexinode module can use the 'base' parameter to specify a different base. The project module implements two node types, proejcts and issues, so it can do: function project_node() { return array( array('project_project' => array('name' => t('project'), 'base' => 'project'), array('project_issue' => array('name' => t('issue'), 'base' => 'project_issue')); } In the flexinode module's case there can only one base ... This hook will simplify the CCK, and will make it easy (or easier) to merge the story and page module. In addition, node_list() became node_get_types(). In addition, we created the following functions: node_get_name($type) and node_get_base($type). | ||
* | - Patch #29385 by chx: no ?> add end of files. | Dries Buytaert | 2005-08-25 |
| | |||
* | - Patch #25634 by chx: simplified node_load(). | Dries Buytaert | 2005-07-17 |
| | |||
* | - Patch #25603 by Stefan: made the sizes of forms consistent. | Dries Buytaert | 2005-06-27 |
| | | | | TODO: document the defaults in the PHPdoc comments. | ||
* | - Code cleanup: improve format_plural usage, add some missing ↵ | Steven Wittens | 2005-05-31 |
| | | | | placeholder/check calls, and introduce API for <link> tags. | ||
* | - Patch 20910 by chx: centralize print theme page. | Dries Buytaert | 2005-04-24 |
| | |||
* | - Patch #19451 by JonBob: improved consistency of module descriptions. We ↵ | Dries Buytaert | 2005-04-01 |
| | | | | should write guidelines for this -- maybe in the PHPDoc code of the _help hook. | ||
* | - #18817: Clean up plain-text checking (see drupal-devel!) | Steven Wittens | 2005-03-31 |
| | |||
* | - Clean up some db queries in poll.module | Steven Wittens | 2005-03-18 |
| | |||
* | - #14767: Do not display poll block when no polls are active | Steven Wittens | 2005-03-18 |
| | | | | - Change double to single quotes. | ||
* | - #18597: Resolve conflict in column name between queue.module and poll.module. | Steven Wittens | 2005-03-18 |
| | |||
* | - Patch #17208 by asimmonds: help text fixes: | Dries Buytaert | 2005-02-12 |
| | | | | | | | | | - permissions menu link updates in a number of modules help - anchor link fix in distributed auth help - "my account" link fix in user help - spelling correction in tracker.module help - I also changed 'admin/access/perms' to 'admin/access/permissions'. | ||
* | - Patch #16111 by chx: generalized node_rewrite_query to db_rewrite_query. | Dries Buytaert | 2005-01-29 |
| | |||
* | - Patch #14936 by Goba: | Dries Buytaert | 2005-01-22 |
| | | | | | | + The "add new comment" was missing for polls. + Renames $main to $teaser where appropriate to follow latest Drupal conventions. | ||
* | - Fix tracker pager count query being wrong (it did not return a count but a ↵ | Steven Wittens | 2005-01-19 |
| | | | | | | set, and it counted nodes with more than 1 comment as multiple nodes). - Clean up various SQL queries: removing literally inserted data (db_escape_string is evil!), fixing single "%" which should be "%%", fixing integers being compared as strings. | ||
* | - Patch #14731 by chx: made it possible to rewrite node queries. | Dries Buytaert | 2005-01-16 |
| | |||
* | - Patch #13907 by Neil: less ways to set the page title. | Dries Buytaert | 2004-12-15 |
| | | | | | | | * Less logic in theme code. * Encourages use of the menu system. * Easier to find where a title or breadcrumb comes from in other people's code because there are less places to look. Look in menu and then grep for the appropriate set function. Looking for calls to theme_page() is hard because there are too many of them. * Very slightly more efficient. | ||
* | - Patch #13443 by Moshe: got rid of the semi-implemented 'page link' ↵ | Dries Buytaert | 2004-11-24 |
| | | | | feature. All themes currently support primary and secondary links so page links are now deprecated. Check your contributed modules and update them accordingly. | ||
* | - Patch #6166 by Moshe: node preview should not display links. Push the ↵ | Dries Buytaert | 2004-11-23 |
| | | | | | | | | links to the theme instead of the theme having to pull them in using node_link(). TODO: 1. Update theme upgrade instructions in the handbook: node_link() is gone. 2. Remove page_link() just like we removed node_link(). |