-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
229 changed files
with
2,194 additions
and
1,035 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Documentation | ||
|
||
on: | ||
push: | ||
branches: | ||
- 4.2.x | ||
paths: | ||
- "docs/manual/**" | ||
pull_request: | ||
branches: | ||
- 4.2.x | ||
paths: | ||
- "docs/manual/**" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy-docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout GeoNetwork | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- name: mkdocs install | ||
run: pip install --upgrade pip && pip install -r docs/manual/requirements.txt | ||
- name: git configuration | ||
run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com' | ||
- name: build docs without publishing them | ||
if: ${{ github.event_name == 'pull_request' }} | ||
working-directory: docs/manual | ||
run: | | ||
mike deploy --title "4.2 Stable" --no-redirect --update-aliases 4.2 stable | ||
- name: deploy 4.2 docs to gh-pages branch | ||
if: ${{ github.event_name != 'pull_request' }} | ||
working-directory: docs/manual | ||
run: | | ||
mike deploy --push --title "4.2 Stable" --no-redirect --update-aliases 4.2 stable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
The files in this directory are used for configuring IDEs or are used by the build tool to make certain code quality checks. | ||
|
||
For example findbugs-ecludes is used by both the build tool's findbugs implementation as well as IDES for running findbugs. | ||
For example, findbugs-excludes is used by both the build tool's findbugs implementation as well as IDES for running findbugs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
The core module contains the core Geonetwork classes. For example SearchManager for searching the metadata index, DataManager for saving | ||
The core module contains the core Geonetwork classes. For example, EsSearchManager for searching the metadata index, DataManager for saving | ||
and loading Metadata. | ||
|
||
Services, Harvesters, etc... that are are plugins will usually depend on core and will make use of these core classes to implement their | ||
Services, Harvesters, etc... that are plugins will usually depend on core and will make use of these core classes to implement their | ||
services. | ||
|
||
Geonetwork is wired together via Spring-Dependency-Injection. The critical classes (DataManager, SchemaManager, SearchManager, etc...) are | ||
Geonetwork is wired together via Spring-Dependency-Injection. The critical classes (DataManager, SchemaManager, EsSearchManager, etc...) are | ||
all singleton beans in the application context and can be either injected into other beans or obtained via the ServiceContext.getBean | ||
method (or ServiceContext.getApplicationContext()). | ||
method (or ServiceContext.getApplicationContext()). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.