summaryrefslogtreecommitdiff
path: root/modules/throttle
Commit message (Collapse)AuthorAge
...
* - Patch #11875 by Neil Drumm: block module configuration improvements.Dries Buytaert2004-10-31
| | | | | | | | | | The primary goal of this patch is to take the 'custom' and 'path' columns of the block overview page and make them into something understandable. As of Drupal 4.5 'custom' lacked an explanation which wasn't buried in help text and path required dealing with regular expressions. Every block now has a configuration page to control these options. This gives more space to make form controls which do not require a lengthy explanation. This page also gives modules a chance to put their block configuration options in a place that makes sense using new operations in the block hook. The only required changes to modules implementing hook_block() is to be careful about what is returned. Do not return anything if $op is not 'list' or 'view'. Once this change is made, modules will still be compatible with Drupal 4.5. Required changes to core modules are included in this path. An additional optional change to modules is to implement the additional $op options added. 'configure' should return a string containing the configuration form for the block with the appropriate $delta. 'configure save' will come with an additional $edit argument, which will contain the submitted form data for saving. These changes to core modules are also included in this patch.
* #11503: missing t() in throttle and filter modules.Steven Wittens2004-10-12
|
* - Patch by JonBob: for consistency and readability, add brief descriptions ↵Dries Buytaert2004-08-21
| | | | of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
* - Code improvements by Stefan: made all status messages consistent (and ↵Dries Buytaert2004-08-18
| | | | easier to translate).
* - Patch #8681 by stefan: fixed some broken URLs and help texts.Dries Buytaert2004-06-20
|
* - Patch #8679 by asimmonds: fixed spelling mistakes.Dries Buytaert2004-06-20
|
* Tabs patch!Dries Buytaert2004-06-18
| | | | | | | | | | | | | | | | | | CHANGES ------- + Introduced tabs. First, we extended the menu system to support tabs. Next, a tab was added for every link that was (1) an administrative action other than the implicit 'view' (2) relevant to that particular page only. This is illustrated by the fact that all tabs are verbs and that clicking a page's tab leads you to a subpage of that page. + Flattened the administration menu. The tabs helped simplify the navigation menu as I could separate 'actions' from 'navigation'. In addition, I removed the 'administer > configuration'-menu, renamed 'blocks' to 'sidebars' which I hope is a bit more descriptive, and made a couple more changes. Earlier, we already renamed 'taxonomy' to 'categorization' and we move 'statistics' under 'logs'. + Grouped settings. All settings have been grouped under 'administer > settings'. TODO ---- + Update core themes: only Xtemplate default supports tabs and even those look ugly. Need help. + Update contributed modules. The menu() hook changed drastically. Updating your code adhere the new menu() function should be 90% of the work. Moreover, ensure that your modue's admin links are still valid and that URLs to node get updated to the new scheme ('node/view/x' -> 'node/x').
* - Patch #4950 by Stefan (and Morbus): made watchdog messages translatable.Dries Buytaert2004-06-02
|
* - More code improvements by JonBob.Dries Buytaert2004-05-24
|
* Patch #5588 by bylund: XHTML improvements: <i> -> <em> and <b> -> <strong>.Dries Buytaert2004-03-20
|
* - Usability improvement: made the throttle message fit in the watchdog message.Dries Buytaert2004-02-23
|
* - Slightly improved the throttle watchdog messages.Dries Buytaert2004-02-22
|
* - Patch 5592 by Goba: let drupal_map_assoc() rule. :-)Dries Buytaert2004-02-15
| | | | - Renamed CHANGELOG to CHANGELOG.txt for Windows uses.
* - Throttle: fixed incorrect watchdog message (seems a leftover from before).Steven Wittens2004-02-05
|
* Patch 5287 by Stefan: multiline help texts should become inside a single ↵Dries Buytaert2004-01-23
| | | | $output.
* - Removed the 'enable/disable' setting from the throttle module. To disableDries Buytaert2004-01-17
| | | | a module, disable it from the modules configuration page.
* - Small cleanupsDries Buytaert2004-01-15
|
* - Patch #5021: clean up URLs in _help texts. Patch by UnConeD.Dries Buytaert2004-01-11
|
* - 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.
* - 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.)
* - XHTML improvements: <b> -> <strong>. Patch by Stefan.Dries Buytaert2003-12-29
|
* - Fixed throttle block problem. Patch by Jeremy.Dries Buytaert2003-12-04
|
* - Better separation between throttle and statistics module code. Patch by ↵Dries Buytaert2003-11-30
| | | | Jeremy.
* - More throttle improvements. Patch by Jeremy.Dries Buytaert2003-11-29
|
* - Throttle module improvements by Jeremy:Dries Buytaert2003-11-27
| | | | | | | + Fix modules help to read better and be accurate + Add groups to throttle_settings() + Provide much more detailed information in all _settings options + Fix links in module's "Throttle status" block
* - Usability improvement: replaced many selection boxes by radio buttons.Dries Buytaert2003-11-07
| | | | Patch by Stefan.
* - Fixed typos in the throttle module documentation. Patch by marky.Dries Buytaert2003-10-25
|
* - Fixed some link titles that were no longer correct due to the menuDries Buytaert2003-10-09
| | | | | | changes. - Fixed some broken links.
* - Committed part 3 of Michael's help system improvements: removed the $helpDries Buytaert2003-10-09
| | | | parameter from the menu() function.
* - Help system improvements: eliminated the _system hook. Patch by Michael.Dries Buytaert2003-10-07
| | | | | | - Bloggerapi module fixes. Patch by Kjartan. - Coding style fixes. Patch by Michael.
* - Help improvements and translation improvements from Michael. Thanks!Dries Buytaert2003-10-03
|
* - Added $Id$ tags. Patch by Chris.Dries Buytaert2003-09-25
|
* - Updated the throttle module to the new documentation scheme.Dries Buytaert2003-08-20
|
* - Michael Frankowski's excellent help text improvements!Dries Buytaert2003-05-29
|
* - See http://lists.drupal.org/pipermail/drupal-devel/2003-February/021824.html.Dries Buytaert2003-02-11
|
* - Tidied up XHTML. Patch by Ulf.Dries Buytaert2003-01-23
| | | | - Added missing t() function. Patch by Stefan.
* - 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.
* - Clean URL patch.Dries Buytaert2003-01-06
|
* - Fix blocks of throttle and queue module. Patch by Gerhard.Dries Buytaert2002-11-27
|
* - Committed Jeremy's incarnation of the statistics module. Last minutesDries Buytaert2002-10-13
changes include: * a couple of coding style changes, renamed some "stats" into "statistics", etc. * removed the "Who's online" block from the user module. * added db_affected_rows() to the resp. database abstraction layers and made the statistics module use db_affected_rows() instead. * added update logic to "update.php".