You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rm...@apache.org on 2021/01/13 02:48:47 UTC

[logging-log4cxx] branch master updated (6ad0966 -> 87aa499)

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

rmiddleton pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git.


    from 6ad0966  Merge pull request #50 from apache/logcxx_510_ts
     new ea7701d  Initial conversion to markdown for use with Doxygen
     new af80872  Merge branch 'master' into documentation-updates
     new e44ac5a  Generate site thru cmake.  Updated usage document
     new fd5736f  Added layout file to add custom links
     new d0900a9  Made project only 3 numbers instead of 4
     new 888b551  Changed the download page to be markdown
     new f024b80  Converted community to markdown
     new 3e9bc52  Added mailing list info
     new e318bec  Updated community and usage overview pages
     new 095ee7a  Added get section with license
     new c448095  Added copyright information to footer
     new f235ae9  Updated documentation on how to build log4cxx
     new 79ca2a0  Added ability to create and sign dist files
     new 61dbe78  Fix build on Windows
     new 17fec73  Revert "Made project only 3 numbers instead of 4"
     new 494790b  Revert "Fix build on Windows"
     new 09d3fd1  Reverted removal of tweak
     new 69ff95e  Added some configuration samples documentation
     new 45c3afb  changed syntax of file type
     new c5ae5db  Make inline code blocks stand out like maven generation
     new cb8ffde  Added links
     new f8d120f  Generate the tar/zip with the correct name
     new 02e70f6  Minor formatting changes
     new c1c0717  Merge branch 'master' into documentation-updates
     new 9a57350  Added table of contents to configuration samples
     new fe0e5e7  Added ToC to usage page
     new 3cdacfe  Added documentation on removing log statements
     new f5e4928  Added documentation about logging custom types
     new 8b33c58  Added documentation and example on how to extend log4cxx
     new ebec5f1  Indent if statement.  Add visual studio files to ignored CPack
     new e78ce92  Put the site generation into its own dedicated CMakeLists
     new 87aa499  Merge pull request #49 from rm5248/documentation-updates

The 2026 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:
 .gitignore                                         |    1 +
 CMakeLists.txt                                     |   22 +
 src/CMakeLists.txt                                 |    2 +
 src/examples/cpp/CMakeLists.txt                    |    6 +-
 src/examples/cpp/custom-appender.cpp               |   71 ++
 src/examples/cpp/custom-appender.xml               |   22 +
 src/site/CMakeLists.txt                            |   15 +
 src/site/apt/building/cmake.apt                    |  147 ---
 src/site/apt/building/vcpkg.apt                    |   43 -
 src/site/apt/community/issue-tracking.apt          |   48 -
 src/site/apt/download.apt.vm                       |   58 --
 src/site/apt/index.apt                             |   45 -
 src/site/doxy/Doxyfile.in                          |  521 ++++++----
 src/site/doxy/DoxygenLayout.xml                    |  197 ++++
 src/site/doxy/customdoxygen.css                    |   22 +
 src/site/doxy/footer.html                          |   25 +
 src/site/images/add.gif                            |  Bin 0 -> 207 bytes
 src/site/images/fix.gif                            |  Bin 0 -> 181 bytes
 src/site/images/update.gif                         |  Bin 0 -> 192 bytes
 .../markdown/0-community.md}                       |   27 +-
 .../defaultInit.xml => site/markdown/1-usage.md}   |   29 +-
 .../xml/defaultInit.xml => site/markdown/2-get.md} |   28 +-
 .../markdown/3-development.md}                     |   30 +-
 src/site/markdown/change-report-gh.md              |  511 ++++++++++
 src/site/markdown/community/issue-tracking.md      |   52 +
 src/site/markdown/community/mailing-lists.md       |   38 +
 src/site/markdown/configuration-samples.md         |  214 ++++
 .../development}/autotools.apt                     |    0
 src/site/markdown/development/build-cmake.md       |  140 +++
 .../markdown/development/build-vcpkg.md}           |   60 +-
 src/site/markdown/development/building.md          |   51 +
 .../markdown/{ => development}/dependencies.md     |    7 +
 .../building => markdown/development}/maven.apt    |    0
 src/site/markdown/development/source-repository.md |   48 +
 src/site/markdown/download.md.in                   |   64 ++
 src/site/markdown/extending.md                     |  141 +++
 src/site/markdown/faq.md                           |    6 +
 src/site/markdown/index.md                         |   47 +
 LICENSE => src/site/markdown/license.md            |   32 +-
 src/site/markdown/usage.md                         |  813 +++++++++++++++
 src/site/xdoc/usage.xml                            | 1062 --------------------
 41 files changed, 2983 insertions(+), 1662 deletions(-)
 create mode 100644 src/examples/cpp/custom-appender.cpp
 create mode 100644 src/examples/cpp/custom-appender.xml
 create mode 100644 src/site/CMakeLists.txt
 delete mode 100644 src/site/apt/building/cmake.apt
 delete mode 100644 src/site/apt/building/vcpkg.apt
 delete mode 100644 src/site/apt/community/issue-tracking.apt
 delete mode 100644 src/site/apt/download.apt.vm
 delete mode 100644 src/site/apt/index.apt
 create mode 100644 src/site/doxy/DoxygenLayout.xml
 create mode 100644 src/site/doxy/customdoxygen.css
 create mode 100644 src/site/doxy/footer.html
 create mode 100644 src/site/images/add.gif
 create mode 100644 src/site/images/fix.gif
 create mode 100644 src/site/images/update.gif
 copy src/{test/resources/input/xml/defaultInit.xml => site/markdown/0-community.md} (57%)
 copy src/{test/resources/input/xml/defaultInit.xml => site/markdown/1-usage.md} (57%)
 copy src/{test/resources/input/xml/defaultInit.xml => site/markdown/2-get.md} (57%)
 copy src/{test/resources/input/xml/defaultInit.xml => site/markdown/3-development.md} (57%)
 create mode 100644 src/site/markdown/change-report-gh.md
 create mode 100644 src/site/markdown/community/issue-tracking.md
 create mode 100644 src/site/markdown/community/mailing-lists.md
 create mode 100644 src/site/markdown/configuration-samples.md
 rename src/site/{apt/building => markdown/development}/autotools.apt (100%)
 create mode 100644 src/site/markdown/development/build-cmake.md
 copy src/{test/resources/input/xml/asyncAppender1.xml => site/markdown/development/build-vcpkg.md} (53%)
 create mode 100644 src/site/markdown/development/building.md
 rename src/site/markdown/{ => development}/dependencies.md (94%)
 rename src/site/{apt/building => markdown/development}/maven.apt (100%)
 create mode 100644 src/site/markdown/development/source-repository.md
 create mode 100644 src/site/markdown/download.md.in
 create mode 100644 src/site/markdown/extending.md
 create mode 100644 src/site/markdown/index.md
 copy LICENSE => src/site/markdown/license.md (91%)
 create mode 100644 src/site/markdown/usage.md
 delete mode 100644 src/site/xdoc/usage.xml