You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by zr...@apache.org on 2023/01/06 18:57:31 UTC

[trafficcontrol] branch master updated (098354c34a -> 47098fb394)

This is an automated email from the ASF dual-hosted git repository.

zrhoffman pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


    from 098354c34a Copy from alpine-based Golang image for alpine Docker images (#7267)
     add 47098fb394 t3c: use mustache templating for remap.config lines (#7155)

No new revisions were added by this update.

Summary of changes:
 LICENSE                                            |   5 +
 .../ort-tests/baseline-configs/remap.config        |   8 +-
 docs/source/overview/profiles_and_parameters.rst   |  55 +-
 go.mod                                             |   1 +
 go.sum                                             |   3 +-
 lib/go-atscfg/remapdotconfig.go                    | 244 ++++--
 lib/go-atscfg/remapdotconfig_test.go               | 406 +++++++--
 .../github.com/cbroglie/mustache/.goreleaser.yml   |  13 +
 .../github.com/cbroglie/mustache/LICENSE           |   2 +-
 vendor/github.com/cbroglie/mustache/Makefile       |  25 +
 vendor/github.com/cbroglie/mustache/README.md      | 233 +++++
 vendor/github.com/cbroglie/mustache/error.go       |  66 ++
 vendor/github.com/cbroglie/mustache/mustache.go    | 948 +++++++++++++++++++++
 vendor/github.com/cbroglie/mustache/partials.go    | 102 +++
 vendor/modules.txt                                 |   3 +
 15 files changed, 1985 insertions(+), 129 deletions(-)
 create mode 100644 vendor/github.com/cbroglie/mustache/.goreleaser.yml
 copy licenses/MIT-SecLists => vendor/github.com/cbroglie/mustache/LICENSE (96%)
 create mode 100644 vendor/github.com/cbroglie/mustache/Makefile
 create mode 100644 vendor/github.com/cbroglie/mustache/README.md
 create mode 100644 vendor/github.com/cbroglie/mustache/error.go
 create mode 100644 vendor/github.com/cbroglie/mustache/mustache.go
 create mode 100644 vendor/github.com/cbroglie/mustache/partials.go