Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Implemented feature request/bug #4973: removed the throttle module's ↵ | Dries Buytaert | 2004-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 block | Dries Buytaert | 2004-01-05 |
| | | | | from being shown to users. | ||
* | Added checks to the drupal directory option to display an error when the ↵ | Steven Wittens | 2004-01-05 |
| | | | | site name, email, slogan or statement aren't filled in. | ||
* | Committed filter separation patch: all filter-related things are now in ↵ | Steven Wittens | 2004-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 Buytaert | 2004-01-05 |
| | |||
* | Committed filter separation patch: all filter-related things are now in ↵ | Steven Wittens | 2004-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 Buytaert | 2004-01-05 |
| | |||
* | - Patch 4948 by Goba: the poll module uses check_output() on the poll options. | Dries Buytaert | 2004-01-04 |
| | |||
* | - Patch #4924: made the comment form themeable. Patch by Goba. | Dries Buytaert | 2004-01-03 |
| | |||
* | - Fixing doxygen comment. | Kjartan Mannes | 2004-01-02 |
| | |||
* | - Removing some dated scripts. | Dries Buytaert | 2004-01-02 |
| | |||
* | - Log the search terms in a new watchdog category. | Dries Buytaert | 2004-01-02 |
| | |||
* | - Patch 4916: improved preparation of $node->teaser and $node->body. Patch by | Dries Buytaert | 2004-01-02 |
| | | | | Goba. | ||
* | - Removed the hard-coded list of watchdog types. The list is compiled | Dries Buytaert | 2004-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 Buytaert | 2004-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 by | Dries Buytaert | 2004-01-02 |
| | | | | Kjartan. | ||
* | - Patch #4093: only invoke check_output() once for performance's sake. Patch | Dries Buytaert | 2004-01-02 |
| | | | | by Goba. | ||
* | Fixed odd typo in the MySQL comments | Steven Wittens | 2003-12-30 |
| | |||
* | - Fixed typo: comment_delete_thread() -> _comment_delete_thread(). | Dries Buytaert | 2003-12-30 |
| | |||
* | General filtering improvements | Steven Wittens | 2003-12-30 |
| | | | | | | - Re-added STYLE/ON*= filtering (this got lost a while ago due to reorganisation) - Added form_group's to node.module's filter options - Fixed incorrect filter usage in poll.module | ||
* | - Made it possible to set and display multiple status messages. Modified ↵ | Dries Buytaert | 2003-12-30 |
| | | | | | | patch by Kjartan. | ||
* | - Specify default XML encoding for not-so-well-formed files | Steven Wittens | 2003-12-30 |
| | | | | (sorry last commit, I promise :P) | ||
* | - Improved regexp for encoding extraction | Steven Wittens | 2003-12-30 |
| | |||
* | - Improved regexp for encoding extraction | Steven Wittens | 2003-12-30 |
| | |||
* | - Bugfix: the XML parser in PHP4 requires you to specify the input encoding ↵ | Steven Wittens | 2003-12-30 |
| | | | | | | | explicitly. Added a short piece of code that does this. (see drupal.org's Drupal Talk to see this bug in action) | ||
* | - Updated code to use new semantics of url() and l(). | Dries Buytaert | 2003-12-29 |
| | |||
* | - Added $fragment identifier to url() and l(). Patch by Goba. | Dries Buytaert | 2003-12-29 |
| | |||
* | - Fixing temp directory check. | Kjartan Mannes | 2003-12-29 |
| | |||
* | - Fixed a weird typo introduced by the <b> -> <strong> patches and indented | Dries Buytaert | 2003-12-29 |
| | | | | the code a bit better. | ||
* | - Fixed typo introduced by the <b> -> <strong> patches. This might need a ↵ | Dries Buytaert | 2003-12-29 |
| | | | | | | better fix. | ||
* | - XHTML improvements: <b> -> <strong>. Patch by Stefan. | Dries Buytaert | 2003-12-29 |
| | |||
* | - Updated the user login block to validate as XHTML strict: the | Dries Buytaert | 2003-12-29 |
| | | | | | | | | <div class="user-login-block"> is now inside the <form> instead of the other way around. - Simplified the user login block by removing some CSS that was no longer needed. The block module already emits block-related classes and an id. | ||
* | - Removed some dead CSS code. | Dries Buytaert | 2003-12-29 |
| | |||
* | - Fixed glitch with form_radio(). Reported by Kjartan. | Dries Buytaert | 2003-12-29 |
| | |||
* | - Fixed bug 4832: only list nodes for the specified day. Patch by Goba. | Dries Buytaert | 2003-12-29 |
| | |||
* | - Fixed bug #4842: get_cfg_var() -> ini_get() | Dries Buytaert | 2003-12-29 |
| | |||
* | - Removed the ID from radio buttons: we'll need to rethink this a bit. | Dries Buytaert | 2003-12-29 |
| | |||
* | - Made the chameleon theme display comment authors. Patch by Kjartan. | Dries Buytaert | 2003-12-29 |
| | |||
* | - Removed some dead code and improved the link emission. Patch by Kjartan. | Dries Buytaert | 2003-12-29 |
| | |||
* | - Tidied up some inconsistencies in the code: scripts/code-style.sh is your ↵ | Dries Buytaert | 2003-12-28 |
| | | | | friend. | ||
* | - Some fixes to the code-style.sh script. | Dries Buytaert | 2003-12-28 |
| | |||
* | - Added a note about the introduction of the file API. | Dries Buytaert | 2003-12-28 |
| | |||
* | - Locale module improvements: better performance, reduce memory footprint. | Dries Buytaert | 2003-12-28 |
| | | | | Patch by Bart. | ||
* | - Removed the id= from checkboxes: it is acting weird in some cases. :oI | Dries Buytaert | 2003-12-28 |
| | |||
* | Fixed bug #4551: missing {} for prefix support | Dries Buytaert | 2003-12-28 |
| | |||
* | - Improved Doxygen documentation. | Kjartan Mannes | 2003-12-27 |
| | |||
* | - Fixed fileuploads for nodes failing without preview. | Kjartan Mannes | 2003-12-27 |
| | |||
* | - Fixed switch in file_create_url(). | Kjartan Mannes | 2003-12-27 |
| | | | | | - Fixed profile module not extracting mime type. - Improved file matching in profile module. | ||
* | - Added file handling. Work by Kjartan. | Dries Buytaert | 2003-12-26 |
| | |||
* | - Removed the import module's custom menu. Added a 'news aggregator' menu to | Dries Buytaert | 2003-12-26 |
| | | | | the navigation block. |