summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - Bugfix: display the correct author. Patch by Nick.Dries Buytaert2004-01-15
|
* - Small bugfixDries Buytaert2004-01-15
|
* - Correction: I accidentically removed some $base_urls.Dries Buytaert2004-01-14
|
* Patch 5114 by Kjartan:Dries Buytaert2004-01-14
| | | | | | | - Adds drupal_set_header() and drupal_get_headers(). - Cache now stores custom headers. - Replace theme_head() with drupal_get_html_head(), added drupal_set_html_head(). - Added RSS autodiscover links to node, blog and taxonomy pages.
* - Fixed 5218: book page "administer" removes original author.Dries Buytaert2004-01-14
|
* - Usability improvement: added a book navigation block.Dries Buytaert2004-01-14
|
* - Corrected some breadcrumb trails and added a paragraph about upgrading.Dries Buytaert2004-01-14
|
* - Patch 4859: new drupal_unpack() consolidates duplicate code and makes itDries Buytaert2004-01-13
| | | | | easy to show avatars next to nodes and comments. Patch by Moshe. As a showcase, maybe Xtemplate should have an option to enable/disable avatars?
* - Fixing bug #5091: Inconsistent download method defaults.Kjartan Mannes2004-01-13
|
* - Made l() add 'class="active"' to the active/current URL.Dries Buytaert2004-01-12
|
* - Bugfix: fixed incorrect placement of book module navigation.Dries Buytaert2004-01-12
| | | | - Made some of the menu styles reusable by other lists.
* - Patch #5021: clean up URLs in _help texts. Patch by UnConeD.Dries Buytaert2004-01-11
|
* - Applied patch #4949: node_prepare() wastes resources. Patch by Goba.Dries Buytaert2004-01-11
|
* - Fixed bug 4745: undefined warning in sess_read().Dries Buytaert2004-01-11
|
* - Fixed bug #5074: standarized the user log messages.Dries Buytaert2004-01-11
|
* - Removed some debug info.Dries Buytaert2004-01-11
|
* Round 3 of aggregator improvements:Dries Buytaert2004-01-11
| | | | | | | | | | | | | | | - Added support for new tags: + Optinal feed image: <image> tag. + Dublin core dates: <dc:date> <dcterms:created>, <dcterms:issued>, <dcterms:modified>. - Usability improvements: + On the administration page, made the feed/bundle titles link to the feeds/bundles' pages. On the feed/bundle's page, made the 'Last updated' field link to the administration page. + Moved the 'syndication' menu one level down. - Updated some content sensitive help. - Further improved themeability. - Fixed some invalid HTML.
* - Fixed typo in CSS.Dries Buytaert2004-01-10
|
* Aggregator module improvements:Dries Buytaert2004-01-10
| | | | | | | | | | | | | + Added some a new theme fucntions to the aggregator to make it possible to theme the aggregator page. + Removed the <table> and much hardcoded CSS as well as theme("box")-es. + Added the aggregator's theme functions to Doxygen's themeable group. + Added breadcrumb trails to the aggregator pages. + Updated the core themes to take advantages of the improved themeability. Screenshot: http://buytaert.net/temporary/aggregator-makeover.jpg
* - Report XML parse errors.Kjartan Mannes2004-01-08
|
* - Fixed ability to override default HTTP headers in drupal_http_request().Steven Wittens2004-01-07
| | | | - Fixed issue with drupal_get_path_alias(): should return false for non-aliased URLs.
* - Many excellent news aggregator improvements by Kjartan:Dries Buytaert2004-01-07
| | | | | | | + Added drupal_http_request(). + Replaced rssfeeds with OPML feed subscription list. + Added support for pubDate. + Added support for conditional gets using ETag and Last-Modified.
* - Fixed default chameleon CSS.Dries Buytaert2004-01-07
|
* - Fixed bug #5004: missing <title>-tag in the example theme.Dries Buytaert2004-01-07
|
* - New and updated doxygen comments.Kjartan Mannes2004-01-06
|
* - Fixed bug #4922: made misc/drupal.css validate by removing some MozillaDries Buytaert2004-01-06
| | | | specific code.
* - Removed some dead code from drupal.css.Dries Buytaert2004-01-06
|
* - Fixed bug #4965: typo in the help text.Dries Buytaert2004-01-06
|
* - Fixed bug #4989: archive calendar cached too aggressively.Dries Buytaert2004-01-06
|
* - Renamed import to aggregator.Kjartan Mannes2004-01-06
| | | | - Added proper access checking to block and menu items.
* - Improved XML encoding fix. There is now a function drupal_xml_parser_create():Steven Wittens2004-01-06
| | | | | | | | | | | | | | | /** * Wrapper around xml_parser_create() which extracts the encoding from the XML * data first and sets the output encoding to UTF-8. This function should be * used instead of xml_parser_create(), because PHP's XML parser doesn't check * the input encoding itself. * * This is also where unsupported encodings should be converted. * Callers should take this into account: $data might have been changed after * the call. * * @param $data The XML data which will be parsed later. */
* - Implemented feature request/bug #4973: removed the throttle module's ↵Dries Buytaert2004-01-05
| | | | | | | dependence on cron to make adjusting the throttle level more responsive (when configured to).
* - Fixed bug 4972: an incorrect permission name prevented the throttle blockDries Buytaert2004-01-05
| | | | from being shown to users.
* Added checks to the drupal directory option to display an error when the ↵Steven Wittens2004-01-05
| | | | site name, email, slogan or statement aren't filled in.
* Committed filter separation patch: all filter-related things are now in ↵Steven Wittens2004-01-05
| | | | | | | | filter.module (which is a required module). To do this cleanly, I reorganised some bits of system.module: there is now a generic handler available for simple variable-get/set based configuration pages. Look at filter_admin() or system_view() for example usage. (based on the patch by Goba)
* - Changed some boxes to fieldsets/lengeds.Dries Buytaert2004-01-05
|
* Committed filter separation patch: all filter-related things are now in ↵Steven Wittens2004-01-05
| | | | | | | | filter.module (which is a required module). To do this cleanly, I reorganised some bits of system.module: there is now a generic handler available for simple variable-get/set based configuration pages. Look at filter_admin() or system_view() for example usage. (based on the patch by Goba)
* - Partial patch #4927: mass URL aliasing by Goba.Dries Buytaert2004-01-05
|
* - Patch 4948 by Goba: the poll module uses check_output() on the poll options.Dries Buytaert2004-01-04
|
* - Patch #4924: made the comment form themeable. Patch by Goba.Dries Buytaert2004-01-03
|
* - Fixing doxygen comment.Kjartan Mannes2004-01-02
|
* - Removing some dated scripts.Dries Buytaert2004-01-02
|
* - Log the search terms in a new watchdog category.Dries Buytaert2004-01-02
|
* - Patch 4916: improved preparation of $node->teaser and $node->body. Patch byDries Buytaert2004-01-02
| | | | Goba.
* - Removed the hard-coded list of watchdog types. The list is compiledDries Buytaert2004-01-02
| | | | | dynamically and can be extended through the watchdog() call. (Chris could use it to move the cron message to their own category.)
* - Fixed bug 4916: users can have disabled themes. Modified patch by Mathias.Dries Buytaert2004-01-02
| | | | | | | | | | | | 1. Remove the theme object. There is no need to keep it around since meta information for a theme can be retrieved via list_themes(). All we really need is the theme name. 2. Check if the user selected theme is enabled during theme initialization. This is the easiest place to put the check and doesn't mess with the user's settings. Their database profile will still contain the disabled theme selection, but they will be rendering the default admin-selected theme until their chosen theme is once again activated.
* - Patch #4858: search module did not remember the search filter. Patch byDries Buytaert2004-01-02
| | | | Kjartan.
* - Patch #4093: only invoke check_output() once for performance's sake. PatchDries Buytaert2004-01-02
| | | | by Goba.
* Fixed odd typo in the MySQL commentsSteven Wittens2003-12-30
|
* - Fixed typo: comment_delete_thread() -> _comment_delete_thread().Dries Buytaert2003-12-30
|