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 2013/08/15 23:56:33 UTC

[1/2] git commit: TS-2106: consistently use "" instead of <> for ts/ includes

Updated Branches:
  refs/heads/consistent-errors 42306ff72 -> 9638f08ff


TS-2106: consistently use "" instead of <> for ts/ includes

proudly sponsored by:

  perl -p -i -e 's|include <ts/([^>]+)>|include "ts/$1"|g' \
    plugins/**/*.c plugins/**/*.h plugins/**/*.cc


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

Branch: refs/heads/consistent-errors
Commit: fe3c17fe882e3df00967f7cdfb2ed8e911651413
Parents: 42306ff
Author: Igor Galić <i....@brainsware.org>
Authored: Thu Aug 15 23:52:51 2013 +0200
Committer: Igor Galić <i....@brainsware.org>
Committed: Thu Aug 15 23:52:51 2013 +0200

----------------------------------------------------------------------
 plugins/conf_remap/conf_remap.cc                        | 2 +-
 plugins/experimental/authproxy/authproxy.cc             | 2 +-
 plugins/experimental/authproxy/utils.h                  | 4 ++--
 plugins/experimental/balancer/balancer.cc               | 4 ++--
 plugins/experimental/balancer/hashkey.h                 | 4 ++--
 plugins/experimental/balancer/resources.h               | 6 +++---
 plugins/experimental/buffer_upload/buffer_upload.cc     | 4 ++--
 plugins/experimental/channel_stats/channel_stats.cc     | 4 ++--
 plugins/experimental/channel_stats/debug_macros.h       | 2 +-
 plugins/experimental/custom_redirect/custom_redirect.cc | 4 ++--
 plugins/experimental/esi/combo_handler.cc               | 2 +-
 plugins/experimental/esi/esi.cc                         | 2 +-
 plugins/experimental/geoip_acl/acl.h                    | 4 ++--
 plugins/experimental/geoip_acl/geoip_acl.cc             | 4 ++--
 plugins/experimental/geoip_acl/lulu.h                   | 2 +-
 plugins/experimental/healthchecks/healthchecks.c        | 2 +-
 plugins/experimental/hipes/hipes.cc                     | 4 ++--
 plugins/experimental/lua/hook.cc                        | 4 ++--
 plugins/experimental/lua/plugin.cc                      | 2 +-
 plugins/experimental/memcached_remap/memcached_remap.cc | 4 ++--
 plugins/experimental/metalink/metalink.cc               | 2 +-
 plugins/experimental/mysql_remap/mysql_remap.cc         | 4 ++--
 plugins/experimental/rfc5861/rfc5861.c                  | 2 +-
 plugins/experimental/spdy/io.cc                         | 2 +-
 plugins/experimental/spdy/lib/base/logging.h            | 2 +-
 plugins/experimental/spdy/protocol.cc                   | 2 +-
 plugins/experimental/spdy/strings.cc                    | 2 +-
 plugins/experimental/tcp_info/tcp_info.cc               | 4 ++--
 plugins/gzip/debug_macros.h                             | 2 +-
 plugins/gzip/gzip.cc                                    | 2 +-
 plugins/gzip/misc.h                                     | 2 +-
 plugins/header_filter/lulu.h                            | 2 +-
 plugins/header_filter/rules.cc                          | 2 +-
 plugins/header_rewrite/condition.cc                     | 2 +-
 plugins/header_rewrite/condition.h                      | 2 +-
 plugins/header_rewrite/conditions.cc                    | 2 +-
 plugins/header_rewrite/conditions.h                     | 2 +-
 plugins/header_rewrite/header_rewrite.cc                | 4 ++--
 plugins/header_rewrite/lulu.h                           | 2 +-
 plugins/header_rewrite/matcher.cc                       | 2 +-
 plugins/header_rewrite/matcher.h                        | 2 +-
 plugins/header_rewrite/operator.cc                      | 2 +-
 plugins/header_rewrite/operator.h                       | 2 +-
 plugins/header_rewrite/operators.cc                     | 2 +-
 plugins/header_rewrite/operators.h                      | 2 +-
 plugins/header_rewrite/parser.cc                        | 2 +-
 plugins/header_rewrite/resources.cc                     | 2 +-
 plugins/header_rewrite/resources.h                      | 4 ++--
 plugins/header_rewrite/statement.cc                     | 2 +-
 plugins/header_rewrite/statement.h                      | 2 +-
 plugins/header_rewrite/value.h                          | 2 +-
 plugins/libloader/libloader.c                           | 4 ++--
 plugins/regex_remap/regex_remap.cc                      | 2 +-
 plugins/stats_over_http/stats_over_http.c               | 4 ++--
 54 files changed, 73 insertions(+), 73 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/conf_remap/conf_remap.cc
----------------------------------------------------------------------
diff --git a/plugins/conf_remap/conf_remap.cc b/plugins/conf_remap/conf_remap.cc
index 520af73..661a174 100644
--- a/plugins/conf_remap/conf_remap.cc
+++ b/plugins/conf_remap/conf_remap.cc
@@ -26,7 +26,7 @@
 #include <stdlib.h>
 
 #define PLUGIN_NAME "conf_remap"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 // This makes the plugin depend on the version of traffic server installed, but that's
 // OK, since this plugin is distributed only with the "core" (it's a core piece).

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/authproxy/authproxy.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/authproxy/authproxy.cc b/plugins/experimental/authproxy/authproxy.cc
index 224b89a..30e7900 100644
--- a/plugins/experimental/authproxy/authproxy.cc
+++ b/plugins/experimental/authproxy/authproxy.cc
@@ -36,7 +36,7 @@
 #include <getopt.h>
 #include <arpa/inet.h>
 #include <sys/param.h>
-#include <ts/remap.h>
+#include "ts/remap.h"
 #include <ink_config.h>
 
 using std::strlen;

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/authproxy/utils.h
----------------------------------------------------------------------
diff --git a/plugins/experimental/authproxy/utils.h b/plugins/experimental/authproxy/utils.h
index dc73bf7..35f4c28 100644
--- a/plugins/experimental/authproxy/utils.h
+++ b/plugins/experimental/authproxy/utils.h
@@ -16,12 +16,12 @@
  * limitations under the License.
  */
 
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include <netinet/in.h>
 #include <memory>
 
 #define PLUGIN_NAME "authproxy"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 template <typename T>
 T * AuthNew() {

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/balancer/balancer.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/balancer/balancer.cc b/plugins/experimental/balancer/balancer.cc
index 4b2cd2b..10df501 100644
--- a/plugins/experimental/balancer/balancer.cc
+++ b/plugins/experimental/balancer/balancer.cc
@@ -41,8 +41,8 @@
 
 #include <string>
 
-#include <ts/remap.h>
-#include <ts/ts.h>
+#include "ts/remap.h"
+#include "ts/ts.h"
 
 #include "resources.h"
 #include "hashkey.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/balancer/hashkey.h
----------------------------------------------------------------------
diff --git a/plugins/experimental/balancer/hashkey.h b/plugins/experimental/balancer/hashkey.h
index 856c84f..5150d82 100644
--- a/plugins/experimental/balancer/hashkey.h
+++ b/plugins/experimental/balancer/hashkey.h
@@ -31,8 +31,8 @@
 
 #include <string>
 
-#include <ts/remap.h>
-#include <ts/ts.h>
+#include "ts/remap.h"
+#include "ts/ts.h"
 
 #include "resources.h"
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/balancer/resources.h
----------------------------------------------------------------------
diff --git a/plugins/experimental/balancer/resources.h b/plugins/experimental/balancer/resources.h
index 3f9b1dc..ed5668c 100644
--- a/plugins/experimental/balancer/resources.h
+++ b/plugins/experimental/balancer/resources.h
@@ -29,12 +29,12 @@
 #define __RESOURCES_H__ 1
 
 
-#include <ts/remap.h>
-#include <ts/ts.h>
+#include "ts/remap.h"
+#include "ts/ts.h"
 
 
 #define PLUGIN_NAME "balancer"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 
 ///////////////////////////////////////////////////////////////////////////////

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/buffer_upload/buffer_upload.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/buffer_upload/buffer_upload.cc b/plugins/experimental/buffer_upload/buffer_upload.cc
index 245ae3c..c342fb0 100644
--- a/plugins/experimental/buffer_upload/buffer_upload.cc
+++ b/plugins/experimental/buffer_upload/buffer_upload.cc
@@ -31,7 +31,7 @@
 #include <string.h>
 #include <ctype.h>
 #include <limits.h>
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
@@ -45,7 +45,7 @@
 #define false 0
 
 #define PLUGIN_NAME "buffer_upload"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 /**************************************************
    Log macros for error code return verification 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/channel_stats/channel_stats.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/channel_stats/channel_stats.cc b/plugins/experimental/channel_stats/channel_stats.cc
index c36caba..23e327a 100644
--- a/plugins/experimental/channel_stats/channel_stats.cc
+++ b/plugins/experimental/channel_stats/channel_stats.cc
@@ -32,10 +32,10 @@
 # include <netinet/in.h>
 #endif
 
-#include <ts/ts.h>
+#include "ts/ts.h"
 #if (TS_VERSION_NUMBER < 3003001)
 // get TSHttpTxnStartTimeGet
-#include <ts/experimental.h>
+#include "ts/experimental.h"
 #endif
 
 #define PLUGIN_NAME     "channel_stats"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/channel_stats/debug_macros.h
----------------------------------------------------------------------
diff --git a/plugins/experimental/channel_stats/debug_macros.h b/plugins/experimental/channel_stats/debug_macros.h
index 7664c20..3abc7ae 100644
--- a/plugins/experimental/channel_stats/debug_macros.h
+++ b/plugins/experimental/channel_stats/debug_macros.h
@@ -22,7 +22,7 @@
 #include "ink_defs.h"
 
 #define TAG PLUGIN_NAME
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 #define HRTIME_FOREVER  (10*HRTIME_DECADE)
 #define HRTIME_DECADE   (10*HRTIME_YEAR)

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/custom_redirect/custom_redirect.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/custom_redirect/custom_redirect.cc b/plugins/experimental/custom_redirect/custom_redirect.cc
index 92c66b8..8a89817 100644
--- a/plugins/experimental/custom_redirect/custom_redirect.cc
+++ b/plugins/experimental/custom_redirect/custom_redirect.cc
@@ -30,12 +30,12 @@
 #include <netinet/in.h>
 #include <arpa/inet.h>
 #include <netdb.h>
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include <string.h>
 #include <stdlib.h>
 
 #define PLUGIN_NAME "custom_redirect"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 static char* redirect_url_header = NULL;
 static int redirect_url_header_len = 0;

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/esi/combo_handler.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/esi/combo_handler.cc b/plugins/experimental/esi/combo_handler.cc
index 5b25712..973e52f 100644
--- a/plugins/experimental/esi/combo_handler.cc
+++ b/plugins/experimental/esi/combo_handler.cc
@@ -39,7 +39,7 @@ using namespace std;
 using namespace EsiLib;
 
 #define PLUGIN_NAME "combo_handler"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 #define MAX_FILE_COUNT 30
 #define MAX_QUERY_LENGTH 3000

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/esi/esi.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/esi/esi.cc b/plugins/experimental/esi/esi.cc
index 8f695d1..3ac55c6 100644
--- a/plugins/experimental/esi/esi.cc
+++ b/plugins/experimental/esi/esi.cc
@@ -71,7 +71,7 @@ static HandlerManager *gHandlerManager = NULL;
 #define HANDLER_MGR_DEBUG_TAG "plugin_esi_handler_mgr"
 #define EXPR_DEBUG_TAG VARS_DEBUG_TAG
 
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 #define MIME_FIELD_XESI "X-Esi"
 #define MIME_FIELD_XESI_LEN 5

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/geoip_acl/acl.h
----------------------------------------------------------------------
diff --git a/plugins/experimental/geoip_acl/acl.h b/plugins/experimental/geoip_acl/acl.h
index adc91b9..0f9d2d6 100644
--- a/plugins/experimental/geoip_acl/acl.h
+++ b/plugins/experimental/geoip_acl/acl.h
@@ -19,8 +19,8 @@
 #include <string.h>
 #include <arpa/inet.h>
 
-#include <ts/ts.h>
-#include <ts/remap.h>
+#include "ts/ts.h"
+#include "ts/remap.h"
 #include <pcre.h>
 
 #include <string>

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/geoip_acl/geoip_acl.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/geoip_acl/geoip_acl.cc b/plugins/experimental/geoip_acl/geoip_acl.cc
index c3c9a41..6becfa2 100644
--- a/plugins/experimental/geoip_acl/geoip_acl.cc
+++ b/plugins/experimental/geoip_acl/geoip_acl.cc
@@ -21,8 +21,8 @@
 // 
 // Main entry points for the plugin hooks etc.
 //
-#include <ts/ts.h>
-#include <ts/remap.h>
+#include "ts/ts.h"
+#include "ts/remap.h"
 #include <stdio.h>
 #include <string.h>
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/geoip_acl/lulu.h
----------------------------------------------------------------------
diff --git a/plugins/experimental/geoip_acl/lulu.h b/plugins/experimental/geoip_acl/lulu.h
index 319000e..4719a70 100644
--- a/plugins/experimental/geoip_acl/lulu.h
+++ b/plugins/experimental/geoip_acl/lulu.h
@@ -48,7 +48,7 @@
 
 // Used for Debug etc.
 #define PLUGIN_NAME "geoip_acl"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 #endif // __LULU_H__
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/healthchecks/healthchecks.c
----------------------------------------------------------------------
diff --git a/plugins/experimental/healthchecks/healthchecks.c b/plugins/experimental/healthchecks/healthchecks.c
index 8fd9905..bc0cd5d 100644
--- a/plugins/experimental/healthchecks/healthchecks.c
+++ b/plugins/experimental/healthchecks/healthchecks.c
@@ -38,7 +38,7 @@ limitations under the License.
 #include "ink_defs.h"
 
 #define PLUGIN_NAME "healthchecks"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 static const char SEPARATORS[] = " \t\n";
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/hipes/hipes.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/hipes/hipes.cc b/plugins/experimental/hipes/hipes.cc
index 76fcfa5..f19165f 100644
--- a/plugins/experimental/hipes/hipes.cc
+++ b/plugins/experimental/hipes/hipes.cc
@@ -24,8 +24,8 @@
 #include <stdlib.h>
 #include <string>
 
-#include <ts/remap.h>
-#include <ts/ts.h>
+#include "ts/remap.h"
+#include "ts/ts.h"
 
 static const char* PLUGIN_NAME = "hipes";
 static const char* HIPES_SERVER_NAME = "hipes.example.com";

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/lua/hook.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/lua/hook.cc b/plugins/experimental/lua/hook.cc
index 3f3f7cb..3a7ee22 100644
--- a/plugins/experimental/lua/hook.cc
+++ b/plugins/experimental/lua/hook.cc
@@ -16,8 +16,8 @@
   limitations under the License.
 */
 
-#include <ts/ts.h>
-#include <ts/remap.h>
+#include "ts/ts.h"
+#include "ts/remap.h"
 #include <string.h>
 #include "lapi.h"
 #include "lutil.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/lua/plugin.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/lua/plugin.cc b/plugins/experimental/lua/plugin.cc
index 65b61a3..942de6f 100644
--- a/plugins/experimental/lua/plugin.cc
+++ b/plugins/experimental/lua/plugin.cc
@@ -16,7 +16,7 @@
   limitations under the License.
 */
 
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include "lutil.h"
 #include "hook.h"
 #include "state.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/memcached_remap/memcached_remap.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/memcached_remap/memcached_remap.cc b/plugins/experimental/memcached_remap/memcached_remap.cc
index 1816864..b17488c 100644
--- a/plugins/experimental/memcached_remap/memcached_remap.cc
+++ b/plugins/experimental/memcached_remap/memcached_remap.cc
@@ -16,8 +16,8 @@
   limitations under the License.
 */
 
-#include <ts/ts.h>
-#include <ts/remap.h>
+#include "ts/ts.h"
+#include "ts/remap.h"
 #include <stdio.h>
 #include <string.h>
 #include <unistd.h>

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/metalink/metalink.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/metalink/metalink.cc b/plugins/experimental/metalink/metalink.cc
index 5f3e7fe..89c8c37 100644
--- a/plugins/experimental/metalink/metalink.cc
+++ b/plugins/experimental/metalink/metalink.cc
@@ -39,7 +39,7 @@
 #include "ink_defs.h"
 
 #define PLUGIN_NAME "metalink"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 typedef struct {
   TSVConn connp;

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/mysql_remap/mysql_remap.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/mysql_remap/mysql_remap.cc b/plugins/experimental/mysql_remap/mysql_remap.cc
index 4e2e2af..480a918 100644
--- a/plugins/experimental/mysql_remap/mysql_remap.cc
+++ b/plugins/experimental/mysql_remap/mysql_remap.cc
@@ -16,8 +16,8 @@
   limitations under the License.
 */
 
-#include <ts/ts.h>
-#include <ts/remap.h>
+#include "ts/ts.h"
+#include "ts/remap.h"
 #include <stdio.h>
 #include <unistd.h>
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/rfc5861/rfc5861.c
----------------------------------------------------------------------
diff --git a/plugins/experimental/rfc5861/rfc5861.c b/plugins/experimental/rfc5861/rfc5861.c
index 3646faa..edae5d7 100644
--- a/plugins/experimental/rfc5861/rfc5861.c
+++ b/plugins/experimental/rfc5861/rfc5861.c
@@ -37,7 +37,7 @@
 #include "ts/experimental.h"
 
 #define PLUGIN_NAME "rfc5861"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 //#define ENABLE_SAVE_ORIGINAL_REQUEST
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/spdy/io.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/spdy/io.cc b/plugins/experimental/spdy/io.cc
index 4c8ea96..4b444b3 100644
--- a/plugins/experimental/spdy/io.cc
+++ b/plugins/experimental/spdy/io.cc
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include <spdy/spdy.h>
 #include "io.h"
 #include <memory>

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/spdy/lib/base/logging.h
----------------------------------------------------------------------
diff --git a/plugins/experimental/spdy/lib/base/logging.h b/plugins/experimental/spdy/lib/base/logging.h
index 32b520a..813c0b5 100644
--- a/plugins/experimental/spdy/lib/base/logging.h
+++ b/plugins/experimental/spdy/lib/base/logging.h
@@ -22,7 +22,7 @@
 #include <string>
 
 #define PLUGIN_NAME "spdy"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 template <typename T> std::string stringof(const T&);
 #define cstringof(x) stringof(x).c_str()

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/spdy/protocol.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/spdy/protocol.cc b/plugins/experimental/spdy/protocol.cc
index 0dc5c33..85ffb72 100644
--- a/plugins/experimental/spdy/protocol.cc
+++ b/plugins/experimental/spdy/protocol.cc
@@ -18,7 +18,7 @@
 
 // protocol.cc - Low level routines to write SPDY frames.
 
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include <spdy/spdy.h>
 #include <base/logging.h>
 #include "io.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/spdy/strings.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/spdy/strings.cc b/plugins/experimental/spdy/strings.cc
index f45005e..87b23fa 100644
--- a/plugins/experimental/spdy/strings.cc
+++ b/plugins/experimental/spdy/strings.cc
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include <spdy/spdy.h>
 #include <base/logging.h>
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/experimental/tcp_info/tcp_info.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/tcp_info/tcp_info.cc b/plugins/experimental/tcp_info/tcp_info.cc
index 1958ff4..190b5fc 100644
--- a/plugins/experimental/tcp_info/tcp_info.cc
+++ b/plugins/experimental/tcp_info/tcp_info.cc
@@ -26,7 +26,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include <unistd.h>
 #include <netinet/in.h>
 #include <netinet/tcp.h>
@@ -40,7 +40,7 @@
 #include <arpa/inet.h>
 
 #define PLUGIN_NAME "tcp_info"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 struct Config {
   int sample;

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/gzip/debug_macros.h
----------------------------------------------------------------------
diff --git a/plugins/gzip/debug_macros.h b/plugins/gzip/debug_macros.h
index 084c788..068fd71 100644
--- a/plugins/gzip/debug_macros.h
+++ b/plugins/gzip/debug_macros.h
@@ -25,7 +25,7 @@
 #define _DBG_MACROS_H
 
 #define PLUGIN_NAME "gzip"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 //FIXME: this one doesn't deserve to be here
 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/gzip/gzip.cc
----------------------------------------------------------------------
diff --git a/plugins/gzip/gzip.cc b/plugins/gzip/gzip.cc
index c0d0c28..951583d 100644
--- a/plugins/gzip/gzip.cc
+++ b/plugins/gzip/gzip.cc
@@ -24,7 +24,7 @@
 #include <string>
 #include <string.h>
 #include <zlib.h>
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include "debug_macros.h"
 #include "misc.h"
 #include "configuration.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/gzip/misc.h
----------------------------------------------------------------------
diff --git a/plugins/gzip/misc.h b/plugins/gzip/misc.h
index aa2ae16..62de922 100644
--- a/plugins/gzip/misc.h
+++ b/plugins/gzip/misc.h
@@ -25,7 +25,7 @@
 #define _GZIP_MISC_H_
 
 #include <zlib.h>
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include <stdlib.h>             //exit()
 #include <stdio.h>
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_filter/lulu.h
----------------------------------------------------------------------
diff --git a/plugins/header_filter/lulu.h b/plugins/header_filter/lulu.h
index 80c73f5..b3878c1 100644
--- a/plugins/header_filter/lulu.h
+++ b/plugins/header_filter/lulu.h
@@ -48,7 +48,7 @@
 
 // Used for Debug etc.
 #define PLUGIN_NAME "header_filter"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 // From google styleguide: http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml
 #define DISALLOW_COPY_AND_ASSIGN(TypeName)      \

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_filter/rules.cc
----------------------------------------------------------------------
diff --git a/plugins/header_filter/rules.cc b/plugins/header_filter/rules.cc
index 1257887..d64e138 100644
--- a/plugins/header_filter/rules.cc
+++ b/plugins/header_filter/rules.cc
@@ -21,7 +21,7 @@
 // Implemenation details for the rules class.
 //
 #include <fstream>
-#include <ts/ts.h>
+#include "ts/ts.h"
 
 #include "rules.h"
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/condition.cc
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/condition.cc b/plugins/header_rewrite/condition.cc
index 9ee323c..db152ad 100644
--- a/plugins/header_rewrite/condition.cc
+++ b/plugins/header_rewrite/condition.cc
@@ -19,7 +19,7 @@
 // condition.cc: Implementation of the condition base class
 //
 //
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include <string>
 
 #include "condition.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/condition.h
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/condition.h b/plugins/header_rewrite/condition.h
index 9393ff0..4dbaea2 100644
--- a/plugins/header_rewrite/condition.h
+++ b/plugins/header_rewrite/condition.h
@@ -23,7 +23,7 @@
 #define __CONDITION_H__ 1
 
 #include <string>
-#include <ts/ts.h>
+#include "ts/ts.h"
 
 #include "resources.h"
 #include "statement.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/conditions.cc
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/conditions.cc b/plugins/header_rewrite/conditions.cc
index c541267..0d18236 100644
--- a/plugins/header_rewrite/conditions.cc
+++ b/plugins/header_rewrite/conditions.cc
@@ -20,7 +20,7 @@
 //
 //
 #include <unistd.h>
-#include <ts/ts.h>
+#include "ts/ts.h"
 
 #include "conditions.h"
 #include "lulu.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/conditions.h
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/conditions.h b/plugins/header_rewrite/conditions.h
index 922550f..a6c2fb4 100644
--- a/plugins/header_rewrite/conditions.h
+++ b/plugins/header_rewrite/conditions.h
@@ -23,7 +23,7 @@
 #define __CONDITIONS_H__ 1
 
 #include <string>
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include <boost/lexical_cast.hpp>
 
 #include "condition.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/header_rewrite.cc
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/header_rewrite.cc b/plugins/header_rewrite/header_rewrite.cc
index 35b6d19..4a1f3d7 100644
--- a/plugins/header_rewrite/header_rewrite.cc
+++ b/plugins/header_rewrite/header_rewrite.cc
@@ -24,8 +24,8 @@
 #include <string>
 #include <boost/algorithm/string.hpp>
 
-#include <ts/ts.h>
-#include <ts/remap.h>
+#include "ts/ts.h"
+#include "ts/remap.h"
 
 #include "parser.h"
 #include "ruleset.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/lulu.h
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/lulu.h b/plugins/header_rewrite/lulu.h
index 80bcafc..2bb5afb 100644
--- a/plugins/header_rewrite/lulu.h
+++ b/plugins/header_rewrite/lulu.h
@@ -44,7 +44,7 @@
 #endif
 
 #define PLUGIN_NAME "header_rewrite"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 
 // From google styleguide: http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/matcher.cc
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/matcher.cc b/plugins/header_rewrite/matcher.cc
index a4afd4d..3525d04 100644
--- a/plugins/header_rewrite/matcher.cc
+++ b/plugins/header_rewrite/matcher.cc
@@ -20,6 +20,6 @@
 //
 //
 #include <string>
-#include <ts/ts.h>
+#include "ts/ts.h"
 
 #include "matcher.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/matcher.h
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/matcher.h b/plugins/header_rewrite/matcher.h
index ae8fca6..59f7116 100644
--- a/plugins/header_rewrite/matcher.h
+++ b/plugins/header_rewrite/matcher.h
@@ -23,7 +23,7 @@
 #define __MATCHER_H__ 1
 
 #include <string>
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include "regex_helper.h"
 #include <iostream> // For debugging
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/operator.cc
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/operator.cc b/plugins/header_rewrite/operator.cc
index a5dffdd..34e71d2 100644
--- a/plugins/header_rewrite/operator.cc
+++ b/plugins/header_rewrite/operator.cc
@@ -19,7 +19,7 @@
 // operator.cc: Implementation of the operator base class
 //
 //
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include "operator.h"
 
 const OperModifiers

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/operator.h
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/operator.h b/plugins/header_rewrite/operator.h
index db67202..46424d2 100644
--- a/plugins/header_rewrite/operator.h
+++ b/plugins/header_rewrite/operator.h
@@ -23,7 +23,7 @@
 #define __OPERATOR_H__ 1
 
 #include <string>
-#include <ts/ts.h>
+#include "ts/ts.h"
 
 #include "resources.h"
 #include "statement.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/operators.cc
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/operators.cc b/plugins/header_rewrite/operators.cc
index c2ab9c9..e99697f 100644
--- a/plugins/header_rewrite/operators.cc
+++ b/plugins/header_rewrite/operators.cc
@@ -20,7 +20,7 @@
 //
 //
 #include <arpa/inet.h>
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include <string.h>
 
 #include "operators.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/operators.h
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/operators.h b/plugins/header_rewrite/operators.h
index b54732e..47354e7 100644
--- a/plugins/header_rewrite/operators.h
+++ b/plugins/header_rewrite/operators.h
@@ -23,7 +23,7 @@
 #define __OPERATORS_H__ 1
 
 #include <string>
-#include <ts/ts.h>
+#include "ts/ts.h"
 
 #include "operator.h"
 #include "resources.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/parser.cc
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/parser.cc b/plugins/header_rewrite/parser.cc
index 81db2a2..1f1e409 100644
--- a/plugins/header_rewrite/parser.cc
+++ b/plugins/header_rewrite/parser.cc
@@ -22,7 +22,7 @@
 #include <utility>
 #include <boost/tokenizer.hpp>
 
-#include <ts/ts.h>
+#include "ts/ts.h"
 
 #include "parser.h"
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/resources.cc
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/resources.cc b/plugins/header_rewrite/resources.cc
index 41b1498..0a82ddc 100644
--- a/plugins/header_rewrite/resources.cc
+++ b/plugins/header_rewrite/resources.cc
@@ -19,7 +19,7 @@
 // resources.cc: Implementation of the resources class.
 //
 //
-#include <ts/ts.h>
+#include "ts/ts.h"
 
 #include "resources.h"
 #include "lulu.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/resources.h
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/resources.h b/plugins/header_rewrite/resources.h
index 815a3e1..6e5b07e 100644
--- a/plugins/header_rewrite/resources.h
+++ b/plugins/header_rewrite/resources.h
@@ -23,8 +23,8 @@
 #define __RESOURCES_H__ 1
 
 #include <string>
-#include <ts/ts.h>
-#include <ts/remap.h>
+#include "ts/ts.h"
+#include "ts/remap.h"
 
 #include "lulu.h"
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/statement.cc
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/statement.cc b/plugins/header_rewrite/statement.cc
index a9053ff..75613e0 100644
--- a/plugins/header_rewrite/statement.cc
+++ b/plugins/header_rewrite/statement.cc
@@ -20,7 +20,7 @@
 //
 //
 
-#include <ts/ts.h>
+#include "ts/ts.h"
 
 #include "statement.h"
 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/statement.h
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/statement.h b/plugins/header_rewrite/statement.h
index 7492137..42d8b5f 100644
--- a/plugins/header_rewrite/statement.h
+++ b/plugins/header_rewrite/statement.h
@@ -25,7 +25,7 @@
 
 #include <string>
 #include <vector>
-#include <ts/ts.h>
+#include "ts/ts.h"
 
 #include "resources.h"
 #include "parser.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/header_rewrite/value.h
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/value.h b/plugins/header_rewrite/value.h
index 55fa537..479d627 100644
--- a/plugins/header_rewrite/value.h
+++ b/plugins/header_rewrite/value.h
@@ -23,7 +23,7 @@
 #define __VALUE_H__ 1
 
 #include <string>
-#include <ts/ts.h>
+#include "ts/ts.h"
 
 #include "resources.h"
 #include "statement.h"

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/libloader/libloader.c
----------------------------------------------------------------------
diff --git a/plugins/libloader/libloader.c b/plugins/libloader/libloader.c
index acf8373..13dbe0b 100644
--- a/plugins/libloader/libloader.c
+++ b/plugins/libloader/libloader.c
@@ -30,10 +30,10 @@
 #include <dlfcn.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <ts/ts.h>
+#include "ts/ts.h"
 
 #define PLUGIN_NAME "libloader"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 typedef struct {
     void *handle;

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/regex_remap/regex_remap.cc
----------------------------------------------------------------------
diff --git a/plugins/regex_remap/regex_remap.cc b/plugins/regex_remap/regex_remap.cc
index 327e611..26578d4 100644
--- a/plugins/regex_remap/regex_remap.cc
+++ b/plugins/regex_remap/regex_remap.cc
@@ -48,7 +48,7 @@
 #include "ink_time.h"
 
 #define PLUGIN_NAME "regex_remap"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 // Constants
 static const int OVECCOUNT = 30; // We support $0 - $9 x2 ints, and this needs to be 1.5x that

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fe3c17fe/plugins/stats_over_http/stats_over_http.c
----------------------------------------------------------------------
diff --git a/plugins/stats_over_http/stats_over_http.c b/plugins/stats_over_http/stats_over_http.c
index 5cfb8db..e7f2302 100644
--- a/plugins/stats_over_http/stats_over_http.c
+++ b/plugins/stats_over_http/stats_over_http.c
@@ -28,7 +28,7 @@
 #include <stdlib.h>
 #include <ctype.h>
 #include <limits.h>
-#include <ts/ts.h>
+#include "ts/ts.h"
 #include <string.h>
 
 #include <inttypes.h>
@@ -40,7 +40,7 @@ static const char* url_path = "_stats";
 static int url_path_len;
 
 #define PLUGIN_NAME "stats_ver_http"
-#include <ts/debug.h>
+#include "ts/debug.h"
 
 typedef struct stats_state_t
 {


[2/2] git commit: remove space from ts.h.in again, this commit needs to be squashed with 7facd11d03870

Posted by ig...@apache.org.
remove space from ts.h.in again, this commit needs to be squashed with 7facd11d03870


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

Branch: refs/heads/consistent-errors
Commit: 9638f08ff53749abb02c0167bb6cd15b4692ed31
Parents: fe3c17f
Author: Igor Galić <i....@brainsware.org>
Authored: Thu Aug 15 23:55:13 2013 +0200
Committer: Igor Galić <i....@brainsware.org>
Committed: Thu Aug 15 23:55:13 2013 +0200

----------------------------------------------------------------------
 proxy/api/ts/ts.h.in | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/9638f08f/proxy/api/ts/ts.h.in
----------------------------------------------------------------------
diff --git a/proxy/api/ts/ts.h.in b/proxy/api/ts/ts.h.in
index 7da91d7..3379a26 100644
--- a/proxy/api/ts/ts.h.in
+++ b/proxy/api/ts/ts.h.in
@@ -1300,7 +1300,6 @@ extern "C"
   */
   tsapi void TSError(const char* fmt, ...) TS_PRINTFLIKE(1, 2);
 
-
   /* --------------------------------------------------------------------------
      Assertions */
   tsapi void _TSReleaseAssert(const char* txt, const char* f, int l) TS_NORETURN;