You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2013/07/24 21:01:18 UTC

[1/4] git commit: TS-1998 Fix the header.

Updated Branches:
  refs/heads/master f5f9b8e16 -> aa4acf200


TS-1998 Fix the header.


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

Branch: refs/heads/master
Commit: c1e55862fa5dbb13d1b35eb501c1d4dce670624d
Parents: f5f9b8e
Author: Leif Hedstrom <zw...@apache.org>
Authored: Wed Jul 24 11:50:36 2013 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Wed Jul 24 11:50:36 2013 -0600

----------------------------------------------------------------------
 doc/plugins/stats_over_http.en.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/c1e55862/doc/plugins/stats_over_http.en.rst
----------------------------------------------------------------------
diff --git a/doc/plugins/stats_over_http.en.rst b/doc/plugins/stats_over_http.en.rst
index 782aef8..3084b79 100644
--- a/doc/plugins/stats_over_http.en.rst
+++ b/doc/plugins/stats_over_http.en.rst
@@ -1,5 +1,5 @@
-Stats over HTTP Plugin (underdocumented)
-****************************************
+Stats over HTTP Plugin
+**********************
 
 .. Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file


[4/4] git commit: Removed the full-url option from the regex remap

Posted by zw...@apache.org.
Removed the full-url option from the regex remap


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

Branch: refs/heads/master
Commit: aa4acf200d8dfc5aa7ec5c61ad697aa6ee1cb342
Parents: 989c545
Author: Leif Hedstrom <zw...@apache.org>
Authored: Wed Jul 24 13:01:08 2013 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Wed Jul 24 13:01:08 2013 -0600

----------------------------------------------------------------------
 doc/plugins/regex_remap.en.rst | 16 +---------------
 plugins/regex_remap/README     | 20 +-------------------
 2 files changed, 2 insertions(+), 34 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/aa4acf20/doc/plugins/regex_remap.en.rst
----------------------------------------------------------------------
diff --git a/doc/plugins/regex_remap.en.rst b/doc/plugins/regex_remap.en.rst
index c55434b..a98107b 100644
--- a/doc/plugins/regex_remap.en.rst
+++ b/doc/plugins/regex_remap.en.rst
@@ -52,21 +52,11 @@ By default, only the path and query string of the URL are provided for
 the regular expressions to match. The following optional parameters can
 be used to modify the plugin instance behavior ::
 
-    @pparam=[no-]full-url            [default: off]
     @pparam=[no-]method              [default: off]
     @pparam=[no-]query-string        [default: on]
     @pparam=[no-]matrix-parameters   [default: off]
 
-If you want the full (original) URL, use the parameter
-``@pparam=full-url``. e.g. ::
-
-    ... @pparam=maps.reg @pparam=full-url
-
-The string that you will need to match against looks like ::
-
-    http://server/path?query=bar
-
-If you also wish to match on the HTTP method used (e.g. "``GET``\ "),
+If you wish to match on the HTTP method used (e.g. "``GET``\ "),
 you must use the option ``@pparam=method``. e.g. ::
 
     ... @pparam=maps.reg @pparam=method
@@ -76,10 +66,6 @@ like ::
 
     GET/path?query=bar
 
-The "``method``\ " parameter can also be used in combination with
-"``full-url``\ ", and the string to match against will then look like ::
-
-    GET http://server.com/path?query=bar
 
 The methods are always all upper-case, and always followed by one single
 space. There is no space between the method and the rest of the URL (or

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/aa4acf20/plugins/regex_remap/README
----------------------------------------------------------------------
diff --git a/plugins/regex_remap/README b/plugins/regex_remap/README
index c965848..f3dad4e 100644
--- a/plugins/regex_remap/README
+++ b/plugins/regex_remap/README
@@ -26,25 +26,13 @@ By default, only the path and query string of the URL is
 provided for the regular expressions to match. The following optional
 parameters can be used to modify the plugin instance behavior:
 
-    @pparam=[no-]full-url            [default: off]
     @pparam=[no-]method              [default: off]
     @pparam=[no-]query-string        [default: on]
     @pparam=[no-]matrix-parameters   [default: off]
 
 
 
-If you want the full (original) URL, use the parameter @pparam=full-url.
-For example:
-
-    ... @pparam=maps.reg @pparam=full-url
-
-
-The string that you will need to match against looks like
-
-    http://server/path?query=bar
-
-
-If you also wish to match on the HTTP method used (e.g. "GET"), you must
+If you wish to match on the HTTP method used (e.g. "GET"), you must
 use the option @pparam=method. For example:
 
    ... @pparam=maps.reg @pparam=method
@@ -55,12 +43,6 @@ With this enabled, the string that you will need to match will look like
     GET/path?query=bar
 
 
-The "method" parameter can also be used in combination with "full-url",
-and the string to match against will then look like
-
-   GEThttp://server.com/path?query=bar
-
-
 The methods are always all upper-case, and always followed by one single
 space. There is no space between the method and the rest of the URL (or
 URI path).


[3/4] git commit: Switching to the default Sphinx theme for now, since it at least formats things somewhat correct.

Posted by zw...@apache.org.
Switching to the default Sphinx theme for now, since it at least formats
things somewhat correct.


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

Branch: refs/heads/master
Commit: 989c5458d930045375667982546f0b961039637b
Parents: fd6ed98
Author: Leif Hedstrom <zw...@apache.org>
Authored: Wed Jul 24 12:59:11 2013 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Wed Jul 24 12:59:11 2013 -0600

----------------------------------------------------------------------
 doc/conf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/989c5458/doc/conf.py
----------------------------------------------------------------------
diff --git a/doc/conf.py b/doc/conf.py
index a0f12b8..db6d003 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -91,7 +91,7 @@ pygments_style = 'sphinx'
 
 # The theme to use for HTML and HTML Help pages.  See the documentation for
 # a list of builtin themes.
-html_theme = 'agogo'
+#html_theme = 'agogo'
 
 # Theme options are theme-specific and customize the look and feel of a theme
 # further.  For a list of options available for each theme, see the


[2/4] git commit: TS-1998 trying to beat this into submission, but little luck.

Posted by zw...@apache.org.
TS-1998 trying to beat this into submission, but little luck.


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

Branch: refs/heads/master
Commit: fd6ed98b7774aec6820a88f5f892e69788c4cb7e
Parents: c1e5586
Author: Leif Hedstrom <zw...@apache.org>
Authored: Wed Jul 24 12:57:45 2013 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Wed Jul 24 12:57:45 2013 -0600

----------------------------------------------------------------------
 doc/plugins/stats_over_http.en.rst | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fd6ed98b/doc/plugins/stats_over_http.en.rst
----------------------------------------------------------------------
diff --git a/doc/plugins/stats_over_http.en.rst b/doc/plugins/stats_over_http.en.rst
index 3084b79..39b69be 100644
--- a/doc/plugins/stats_over_http.en.rst
+++ b/doc/plugins/stats_over_http.en.rst
@@ -23,29 +23,28 @@ This plugin implements an HTTP interface to all Traffic Server statistics. The
 metrics returned are in a JSON format, for easy processing. This plugin is now
 part of the standard ATS build process, and should be available after install.
 
-To enable this plugin, add to the plugin.conf file:::
+To enable this plugin, add to the plugin.conf file::
 
-  stats_over_http.so
+    stats_over_http.so
 
 
 After starting Traffic Server, the JSON metrics are now available on the
-default URL:::
+default URL::
 
     http://host:port/_stats
 
 
 where host and port is the hostname/IP and port number of the server. You can
 optionally modify the path to use, and this is highly recommended in a public
-facing server. For example:::
+facing server. For example::
 
     stats_over_http.so 81c075bc0cca1435ea899ba4ad72766b
 
 
-and the URL would then be e.g. ::
+and the URL would then be e.g.::
 
     https://host:port/81c075bc0cca1435ea899ba4ad72766b
 
 
-
 This is weak security at best, since the secret could possibly leak if you are
 careless and send it over clear text.