You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bc...@apache.org on 2019/04/12 16:38:09 UTC

[trafficserver] branch 8.1.x updated (15cd18e -> 6dc9b9c)

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

bcall pushed a change to branch 8.1.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git.


    from 15cd18e  Updated Changelog
     new a597271  Revert "Revert "Revert "Fixes memory leaks in header_rewrite"""
     new 72cb49e  header_rewrite: Adds basic string concatenation
     new 0dc46a4  Fixes memory leaks in header_rewrite
     new d9bbf23  Some C++ cleanup for header_rewrite
     new 209cc00  Deprecates the old string expansion tags in header_rewrite
     new 2ce5ba2  Adjusts the format for header_rewrite string concatenation
     new dcb5498  Turn this Debug back into an Error
     new 6dc9b9c  Doc: Repair various warnings, mostly from header_rewrite and ArgParser. Update the nitpick list.

The 11308 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 doc/admin-guide/plugins/header_rewrite.en.rst      | 86 +++++++++++++-------
 doc/conf.py                                        |  8 +-
 .../internal-libraries/ArgParser.en.rst            | 12 +--
 plugins/header_rewrite/Examples/Geo                |  2 +-
 plugins/header_rewrite/Makefile.inc                |  1 +
 plugins/header_rewrite/condition.h                 | 11 +--
 plugins/header_rewrite/conditions.cc               | 57 ++++++++++++--
 plugins/header_rewrite/conditions.h                | 78 ++++++++++++------
 plugins/header_rewrite/expander.h                  |  2 +-
 plugins/header_rewrite/factory.cc                  |  2 +-
 plugins/header_rewrite/header_rewrite.cc           |  2 +-
 plugins/header_rewrite/header_rewrite_test.cc      | 92 +++++++++++++++++++++-
 plugins/header_rewrite/matcher.h                   | 40 +++-------
 plugins/header_rewrite/operator.h                  |  8 +-
 plugins/header_rewrite/operators.cc                | 17 ++--
 plugins/header_rewrite/operators.h                 | 42 +++++-----
 plugins/header_rewrite/parser.cc                   | 78 ++++++++++++++++--
 plugins/header_rewrite/parser.h                    | 19 ++++-
 plugins/header_rewrite/regex_helper.cc             | 12 ---
 plugins/header_rewrite/regex_helper.h              |  9 +--
 plugins/header_rewrite/resources.h                 | 42 +++-------
 plugins/header_rewrite/ruleset.h                   | 26 ++----
 plugins/header_rewrite/statement.h                 | 35 ++------
 plugins/header_rewrite/value.cc                    | 73 +++++++++++++++++
 plugins/header_rewrite/value.h                     | 49 +++---------
 25 files changed, 509 insertions(+), 294 deletions(-)
 create mode 100644 plugins/header_rewrite/value.cc