You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by di...@apache.org on 2010/03/08 07:27:31 UTC

svn commit: r920206 - in /incubator/trafficserver/site/trunk/docs/v2/sdk: CreatingTSPlugins.html HeaderBasedPluginEx.html ch03.html

Author: dianes
Date: Mon Mar  8 06:27:31 2010
New Revision: 920206

URL: http://svn.apache.org/viewvc?rev=920206&view=rev
Log:
began adding hyperlinked ToC to top of each page...

Modified:
    incubator/trafficserver/site/trunk/docs/v2/sdk/CreatingTSPlugins.html
    incubator/trafficserver/site/trunk/docs/v2/sdk/HeaderBasedPluginEx.html
    incubator/trafficserver/site/trunk/docs/v2/sdk/ch03.html

Modified: incubator/trafficserver/site/trunk/docs/v2/sdk/CreatingTSPlugins.html
URL: http://svn.apache.org/viewvc/incubator/trafficserver/site/trunk/docs/v2/sdk/CreatingTSPlugins.html?rev=920206&r1=920205&r2=920206&view=diff
==============================================================================
--- incubator/trafficserver/site/trunk/docs/v2/sdk/CreatingTSPlugins.html (original)
+++ incubator/trafficserver/site/trunk/docs/v2/sdk/CreatingTSPlugins.html Mon Mar  8 06:27:31 2010
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>Chapter 2. How to Create Traffic Server Plugins</title>
 <!--#include file="top.html" -->
-<div class="navheader">
+</head><div class="navheader">
 <div class="navprev">
 <a accesskey="p" href="NamingConventions.html">Prev</a> — Naming Conventions</div>
 <div class="navnext">Roadmap for Creating Plugins — <a accesskey="n" href="Roadmap_CreatingPlugins.html">Next</a>
@@ -13,6 +13,19 @@
 <div class="chapter" lang="en">
 <div class="titlepage"><div><div><h2 class="title">
 <a name="CreatingTSPlugins"></a>Chapter 2. How to Create Traffic Server Plugins</h2></div></div></div>
+<p><b>Table of Contents</b></p>
+<ul>
+<li><span class="section"><a href="CreatingTSPlugins.html#AsynchronousEventModel">The Asynchronous Event Model</a></span></li>
+<ul>
+<li> <span class="section"><a href="CreatingTSPlugins.html#HTTPTransaction_WhatIs">HTTP Transaction</a></span></li>
+<li> <span class="section"><a href="CreatingTSPlugins.html##TypesOfHooks">Types of Hooks</a></span></li>
+</ul>
+
+<li><span class="section"><a href="Roadmap_CreatingPlugins.html">Roadmap for Creating Plugins</a></span></li>
+
+</ul>
+<div> </div>
+
 <p>This chapter provides a foundation for designing and writing
     plugins. Reading this chapter will help you to understand:</p>
 <div class="itemizedlist"><ul type="disc">

Modified: incubator/trafficserver/site/trunk/docs/v2/sdk/HeaderBasedPluginEx.html
URL: http://svn.apache.org/viewvc/incubator/trafficserver/site/trunk/docs/v2/sdk/HeaderBasedPluginEx.html?rev=920206&r1=920205&r2=920206&view=diff
==============================================================================
--- incubator/trafficserver/site/trunk/docs/v2/sdk/HeaderBasedPluginEx.html (original)
+++ incubator/trafficserver/site/trunk/docs/v2/sdk/HeaderBasedPluginEx.html Mon Mar  8 06:27:31 2010
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>Chapter 4. Header-Based Plugin Examples</title>
 <!--#include file="top.html" -->
-<div class="navheader">
+</head><div class="navheader">
 <div class="navprev">
 <a accesskey="p" href="ch03s04.html">Prev</a> — Examples</div>
 <div class="navnext">The Blacklist Plugin — <a accesskey="n" href="BlacklistPlugin.html">Next</a>
@@ -14,20 +14,8 @@
 <div class="titlepage"><div><div><h2 class="title">
 <a name="HeaderBasedPluginEx"></a>Chapter 4. Header-Based Plugin Examples</h2></div></div></div>
 
-<p>Header-based plugins read or modify the headers of HTTP messages
-    that Traffic Server sends and receives. Reading this chapter will help you
-    to understand the following topics:</p>
-<div class="itemizedlist"><ul type="disc">
-<li><p>Creating continuations for your plugins</p></li>
-<li><p>Adding global hooks</p></li>
-<li><p>Adding transaction hooks</p></li>
-<li><p>Working with HTTP header functions</p></li>
-</ul>
 <p><b>Table of Contents</b></p>
 <ul><li><span class="section"><a href="BlacklistPlugin.html">The Blacklist Plugin</a></span></li>
-</ul>
-
-<ul>
   <ul>
     <li><span class="section"><a href="BlacklistPlugin.html#CreatingParentContinuation">Creating the Parent Continuation</a></span></li>
     <li><span class="section"><a href="SettingGlobalHook.html">Setting a Global Hook</a></span></li>
@@ -38,7 +26,6 @@
   </ul>
 </ul>
 
-<ul></ul>
 
 <ul><li><span class="section"><a href="BasicAuthorizatonPlugin.html">The Basic Authorization Plugin</a></span></li>
 <ul>
@@ -51,12 +38,22 @@
 </ul>
 </ul>
 
+</div>
 
+<div>
+<p>Header-based plugins read or modify the headers of HTTP messages
+    that Traffic Server sends and receives. Reading this chapter will help you
+    to understand the following topics:</p>
+<div class="itemizedlist"><ul type="disc">
+<li><p>Creating continuations for your plugins</p></li>
+<li><p>Adding global hooks</p></li>
+<li><p>Adding transaction hooks</p></li>
+<li><p>Working with HTTP header functions</p></li>
+</ul>
 
-</div>
 <p>The two sample plugins discussed in this chapter are
     <code class="filename">blacklist-1.c</code> and
-    <code class="filename">basic-auth.c</code>.</p>
+    <code class="filename">basic-auth.c</code>.</p></div>
 <div class="section" lang="en">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
 <a name="HeaderBasedEx_Overview"></a>Overview</h2></div></div></div>

Modified: incubator/trafficserver/site/trunk/docs/v2/sdk/ch03.html
URL: http://svn.apache.org/viewvc/incubator/trafficserver/site/trunk/docs/v2/sdk/ch03.html?rev=920206&r1=920205&r2=920206&view=diff
==============================================================================
--- incubator/trafficserver/site/trunk/docs/v2/sdk/ch03.html (original)
+++ incubator/trafficserver/site/trunk/docs/v2/sdk/ch03.html Mon Mar  8 06:27:31 2010
@@ -3,7 +3,7 @@
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>Chapter 3. Remap Plugin</title>
 <!--#include file="top.html" -->
-<div class="navheader">
+</head><div class="navheader">
 <div class="navprev">
 <a accesskey="p" href="Roadmap_CreatingPlugins.html">Prev</a> — Roadmap for Creating Plugins</div>
 <div class="navnext">Remap.API.h — <a accesskey="n" href="ch03s02.html">Next</a>