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

desruisseaux pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/sis-site.git


The following commit(s) were added to refs/heads/main by this push:
     new c1a6ee52 Minor edition for making the documentation more up-to-date.
c1a6ee52 is described below

commit c1a6ee52094a1306848ac9e93de20008a2e60d5e
Author: Martin Desruisseaux <[email protected]>
AuthorDate: Fri May 20 10:36:49 2022 +0200

    Minor edition for making the documentation more up-to-date.
---
 source/downloads.md                    |  8 ++++----
 source/release-management-setup.md     | 12 ++++++++++--
 source/release-management.md           |  2 ++
 static/templates/release-announce.html |  8 ++++----
 4 files changed, 20 insertions(+), 10 deletions(-)

diff --git a/source/downloads.md b/source/downloads.md
index 8598435f..391ed5e9 100644
--- a/source/downloads.md
+++ b/source/downloads.md
@@ -27,27 +27,27 @@ All downloads can be verified using the Apache {{% SIS %}} 
code signing [KEYS][k
 The PGP (_Pretty Good Privacy_) signatures can be verified using any OpenPGP 
implementation, for example GPG (_GNU Privacy Guard_).
 First download the [KEYS][keys] file and the `.asc` signature files for the 
relevant release packages.
 Make sure you get these files from the main distribution directory, rather 
than from a mirror.
-Then verify the signatures using the following:
+Then verify the signatures using the following (replace `src` by `bin` or 
`doc` if needed):
 
 Using GNU Privacy Guard:
 
 {{< highlight bash >}}
 gpg --import KEYS
-gpg --verify apache-sis-X.Y.Z.zip.asc
+gpg --verify apache-sis-{{% version %}}-src.zip.asc
 {{< / highlight >}}
 
 Using PGP version 6:
 
 {{< highlight bash >}}
 pgp -ka KEYS
-pgp apache-sis-X.Y.Z.zip.asc
+pgp apache-sis-{{% version %}}-src.zip.asc
 {{< / highlight >}}
 
 Using PGP version 5:
 
 {{< highlight bash >}}
 pgpk -a KEYS
-pgpv apache-sis-X.Y.Z.zip.asc
+pgpv apache-sis-{{% version %}}-src.zip.asc
 {{< / highlight >}}
 
 # Download as Maven dependencies    {#maven}
diff --git a/source/release-management-setup.md 
b/source/release-management-setup.md
index e78a73ed..555c7a8a 100644
--- a/source/release-management-setup.md
+++ b/source/release-management-setup.md
@@ -25,17 +25,25 @@ However in the later case, all relative paths in the 
_release management_ page w
 │  └─ integration-test
 │     └─ maven
 └─ site
+   ├─ main
+   ├─ asf-staging
+   ├─ asf-site
+   └─ javadoc
 {{< / highlight >}}
 
 Create the above directory structure as below:
 
 {{< highlight bash >}}
+mkdir site
 mkdir releases
-git clone    https://gitbox.apache.org/repos/asf/sis.git master
+git clone https://gitbox.apache.org/repos/asf/sis.git master
+git clone https://gitbox.apache.org/repos/asf/sis-site.git site/main
 svn checkout https://svn.apache.org/repos/asf/sis/data/non-free
-svn checkout https://svn.apache.org/repos/asf/sis/site/trunk site
 svn checkout https://svn.apache.org/repos/asf/sis/release-test 
releases/integration-test
 svn checkout https://dist.apache.org/repos/dist/dev/sis releases/distribution
+cd site/main
+git worktree add ../asf-staging asf-staging
+git worktree add ../asf-site asf-site
 {{< / highlight >}}
 
 # Generate GPG key    {#generate-key}
diff --git a/source/release-management.md b/source/release-management.md
index 5cbb4d6a..fbd8f833 100644
--- a/source/release-management.md
+++ b/source/release-management.md
@@ -50,6 +50,8 @@ in this page shall be adjusted accordingly.
     │     └─ maven
     └─ site
        ├─ main
+       ├─ asf-staging
+       ├─ asf-site
        └─ javadoc
 {{< / highlight >}}
 
diff --git a/static/templates/release-announce.html 
b/static/templates/release-announce.html
index d67f539c..51bb8f49 100644
--- a/static/templates/release-announce.html
+++ b/static/templates/release-announce.html
@@ -11,9 +11,9 @@
     </p><p>
       The Apache SIS PMC is pleased to announce the immediate availability of 
the SIS $VERSION release.
     </p><p>
-      The release can be obtained from the Apache SIS download page - 
http://sis.apache.org/downloads.html
+      The release can be obtained from the Apache SIS download page - 
https://sis.apache.org/downloads.html
     </p><p>
-      Release notes are available at - 
http://sis.apache.org/release-notes/$VERSION.html
+      Release notes are available at - 
https://sis.apache.org/release-notes/$VERSION.html
     </p><p>
       Apache SIS is a Java language library for developing geospatial 
applications.
       SIS provides data structures for geographic features and associated 
metadata
@@ -24,8 +24,8 @@
       Some Apache SIS features are:
     </p>
     <ul>
+      <li>Read netCDF-3, GeoTIFF, GPX, Moving Feature CSV, ASCII Grid, World 
File and other data formats</li>
       <li>Read/write ISO 19115-3 metadata and legacy ISO 19139 compliant XML 
documents</li>
-      <li>Read netCDF-3, GeoTIFF, Landsat, GPX and Moving Feature CSV data</li>
       <li>Referencing by coordinates (ISO 19111) or by identifiers (ISO 
19112)<ul>
         <li>Well Known Text (WKT) version 1 and 2 (ISO 19162)</li>
         <li>Geographic Markup Language (GML) version 3.2 (ISO 19136)</li>
@@ -43,6 +43,6 @@
       </ul></li>
     </ul>
 
-    <p>For general information on Apache SIS, please visit the project 
website: http://sis.apache.org/</p>
+    <p>For general information on Apache SIS, please visit the project 
website: https://sis.apache.org/</p>
   </body>
 </html>

Reply via email to