This is an automated email from the ASF dual-hosted git repository.
rmiddleton pushed a change to branch next_stable
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git.
from 849e9eb Merge branch 'swebb2066-next_wchar_throughputtests' into
next_stable
add d354ea5 Save abi compliance check (#98)
add 2584214 Add short filename to location info (#95)
add 6a6be61 [LOG4CXX-548] Reproducible Doxygen doc generation (#99)
add e4ba93b Update log4cxx.h.in (#86)
add c4b7dc9 Update copyright date
add f06575f updated mapfilter to have license information
add 6f81004 Added copyright information to cmake files
new 60a9812 Merge branch 'master' into next_stable
The 1 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:
.github/workflows/abi-compatibility.yml | 10 +++-
CMakeLists.txt | 16 +++++++
src/CMakeLists.txt | 16 +++++++
src/examples/cpp/CMakeLists.txt | 17 +++++++
src/main/CMakeLists.txt | 16 +++++++
src/main/cpp-qt/CMakeLists.txt | 17 +++++++
src/main/cpp-qt/messagehandler.cpp | 5 +-
src/main/cpp/CMakeLists.txt | 21 +++++++-
src/main/cpp/class.cpp | 5 ++
src/main/cpp/locationinfo.cpp | 8 ++++
src/main/cpp/patternlayout.cpp | 3 ++
...r.cpp => shortfilelocationpatternconverter.cpp} | 34 ++++++-------
src/main/include/CMakeLists.txt | 17 +++++++
src/main/include/log4cxx/log4cxx.h.in | 23 +++++++--
...erter.h => shortfilelocationpatternconverter.h} | 12 ++---
src/main/include/log4cxx/patternlayout.h | 6 +++
.../include/log4cxx/spi/location/locationinfo.h | 52 ++++++++++++++++++--
src/main/resources/CMakeLists.txt | 17 +++++++
src/site/CMakeLists.txt | 44 ++++++++++++-----
src/site/doxy/Doxyfile.in | 18 +++----
src/site/doxy/footer.html | 2 +-
src/site/markdown/filters/MapFilter.md | 23 ++++++++-
src/site/markdown/usage.md | 10 ++++
src/test/CMakeLists.txt | 17 +++++++
src/test/cpp/CMakeLists.txt | 21 +++++++-
src/test/cpp/customlogger/CMakeLists.txt | 17 +++++++
src/test/cpp/defaultinit/CMakeLists.txt | 17 +++++++
src/test/cpp/filter/CMakeLists.txt | 17 +++++++
src/test/cpp/helpers/CMakeLists.txt | 17 +++++++
src/test/cpp/jsonlayouttest.cpp | 8 ++--
.../{mdctestcase.cpp => locationdisabledtest.cpp} | 56 ++++++++++++----------
src/test/cpp/{mdctestcase.cpp => locationtest.cpp} | 56 ++++++++++++----------
src/test/cpp/net/CMakeLists.txt | 16 +++++++
src/test/cpp/pattern/CMakeLists.txt | 17 +++++++
src/test/cpp/patternlayouttest.cpp | 8 ++++
src/test/cpp/rolling/CMakeLists.txt | 17 +++++++
src/test/cpp/rolling/timebasedrollingtest.cpp | 2 +
src/test/cpp/throughput/CMakeLists.txt | 19 ++++++++
src/test/cpp/util/CMakeLists.txt | 17 +++++++
src/test/cpp/varia/CMakeLists.txt | 17 +++++++
src/test/cpp/xml/CMakeLists.txt | 17 +++++++
src/test/java/CMakeLists.txt | 17 +++++++
...ernLayout13.properties => location1.properties} | 6 +--
...ut12.properties => locationdisabled.properties} | 4 +-
...mdc.1.properties => patternLayout14.properties} | 4 +-
src/test/resources/witness/location1-disabled | 1 +
src/test/resources/witness/location1-good | 1 +
src/test/resources/witness/patternLayout.14 | 10 ++++
48 files changed, 670 insertions(+), 121 deletions(-)
copy src/main/cpp/{filelocationpatternconverter.cpp =>
shortfilelocationpatternconverter.cpp} (57%)
copy src/main/include/log4cxx/pattern/{filelocationpatternconverter.h =>
shortfilelocationpatternconverter.h} (82%)
copy src/test/cpp/{mdctestcase.cpp => locationdisabledtest.cpp} (59%)
copy src/test/cpp/{mdctestcase.cpp => locationtest.cpp} (60%)
copy src/test/resources/input/{patternLayout13.properties =>
location1.properties} (88%)
copy src/test/resources/input/{patternLayout12.properties =>
locationdisabled.properties} (87%)
copy src/test/resources/input/{patternLayout.mdc.1.properties =>
patternLayout14.properties} (93%)
create mode 100644 src/test/resources/witness/location1-disabled
create mode 100644 src/test/resources/witness/location1-good
create mode 100644 src/test/resources/witness/patternLayout.14