Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | - 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. | |||
* | #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 | |
| | ||||
* | #79601: module_exist() -> module_exists() | Steven Wittens | 2006-08-20 | |
| | ||||
* | #76802: Introduce placeholder magic into t() | Steven Wittens | 2006-08-18 | |
| | | | | See: http://drupal.org/node/64279#t-placeholders | |||
* | #77183 by m3avrck and timcn, split up drupal.css by module. | Neil Drumm | 2006-08-14 | |
| | ||||
* | #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 | |
| | ||||
* | #61802 by Zen, Double spaced sentences clean up | Neil Drumm | 2006-05-07 | |
| | ||||
* | - Removing trailing whitespace. | Dries Buytaert | 2006-04-17 | |
| | ||||
* | #14591, User.module links for blocked/non-existant accounts + menu 403/404 ↵ | Gerhard Killesreiter | 2006-03-17 | |
| | | | | issue, patch by Steven and merlinofchaos | |||
* | - Patch #49912: www.drupal.org -> drupal.org. (Today's critical bugfix #5.) | Dries Buytaert | 2006-02-21 | |
| | ||||
* | - Patch #48042 by markus: removed unused variable. | Dries Buytaert | 2006-02-06 | |
| | ||||
* | - Patch #33128 by Morbus: %num -> %count to make format_plural() work. | Dries Buytaert | 2006-01-12 | |
| | ||||
* | - #33128: Format plural for %n new | Steven Wittens | 2006-01-08 | |
| | ||||
* | - Patch #26139 by webchick / Kieran / documentation team: improved admin ↵ | Dries Buytaert | 2005-11-01 | |
| | | | | help of core modules! / | |||
* | - Patch #28786 by Neil: move pagers out of table. | Dries Buytaert | 2005-09-24 | |
| | ||||
* | - 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 #27737 by Gerhard: format_name($object) -> theme('username', $object). | Dries Buytaert | 2005-08-01 | |
| | | | | | | Usernames can now be themed; eg. an icon/avatar could be added. TODO: update contributed modules + update the migration docs. | |||
* | - Patch #22857 by mathias: removed redundant DISTINCT(). | Dries Buytaert | 2005-05-14 | |
| | ||||
* | - Patch #21221 by Robert: make status values in comment.module defined ↵ | Dries Buytaert | 2005-05-05 | |
| | | | | constants for readability. | |||
* | - Bug #21452 reported by njivy: added missing return to tracker_user_page(). | Dries Buytaert | 2005-05-01 | |
| | | | | It did not return nor print its output. | |||
* | - Patch 20910 by chx: centralize print theme page. | Dries Buytaert | 2005-04-24 | |
| | ||||
* | - 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 #16253 by Goba: incremental improvements to the new content markers. | Dries Buytaert | 2005-01-30 | |
| | | | | Goba: it would be nice if one of the core themes would showcase this functionality. ;-) | |||
* | - Added a missing DISTINCT() to the pager query. Spotted by Steven. | Dries Buytaert | 2005-01-30 | |
| | ||||
* | - I had to use DISTINCT for the tracker.module's SQL queries. | Dries Buytaert | 2005-01-29 | |
| | ||||
* | - Patch #16111 by chx: generalized node_rewrite_query to db_rewrite_query. | Dries Buytaert | 2005-01-29 | |
| | ||||
* | - Patch #16253 by Goba: this simple and straightforward patch adds the ↵ | Dries Buytaert | 2005-01-27 | |
| | | | | ability to define different types of markers (while retaining the old default behaviour of the new and required markers to look the same). Someone with enough time on his hands might be able to partition the new marker to a real new marker and a changed marker (since node_is_new() returns TRUE even if nodes changed, and not only when they are new). This is the base on which the new patch can be worked though. | |||
* | - 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. | |||
* | - #15500: Fix tracker not showing nodes without comments. | Steven Wittens | 2005-01-19 | |
| | | | | - Tiny code style fix | |||
* | - The real code fixes ;) | Steven Wittens | 2005-01-17 | |
| | ||||
* | - Patch #14731 by chx: made it possible to rewrite node queries. | Dries Buytaert | 2005-01-16 | |
| | ||||
* | - Patch #14262 by Richard: help text improvements for the tracker module. | Dries Buytaert | 2004-12-16 | |
| | ||||
* | - Patch by Stefan: wrapped the help texts in <p></p> tags. Helps improve ↵ | Dries Buytaert | 2004-11-23 | |
| | | | | consistency. | |||
* | - Patch #12783 by Stefan: various small consistency/usability improvements. | Dries Buytaert | 2004-11-15 | |
| | ||||
* | - Modifed patch by ccourtne: made the tracker module take advantage of the ↵ | Dries Buytaert | 2004-11-04 | |
| | | | | node_comment_statistics table. Improves performance of the tracker page by facter 10 because it eliminates up to 20 SQL queries. | |||
* | - Patch #11577 by drumm: changed t('ago') -> t('%time ago', ...) to make it | Dries Buytaert | 2004-10-15 | |
| | | | | translatable in languages such as Spanish. | |||
* | - Small refinement with regard to the page title. | Dries Buytaert | 2004-10-06 | |
| | ||||
* | - Rewored 'track posts' to 'track'. | Dries Buytaert | 2004-10-06 | |
| | ||||
* | - Usability improvement: the 'recent posts' feature on the user pages lead | Dries Buytaert | 2004-10-06 | |
| | | | | | to a page with a confusing (wrong) title so I shuffled things around a bit and tab-ified it as 'track'. | |||
* | - Patch #8179 by JonBob: reintroduced menu caching. | Dries Buytaert | 2004-09-16 | |
| | ||||
* | - Patch by JonBob: for consistency and readability, add brief descriptions ↵ | Dries Buytaert | 2004-08-21 | |
| | | | | of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks. | |||
* | - Code improvements by Stefan: use capital letters for header titles (and ↵ | Dries Buytaert | 2004-08-19 | |
| | | | | added some missing t() functions). | |||
* | - Patch #9330: ucfirst() gives problem when used with multibyte charset. | Dries Buytaert | 2004-08-06 | |
| | | | | Replaced the use of ucfirst() with a CSS-based solution. | |||
* | - Patch #9543 by JonBob: added node-level access control! | Dries Buytaert | 2004-07-31 | |
| | ||||
* | - Patch #9478 by JonBob: allow printf-style arguments in pager_query. | Dries Buytaert | 2004-07-25 | |
| | | | | | | Currently pager_query() is the black sheep of the database query family, because it does not allow for printf-style arguments to be inserted in the query. This is a problem because it introduces developer confusion when moving from an unpaged query to a paged one, and it encourages substitution of variables directly into the query, which can bypass our check_query() security feature. This patch adds this ability to pager_query(). The change is backwards-compatible, but a couple calls to the function in core have been changed to use the new capability. |