You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2014/08/22 18:06:30 UTC

git commit: header_rewrite: set-redirect documentation corrections

Repository: trafficserver
Updated Branches:
  refs/heads/master 1b9697ed7 -> 0361d67fb


header_rewrite: set-redirect documentation corrections

set-redirect requires two params status-code and destination. Also
QSA appears to be a supported operator flag. This closes #98


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/0361d67f
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/0361d67f
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/0361d67f

Branch: refs/heads/master
Commit: 0361d67fb22d52e3f4f55dc21d6147ccb452e839
Parents: 1b9697e
Author: Scott Beardsley <sc...@gmail.com>
Authored: Wed Jul 23 15:57:25 2014 -0700
Committer: James Peach <jp...@apache.org>
Committed: Fri Aug 22 09:05:38 2014 -0700

----------------------------------------------------------------------
 doc/reference/plugins/header_rewrite.en.rst | 25 ++++++++++++------------
 1 file changed, 13 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/0361d67f/doc/reference/plugins/header_rewrite.en.rst
----------------------------------------------------------------------
diff --git a/doc/reference/plugins/header_rewrite.en.rst b/doc/reference/plugins/header_rewrite.en.rst
index 3b69a3a..669f63c 100644
--- a/doc/reference/plugins/header_rewrite.en.rst
+++ b/doc/reference/plugins/header_rewrite.en.rst
@@ -51,18 +51,18 @@ Operators
 
 The following operators are available::
 
-  rm-header header-name                 [operator_flags]
-  add-header header <value>             [operator_flags]
-  set-header header <value>             [operator_flags]
-  set-status <status-code>              [operator_flags]
-  set-destination [qual] <value>        [operator_flags]
-  set-redirect <value>                  [operator_flags]
-  set-timeout-out <value>               [operator_flags]
-  set-status-reason <value>             [operator_flags]
-  set-config overridable-config <value> [operator_flags]
-  set-conn-dscp <value>                 [operator_flags]
-  counter counter-name                  [operator_flags]
-  no-op                                 [operator_flags]
+  rm-header header-name                      [operator_flags]
+  add-header header <value>                  [operator_flags]
+  set-header header <value>                  [operator_flags]
+  set-status <status-code>                   [operator_flags]
+  set-destination [qual] <value>             [operator_flags]
+  set-redirect <status-code> <destination>   [operator_flags]
+  set-timeout-out <value>                    [operator_flags]
+  set-status-reason <value>                  [operator_flags]
+  set-config overridable-config <value>      [operator_flags]
+  set-conn-dscp <value>                      [operator_flags]
+  counter counter-name                       [operator_flags]
+  no-op                                      [operator_flags]
 
 
 Where qual is one of the support URL qualifiers::
@@ -84,6 +84,7 @@ The operator flags are optional, and must not contain whitespaces inside
 the brackets. Currently, only one flag is supported::
 
   [L]   Last rule, do not continue
+  [QSA] Append query string
 
 Variable expansion
 ------------------