Rename "Formats" as "Data formats" and add information about AWS S3 access.
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index c9c1b1b..1b4250c 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -36,7 +36,7 @@
     <ul class="nav nav-pills flex-column mb-auto position-fixed">
       <li><a class="nav-link {{ if eq .Page.RelPermalink "/" }} active {{ else }} text-white {{ end }}" href="/index.html">Home</a></li>
       <li><a class="nav-link {{ if eq .Page.RelPermalink "/standards.html" }} active {{ else }} text-white {{ end }}" href="standards.html">Standards</a></li>
-      <li><a class="nav-link {{ if eq .Page.RelPermalink "/formats.html" }} active {{ else }} text-white {{ end }}" href="formats.html">Formats</a></li>
+      <li><a class="nav-link {{ if eq .Page.RelPermalink "/formats.html" }} active {{ else }} text-white {{ end }}" href="formats.html">Data formats</a></li>
       <li><a class="nav-link text-white" href="http://www.apache.org/licenses/">License</a></li>
       <li><a class="nav-link {{ if eq .Page.RelPermalink "/javafx.html" }} active {{ else }} text-white {{ end }}" href="javafx.html">Application (demo)</a></li>
       <li><a class="nav-link {{ if eq .Page.RelPermalink "/downloads.html" }} active {{ else }} text-white {{ end }}" href="downloads.html">Downloads</a></li>
diff --git a/source/formats.md b/source/formats.md
index dbd2020..e745cd1 100644
--- a/source/formats.md
+++ b/source/formats.md
@@ -1,5 +1,5 @@
 ---
-title: Formats supported by Apache SIS
+title: Data formats supported by Apache SIS
 ---
 
 Apache {{% SIS %}} can read data from the formats listed below.
@@ -98,3 +98,38 @@
 When requesting a `RenderedImage`, a two-dimensional slice must be specified,
 unless the data are already two-dimensional.
 The two-dimensional slice can be along any dimensions.
+See the [SIS developer guide](book/en/developer-guide.html#DataAccess) for more information.
+
+
+# Accessing data on the cloud
+
+Data files can be located on Amazon S3 storage service.
+For accessing those data, add the following dependency to the Maven project:
+
+{{< highlight xml >}}
+<dependencies>
+  <dependency>
+    <groupId>org.apache.sis.cloud</groupId>
+    <artifactId>sis-cloud-aws</artifactId>
+    <version>{{% version %}}</version>
+    <scope>runtime</scope>
+  </dependency>
+</dependencies>
+{{< / highlight >}}
+
+With above dependency on the classpath, it is possible to instantiate `java.nio.Path` object
+with a value of the form `"S3://bucket/pseudo-directory/file"`.
+Login and password can be specified in a `~/.aws/credentials` file like below
+(Apache SIS does not yet manage credentials by itself).
+
+{{< highlight config >}}
+[default]
+aws_access_key_id = <some value>
+aws_secret_access_key = <some value>
+{{< / highlight >}}
+
+An alternative to above configuration is to set the
+`AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` environment variables.
+See [AWS developer guide][aws-credentials] for more information.
+
+[aws-credentials]: https://docs.aws.amazon.com/sdkref/latest/guide/file-format.html
diff --git a/source/release-management.md b/source/release-management.md
index 95d8bfd..5cbb4d6 100644
--- a/source/release-management.md
+++ b/source/release-management.md
@@ -475,10 +475,28 @@
 * `source/download.md` for SIS version and JAXB dependency
 * `source/developer-guide/introduction/Installation.html`
 
-Commit:
+Execute `hugo` and browse the documentation in the `target` repository.
+If okay, commit and copy to staging repository:
 
 {{< highlight bash >}}
-svn commit --message "Prepare documentation for the $NEW_VERSION release."
+git commit --message "Prepare documentation for the $NEW_VERSION release."
+
+# Copy to staging repository
+rm --recursive ../asf-staging/*
+mv target/.htaccess target/* ../asf-staging/
+rmdir target
+cd ../asf-staging/
+rm fr.html
+
+# Remove trailing whitespaces
+find . -name "*.html" -type f -exec sed -i 's/[[:space:]]*$//' '{}' \;
+find . -name "*.xml" -type f -exec sed -i 's/[[:space:]]*$//' '{}' \;
+
+# Commit
+git add --all
+git commit --message "Staging repository for the $NEW_VERSION release."
+```
+
 {{< / highlight >}}
 
 The new web site will be published in the [staging area](https://sis.staged.apache.org/).