You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by so...@apache.org on 2013/10/20 21:05:37 UTC

git commit: TS-2242: Update core plugins' support_email and vendor_name for consistency.

Updated Branches:
  refs/heads/master 6958d0564 -> 2c3f7c5e9


TS-2242: Update core plugins' support_email and vendor_name for consistency.


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

Branch: refs/heads/master
Commit: 2c3f7c5e96a3cb1e42ef98545a151189ab8d08ee
Parents: 6958d05
Author: Phil Sorber <so...@apache.org>
Authored: Sun Oct 20 13:05:05 2013 -0600
Committer: Phil Sorber <so...@apache.org>
Committed: Sun Oct 20 13:05:05 2013 -0600

----------------------------------------------------------------------
 CHANGES                                                 | 3 +++
 plugins/cacheurl/cacheurl.c                             | 4 ++--
 plugins/experimental/authproxy/authproxy.cc             | 4 ++--
 plugins/experimental/buffer_upload/buffer_upload.cc     | 4 ++--
 plugins/experimental/channel_stats/channel_stats.cc     | 4 ++--
 plugins/experimental/custom_redirect/custom_redirect.cc | 4 ++--
 plugins/experimental/lua/plugin.cc                      | 2 +-
 plugins/experimental/memcached_remap/memcached_remap.cc | 2 +-
 plugins/experimental/metalink/metalink.cc               | 4 ++--
 plugins/experimental/mysql_remap/mysql_remap.cc         | 2 +-
 plugins/experimental/rfc5861/rfc5861.c                  | 4 ++--
 plugins/experimental/spdy/spdy.cc                       | 4 ++--
 plugins/gzip/misc.cc                                    | 2 +-
 plugins/header_filter/header_filter.cc                  | 4 ++--
 plugins/header_rewrite/header_rewrite.cc                | 4 ++--
 plugins/libloader/libloader.c                           | 2 +-
 plugins/stats_over_http/stats_over_http.c               | 2 +-
 17 files changed, 29 insertions(+), 26 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index c9695ee..1446547 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache Traffic Server 4.1.0
 
+  *) [TS-2242] Update core plugins' support_email and vendor_name for
+   consistency.
+
   *) [TS-1988] cquuc and cquup log tags can have no values.
 
   *) [TS-2159] Force first log rotation at proxy.config.log.rolling_size_mb

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/plugins/cacheurl/cacheurl.c
----------------------------------------------------------------------
diff --git a/plugins/cacheurl/cacheurl.c b/plugins/cacheurl/cacheurl.c
index 7b28d7d..1779bae 100644
--- a/plugins/cacheurl/cacheurl.c
+++ b/plugins/cacheurl/cacheurl.c
@@ -445,8 +445,8 @@ void TSPluginInit(int argc, const char *argv[]) {
     pr_list *prl;
 
     info.plugin_name = PLUGIN_NAME;
-    info.vendor_name = "OmniTI";
-    info.support_email = "sa@omniti.com";
+    info.vendor_name = "Apache Software Foundation";
+    info.support_email = "dev@trafficserver.apache.org";
 
     if (TSPluginRegister(TS_SDK_VERSION_3_0, &info) != TS_SUCCESS) {
         initialization_error("Plugin registration failed.");

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/plugins/experimental/authproxy/authproxy.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/authproxy/authproxy.cc b/plugins/experimental/authproxy/authproxy.cc
index c4c939d..c11d1bf 100644
--- a/plugins/experimental/authproxy/authproxy.cc
+++ b/plugins/experimental/authproxy/authproxy.cc
@@ -809,8 +809,8 @@ TSPluginInit(int argc, const char *argv[])
     TSPluginRegistrationInfo info;
 
     info.plugin_name = (char *)"AuthProxy";
-    info.vendor_name = (char *)"James Peach";
-    info.support_email = (char *)"jamespeach@me.com";
+    info.vendor_name = (char *)"Apache Software Foundation";
+    info.support_email = (char *)"dev@trafficserver.apache.org";
 
     if (TSPluginRegister(TS_SDK_VERSION_3_0, &info) != TS_SUCCESS) {
         AuthLogError("plugin registration failed");

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/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 3101de8..9dda144 100644
--- a/plugins/experimental/buffer_upload/buffer_upload.cc
+++ b/plugins/experimental/buffer_upload/buffer_upload.cc
@@ -1242,8 +1242,8 @@ TSPluginInit(int argc, const char *argv[])
   }
 
   info.plugin_name = const_cast<char*>("buffer_upload");
-  info.vendor_name = const_cast<char*>("");
-  info.support_email = const_cast<char*>("");
+  info.vendor_name = const_cast<char*>("Apache Software Foundation");
+  info.support_email = const_cast<char*>("dev@trafficserver.apache.org");
 
   if (uconfig->use_disk_buffer && !create_directory()) {
     TSError("Directory creation failed.");

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/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 5766bd0..d2ee228 100644
--- a/plugins/experimental/channel_stats/channel_stats.cc
+++ b/plugins/experimental/channel_stats/channel_stats.cc
@@ -807,8 +807,8 @@ TSPluginInit(int argc, const char *argv[])
   TSPluginRegistrationInfo info;
 
   info.plugin_name = (char *)PLUGIN_NAME;
-  info.vendor_name = (char *)"wkl";
-  info.support_email = (char *)"conanmind@gmail.com";
+  info.vendor_name = (char *)"Apache Software Foundation";
+  info.support_email = (char *)"dev@trafficserver.apache.org";
 
   if (TSPluginRegister(TS_SDK_VERSION_3_0, &info) != TS_SUCCESS) {
     fatal("plugin registration failed.");

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/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 6baf1a6..ea02333 100644
--- a/plugins/experimental/custom_redirect/custom_redirect.cc
+++ b/plugins/experimental/custom_redirect/custom_redirect.cc
@@ -130,8 +130,8 @@ TSPluginInit (int argc, const char *argv[])
 
 /*
     info.plugin_name = (char*)"";
-    info.vendor_name = (char*)"";
-    info.support_email = (char*)"";
+    info.vendor_name = (char*)"Apache Software Foundation";
+    info.support_email = (char*)"dev@trafficserver.apache.org";
 */ 
     /* This plugin supports following types of url redirect here:
      * 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/plugins/experimental/lua/plugin.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/lua/plugin.cc b/plugins/experimental/lua/plugin.cc
index 65b61a3..1c96e3b 100644
--- a/plugins/experimental/lua/plugin.cc
+++ b/plugins/experimental/lua/plugin.cc
@@ -28,7 +28,7 @@ TSPluginInit(int argc, const char * argv[])
   instanceid_t              instanceid;
 
   info.plugin_name = (char *)"lua";
-  info.vendor_name = (char *)"Apache Traffic Server";
+  info.vendor_name = (char *)"Apache Software Foundation";
   info.support_email = (char *)"dev@trafficserver.apache.org";
 
   if (TSPluginRegister(TS_SDK_VERSION_3_0, &info) != TS_SUCCESS) {

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/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..7e63812 100644
--- a/plugins/experimental/memcached_remap/memcached_remap.cc
+++ b/plugins/experimental/memcached_remap/memcached_remap.cc
@@ -184,7 +184,7 @@ void TSPluginInit(int argc, const char *argv[])
 
     info.plugin_name = const_cast < char *>(PLUGIN_NAME);
     info.vendor_name = const_cast < char *>("Apache Software Foundation");
-    info.support_email = const_cast < char *>("eric@ericbalsa.com");
+    info.support_email = const_cast < char *>("dev@trafficserver.apache.org");
 
     TSDebug(PLUGIN_NAME, "about to init memcached\n");
     if (TSPluginRegister(TS_SDK_VERSION_2_0, &info) != TS_SUCCESS) {

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/plugins/experimental/metalink/metalink.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/metalink/metalink.cc b/plugins/experimental/metalink/metalink.cc
index 55e88c8..86747ef 100644
--- a/plugins/experimental/metalink/metalink.cc
+++ b/plugins/experimental/metalink/metalink.cc
@@ -654,8 +654,8 @@ TSPluginInit(int /* argc ATS_UNUSED */, const char */* argv ATS_UNUSED */[])
   TSPluginRegistrationInfo info;
 
   info.plugin_name = const_cast<char*>("metalink");
-  info.vendor_name = const_cast<char*>("Jack Bates");
-  info.support_email = const_cast<char*>("jack@nottheoilrig.com");
+  info.vendor_name = const_cast<char*>("Apache Software Foundation");
+  info.support_email = const_cast<char*>("dev@trafficserver.apache.org");
 
   if (TSPluginRegister(TS_SDK_VERSION_3_0, &info) != TS_SUCCESS) {
     TSError("Plugin registration failed");

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/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..848537d 100644
--- a/plugins/experimental/mysql_remap/mysql_remap.cc
+++ b/plugins/experimental/mysql_remap/mysql_remap.cc
@@ -190,7 +190,7 @@ TSPluginInit(int argc, const char *argv[]) {
   
   info.plugin_name   = const_cast<char*>(PLUGIN_NAME);
   info.vendor_name   = const_cast<char*>("Apache Software Foundation");
-  info.support_email = const_cast<char*>("eric@ericbalsa.com");
+  info.support_email = const_cast<char*>("dev@trafficserver.apache.org");
 
   if (TSPluginRegister(TS_SDK_VERSION_2_0 , &info) != TS_SUCCESS) {
     TSError("mysql_remap: plugin registration failed.\n"); 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/plugins/experimental/rfc5861/rfc5861.c
----------------------------------------------------------------------
diff --git a/plugins/experimental/rfc5861/rfc5861.c b/plugins/experimental/rfc5861/rfc5861.c
index b5f9dbf..f1f6c5d 100644
--- a/plugins/experimental/rfc5861/rfc5861.c
+++ b/plugins/experimental/rfc5861/rfc5861.c
@@ -669,8 +669,8 @@ TSPluginInit (int argc, const char *argv[])
     TSCont main_cont;
 
     info.plugin_name = PLUGIN_NAME;
-    info.vendor_name = "OmniTI Computer Consulting on behalf of Oregon Health & Science University";
-    info.support_email = "phil@omniti.com";
+    info.vendor_name = "Apache Software Foundation";
+    info.support_email = "dev@trafficserver.apache.org";
 
     if (TSPluginRegister(TS_SDK_VERSION_3_0 , &info) != TS_SUCCESS)
     {

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/plugins/experimental/spdy/spdy.cc
----------------------------------------------------------------------
diff --git a/plugins/experimental/spdy/spdy.cc b/plugins/experimental/spdy/spdy.cc
index 1a83e2a..e81a080 100644
--- a/plugins/experimental/spdy/spdy.cc
+++ b/plugins/experimental/spdy/spdy.cc
@@ -367,8 +367,8 @@ TSPluginInit(int argc, const char * argv[])
     TSPluginRegistrationInfo info;
 
     info.plugin_name = (char *)"spdy";
-    info.vendor_name = (char *)"James Peach";
-    info.support_email = (char *)"jamespeach@me.com";
+    info.vendor_name = (char *)"Apache Software Foundation";
+    info.support_email = (char *)"dev@trafficserver.apache.org";
 
     if (TSPluginRegister(TS_SDK_VERSION_3_0, &info) != TS_SUCCESS) {
         TSError("[spdy] Plugin registration failed");

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/plugins/gzip/misc.cc
----------------------------------------------------------------------
diff --git a/plugins/gzip/misc.cc b/plugins/gzip/misc.cc
index 13f9d39..aeb6f30 100644
--- a/plugins/gzip/misc.cc
+++ b/plugins/gzip/misc.cc
@@ -145,7 +145,7 @@ register_plugin()
   TSPluginRegistrationInfo info;
 
   info.plugin_name = (char*)"gzip";
-  info.vendor_name = (char*)"Apache";
+  info.vendor_name = (char*)"Apache Software Foundation";
   info.support_email = (char*)"dev@trafficserver.apache.org";
 
   if (TSPluginRegister(TS_SDK_VERSION_3_0, &info) != TS_SUCCESS) {

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/plugins/header_filter/header_filter.cc
----------------------------------------------------------------------
diff --git a/plugins/header_filter/header_filter.cc b/plugins/header_filter/header_filter.cc
index 33713e9..9a9f690 100644
--- a/plugins/header_filter/header_filter.cc
+++ b/plugins/header_filter/header_filter.cc
@@ -101,8 +101,8 @@ TSPluginInit(int argc, const char *argv[])
   TSPluginRegistrationInfo info;
 
   info.plugin_name = const_cast<char*>(PLUGIN_NAME);
-  info.vendor_name = const_cast<char*>("Apache");
-  info.support_email = const_cast<char*>("users@trafficserver.apache.org");
+  info.vendor_name = const_cast<char*>("Apache Software Foundation");
+  info.support_email = const_cast<char*>("dev@trafficserver.apache.org");
 
   if (TSPluginRegister(TS_SDK_VERSION_3_0 , &info) != TS_SUCCESS) {
     TSError("header_filter: plugin registration failed.\n"); 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/plugins/header_rewrite/header_rewrite.cc
----------------------------------------------------------------------
diff --git a/plugins/header_rewrite/header_rewrite.cc b/plugins/header_rewrite/header_rewrite.cc
index 1300742..20fd387 100644
--- a/plugins/header_rewrite/header_rewrite.cc
+++ b/plugins/header_rewrite/header_rewrite.cc
@@ -217,8 +217,8 @@ TSPluginInit(int argc, const char *argv[])
   TSPluginRegistrationInfo info;
 
   info.plugin_name = (char*)PLUGIN_NAME;
-  info.vendor_name = (char*)"";
-  info.support_email = (char*)"";
+  info.vendor_name = (char*)"Apache Software Foundation";
+  info.support_email = (char*)"dev@trafficserver.apache.org";
 
   if (TS_SUCCESS != TSPluginRegister(TS_SDK_VERSION_3_0 , &info)) {
     TSError("header_rewrite: plugin registration failed.\n"); 

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/plugins/libloader/libloader.c
----------------------------------------------------------------------
diff --git a/plugins/libloader/libloader.c b/plugins/libloader/libloader.c
index ef84c2f..5cf990e 100644
--- a/plugins/libloader/libloader.c
+++ b/plugins/libloader/libloader.c
@@ -58,7 +58,7 @@ void TSPluginInit(int argc, const char *argv[])
 
     info.plugin_name = (char *)"libloader";
     info.vendor_name = (char *)"Apache Software Foundation";
-    info.support_email = (char *)"users@trafficserver.apache.org";
+    info.support_email = (char *)"dev@trafficserver.apache.org";
 
     if (TSPluginRegister(TS_SDK_VERSION_3_0, &info) != TS_SUCCESS) {
         TSError("[libloader] Plugin registration failed.\n");

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2c3f7c5e/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 89a13af..d1f0af7 100644
--- a/plugins/stats_over_http/stats_over_http.c
+++ b/plugins/stats_over_http/stats_over_http.c
@@ -256,7 +256,7 @@ TSPluginInit(int argc, const char *argv[])
 
   info.plugin_name = "stats";
   info.vendor_name = "Apache Software Foundation";
-  info.support_email = "jesus@omniti.com";
+  info.support_email = "dev@trafficserver.apache.org";
 
   if (TSPluginRegister(TS_SDK_VERSION_2_0, &info) != TS_SUCCESS)
     TSError("Plugin registration failed. \n");