- 04 Jan, 2003 1 commit
-
-
Dries authored
- Added an extra parameter to watchdog() which lets you specifiy an "action" 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.
-
- 31 Dec, 2002 2 commits
- 30 Dec, 2002 1 commit
-
-
Dries authored
- Check input given to table rendering functions to avoid warning.
-
- 29 Dec, 2002 1 commit
-
-
Dries authored
- Added table rendering functions. As an example, I changed the node module to take advantage of it.
-
- 26 Dec, 2002 1 commit
-
-
Dries authored
- Made Drupal report an error when magic_quotes are disabled.
-
- 24 Dec, 2002 1 commit
-
-
Dries authored
- Refactored the administration pages.
-
- 16 Dec, 2002 1 commit
-
-
Dries authored
- Fixed bug in cache_clear_all(). Patch by Marco.
-
- 15 Dec, 2002 1 commit
-
-
Dries authored
- Forgot a tag.
-
- 14 Dec, 2002 1 commit
-
-
Dries authored
- Committed Marco's pager improvements. - Fixed another annoyance with editing content.
-
- 11 Dec, 2002 2 commits
-
-
Dries authored
Applied patch by Natrak: - 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.
-
Dries authored
- Fixed typo. Reported by Kobus.
-
- 29 Nov, 2002 1 commit
-
-
Dries authored
- Fixed small glitch in drupal_goto(): somethimes a "&" got appended. Patch by Marco.
-
- 21 Nov, 2002 1 commit
-
-
Dries authored
- SID will now only be appended when session.use_trans_sid is set. Patch by Kjartan.
-
- 17 Nov, 2002 1 commit
-
-
Dries authored
Patch based on work of Kjartan: - Changed cache API. - Fixed caching bug in comment.module. Odd this hasn't been reported yet. - Fixed caching bug in forum.module. - Fixed caching bug in system.module. - Fixed caching bug in block.module. - Simplified caching support in forum.module thanks to improved cache API.
-
- 09 Nov, 2002 1 commit
-
-
Dries authored
* Added Jeremy's pager: "This is a simple, generic pager for Drupal-CVS. It is designed to be easily themeable and expandable. The code is highly-commented to enhance readability." "Pagers are constructed by combining the provided pieces (all of which can be easily modified to display the text or image you prefer) into your custom pager." * Statistics module fixes by Jeremy: - removed superfluous check for existence of watchdog() - saving changes in admin page displays status and returns same page - no longer return 1971/01/01 in "view statistics" table - switched from "!=" to "<>" in SQL queries for ANSI-SQL compliance - switched from "MAX(timestamp) as timestamp" to "MAX(timestamp) as max_timestamp" moving towards ANSI-SQL compliance. * Added a "theme_item_list" function to format itemized lists. Also changed a couple of modules to take advantage of it. Makes for a more consistent UI.
-
- 26 Oct, 2002 1 commit
-
-
Dries authored
- Committed Marco's block rewrite: + Blocks are not longer called if not rendered: major performance improvement. + Fixed some bugs (preview option was broken, path option was broken). + Removed "ascii"-type blocks. + Added permission to for "PHP blocks" + ... NOTES: + You'll want to run "update.php": ALTER TABLE blocks DROP remove; ALTER TABLE blocks DROP name; + You'll want to update your custom modules as well as the modules in the contrib repository. Block function should now read: function *_block($op = "list", $delta = 0) { if ($op == "list") { return array of block infos } else { return subject and content of $delta block } }
-
- 20 Oct, 2002 2 commits
- 04 Oct, 2002 1 commit
-
-
Kjartan authored
-
- 27 Sep, 2002 1 commit
-
-
Kjartan authored
array. Thanks Moshe.
-
- 08 Aug, 2002 1 commit
-
-
Dries authored
- An attempt to solve drupal_goto() in presence of session IDs.
-
- 06 Jul, 2002 1 commit
-
-
Dries authored
- Made it possible to store arrays in the variables table. Patch by Marco.
-
- 05 Jul, 2002 1 commit
-
-
Dries authored
- A variety of small localization updates. Patch by Ori Folger.
-
- 15 Jun, 2002 1 commit
-
-
Kjartan authored
-
- 14 Jun, 2002 1 commit
-
-
Kjartan authored
-
- 31 May, 2002 1 commit
-
-
Dries authored
- Added missing translations and the like.
-
- 21 May, 2002 1 commit
-
-
Steven Wittens authored
-
- 13 May, 2002 1 commit
-
-
Kjartan authored
-
- 12 May, 2002 3 commits
-
-
Kjartan authored
-
Dries authored
- Fixed typo.
-
Kjartan authored
- fixed block permissions. - fixed user admin page errors: http://www.drupal.org/node.php?id=173. - cleaned up common.inc a bit: removed format_info, path_img, field_merge.
-
- 11 May, 2002 1 commit
-
-
Kjartan authored
- coding style clean ups. - fixed taxonomy causing errors.
-
- 05 May, 2002 1 commit
-
-
Dries authored
- Fixed broken RSS feeds. TODO: + Make l()/lm()/la() urlencode() URLs? + Fix problems with the #-trick in drupal_url()/l().
-
- 04 May, 2002 2 commits
- 03 May, 2002 1 commit
-
-
Kjartan authored
-
- 02 May, 2002 2 commits
- 27 Apr, 2002 1 commit
-
-
Dries authored
Patch by Moshe Weitzman: - request_uri() behaves on non-apache web servers. i've tested on IIS and apache (many platforms). - modules may now implement the _search_item() hook which overrides the default formatting of search results. modules already can customize which fields are indexed. no module currently uses this hook but externalpage.module expects to do so. - added an optional $attribs argument to l(), lm(), and la() which is an associative array of attributes which are inserted into the <a> tag (feature #146). - drupal_str_replace() is deleted (i had recently added it). i verified that no scripts are currently calling this function. use strtr() or str_replace() instead. - arbitrary elements may be added to the <channel> and <item> blocks of an RSS feed by passing the $args associative array. the core RSS engine is now able to support elements like <cloud> and <catagory> [1] and RSS 1.0[2] [1] http://backend.userland.com/rss092 [2] http://groups.yahoo.com/group/rss-dev/files/namespace.html
-