]> granicus.if.org Git - apache/commitdiff
And one more time to make 'validate-xml' happy.
authorRich Bowen <rbowen@apache.org>
Thu, 22 Apr 2010 12:04:37 +0000 (12:04 +0000)
committerRich Bowen <rbowen@apache.org>
Thu, 22 Apr 2010 12:04:37 +0000 (12:04 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936803 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_dialup.html.en
docs/manual/mod/mod_dialup.xml

index c7971299d4ff6092682e2cc16d86939452dee2e8..7b048be3acb67456f524018ae77223a668d4453a 100644 (file)
@@ -29,7 +29,9 @@
 <tr><th><a href="module-dict.html#SourceFile">SourceĀ File:</a></th><td>mod_dialup.c</td></tr></table>
 <h3>Summary</h3>
 
-It is a module that sends static content at a bandwidth rate limit, defined by the various old modem standards. So, you can browse your site with a 56k V.92 modem, by adding something like this:
+<p>It is a module that sends static content at a bandwidth rate limit, defined
+by the various old modem standards. So, you can browse your site with a 56k 
+V.92 modem, by adding something like this:</p>
 
 <div class="example"><p><code>
 &lt;Location /mysite&gt;<br />
@@ -37,7 +39,11 @@ ModemStandard V.92<br />
 &lt;/Location&gt;
 </code></p></div>
 
-Previously to do bandwidth rate limiting modules would have to block an entire thread, for each client, and insert sleeps to slow the bandwidth down.  Using the new suspend feature, a handler can get callback N milliseconds in the future, and it will be invoked by the Event MPM on a different thread, once the timer hits.  From there the handler can continue to send data to the client.
+<p>Previously to do bandwidth rate limiting modules would have to block an entire
+thread, for each client, and insert sleeps to slow the bandwidth down.  
+Using the new suspend feature, a handler can get callback N milliseconds in 
+the future, and it will be invoked by the Event MPM on a different thread, 
+once the timer hits.  From there the handler can continue to send data to the client.</p>
 </div>
 <div id="quickview"><h3 class="directives">Directives</h3>
 <ul id="toc">
index f6b27d2b3f6dc52d8eb0cbe60898bc2745849201..02a1e063817ef2b15afc49aa0498d071b96a563a 100644 (file)
@@ -41,7 +41,9 @@ the document to validate. -->
 <identifier>dialup_module</identifier>
 
 <summary>
-It is a module that sends static content at a bandwidth rate limit, defined by the various old modem standards. So, you can browse your site with a 56k V.92 modem, by adding something like this:
+<p>It is a module that sends static content at a bandwidth rate limit, defined
+by the various old modem standards. So, you can browse your site with a 56k 
+V.92 modem, by adding something like this:</p>
 
 <example>
 &lt;Location /mysite&gt;<br />
@@ -49,7 +51,11 @@ ModemStandard V.92<br />
 &lt;/Location&gt;
 </example>
 
-Previously to do bandwidth rate limiting modules would have to block an entire thread, for each client, and insert sleeps to slow the bandwidth down.  Using the new suspend feature, a handler can get callback N milliseconds in the future, and it will be invoked by the Event MPM on a different thread, once the timer hits.  From there the handler can continue to send data to the client.
+<p>Previously to do bandwidth rate limiting modules would have to block an entire
+thread, for each client, and insert sleeps to slow the bandwidth down.  
+Using the new suspend feature, a handler can get callback N milliseconds in 
+the future, and it will be invoked by the Event MPM on a different thread, 
+once the timer hits.  From there the handler can continue to send data to the client.</p>
 </summary>
 
 <directivesynopsis>