This is an automated email from the ASF dual-hosted git repository.
vy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-site.git
The following commit(s) were added to refs/heads/main by this push:
new bd4020a7 Add `Download` page
bd4020a7 is described below
commit bd4020a7e1d143c61b49d85b66fb3069476e88b2
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Wed Apr 17 13:31:14 2024 +0200
Add `Download` page
---
_data/projects.yml | 22 +++++++++++-----------
_includes/navbar.html | 23 +----------------------
download.adoc | 45 +++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 57 insertions(+), 33 deletions(-)
diff --git a/_data/projects.yml b/_data/projects.yml
index ee93a7b4..6b37cfcf 100644
--- a/_data/projects.yml
+++ b/_data/projects.yml
@@ -1,54 +1,54 @@
-- name: Apache Log4j®
+- name: Log4j®
description: A versatile, industrial-grade Java logging framework composed
of an API, its implementation, and components to assist the deployment for
various use cases.
url: /log4j
status: active
section: creation
-- name: Apache Log4j® Kotlin
+- name: Log4j® Kotlin
description: A Kotlin-friendly interface to log against the Log4j® API.
url: /log4j/kotlin
status: active
section: creation
-- name: Apache Log4j® Scala
+- name: Log4j® Scala
description: A Scala-friendly interface to log against the Log4j® API.
url: /log4j/scala
status: active
section: creation
-- name: Apache log4cxx
+- name: Log4cxx
description: A logging framework for C++ patterned after Log4j®.
url: /log4cxx
status: active
section: creation
-- name: Apache Chainsaw
+- name: Chainsaw
description: A GUI-based log viewer intended as a companion to Log4j®.
url: /chainsaw
status: dormant
section: processing
-- name: Apache Log4j® Audit
+- name: Log4j® Audit
description: Audit logging framework built upon Apache Log4j®.
url: /log4j-audit/latest
status: active
section: processing
-- name: Apache Flume
+- name: Flume
description: Distributed, reliable, and available service for efficiently
collecting, aggregating, and moving large amounts of log data.
url: "https://flume.apache.org"
status: active
section: processing
-- name: Apache Log4Net
+- name: Log4Net
description: A port of the Log4j® to the Microsoft .NET runtime.
url: /log4net
status: active
section: creation
-- name: Apache Log4j® 1
+- name: Log4j® 1
description: The very first Log4j® major release. Reached End-Of-Life August
2015.
url: /log4j/1.x
status: dormant
section: creation
-- name: Apache Log4j® 1 Extras
+- name: Log4j® 1 Extras
description: Extras for Log4j® 1; companions, receivers, and more.
url: /log4j/extras
status: dormant
section: creation
-- name: Apache log4php
+- name: Log4php
description: A versatile logging framework for PHP. Originally a port of
Log4j® to PHP, it has grown to include various PHP specific features.
url: /log4php
status: dormant
diff --git a/_includes/navbar.html b/_includes/navbar.html
index 9566dc5f..49709b4f 100644
--- a/_includes/navbar.html
+++ b/_includes/navbar.html
@@ -18,28 +18,7 @@
</li>
</ul>
<ul class="nav">
- <li class="dropdown">
- <a href="#" class="dropdown-toggle"
data-toggle="dropdown">Projects<b class="caret"></b></a>
- <ul class="dropdown-menu">
- {% for project in site.data.projects %}
- {% if project.status == "active" %}
- <li><a
href="{{project.url}}">{{project.name}}</a></li>
- {% endif %}
- {% endfor %}
- </ul>
- </li>
- </ul>
- <ul class="nav">
- <li class="dropdown">
- <a href="#" class="dropdown-toggle"
data-toggle="dropdown">Dormant<b class="caret"></b></a>
- <ul class="dropdown-menu">
- {% for project in site.data.projects %}
- {% if project.status == "dormant" %}
- <li><a
href="{{project.url}}">{{project.name}}</a></li>
- {% endif %}
- {% endfor %}
- </ul>
- </li>
+ <li><a href="/download.html">Download</a></li>
</ul>
<ul class="nav">
<li><a href="/blog">Blog</a></li>
diff --git a/download.adoc b/download.adoc
new file mode 100644
index 00000000..58c5a34f
--- /dev/null
+++ b/download.adoc
@@ -0,0 +1,45 @@
+////
+ 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 KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+////
+
+= Download
+
+In accordance with the Apache Software Foundation's release
https://infra.apache.org/release-distribution.html[distribution policy] and
https://infra.apache.org/release-publishing.html[creation process], all Logging
Services release distributions are _officially_ accessible from the following
locations:
+
+Primary distribution channels::
+* ASF https://downloads.apache.org/logging[Distribution directory] (contains
**the most recent releases**)
+* ASF https://archive.apache.org/dist/logging[Distribution directory
**archive**] (contains all published releases)
+
+Maven-based distribution channels::
+* ASF https://repository.apache.org/content/repositories/releases[Release] and
https://repository.apache.org/content/repositories/snapshots[snapshot]
repositories (mirrored to https://central.sonatype.dev/[the Maven Central
Repository])
+
+[#verify]
+== Verification
+
+All Logging Services release distributions are digitally signed by the release
manager and provided with checksum files.
+You can verify a distribution by following the below shared instructions:
+
+[source,bash]
+----
+# Download and import the release manager public keys
+wget -O - https://downloads.apache.org/logging/KEYS | gpg --import
+
+# Verify signatures
+for sigFile in *.asc; do gpg --verify $sigFile; done
+
+# Verify checksums
+shasum --check *.sha512
+----