summaryrefslogtreecommitdiff
path: root/modules/system/system.module
Commit message (Collapse)AuthorAge
* - Patch #38692 by saerdna: removed duplicate form-text class.Dries Buytaert2005-11-24
|
* - Patch #38349 by chx: form API bugfixes.Dries Buytaert2005-11-23
|
* - Patch #37752 by chx and Richard: renamed #post_process to #after_build.Dries Buytaert2005-11-21
|
* - Patch #36333 by Tobias Maier: make sure to enable the default theme.Dries Buytaert2005-11-14
|
* - Patch #35575 by Richard, chx and Ber: system module no longer saves the ↵Dries Buytaert2005-11-13
| | | | files and tmp dir.:
* - Patch #35644 by webchick: forms API simplificiations.Dries Buytaert2005-11-12
|
* - Patch #26249 by Morbus: improved handling of temporary files/directory.Dries Buytaert2005-11-12
| | | | | | | | If your module uses variable_get('file_directory_temp', ...) or variable_get('file_directory_path', ...) please update it to use the new API. A list of affected modules is available at http://drupal.org/node/26249#comment-54194.
* - Patch #22215 by Richard Archer: refactored primary and secondary links.Dries Buytaert2005-11-03
| | | | | | | | | Deprecates the primary_links module. This patch was much needed. Thanks Richards! NOTE: if some themers could investigate if there is room for improvement with regard to theming, that would be awesome.
* - Patch #26249 by crunchywelch, Junyor: use upload_tmp_dir as default ↵Dries Buytaert2005-11-01
| | | | temporary directory. Fixed file problems on Windows NT systems.
* - Patch #26139 by webchick / Kieran / documentation team: improved admin ↵Dries Buytaert2005-11-01
| | | | help of core modules! /
* - Patch #35759 by mikeryan: fixed typo in file_directory_temp fieldname.Dries Buytaert2005-11-01
|
* - #35264: More form api fixesSteven Wittens2005-10-26
|
* - Patch #34086 by chx: fixed blog regions being broken.Dries Buytaert2005-10-25
|
* - Patch #30930 by m3avrck/deekayen: cured PHP5 warnings.Dries Buytaert2005-10-22
|
* - Patch #34831 by asimmonds: added missing table header.Dries Buytaert2005-10-22
|
* - #34401: Validation error (form method must be lowercase 'get' or 'post')Steven Wittens2005-10-19
|
* - Patch #34052 by webchick: fixed typo in form code.Dries Buytaert2005-10-18
|
* - #33433: More form API fixes, and error handling improvements by Chx.Steven Wittens2005-10-13
|
* - Patch #33752 by chx, adrian, et al: another batch of form API changes/fixes.Dries Buytaert2005-10-11
|
* - Second batch of form API fixes by chx.Dries Buytaert2005-10-09
|
* - Modified version of patch #32622 by kbahey: added 'site ↵Dries Buytaert2005-10-08
| | | | | | offline/maintenance' feature. (Untested because the admin/settings page doesn't work yet.)
* - Patch #33433 by chx: fixed a number of form API problems.Dries Buytaert2005-10-08
| | | | | | | | | | | * Default form value * Leftover debug function in form.inc * PHP5 issue with comment date (I got this patch from another issue) * Validation error fix (was calling legacy form validate) * Lots o' warnings on comment preview * Filter tips plus argument (gremlins. I swear this was not there.) * Message to clear what's going on with system settings * Non-freetagging taxonomies fixed
* - 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.
* - Patch #3986 by James (and Boris :)):consolidated all feed-related settings ↵Dries Buytaert2005-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 #30935 by m3avrck: generate width and height attributes for the ↵Dries Buytaert2005-09-13
| | | | theme screenshots on the theme administration page.
* - Patch #26778 by Uwe: fixed incorrect form description/help.Dries Buytaert2005-09-08
|
* - #30716: Fix typo in system.moduleSteven Wittens2005-09-08
|
* - Patch #26033 by m4avrck: fixed PHP5 warnings (call by reference)Dries Buytaert2005-09-08
|
* - Patch #30122 by m3verick: changed include_once()'s to include "./$file"Dries Buytaert2005-09-08
| | | | for performance's sake.
* - Patch #29506 by Nedjo: block regions were not initiated for newly enabled ↵Dries Buytaert2005-08-28
| | | | themes.
* - Patch #29785 by Chx: multiple node types were broken so we refactoredDries Buytaert2005-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 Buytaert2005-08-25
|
* - Patch #29274 by Jeremy: the "fuzzy cache" mechanism is supposed to enforce ↵Dries Buytaert2005-08-22
| | | | a minimum time before the cache table is flushed. Logical errors in the fuzzy cache implementation are leading to the cache table being flushed more frequently. Configuration is simplified by removing all references to "strict" and "loose" caches. Instead, the cache is either "disabled" or "enabled". Additionally, the site administrator can now configure the "minimum cache lifetime", the minimum amount of time cached data will remain cached.
* - Patch #29002 by Neil: list_themes() currently returns all themes, not just ↵Dries Buytaert2005-08-18
| | | | | | | | enabled themes. This functionality is only used in one place- configuration for disabled themes. These configuration pages can be removed with a usability improvement since you shouldn't be able to configure things which are disabled. Additionally, this allows us to remove some extra logic in system_user(). And it it more consistent with the module API which only lists enabled modules. list_themes() sorts the results by name. This uses filesort in MySQL since there aren't any indexes. Sorting is not used except in system_user(). This one use can be handled with ksort since it is not often executed (only on the user edit screen when multiple themes are enabled). And a one line fix to remove a variable in system_user() is in here too.
* - Patch #16216 by nedjo: multiple block regions!Dries Buytaert2005-08-16
|
* - Patch #27633 by Tobias:Dries Buytaert2005-07-31
| | | | | + made it possible to specify a subject when submitting a message on the contact form. + fixed some bugs/glitches.
* - Removed some whitespaceDries Buytaert2005-07-31
|
* - #23310: Gray out picture theme settings if pictures are disabled.Steven Wittens2005-07-30
|
* - #26822: Fix logo upload being broken (drumm)Steven Wittens2005-07-26
|
* - #26688: Add mbstring support to Drupal and clear up string handling fuzzies.Steven Wittens2005-07-25
|
* - Modified patch #27131 by DriesK: removed some cache_clear_all()s.Dries Buytaert2005-07-23
|
* - Modified patch #25031 by chx: modified node_list() so one has both the ↵Dries Buytaert2005-07-17
| | | | | | module and its type. TODO: update migration page in handbook.
* - Patch #25603 by Stefan: made the sizes of forms consistent.Dries Buytaert2005-06-27
| | | | TODO: document the defaults in the PHPdoc comments.
* - Patch #16204 by Thox: committed the collapsible form elements patch.Dries Buytaert2005-06-21
| | | | | | NOTE: this patch works well, but the improved node edit form still has some rough edges. It is important that we continue to improve usability. Give it a try.
* - Patch #24450 by Neil: removed some dead code.Dries Buytaert2005-06-07
|
* - #23736: Remove dependency of system.module on node.moduleSteven Wittens2005-06-01
|
* - #20809: User-configurable, per-theme, optional favicons.Steven Wittens2005-05-25
|
* - Patch #16303 by Gerhard: fixed some warnings.Dries Buytaert2005-05-21
|
* - Patch #23028 by chx: fixed file_check_location() problems.Dries Buytaert2005-05-17
|
* - Patch #22883 by darix: system_theme_listing() passes scalar to ↵Dries Buytaert2005-05-14
| | | | drupal_attributes(). this patch fixes it and wraps the params into array()