[incubator-trafficcontrol] branch master updated: updated the compare tool for v13

2018-04-04 Thread mitchell852
This is an automated email from the ASF dual-hosted git repository.

mitchell852 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
 new 0343744  updated the compare tool for v13
0343744 is described below

commit 0343744dadec568a01a657ae9a24c6aae5207da7
Author: Dewayne Richardson 
AuthorDate: Wed Apr 4 11:12:29 2018 -0600

updated the compare tool for v13
---
 traffic_ops/testing/compare/compare.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/traffic_ops/testing/compare/compare.go 
b/traffic_ops/testing/compare/compare.go
index 50c34b6..58e3bad 100644
--- a/traffic_ops/testing/compare/compare.go
+++ b/traffic_ops/testing/compare/compare.go
@@ -30,7 +30,7 @@ import (
"sync"
"unicode"
 
-   "github.com/apache/incubator-trafficcontrol/lib/go-tc"
+   "github.com/apache/incubator-trafficcontrol/lib/go-tc/v13"
"github.com/kelseyhightower/envconfig"
"golang.org/x/net/publicsuffix"
 )
@@ -191,7 +191,7 @@ func (to *Connect) getCDNNames() ([]string, error) {
}
fmt.Println(res)
 
-   var cdnResp tc.CDNsResponse
+   var cdnResp v13.CDNsResponse
 
err = json.Unmarshal([]byte(res), )
if err != nil {

-- 
To stop receiving notification emails like this one, please contact
mitchell...@apache.org.


[incubator-trafficcontrol] branch master updated: adds roles and capabilities tables to TP

2018-04-04 Thread dewrich
This is an automated email from the ASF dual-hosted git repository.

dewrich pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
 new 74c742a  adds roles and capabilities tables to TP
74c742a is described below

commit 74c742a3c8691ee0d0b4e856cafdfb0c4a505852
Author: Jeremy Mitchell 
AuthorDate: Mon Aug 28 20:54:05 2017 -0600

adds roles and capabilities tables to TP
---
 traffic_portal/app/src/app.js  |  6 +++
 .../app/src/common/api/CapabilityService.js| 57 ++
 traffic_portal/app/src/common/api/RoleService.js   |  4 +-
 traffic_portal/app/src/common/api/index.js |  1 +
 .../common/modules/navigation/navigation.tpl.html  |  2 +
 .../capabilities/TableCapabilitiesController.js| 39 +++
 .../src/common/modules/table/capabilities/index.js | 21 
 .../table/capabilities/table.capabilities.tpl.html | 50 +++
 .../modules/table/roles/TableRolesController.js| 39 +++
 .../app/src/common/modules/table/roles/index.js| 21 
 .../modules/table/roles/table.roles.tpl.html   | 52 
 .../private/capabilities/capabilities.tpl.html | 22 +
 .../app/src/modules/private/capabilities/index.js  | 34 +
 .../src/modules/private/capabilities/list/index.js | 39 +++
 .../app/src/modules/private/roles/index.js | 34 +
 .../app/src/modules/private/roles/list/index.js| 39 +++
 .../app/src/modules/private/roles/roles.tpl.html   | 22 +
 17 files changed, 480 insertions(+), 2 deletions(-)

diff --git a/traffic_portal/app/src/app.js b/traffic_portal/app/src/app.js
index 990e8f6..49a4645 100644
--- a/traffic_portal/app/src/app.js
+++ b/traffic_portal/app/src/app.js
@@ -59,6 +59,8 @@ var trafficPortal = angular.module('trafficPortal', [
 require('./modules/private/cacheGroups/staticDnsEntries').name,
 require('./modules/private/cacheChecks').name,
 require('./modules/private/cacheStats').name,
+require('./modules/private/capabilities').name,
+require('./modules/private/capabilities/list').name,
 require('./modules/private/cdns').name,
 require('./modules/private/cdns/config').name,
 require('./modules/private/cdns/deliveryServices').name,
@@ -143,6 +145,8 @@ var trafficPortal = angular.module('trafficPortal', [
 require('./modules/private/regions/list').name,
 require('./modules/private/regions/physLocations').name,
 require('./modules/private/regions/new').name,
+require('./modules/private/roles').name,
+require('./modules/private/roles/list').name,
 require('./modules/private/servers').name,
 require('./modules/private/servers/configFiles').name,
 require('./modules/private/servers/deliveryServices').name,
@@ -272,6 +276,7 @@ var trafficPortal = angular.module('trafficPortal', [
 require('./common/modules/table/cacheGroupParameters').name,
 require('./common/modules/table/cacheGroupServers').name,
 require('./common/modules/table/cacheGroupStaticDnsEntries').name,
+require('./common/modules/table/capabilities').name,
 require('./common/modules/table/changeLogs').name,
 require('./common/modules/table/asns').name,
 require('./common/modules/table/cdns').name,
@@ -304,6 +309,7 @@ var trafficPortal = angular.module('trafficPortal', [
 require('./common/modules/table/profiles').name,
 require('./common/modules/table/regions').name,
 require('./common/modules/table/regionPhysLocations').name,
+require('./common/modules/table/roles').name,
 require('./common/modules/table/servers').name,
 require('./common/modules/table/serverConfigFiles').name,
 require('./common/modules/table/serverDeliveryServices').name,
diff --git a/traffic_portal/app/src/common/api/CapabilityService.js 
b/traffic_portal/app/src/common/api/CapabilityService.js
new file mode 100644
index 000..da8df4f
--- /dev/null
+++ b/traffic_portal/app/src/common/api/CapabilityService.js
@@ -0,0 +1,57 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * 

svn commit: r26140 - in /dev/incubator/trafficcontrol/2.2.0/RC4: ./ apache-trafficcontrol-2.2.0-incubating.tar.gz apache-trafficcontrol-2.2.0-incubating.tar.gz.asc apache-trafficcontrol-2.2.0-incubati

2018-04-04 Thread rob
Author: rob
Date: Wed Apr  4 15:44:08 2018
New Revision: 26140

Log:
apache-trafficcontrol-incubating-2.2.0-RC4

Added:
dev/incubator/trafficcontrol/2.2.0/RC4/

dev/incubator/trafficcontrol/2.2.0/RC4/apache-trafficcontrol-2.2.0-incubating.tar.gz
   (with props)

dev/incubator/trafficcontrol/2.2.0/RC4/apache-trafficcontrol-2.2.0-incubating.tar.gz.asc

dev/incubator/trafficcontrol/2.2.0/RC4/apache-trafficcontrol-2.2.0-incubating.tar.gz.sha512

Added: 
dev/incubator/trafficcontrol/2.2.0/RC4/apache-trafficcontrol-2.2.0-incubating.tar.gz
==
Binary file - no diff available.

Propchange: 
dev/incubator/trafficcontrol/2.2.0/RC4/apache-trafficcontrol-2.2.0-incubating.tar.gz
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/trafficcontrol/2.2.0/RC4/apache-trafficcontrol-2.2.0-incubating.tar.gz.asc
==
--- 
dev/incubator/trafficcontrol/2.2.0/RC4/apache-trafficcontrol-2.2.0-incubating.tar.gz.asc
 (added)
+++ 
dev/incubator/trafficcontrol/2.2.0/RC4/apache-trafficcontrol-2.2.0-incubating.tar.gz.asc
 Wed Apr  4 15:44:08 2018
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJaxPJnAAoJEOXFteD90E9/xZ4P/2v12fzzXJu9DRmukOj0YWpF
+bodGk9pvO1h/y0MVxTZcpLO06X7UWg0l++qqgAIkaBdEugCMJaopCrWpQqEU7pFS
+sCxX9ejpepvrR2OIMQ875Td36wlMuOB9Q4v4lO4odGIUECV3VhCPutAMhDUgR4Tw
+Ke2Z4Oyf6fbVOv2BpZNP6ikdYoKP2H27oRlMSdBAgzOKEjvga1dLGtUGWSJbeMjQ
+gbY197cvDuaTUlp4WOu0kZ/En2UnxRv+GrkRIjM0xmQorik+S8bdoL6jl16DoatL
+21j54Z9mNA7p3gPGPEo8sjH+ku8TeRxNXE06+UXXf6gcQn9gZWiC9OD85NhkvFS1
+so08RjOlKBCzKymj0srphoEh/Jv/gdYxVLELY9i5YczAAx3EpCkURpdmMamILogA
+Vsj7fjrdL2PC8y9AOqLxVpycEu2yoENtz7jjupOEZbBAGXAyV4rqVe8pyaXo0UWH
+GuUTO4fQZEzKzUl2IA6HKP7F2PlT7kYJzC7v6v788e4nrdImoxrR6AF8iqI9gCdi
+tzPKvnBk8VjHJVNXjtxUmBYhtMNyGtwGpQP4eWgzCk56yuzxkiX/l92pXxnIVjZo
+E+ASngGJ/Iy5Vpc0uhSqIDVC2R3fUfVXnjEdK003BZmGWobr/TgP3bINMwfwkXVh
+4Yv+MCWNX0Fjmdbue+ZP
+=o1fm
+-END PGP SIGNATURE-

Added: 
dev/incubator/trafficcontrol/2.2.0/RC4/apache-trafficcontrol-2.2.0-incubating.tar.gz.sha512
==
--- 
dev/incubator/trafficcontrol/2.2.0/RC4/apache-trafficcontrol-2.2.0-incubating.tar.gz.sha512
 (added)
+++ 
dev/incubator/trafficcontrol/2.2.0/RC4/apache-trafficcontrol-2.2.0-incubating.tar.gz.sha512
 Wed Apr  4 15:44:08 2018
@@ -0,0 +1 @@
+f07e16ca979d4343516ef0915e1804ee4416752779878fcae51372c68725aa7dc9773a4e379349edb61e62586c8728e20aeb9bb02a7a3d74c6f71ffc3b609508
  apache-trafficcontrol-2.2.0-incubating.tar.gz




[incubator-trafficcontrol] branch 2.2.x updated: Fix extra license headings for removed x libs

2018-04-04 Thread rob
This is an automated email from the ASF dual-hosted git repository.

rob pushed a commit to branch 2.2.x
in repository https://gitbox.apache.org/repos/asf/incubator-trafficcontrol.git


The following commit(s) were added to refs/heads/2.2.x by this push:
 new 45151f8  Fix extra license headings for removed x libs
45151f8 is described below

commit 45151f8e518fe92dfa64c7311b877cb13299debc
Author: Robert Butts 
AuthorDate: Wed Apr 4 08:49:11 2018 -0600

Fix extra license headings for removed x libs

(cherry picked from commit 9d1d9a54bd42cdb33a00f3f141343b04cc152ed4)
---
 LICENSE | 16 
 1 file changed, 16 deletions(-)

diff --git a/LICENSE b/LICENSE
index 6079c0c..a1b85db 100644
--- a/LICENSE
+++ b/LICENSE
@@ -334,12 +334,6 @@ For the errors component:
 @traffic_stats/vendor/github.com/pkg/errors/*
 ./traffic_stats/vendor/github.com/pkg/errors/LICENSE
 
-For the x/net component:
-@traffic_stats/vendor/golang.org/x/net/*
-@traffic_ops/testing/compare/vendor/golang.org/x/net/*
-./traffic_stats/vendor/golang.org/x/net/LICENSE
-./traffic_stats/vendor/golang.org/x/net/PATENTS
-
 For the MaxMind DB GeoLite2 Database:
 @traffic_router/core/src/test/resources/geo/GeoLite2-City.mmdb.gz
 ./licenses/CC_A_SA_4-maxmind
@@ -408,16 +402,6 @@ The riak-go-client component is used under the Apache 
license:
 @traffic_ops/traffic_ops_golang/vendor/github.com/basho/riak-go-client/*
 ./traffic_ops/traffic_ops_golang/vendor/github.com/basho/riak-go-client/LICENSE
 
-The x/crypto library is used under the BSD License from the Go Authors:
-@traffic_ops/traffic_ops_golang/vendor/golang.org/x/crypto/*
-@traffic_ops/testing/api/vendor/golang.org/x/crypto/*
-./traffic_ops/traffic_ops_golang/vendor/golang.org/x/crypto/LICENSE
-./traffic_ops/traffic_ops_golang/vendor/golang.org/x/crypto/PATENTS
-
-The x/net library is used under the BSD License from the Go Authors:
-@traffic_ops/testing/api/vendor/golang.org/x/net/*
-./traffic_ops/testing/api/vendor/golang.org/x/net/LICENSE
-
 The envconfig component is used under the MIT license:
 @traffic_ops/testing/api/vendor/github.com/kelseyhightower/envconfig/*
 @traffic_ops/testing/compare/vendor/github.com/kelseyhightower/envconfig/*

-- 
To stop receiving notification emails like this one, please contact
r...@apache.org.


[incubator-trafficcontrol] branch master updated: Fix extra license headings for removed x libs

2018-04-04 Thread friede
This is an automated email from the ASF dual-hosted git repository.

friede pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
 new 9d1d9a5  Fix extra license headings for removed x libs
9d1d9a5 is described below

commit 9d1d9a54bd42cdb33a00f3f141343b04cc152ed4
Author: Robert Butts 
AuthorDate: Wed Apr 4 08:49:11 2018 -0600

Fix extra license headings for removed x libs
---
 LICENSE | 16 
 1 file changed, 16 deletions(-)

diff --git a/LICENSE b/LICENSE
index 6079c0c..a1b85db 100644
--- a/LICENSE
+++ b/LICENSE
@@ -334,12 +334,6 @@ For the errors component:
 @traffic_stats/vendor/github.com/pkg/errors/*
 ./traffic_stats/vendor/github.com/pkg/errors/LICENSE
 
-For the x/net component:
-@traffic_stats/vendor/golang.org/x/net/*
-@traffic_ops/testing/compare/vendor/golang.org/x/net/*
-./traffic_stats/vendor/golang.org/x/net/LICENSE
-./traffic_stats/vendor/golang.org/x/net/PATENTS
-
 For the MaxMind DB GeoLite2 Database:
 @traffic_router/core/src/test/resources/geo/GeoLite2-City.mmdb.gz
 ./licenses/CC_A_SA_4-maxmind
@@ -408,16 +402,6 @@ The riak-go-client component is used under the Apache 
license:
 @traffic_ops/traffic_ops_golang/vendor/github.com/basho/riak-go-client/*
 ./traffic_ops/traffic_ops_golang/vendor/github.com/basho/riak-go-client/LICENSE
 
-The x/crypto library is used under the BSD License from the Go Authors:
-@traffic_ops/traffic_ops_golang/vendor/golang.org/x/crypto/*
-@traffic_ops/testing/api/vendor/golang.org/x/crypto/*
-./traffic_ops/traffic_ops_golang/vendor/golang.org/x/crypto/LICENSE
-./traffic_ops/traffic_ops_golang/vendor/golang.org/x/crypto/PATENTS
-
-The x/net library is used under the BSD License from the Go Authors:
-@traffic_ops/testing/api/vendor/golang.org/x/net/*
-./traffic_ops/testing/api/vendor/golang.org/x/net/LICENSE
-
 The envconfig component is used under the MIT license:
 @traffic_ops/testing/api/vendor/github.com/kelseyhightower/envconfig/*
 @traffic_ops/testing/compare/vendor/github.com/kelseyhightower/envconfig/*

-- 
To stop receiving notification emails like this one, please contact
fri...@apache.org.