summaryrefslogtreecommitdiff
path: root/includes
Commit message (Collapse)AuthorAge
* - Patch by Moshe: sometimes modules display content composed by people whoDries Buytaert2003-02-02
| | | | | | | are not members of the site. Two examples are listhandler and import modules. There is no easy way for these modules to display the true author of the content. Usually, the content appears as if authored by Anonymous User. This 3 line patch enables modules to override the author name in their _view() hook.
* Patch by Ax:Dries Buytaert2003-02-01
| | | | | | | | | | | | | | | - Bad usage of css ID's: they may be used for a single element only, but were used as #node, #block, which can occur multiple times in a single page. - Moved HTML from theme to template - thats what templates are all about! - Added support for head() hook - Added support for diffentiating between boxes and blocks. - Typo: secundary -> secondary
* - Committed Alastair Tse's getallheaders() patch.Dries Buytaert2003-01-31
|
* - Fixed bug introduced by Moshe's common.inc patch; posting content wouldDries Buytaert2003-01-27
| | | | cause "Array" to be displayed.
* - Fixed XHTML glitch in the sitemap. Thanks Moshe and Michael.Dries Buytaert2003-01-27
|
* - Added sitemap feature to administration pages. Requested by variousDries Buytaert2003-01-26
| | | | people including Michael and Moshe.
* - Applied Moshe's _exit patch (slightly modified).Dries Buytaert2003-01-26
| | | | - Fixed bug in system.module.
* - Patch by Ulf: XHTML-ified the code.Dries Buytaert2003-01-21
|
* - Applied Ori's format_plural() patch; see mailing list for details.Dries Buytaert2003-01-21
| | | | NOTE: some modules in the contributions repository might need to be updated.
* - Replaced "&" by "&". Patch by Ulf.Dries Buytaert2003-01-20
|
* - Tidied up a SQL query.Dries Buytaert2003-01-20
| | | | - Changed a "&" to a "&".
* Patch by Marco:Dries Buytaert2003-01-15
| | | | | | | | | | | | | | | | | | - forum: fixed link to new topic - forum: new topic shows default forum correctly - forum: first_new is back; the anchor didn't consider multiple pages - forum: use standard pager, needed some changes/fixes to pager.inc - forum: some cleanup - forum: taxonomy hook - renamed first_new to simply new - added an optional parameter to pager_query for the count query - used the optional count param for paging forum topics - internal change: moving a topic doesn't duplicate the node anymore but just changes the forum (term); no change in functionality, and shadow still works (suggested by Dries). This probably also made some queries somewhat lighter. - bug fixed: anonymous users always saw "n (n new)" in the replies column - updated pager help and moved from _help to phpdoc
* - Enabled XML-RPC.Dries Buytaert2003-01-15
|
* - Fixed glitch in table_cell(). Spotted by Michael.Dries Buytaert2003-01-15
|
* - Small improvement to the admin menu based on feedback from Michael.Dries Buytaert2003-01-14
|
* - Added some more URL rewrite rules based on contributions from Gerhard.Dries Buytaert2003-01-12
|
* - Rewrite old-style URLs. Based on patch by Gerhard.Dries Buytaert2003-01-11
|
* - Fixed "clean URL" glitch in queue module. Patch by Ax.Dries Buytaert2003-01-11
| | | | - Small improvement to url(). Patch by Ax.
* - Added some isset()s to kill some "Undefined variable" warnings. Patch byDries Buytaert2003-01-09
| | | | Julio.
* - Fixed the pager. It might not be 100% correct, but it will work in 95%Dries Buytaert2003-01-09
| | | | of the cases.
* - Made sure the $links array is properly initialized before doing anDries Buytaert2003-01-08
| | | | | array_merge. According to Ori, this fixes a problem when using PHP as an ISAPI module with the Sambar server.
* - Added a few line breaks in the HTML emitted by the table() functionDries Buytaert2003-01-07
| | | | for better readability of the HTML code. Patch by Moshe.
* - Fixed bug in update of taxonomy links.Dries Buytaert2003-01-06
|
* - Forgot to update the taxonomy links. Reported by Adam.Dries Buytaert2003-01-06
|
* - Fixed typo in watchdog(). Reported by Marco.Dries Buytaert2003-01-06
|
* - Clean URL patch.Dries Buytaert2003-01-06
|
* Typo ('tat' > 'that')Steven Wittens2003-01-05
|
* - Added an extra parameter to watchdog() which lets you specifiy an "action"Dries Buytaert2003-01-04
| | | | | | | | | or "operation" link. - Made the main page of the administration section show an overview of all watchdog entries with such action link. - Fixed typo in PostgreSQL database scheme.
* - Tidied up the use of check_output(). Might make rendering pages a bitDries Buytaert2002-12-31
| | | | snappier (performance improvement).
* - Bugfix: wrapped an RSS item's description in a check_output() to ensureDries Buytaert2002-12-31
| | | | proper markup.
* - Code improvement: menu_tree() will no longer generate empty "<ul></ul>"Dries Buytaert2002-12-30
| | | | constructs.
* - Check input given to table rendering functions to avoid warning.Dries Buytaert2002-12-30
|
* - Added table rendering functions. As an example, I changed the node moduleDries Buytaert2002-12-29
| | | | to take advantage of it.
* - We don't have to show the main row anymore.Dries Buytaert2002-12-27
|
* - Made Drupal report an error when magic_quotes are disabled.Dries Buytaert2002-12-26
|
* - Refactored the administration pages.Dries Buytaert2002-12-24
|
* - Small improvement. Patch by Moshe.Dries Buytaert2002-12-21
|
* - Removed some backslashes. Reported by Adam.Dries Buytaert2002-12-20
|
* - Fixed bug in cache_clear_all(). Patch by Marco.Dries Buytaert2002-12-16
|
* - Forgot a tag.Dries Buytaert2002-12-15
|
* - Committed Marco's pager improvements.Dries Buytaert2002-12-14
| | | | - Fixed another annoyance with editing content.
* Applied patch by Natrak:Dries Buytaert2002-12-11
| | | | | | | | | | | | | - page_header() now adds Last-Modified and ETag http headers. - When running PHP as an Apache module page_header() will check the HTTP headers for conditional gets, and will only push the content when it fails. (Works for html and xml pages as they are all cached). Note: this is a PHP limitation, so until PHP makes it work for other web servers this won't work for them. - Added created field to cache database to hold the timestamp when the cache was created. - Changed cache_get() to return an object with ->data and ->created. - Update forum and locale modules.
* - Fixed typo. Reported by Kobus.Dries Buytaert2002-12-11
|
* o Permission improvements:Dries Buytaert2002-12-10
| | | | | | | | | | | | | | | | | | | | | | + Removed the "post content" permission and replaced it by more fine-grained permissions such as "maintain static pages", "maintain personal blog", "maintain stories", etc. o Usability improvements to teasers: + Teaser forms are no more. Teasers are extracted automatically but can also be instructed using a delimiter "---". Furthermore, when a post it too short for a teaser, the user won't be bother with teaser stuff anymore. + Added an option to set the teaser length, or to disable teasers all together. + When previewing a post, both the short (if any) and the full version of a post are shown. This addresses a common complaint; for example, when writing a book page there was no way you could preview the short version of your post. + Forum posts can be teasered now. This is particularly helpful in the context of drupal.org where we promote forum topics. o Bugfix: replaced all PHP short tags (<?) with long tags (<?php). o Bugfix: removed hard-coded dependence on comment module. o Bugfix: when the queue module was disabled, it was not possible to approve updated book pages. o Bugfix: applied modified version of Marco's node_teaser() fix.
* - Made sure session.cache_limiter is set to "none" as suggested by MosheDries Buytaert2002-12-08
| | | | and Ax.
* - Added "short_open_tag 1" to the PHP settings.Dries Buytaert2002-12-07
|
* - Added some extra information about PHP settings.Dries Buytaert2002-12-02
|
* - Patch by Jeremy to fix a module loading bug:Dries Buytaert2002-11-29
| | | | | | | | | - module.inc: + added call to _init for all modules - statistics.module: + added statistics_init() + moved all global actions into statistics_init()
* - Fixed small glitch in drupal_goto(): somethimes a "&" got appended. PatchDries Buytaert2002-11-29
| | | | by Marco.
* - Applied Ax's pager patch: includes documentation (rewrote it somewhat) and twoDries Buytaert2002-11-26
| | | | | bugfixes; one that makes taxanomy based paging work (eg. index.php?and=2,3) and one that kills a warning when the query returns no records.