Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Patch #169426 by Crell: split tracker module. | Dries Buytaert | 2007-08-23 |
| | |||
* | #156392 by iacopopecchi, patch by myself: tracker module depends on comment ↵ | Gábor Hojtsy | 2007-07-04 |
| | | | | module (uses its tables and constants without checking for the module being present), so this dependency should be codified in the .info file | ||
* | #154064 by pwolanin: get hook_help() up to speed to menu changes, allowing ↵ | Gábor Hojtsy | 2007-06-30 |
| | | | | router path based lookups, and also full path argument lookup with a passed argument array | ||
* | - Patch #146910 by dww: only allow enabling modules with the same Drupal ↵ | Dries Buytaert | 2007-06-08 |
| | | | | core compatibility version. | ||
* | - Patch #137767 by chx and pwolanin: multiple menu support. | Dries Buytaert | 2007-05-16 |
| | |||
* | - Patch #128082 by Goba et al: Allow localization of built-in menu items. | Dries Buytaert | 2007-04-30 |
| | |||
* | - Patch #111347 by Steven: refactor url() and l(). | Dries Buytaert | 2007-02-15 |
| | |||
* | - Patch #113603 by chx: first crack at re-implementing tabs. | Dries Buytaert | 2007-02-11 |
| | |||
* | - Patch #34755 by chx et al: faster menu system. HEAD is temporary broken ↵ | Dries Buytaert | 2007-01-24 |
| | | | | and there is no upgrade path yet. | ||
* | - Always check the username. | Dries Buytaert | 2007-01-10 |
| | |||
* | #44276 by dww. Include updated posts in tracker calculations. | Neil Drumm | 2006-12-29 |
| | |||
* | #100516: CSS preprocessor to cache and compress all .css files. Benchmarks ↵ | Steven Wittens | 2006-12-10 |
| | | | | show up to 40% faster page loads. | ||
* | - Patch #8716 by webchick et al: small usability improvement: don't show ↵ | Dries Buytaert | 2006-12-05 |
| | | | | empty tables. | ||
* | #100563: Conditional loading of (some) module.css files | Steven Wittens | 2006-12-01 |
| | |||
* | - 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 |
| |