You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ig...@apache.org on 2011/03/09 03:23:56 UTC

svn commit: r1079642 - in /trafficserver/site/branches/ats-cms/content/docs/trunk/sdk: http-headers/guide-to-trafficserver-http-header-system/ mutex-guide/ remap-plugin/

Author: igalic
Date: Wed Mar  9 02:23:55 2011
New Revision: 1079642

URL: http://svn.apache.org/viewvc?rev=1079642&view=rev
Log:
More of the same style fixes

Modified:
    trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/http-headers/guide-to-trafficserver-http-header-system/mime-fields-always-belong-to-an-associated-mime-header.en.mdtext
    trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/mutex-guide/index.en.mdtext
    trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/remap-plugin/index.en.mdtext

Modified: trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/http-headers/guide-to-trafficserver-http-header-system/mime-fields-always-belong-to-an-associated-mime-header.en.mdtext
URL: http://svn.apache.org/viewvc/trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/http-headers/guide-to-trafficserver-http-header-system/mime-fields-always-belong-to-an-associated-mime-header.en.mdtext?rev=1079642&r1=1079641&r2=1079642&view=diff
==============================================================================
--- trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/http-headers/guide-to-trafficserver-http-header-system/mime-fields-always-belong-to-an-associated-mime-header.en.mdtext (original)
+++ trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/http-headers/guide-to-trafficserver-http-header-system/mime-fields-always-belong-to-an-associated-mime-header.en.mdtext Wed Mar  9 02:23:55 2011
@@ -26,11 +26,11 @@ To use a MIME field, you must specify th
 it belongs - this is called the field's **parent header**. The `TSMimeField*` 
 functions in older versions of the SDK have been deprecated, as they do not 
 require the parent header as inputs. The current version of Traffic Server 
-uses new functions, the `**TSMimeHdrField***` series, which require you to 
+uses new functions, the **`TSMimeHdrField`** series, which require you to 
 specify the location of the parent header along with the location of the MIME 
-field. For every deprecated `TSMimeField*` function, there is a new, preferred 
-`TSMimeHdrField*` function. Therefore, you should use the `**TSMimeHdrField***` 
-functions instead of the deprecated `TSMimeField*` series. Examples are provided 
+field. For every deprecated *`TSMimeField`* function, there is a new, preferred 
+`TSMimeHdrField*` function. Therefore, you should use the **`TSMimeHdrField`** 
+functions instead of the deprecated *`TSMimeField`* series. Examples are provided 
 below.
 
 Instead of:

Modified: trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/mutex-guide/index.en.mdtext
URL: http://svn.apache.org/viewvc/trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/mutex-guide/index.en.mdtext?rev=1079642&r1=1079641&r2=1079642&view=diff
==============================================================================
--- trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/mutex-guide/index.en.mdtext (original)
+++ trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/mutex-guide/index.en.mdtext Wed Mar  9 02:23:55 2011
@@ -31,7 +31,7 @@ as a lock that protects data in one prog
 thread.
 
 The Traffic Server API provides two functions that attempt to access and lock 
-the data: `InkMutexLockTry` and `TSMutexLock`. `**TSMutexLock**` is a blocking 
+the data: `InkMutexLockTry` and `TSMutexLock`. **`TSMutexLock`** is a blocking 
 call - if you use it, you can slow Traffic Server performance because transaction 
 processing pauses until the mutex is unlocked. It should be used only on threads 
 created by the plugin `TSContThreadCreate`. Never use it on a continuation 

Modified: trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/remap-plugin/index.en.mdtext
URL: http://svn.apache.org/viewvc/trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/remap-plugin/index.en.mdtext?rev=1079642&r1=1079641&r2=1079642&view=diff
==============================================================================
--- trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/remap-plugin/index.en.mdtext (original)
+++ trafficserver/site/branches/ats-cms/content/docs/trunk/sdk/remap-plugin/index.en.mdtext Wed Mar  9 02:23:55 2011
@@ -47,14 +47,14 @@ the header file location is: `/usr/local
 
 A remap plugin is required to implement the following functions:
 
-* [`**tsremap_init**`](ch03s02.html#tsremap_init): the remap initialization
+* [**`tsremap_init`**](/link/to/doxygen): the remap initialization
 function, called once when the plugin is loaded
 
-* [`**tsremap_new_instance**`](ch03s02.html#tsremap_new_instance): a new
+* [**`tsremap_new_instance`**](/link/to/doxygen): a new
 instance is created for each rule associated with the plugin. Called each time
 the plugin used in a remap rule (this function is what processes the pparam values)
 
-* [`**tsremap_remap**`](ch03s02.html#tsremap_remap): the entry point used by
+* [**`tsremap_remap`**](/link/to/doxygen): the entry point used by
 Traffic Server to find the new URL to which it remaps; called every time a request comes in