You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bu...@apache.org on 2011/08/25 13:03:51 UTC

svn commit: r794903 [7/8] - in /websites/staging/trafficserver/trunk/content: ./ docs/ docs/trunk/admin/ docs/trunk/admin/cluster-howto/ docs/trunk/admin/configuration-files/ docs/trunk/admin/configuring-cache/ docs/trunk/admin/configuring-traffic-serv...

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/io-guide/io-buffers.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/io-guide/io-buffers.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/io-guide/io-buffers.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="guide-to-cache-api/index.en.html">Next</a></span>
-      
-        <span class="nav"><a href="./vios.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="IOBuffers">IO Buffers</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="guide-to-cache-api/index.en.html">Next</a>
+        
+        <a href="./vios.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="IOBuffers">IO Buffers</h2>
 <p>The IO buffer data structure is the building block of the vconnection abstraction. 
 An <strong>IO buffer</strong> (<code>TSIOBuffer</code>) is composed of a list of buffer blocks that 
 point to buffer data. Both the buffer block (<code>TSIOBufferBlock</code>) and buffer 
@@ -65,21 +76,24 @@ you must allocate an <code>TSIOBufferRea
 <code>TSIOBuffer</code>. To consume bytes that have been read, you must call <code>TSIOBufferConsume</code>.</p>
 </li>
 </ul>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/io-guide/net-vconnections.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/io-guide/net-vconnections.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/io-guide/net-vconnections.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="./transformations.en.html">Next</a></span>
-      
-        <span class="nav"><a href="./index.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="NetVconnections">Net Vconnections</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="./transformations.en.html">Next</a>
+        
+        <a href="./index.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="NetVconnections">Net Vconnections</h2>
 <p>A <strong>network</strong> <strong>vconnection</strong> (or<strong> netvconnection</strong>) is a wrapper around a 
 TCP socket that enables the socket to work within the Traffic Server vconnection 
 framework. See <a href="IOGuide.html#Vconnections">vconnections</a> for more information 
@@ -47,21 +58,24 @@ about the Traffic Server abstraction for
 <li><a href="NetvconnectionFunctions.html#TSNetAccept">TSNetAccept</a></li>
 <li><a href="TSNetConnect.html">TSNetConnect</a></li>
 </ul>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/io-guide/transformations.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/io-guide/transformations.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/io-guide/transformations.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="./vios.en.html">Next</a></span>
-      
-        <span class="nav"><a href="./net-vconnections.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="Transformations">Transformations</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="./vios.en.html">Next</a>
+        
+        <a href="./net-vconnections.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="Transformations">Transformations</h2>
 <h3 id="VconnectionImplementorsView">The Vconnection Implementor's View</h3>
 <p>A VConnection implementor writes only transformations. All other VConnections 
 (net VConnections and cache VConnections) are implemented in iocore. As mentioned 
@@ -176,21 +187,24 @@ its write VIO because it knows it alread
 <p>The transformation functions are:
 <em> <a href="link/to/doxygen">TSTransformCreate</a>
 </em> <a href="link/to/doxygen">TSTransformOutputVConnGet</a></p>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/io-guide/vios.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/io-guide/vios.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/io-guide/vios.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="./io-buffers.en.html">Next</a></span>
-      
-        <span class="nav"><a href="./transformations.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="VIOs">VIOs</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="./io-buffers.en.html">Next</a>
+        
+        <a href="./transformations.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="VIOs">VIOs</h2>
 <p>A <strong>VIO</strong>, or <strong>virtual IO</strong>, is a description of an IO operation that's currently 
 in progress. The VIO data structure is used by vconnection users to determine 
 how much progress has been made on a particular IO operation and to re-enable 
@@ -71,21 +82,24 @@ on the IO operation is made.</p>
 <li><a href="link/to/doxygen">TSVIOReaderGet</a></li>
 <li><a href="link/to/doxygen">TSVIOReenable</a></li>
 </ul>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/misc-interface-guide/index.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/misc-interface-guide/index.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/misc-interface-guide/index.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="./tsfopen-family.en.html">Next</a></span>
-      
-        <span class="nav"><a href="../http-hooks-and-transactions/http-alternate-selection.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="MiscellaneousInterfaceGuide">Miscellaneous Interface Guide</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="./tsfopen-family.en.html">Next</a>
+        
+        <a href="../http-hooks-and-transactions/http-alternate-selection.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="MiscellaneousInterfaceGuide">Miscellaneous Interface Guide</h2>
 <p>Most of the functions in the Traffic Server API provide an interface to specific
 code modules within Traffic Server. The miscellaneous functions described in
 this chapter provide some useful general capabilities. They are categorized
@@ -82,21 +93,24 @@ associated with the tag.</p>
 plugin.</p>
 </li>
 </ul>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/misc-interface-guide/memory-allocation.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/misc-interface-guide/memory-allocation.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/misc-interface-guide/memory-allocation.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="./thread-functions.en.html">Next</a></span>
-      
-        <span class="nav"><a href="./tsfopen-family.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="MemoryAllocation">Memory Allocation</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="./thread-functions.en.html">Next</a>
+        
+        <a href="./tsfopen-family.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="MemoryAllocation">Memory Allocation</h2>
 <p>Traffic Server provides five routines for allocating and freeing memory. These
 routines correspond to similar routines in the C library. For example, <code>TSrealloc</code>
 behaves like the C library routine <code>realloc</code>.</p>
@@ -66,21 +77,24 @@ when tracking down memory leaks.</p>
 <p><a href="link/to/doxygen">TSstrndup</a></p>
 </li>
 </ul>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/misc-interface-guide/thread-functions.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/misc-interface-guide/thread-functions.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/misc-interface-guide/thread-functions.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="../http-headers/index.en.html">Next</a></span>
-      
-        <span class="nav"><a href="./memory-allocation.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="ThreadFunctions">Thread Functions</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="../http-headers/index.en.html">Next</a>
+        
+        <a href="./memory-allocation.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="ThreadFunctions">Thread Functions</h2>
 <p>The Traffic Server API thread functions enable you to create, destroy, and
 identify threads within Traffic Server. Multithreading enables a single program
 to have more than one stream of execution and to process more than one transaction
@@ -50,21 +61,24 @@ the <code>TSMutex</code> type, as descri
 <li><a href="link/to/doxygen">TSThreadInit</a></li>
 <li><a href="link/to/doxygen">TSThreadSelf</a></li>
 </ul>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/misc-interface-guide/tsfopen-family.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/misc-interface-guide/tsfopen-family.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/misc-interface-guide/tsfopen-family.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="./memory-allocation.en.html">Next</a></span>
-      
-        <span class="nav"><a href="./index.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="TSfopenFamily">The TSfopen Family</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="./memory-allocation.en.html">Next</a>
+        
+        <a href="./index.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="TSfopenFamily">The TSfopen Family</h2>
 <p>The <code>fopen</code> family of functions in C is normally used for reading configuration
 files, since <code>fgets</code> is an easy way to parse files on a line-by-line basis.
 The <code>TSfopen</code> family of functions aims at solving the same problem of buffered
@@ -75,21 +86,24 @@ family of functions consists of the foll
 <p><a href="link/to/doxygen">TSfwrite</a></p>
 </li>
 </ul>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/mutex-guide/index.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/mutex-guide/index.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/mutex-guide/index.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
+      </div>
+      <div class="eightcol last" style="margin-top: 15px;">
         
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="../continuations/index.en.html">Next</a></span>
-      
-        <span class="nav"><a href="../http-headers/mime-headers.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
       </div>
-    
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="MutexGuide">Mutex Guide</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="../continuations/index.en.html">Next</a>
+        
+        <a href="../http-headers/mime-headers.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="MutexGuide">Mutex Guide</h2>
 <p>Mutexes are used to lock shared data. This chapter explains how to use the 
 mutex interface.</p>
 <div class="toc">
@@ -393,21 +404,24 @@ created in <code>txn_handler</code>:</p>
 <li><a href="link/to/doxygen"><code>TSMutexLock</code></a></li>
 <li><a href="link/to/doxygen"><code>TSMutexLockTry</code></a></li>
 </ul>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/new-protocol-plugins/index.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/new-protocol-plugins/index.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/new-protocol-plugins/index.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
+      </div>
+      <div class="eightcol last" style="margin-top: 15px;">
         
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="../http-hooks-and-transactions/index.en.html">Next</a></span>
-      
-        <span class="nav"><a href="../http-transformation-plugin/sample-buffered-null-transformation-plugin.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
       </div>
-    
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="NewProtocolPlugins">New Protocol Plugins</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="../http-hooks-and-transactions/index.en.html">Next</a>
+        
+        <a href="../http-transformation-plugin/sample-buffered-null-transformation-plugin.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="NewProtocolPlugins">New Protocol Plugins</h2>
 <div class="toc">
 <ul>
 <li><a href="#NewProtocolPlugins">New Protocol Plugins</a><ul>
@@ -367,21 +378,24 @@ the TSM with the next set of events (ini
 calls <strong><code>state_handle_cache_lookup</code></strong>.</p>
 </li>
 </ol>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/plugin-configurations/index.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/plugin-configurations/index.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/plugin-configurations/index.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="../actions-guide/index.en.html">Next</a></span>
-      
-        <span class="nav"><a href="../continuations/writing-handler-functions.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="PluginConfigurations">Plugin Configurations</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="../actions-guide/index.en.html">Next</a>
+        
+        <a href="../continuations/writing-handler-functions.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="PluginConfigurations">Plugin Configurations</h2>
 <p>This chapter contains the following section:</p>
 <ul>
 <li><a href="#PluginConfigurations">Plugin Configurations</a></li>
@@ -126,21 +137,24 @@ for all global data updates.</p>
 <p><a href="link/to/doxygen"><code>TSConfigSet</code></a></p>
 </li>
 </ul>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/plugin-management/guide-to-the-logging-api.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/plugin-management/guide-to-the-logging-api.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/plugin-management/guide-to-the-logging-api.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="../adding-statistics/index.en.html">Next</a></span>
-      
-        <span class="nav"><a href="./reading-trafficserver-settings-and-statistics.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="GuideLoggingAPI">Guide to the Logging API</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="../adding-statistics/index.en.html">Next</a>
+        
+        <a href="./reading-trafficserver-settings-and-statistics.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="GuideLoggingAPI">Guide to the Logging API</h2>
 <p>The logging API enables your plugin to log entries in a custom text log file 
 that you create with the call <code>TSTextLogObjectCreate</code>. This log file is part 
 of Traffic Server's logging system; by default, it is stored in the logging 
@@ -126,21 +137,24 @@ The log is not flushed or destroyed in t
 for the life of the plugin.</p>
 </li>
 </ol>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/plugin-management/index.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/plugin-management/index.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/plugin-management/index.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="./reading-trafficserver-settings-and-statistics.en.html">Next</a></span>
-      
-        <span class="nav"><a href="../io-guide/guide-to-cache-api/example.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="PluginManagement">Plugin Management</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="./reading-trafficserver-settings-and-statistics.en.html">Next</a>
+        
+        <a href="../io-guide/guide-to-cache-api/example.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="PluginManagement">Plugin Management</h2>
 <p>This chapter covers the following topics:</p>
 <ul>
 <li>
@@ -56,21 +67,24 @@ The logging API enables your plugin to l
 Server log file. This section provides a basic overview of the logging interface. </p>
 </li>
 </ul>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/plugin-management/reading-trafficserver-settings-and-statistics.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/plugin-management/reading-trafficserver-settings-and-statistics.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/plugin-management/reading-trafficserver-settings-and-statistics.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="./guide-to-the-logging-api.en.html">Next</a></span>
-      
-        <span class="nav"><a href="./index.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="ReadingTSSettingsStatistics">Reading Traffic Server Settings and Statistics</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="./guide-to-the-logging-api.en.html">Next</a>
+        
+        <a href="./index.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="ReadingTSSettingsStatistics">Reading Traffic Server Settings and Statistics</h2>
 <p>Your plugin might need to know information about Traffic Server's current configuration 
 and performance. The functions described in this section read this information 
 from the Traffic Server <code>records.config</code> file. Configuration settings are stored 
@@ -70,21 +81,24 @@ the example for <a href="link/to/doxygen
 <p><a href="link/to/doxygen">TSMgmtStringGet</a></p>
 </li>
 </ul>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/preface/how-to-use-this-book.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/preface/how-to-use-this-book.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/preface/how-to-use-this-book.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="./typographical-conventions.en.html">Next</a></span>
-      
-        <span class="nav"><a href="./index.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="HowUseBook">How to Use This Book</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="./typographical-conventions.en.html">Next</a>
+        
+        <a href="./index.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="HowUseBook">How to Use This Book</h2>
 <p>This book has the following basic components:</p>
 <ul>
 <li>
@@ -161,21 +172,24 @@ These functions add statistics to your p
 Doxygen generated Traffic Server API Documentation</p>
 </li>
 </ul>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>

Modified: websites/staging/trafficserver/trunk/content/docs/trunk/sdk/preface/index.en.html
==============================================================================
--- websites/staging/trafficserver/trunk/content/docs/trunk/sdk/preface/index.en.html (original)
+++ websites/staging/trafficserver/trunk/content/docs/trunk/sdk/preface/index.en.html Thu Aug 25 11:03:48 2011
@@ -1,43 +1,54 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml"
-	xml:lang="en" lang="en">
+  xml:lang="en" lang="en">
   <head>
     
+    <!-- The 1140px Grid - http://cssgrid.net/ -->
+    <link rel="stylesheet" type="text/css" href="/styles/1140.css" media="screen" />
     <link rel="stylesheet" type="text/css" href="/styles/pygments_style.css" />
     <link rel="stylesheet" type="text/css" href="/styles/ts.css" />
     
+    <!--css3-mediaqueries-js - http://code.google.com/p/css3-mediaqueries-js/ - Enables media queries in some unsupported browsers-->
+    <script type="text/javascript" src="/js/css3-mediaqueries.js"></script>
     
     <title>Apache Traffic Server™ Software Developers Kit</title>
     <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License.  You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License. -->
   </head>
 
   <body>
-    <div id="header" class="header">
-      <table><tr>
-      <td><a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a></td>
-      <td>
-        
-        <span class="title">Apache Traffic Server™ Software Developers Kit</span>
-      </td>
-      </tr></table>
-    </div><!-- header -->
-    
-      <div class="nav">
-      
-        <span class="nav"><a href="./how-to-use-this-book.en.html">Next</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Back</a></span>
-      
-        <span class="nav"><a href="../index.en.html">Top</a></span>
-      
+    <!-- Header -->
+    <div class="row" id="header">
+      <div class="fourcol">
+        <a href="http://trafficserver.apache.org/"><img class="logo" alt="Apache Traffic Server" src="/images/trans_logo_350x69.png" /></a>
       </div>
-    
+      <div class="eightcol last" style="margin-top: 15px;">
+        
+        <h2>Apache Traffic Server™ Software Developers Kit </h2>
+      </div>
+    </div>
 
-  <div class="main">
-    
-    <div id="content">
-      <h2 id="Preface">Preface</h2>
+    <!-- Navigation (next, previous, up, languages) -->
+    <div class="row nav">
+      <div class="eightcol">
+        
+        <a href="./how-to-use-this-book.en.html">Next</a>
+        
+        <a href="../index.en.html">Back</a>
+        
+        <a href="../index.en.html">Top</a>
+        
+      </div>
+      <div class="fourcol last right">
+        Languages: 
+        
+      </div>
+    </div>
+
+    <div class="row content">
+      <div class="eightcol">
+        <div id="content">
+          <h2 id="Preface">Preface</h2>
 <p><strong>Table of Contents</strong></p>
 <p><a href="how-to-use-this-book">How to Use This Book</a>
 <a href="typographical-conventions">Typographical Conventions</a></p>
@@ -59,21 +70,24 @@ response. If you want to support your ow
 add services or features to Traffic Server. It assumes a cursory knowledge
 of the C programming language, Hyper-Text Transfer Protocol (HTTP), and
 Multipurpose Internet Mail Extensions (MIME).</p>
+        </div>
+      </div>
+      <div class="fourcol last">
+      </div>
     </div>
-  </div><!-- main -->
 
-  <div id="footer">
-	  Copyright  &copy; 2010
-	  <a href="http://www.apache.org/">The Apache Software Foundation</a>.
-	  Licensed under
-	  the <a href="http://www.apache.org/licenses/">Apache License</a>,
-	  Version 2.0. Apache Traffic Server, Apache,
-	  the Apache Traffic Server logo, and the Apache feather logo are
-	  trademarks of The Apache Software Foundation.
-	  <span id="apache_logo">
-		  <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
-	  </span>
-  </div>
+    <div id="footer" class="row">
+      Copyright  &copy; 2010
+      <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+      Licensed under
+      the <a href="http://www.apache.org/licenses/">Apache License</a>,
+      Version 2.0. Apache Traffic Server, Apache,
+      the Apache Traffic Server logo, and the Apache feather logo are
+      trademarks of The Apache Software Foundation.
+      <span id="apache_logo">
+        <a href="http://www.apache.org/"><img alt="The Apache Software Foundation" src="http://www.apache.org/images/feather-small.gif" /></a>
+      </span>
+    </div>
 
   </body>
 </html>