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
commit 73184f238ff23ecf541dfa5c3eb0104c0852e0b9 Author: Martin Desruisseaux <martin.desruisse...@geomatys.com> AuthorDate: Sat Feb 8 15:11:02 2025 +0100 Remove the menu since we removed JavaScript. Replaced by "About" and "Documentation" pages. --- content/_index.md | 3 ++- content/about.md | 25 ++++++++++++++++++++ content/documentation.md | 26 ++++++++++++++++++++ layouts/_default/baseof.html | 7 ++---- layouts/partials/menu.html | 56 +------------------------------------------- 5 files changed, 56 insertions(+), 61 deletions(-) diff --git a/content/_index.md b/content/_index.md index 0ef89be3..f2d09a3f 100644 --- a/content/_index.md +++ b/content/_index.md @@ -5,6 +5,7 @@ title: The Apache SIS™ library Apache Spatial Information System (SIS) is a free software, Java language library for developing geospatial applications. SIS provides data structures for geographic features and associated metadata along with methods to manipulate those data structures. The library is an implementation of [GeoAPI 3.0.2][geoapi] interfaces and can be used for desktop or server applications. +The library is provided under [Apache 2 license](https://www.apache.org/licenses/LICENSE-2.0). The SIS metadata module enables the creation of metadata objects which comply with the model of {{% OGC %}}/{{% ISO %}} international standards. @@ -57,7 +58,7 @@ The API and the data encodings follow [international standards](standards.html) -## Using Apache SIS {#user} +# Using Apache SIS {#using} The latest SIS release is {{% version %}}, released in October 2023, and can be [downloaded](downloads.html) as a `zip` files or as Maven dependencies. diff --git a/content/about.md b/content/about.md new file mode 100644 index 00000000..2058f554 --- /dev/null +++ b/content/about.md @@ -0,0 +1,25 @@ +--- +title: About SIS and ASF +--- + +About Apache SIS: + +* [Project Team](team-list.html) +* [Mailing Lists](mail-lists.html) +* [Licenses](https://www.apache.org/licenses/) +* [Privacy policy](https://privacy.apache.org/policies/privacy-policy-public.html) + +About the Apache Software Foundation: + +* [The Foundation](https://www.apache.org) +* [Donate](https://www.apache.org/foundation/sponsorship.html) +* [Thanks](https://www.apache.org/foundation/thanks.html) +* [Security](https://www.apache.org/security/) + +Contribute: + +* [Checkout Sources](source.html) +* [New Contributor](contributor.html) +* [Issue Tracker](https://issues.apache.org/jira/browse/SIS) +* [GitHub mirror](https://github.com/apache/sis) +* [Wiki](https://cwiki.apache.org/confluence/display/SIS) diff --git a/content/documentation.md b/content/documentation.md new file mode 100644 index 00000000..93aa575f --- /dev/null +++ b/content/documentation.md @@ -0,0 +1,26 @@ +--- +title: Documentation +--- + +Supported features: + +* [EPSG geodetic dataset](epsg.html) +* [Coordinate reference systems](tables/CoordinateReferenceSystems.html) +* [Operation methods](tables/CoordinateOperationMethods.html) +* [Data formats](formats.html) +* [International standards](standards.html) + +For library users: + +* [How to…](howto.html) +* [Online Javadoc](apidocs/index.html) +* [Developer Guide](book/en/developer-guide.html) +* [Code patterns](code-patterns.html) +* [FAQ](faq.html) + +For library developers: + +* [Coding Conventions](coding-conventions.html) +* [Release management](release-management.html) +* [Issue Tracker](https://issues.apache.org/jira/browse/SIS) +* [Wiki](https://cwiki.apache.org/confluence/display/SIS) diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index a2573925..57a57939 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -35,17 +35,14 @@ <div class="d-flex flex-column flex-shrink-0 p-3 text-white bg-dark" style="width:13rem; min-height:40rem"> <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 text-white" href="https://www.apache.org/licenses/">License</a></li> + <li><a class="nav-link {{ if eq .Page.RelPermalink "/about.html" }} active {{ else }} text-white {{ end }}" href="/about.html">About</a></li> <li><a class="nav-link {{ if eq .Page.RelPermalink "/downloads.html" }} active {{ else }} text-white {{ end }}" href="/downloads.html">Downloads</a></li> <li><a class="nav-link {{ if strings.Contains .Page.RelPermalink "/howto" }} active {{ else }} text-white {{ end }}" href="/howto.html">How to…</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">Data formats</a></li> <li><a class="nav-link {{ if eq .Page.RelPermalink "/epsg.html" }} active {{ else }} text-white {{ end }}" href="/epsg.html">EPSG Database</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 text-white" href="/apidocs/index.html">Online Javadoc</a></li> - <li><a class="nav-link text-white" href="/book/en/developer-guide.html">Developer Guide</a></li> - <li><a class="nav-link {{ if eq .Page.RelPermalink "/code-patterns.html" }} active {{ else }} text-white {{ end }}" href="/code-patterns.html">Code patterns</a></li> - <li><a class="nav-link {{ if eq .Page.RelPermalink "/faq.html" }} active {{ else }} text-white {{ end }}" href="/faq.html">FAQ</a></li> + <li><a class="nav-link {{ if eq .Page.RelPermalink "/documentation.html" }} active {{ else }} text-white {{ end }}" href="/documentation.html">Documentation</a></li> </ul> </div> <div class="col"> diff --git a/layouts/partials/menu.html b/layouts/partials/menu.html index 64a4eb3a..8c1fca21 100644 --- a/layouts/partials/menu.html +++ b/layouts/partials/menu.html @@ -1,60 +1,6 @@ <nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark"> <div class="container-fluid"> - <a class="navbar-brand" href="/index.html"> Apache SIS™</a> - <ul class="navbar-nav me-auto mb-2 mb-md-0"> - <li class="nav-item dropdown"> - <a class="nav-link dropdown-toggle" id="menuAbout" data-bs-toggle="dropdown" aria-expanded="false">About</a> - <ul class="dropdown-menu" aria-labelledby="menuAbout"> - <li><a class="dropdown-item" href="https://www.apache.org/licenses/">License</a></li> - <li><a class="dropdown-item" href="/mail-lists.html">Mailing Lists</a></li> - <li><a class="dropdown-item" href="/team-list.html">Project Team</a></li> - <li><a class="dropdown-item" href="https://privacy.apache.org/policies/privacy-policy-public.html">Privacy policy</a></li> - </ul> - </li> - <li class="nav-item dropdown"> - <a class="nav-link dropdown-toggle" id="menuDownload" data-bs-toggle="dropdown" aria-expanded="false">Download</a> - <ul class="dropdown-menu" aria-labelledby="menuDownload"> - <li><a class="dropdown-item" href="/downloads.html">Downloads</a></li> - <li><a class="dropdown-item" href="/source.html">Checkout Sources</a></li> - <li><a class="dropdown-item" href="/epsg.html">EPSG Database</a></li> - </ul> - </li> - <li class="nav-item dropdown"> - <a class="nav-link dropdown-toggle" id="menuDocumentation" data-bs-toggle="dropdown" aria-expanded="false">Documentation</a> - <ul class="dropdown-menu" aria-labelledby="menuDocumentation"> - <li><a class="dropdown-item" href="/apidocs/index.html">Online Javadoc</a></li> - <li><a class="dropdown-item" href="/book/en/developer-guide.html">Developer Guide</a></li> - <li><a class="dropdown-item" href="/howto.html">How to…</a></li> - <li><a class="dropdown-item" href="/formats.html">Supported formats</a></li> - <li><a class="dropdown-item" href="/tables/CoordinateReferenceSystems.html">Supported CRS</a></li> - <li><a class="dropdown-item" href="/tables/CoordinateOperationMethods.html">Map Projections</a></li> - <li><a class="dropdown-item" href="/code-patterns.html">Code Patterns</a></li> - <li><a class="dropdown-item" href="/faq.html">FAQ</a></li> - </ul> - </li> - <li class="nav-item dropdown"> - <a class="nav-link dropdown-toggle" id="menuContribute" data-bs-toggle="dropdown" aria-expanded="false">Contribute</a> - <ul class="dropdown-menu" aria-labelledby="menuContribute"> - <li><a class="dropdown-item" href="/contributor.html">New Contributor</a></li> - <li><a class="dropdown-item" href="/coding-conventions.html">Coding Conventions</a></li> - <li><a class="dropdown-item" href="/mail-lists.html">Mailing Lists</a></li> - <li><a class="dropdown-item" href="https://issues.apache.org/jira/browse/SIS">Issue Tracker</a></li> - <li><a class="dropdown-item" href="https://github.com/apache/sis">GitHub mirror</a></li> - <li><a class="dropdown-item" href="https://cwiki.apache.org/confluence/display/SIS">Wiki</a></li> - <li><hr class="dropdown-divider"></li> - <li><a class="dropdown-item" href="/release-management.html">Release management</a></li> - </ul> - </li> - <li class="nav-item dropdown"> - <a class="nav-link dropdown-toggle" id="menuASF" data-bs-toggle="dropdown" aria-expanded="false">The Foundation</a> - <ul class="dropdown-menu" aria-labelledby="menuASF"> - <li><a class="dropdown-item" href="https://www.apache.org">The Foundation</a></li> - <li><a class="dropdown-item" href="https://www.apache.org/foundation/sponsorship.html">Donate</a></li> - <li><a class="dropdown-item" href="https://www.apache.org/foundation/thanks.html">Thanks</a></li> - <li><a class="dropdown-item" href="https://www.apache.org/security/">Security</a></li> - </ul> - </li> - </ul> + <a class="navbar-brand" href="/index.html">Apache SIS™</a> <ul class="navbar-nav ml-auto mb-2 mb-md-0"> <li class="nav-item"> <a href="https://www.apache.org/events/current-event.html">