summaryrefslogtreecommitdiff
path: root/modules/throttle
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-11-21 20:14:19 +0000
committerDries Buytaert <dries@buytaert.net>2006-11-21 20:14:19 +0000
commitb004f328eec10308fe3b310c640d5f376241f4cd (patch)
treef92bde5cb09039f947505b35ef68134a409f83c6 /modules/throttle
parente08f5f27bd5b5dd41f0dbcfcca9fad0418aafb55 (diff)
downloadbrdo-b004f328eec10308fe3b310c640d5f376241f4cd.tar.gz
brdo-b004f328eec10308fe3b310c640d5f376241f4cd.tar.bz2
- Patch #92992 by webchick and neclimdul: clean up documentation that is superseded by the new 'by module' administration dashboard.
Diffstat (limited to 'modules/throttle')
-rw-r--r--modules/throttle/throttle.module7
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/throttle/throttle.module b/modules/throttle/throttle.module
index 3b24cc77b..952e197ff 100644
--- a/modules/throttle/throttle.module
+++ b/modules/throttle/throttle.module
@@ -124,13 +124,6 @@ function throttle_help($section) {
case 'admin/help#throttle':
$output = '<p>'. t('The throttle module provides a congestion control throttling mechanism for automatically detecting a surge in incoming traffic. If the site gets linked to by a popular website, or otherwise comes under a "Denial of Service" (DoS) attack, your webserver might become overwhelmed. This mechanism is utilized by other modules to automatically optimize their performance by temporarily disabling CPU-intensive functionality. For example, in the site theme, you might choose to disable pictures when the site is too busy (reducing bandwidth), or in modules, you might choose to disable some complicated logic (reducing CPU utilization).') .'</p>';
$output .= '<p>'. t('The congestion control throttle can be automatically enabled when the number of anonymous or authenticated users currently visiting the site exceeds the specified threshold. ') .'</p>';
- $output .= t('<p>You can</p>
-<ul>
-<li>enable throttle for modules at <a href="@admin-modules">administer &gt;&gt; site configuration &gt;&gt; modules</a>.</li>
-<li>enable throttle for blocks at <a href="@admin-block">administer &gt;&gt; site building &gt;&gt; blocks</a>.</li>
-<li>administer throttle at <a href="@admin-settings-throttle">administer &gt;&gt; site configuration &gt;&gt; throttle</a>.</li>
-</ul>
-', array('@admin-modules' => url('admin/settings/modules'), '@admin-block' => url('admin/build/block'), '@admin-settings-throttle' => url('admin/settings/throttle')));
$output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@throttle">Throttle page</a>.', array('@throttle' => 'http://drupal.org/handbook/modules/throttle/')) .'</p>';
return $output;
case 'admin/settings/throttle':