-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
f38eef2
commit 95de8e4
Showing
181 changed files
with
10,615 additions
and
0 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 |
---|---|---|
|
@@ -88,3 +88,7 @@ coverage/ | |
*.iws | ||
*.iml | ||
*.ipr | ||
|
||
|
||
# Doc | ||
doc/**/build |
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,42 @@ | ||
FROM alpine:latest AS BUILD | ||
|
||
RUN apk add npm | ||
|
||
WORKDIR /usr/app | ||
|
||
COPY doc-ui /usr/app | ||
|
||
RUN npm install | ||
RUN ./node_modules/gulp/bin/gulp.js bundle | ||
|
||
FROM alpine:latest AS UI | ||
|
||
COPY --from=BUILD /usr/app/build/ui-bundle.zip /usr/app/ui-bundle.zip | ||
|
||
|
||
FROM alpine:latest | ||
|
||
RUN apk add git | ||
RUN apk add npm | ||
RUN apk add ruby | ||
|
||
RUN mkdir /home/antora | ||
|
||
WORKDIR /home/antora | ||
|
||
COPY docs-site/package.json . | ||
COPY docs-site/package-lock.json . | ||
|
||
RUN npm install | ||
RUN gem install asciidoctor | ||
RUN gem install asciidoctor-pdf | ||
RUN gem install rouge | ||
RUN gem install kramdown-asciidoc | ||
|
||
ENV PATH="$PATH:/home/antora/node_modules/@antora/cli/bin/" | ||
|
||
COPY --from=UI /usr/app/ui-bundle.zip . | ||
|
||
WORKDIR /usr/app | ||
|
||
CMD ["antora", "--clean", "--stacktrace", "/usr/app/doc/docs-site/antora-playbook.yml"] |
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,11 @@ | ||
name: syson | ||
title: SysON | ||
version: true | ||
nav: | ||
- modules/ROOT/nav.adoc | ||
|
||
asciidoc: | ||
attributes: | ||
bug: "https://github.com/ObeoNetwork/SysON/issues" | ||
product-name: "SysON" | ||
website: "https://eclipse.dev/syson/" |
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,6 @@ | ||
Recommended; Reserved | ||
|
||
Directory that contains the ROOT module. | ||
This special directory does not appear in the output path. | ||
Instead, it becomes the parent folder of any additional, named modules that you create in a component. | ||
The directory name must be written in all uppercase letters. |
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,3 @@ | ||
Optional; Reserved | ||
|
||
Directory where multimedia and supplemental files are organized by content type. |
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,3 @@ | ||
Optional; Reserved | ||
|
||
Directory that contains supplemental materials, such as PDFs or ZIP files, that readers can download via a link created in a page using the AsciiDoc link macro. |
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,3 @@ | ||
Optional; Reserved | ||
|
||
Directory that contains pictures, screenshots, diagrams, and other graphics files that are displayed in a page using the AsciiDoc image macro. |
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,3 @@ | ||
Optional; Reserved | ||
|
||
Directory that contains non-AsciiDoc file types, such as source code or data values. These files are often inserted into listing blocks using the AsciiDoc include directive. |
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,9 @@ | ||
// Optional; Reserved | ||
// | ||
// A navigation file contains one or more AsciiDoc lists. | ||
// Each navigation file must be declared in the component descriptor if you want it to be displayed in the component’s navigation menu. | ||
* xref:index.adoc[] | ||
* xref:product-legal:index.adoc[] | ||
* xref:installation-guide:index.adoc[] | ||
include::user-manual:partial$nav.adoc[] |
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,4 @@ | ||
Required; Reserved | ||
|
||
Directory that contains all of a module’s AsciiDoc files. | ||
These files are automatically enlisted by Antora and converted to standalone HTML pages. |
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,13 @@ | ||
= Overview | ||
* Name: {product-name} | ||
== Source code | ||
* License: xref:product-legal:index.adoc[Obeo] | ||
|
||
== Tracker | ||
|
||
* Bug tracker: {bug} | ||
|
||
== Communication | ||
|
||
* Website: {website} |
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,8 @@ | ||
= Welcome | ||
|
||
Welcome to the {product-name} Help Center! | ||
From here, you can access the different documentations. | ||
|
||
Use the menu on the left to navigate or the menu bar at the top of the page. | ||
|
||
include::general-information.adoc[leveloffset=+1] |
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,5 @@ | ||
Optional; Reserved | ||
|
||
Directory that contains AsciiDoc files that can be inserted into the files stored in pages. | ||
These files aren’t converted to HTML by Antora directly. | ||
Instead, they must be referenced by an include directive in a page in the pages directory. |
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 @@ | ||
This folder contains documentation about how to install the product. |
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,3 @@ | ||
Optional; Reserved | ||
|
||
Directory where multimedia and supplemental files are organized by content type. |
3 changes: 3 additions & 0 deletions
3
doc/content/modules/installation-guide/assets/attachments/README
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,3 @@ | ||
Optional; Reserved | ||
|
||
Directory that contains supplemental materials, such as PDFs or ZIP files, that readers can download via a link created in a page using the AsciiDoc link macro. |
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,3 @@ | ||
Optional; Reserved | ||
|
||
Directory that contains pictures, screenshots, diagrams, and other graphics files that are displayed in a page using the AsciiDoc image macro. |
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,3 @@ | ||
Optional; Reserved | ||
|
||
Directory that contains non-AsciiDoc file types, such as source code or data values. These files are often inserted into listing blocks using the AsciiDoc include directive. |
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,4 @@ | ||
Required; Reserved | ||
|
||
Directory that contains all of a module’s AsciiDoc files. | ||
These files are automatically enlisted by Antora and converted to standalone HTML pages. |
21 changes: 21 additions & 0 deletions
21
doc/content/modules/installation-guide/pages/environment.adoc
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,21 @@ | ||
= Environment | ||
|
||
[Environment] | ||
|=== | ||
| |Client |Server |Comment | ||
|
||
|Operating Systems | ||
|Windows, Linux, macOS | ||
|n/a | ||
| | ||
|
||
|Java | ||
|Java 8 | ||
|n/a | ||
| | ||
|
||
|Eclipse Platform | ||
|Photon | ||
|n/a | ||
| | ||
|=== |
4 changes: 4 additions & 0 deletions
4
doc/content/modules/installation-guide/pages/executables.adoc
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,4 @@ | ||
= Get {product-name} | ||
|
||
[.small .gray]#_Details how the software is distributed: update-site? standalone software?and where the executables are available, link to nightly/released update sites or any page explaining where to find it._# | ||
|
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,9 @@ | ||
= Installation guide | ||
|
||
include::environment.adoc[leveloffset=+1] | ||
include::executables.adoc[leveloffset=+1] | ||
|
||
== Installation procedure | ||
[.small .gray]#_Details how to install the product. Details if the software comes with an installer or with a kind of assistant for the configuration or the steps to do the installation by hand._# | ||
|
||
include::migration-process.adoc[leveloffset=+1] |
3 changes: 3 additions & 0 deletions
3
doc/content/modules/installation-guide/pages/migration-process.adoc
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,3 @@ | ||
= Migration process | ||
|
||
[.small .gray]#_Details the migration process_# |
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,5 @@ | ||
Optional; Reserved | ||
|
||
Directory that contains AsciiDoc files that can be inserted into the files stored in pages. | ||
These files aren’t converted to HTML by Antora directly. | ||
Instead, they must be referenced by an include directive in a page in the pages directory. |
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,2 @@ | ||
This folder contains documentation about legal public information. | ||
This documentation can be shared **publicly**. |
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,3 @@ | ||
Optional; Reserved | ||
|
||
Directory where multimedia and supplemental files are organized by content type. |
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,3 @@ | ||
Optional; Reserved | ||
|
||
Directory that contains supplemental materials, such as PDFs or ZIP files, that readers can download via a link created in a page using the AsciiDoc link macro. |
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,3 @@ | ||
Optional; Reserved | ||
|
||
Directory that contains pictures, screenshots, diagrams, and other graphics files that are displayed in a page using the AsciiDoc image macro. |
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,3 @@ | ||
Optional; Reserved | ||
|
||
Directory that contains non-AsciiDoc file types, such as source code or data values. These files are often inserted into listing blocks using the AsciiDoc include directive. |
Oops, something went wrong.