Skip to content

Commit 735ee41

Browse files
authored
documetnation front page (#11)
1 parent 8c6ad1b commit 735ee41

File tree

5 files changed

+83
-1
lines changed

5 files changed

+83
-1
lines changed

ROOT/antora.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
name: ROOT
2+
title: Projects
3+
version: ~

ROOT/modules/ROOT/nav.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* xref:index.adoc[Documentation]

ROOT/modules/ROOT/pages/index.adoc

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
= Open Identity Platform Documentation
2+
3+
== xref:opendj:ROOT:index.adoc[OpenDJ: Directory Services]
4+
5+
OpenDJ is an LDAPv3 compliant directory service, which has been developed for the Java platform and provides a high performance,
6+
highly available, and secure store for identities, that are managed by your organization. Its easy installation process, combined with
7+
the power of the Java platform makes OpenDJ the simplest, fastest directory to deploy and manage.
8+
9+
* xref:opendj:install-guide:index.adoc[]
10+
* xref:opendj:admin-guide:index.adoc[]
11+
* xref:opendj:server-dev-guide:index.adoc[]
12+
* xref:opendj:reference:index.adoc[]
13+
14+
15+
== xref:openam:ROOT:index.adoc[OpenAM: Access Management]
16+
17+
Open Access Management (OpenAM) is an access management solution that includes Authentication, SSO, Authorization, Federation, Entitlements, and Web Services Security.
18+
19+
* xref:openam:getting-started:index.adoc[]
20+
* xref:openam:install-guide:index.adoc[]
21+
* xref:openam:upgrade-guide:index.adoc[]
22+
* xref:openam:admin-guide:index.adoc[]
23+
* xref:openam:dev-guide:index.adoc[]
24+
* xref:openam:deployment-planning:index.adoc[]
25+
* xref:openam:reference:index.adoc[]
26+
* xref:openam:web-users-guide:index.adoc[]
27+
* xref:openam:jee-users-guide:index.adoc[]
28+
29+
30+
== xref:openig:ROOT:index.adoc[OpenIG: Identity Gateway]
31+
32+
Open Identity Gateway (OpenIG) is a high-performance reverse proxy server with specialized session management
33+
and credential replay functionality.
34+
35+
* xref:openig:gateway-guide:index.adoc[]
36+
* xref:openig:reference:index.adoc[]
37+
38+
39+
== xref:openidm:ROOT:index.adoc[OpenIDM: Identity Management]
40+
41+
Open Identity Management (OpenIDM) is an open standards-based Identity Management, Provisioning, and Compliance solution. Provisioning users, devices,
42+
and things is a repetitive and potentially time-consuming task that has a significant impact on security and user access.
43+
44+
* xref:openidm:getting-started:index.adoc[]
45+
* xref:openidm:install-guide:index.adoc[]
46+
* xref:openidm:samples-guide:index.adoc[]
47+
* xref:openidm:integrators-guide:index.adoc[]
48+
* xref:openidm:connectors-guide:index.adoc[]

antora-playbook.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
site:
22
title: Open Identity Platform Documentation
3-
start_page: opendj:ROOT:index.adoc
3+
start_page: ROOT::index.adoc
44
url: https://doc.openidentityplatform.org
55
robots: allow
66
keys:
@@ -9,6 +9,8 @@ site:
99
content:
1010
edit_url: false
1111
sources:
12+
- url: ./
13+
start_path: ROOT
1214
- url: ./
1315
start_path: opendj
1416
- url: ./
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<div class="nav-panel-explore{{#unless page.navigation}} is-active{{/unless}}" data-panel="explore">
2+
{{#if page.component}}
3+
<div class="context">
4+
<span class="title">{{page.component.title}}</span>
5+
<span class="version">{{#if (or page.componentVersion.version (ne page.componentVersion.displayVersion 'default'))}}{{page.componentVersion.displayVersion}}{{/if}}</span>
6+
</div>
7+
{{/if}}
8+
<ul class="components">
9+
{{#each site.components}}
10+
{{#if (ne name 'ROOT')}}
11+
<li class="component{{#if (eq this @root.page.component)}} is-current{{/if}}">
12+
<div class="title"><a href="{{{relativize ./url}}}">{{{./title}}}</a></div>
13+
{{#if (or ./versions.[1] ./versions.[0].version (ne ./versions.[0].displayVersion 'default'))}}
14+
<ul class="versions">
15+
{{#each ./versions}}
16+
<li class="version
17+
{{~#if (and (eq .. @root.page.component) (eq this @root.page.componentVersion))}} is-current{{/if~}}
18+
{{~#if (eq this ../latest)}} is-latest{{/if}}">
19+
<a href="{{{relativize ./url}}}">{{./displayVersion}}</a>
20+
</li>
21+
{{/each}}
22+
</ul>
23+
{{/if}}
24+
</li>
25+
{{/if}}
26+
{{/each}}
27+
</ul>
28+
</div>

0 commit comments

Comments
 (0)