Skip to content

Commit be70cca

Browse files
committed
Fixing cross-references between Getting Started and Reference guides
1 parent 1d31084 commit be70cca

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

src/main/asciidoc/getting-started/movingForward.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
Once you have obtained a working installation of Apache Syncope using one of the methods reported above, you should consider
2323
reading the
2424
ifeval::["{backend}" == "html5"]
25-
https://syncope.apache.org/docs/reference-guide.html[Apache Syncope Reference Guide.]
25+
https://syncope.apache.org/docs/4.0/reference-guide.html[Apache Syncope Reference Guide.]
2626
endif::[]
2727
ifeval::["{backend}" == "pdf"]
28-
https://syncope.apache.org/docs/reference-guide.pdf[Apache Syncope Reference Guide.]
28+
https://syncope.apache.org/docs/4.0/reference-guide.pdf[Apache Syncope Reference Guide.]
2929
endif::[]
3030
to understand how to configure, extend, customize and deploy your new Apache Syncope project.
3131

src/main/asciidoc/getting-started/obtain.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -564,10 +564,10 @@ If no failures are encountered, your basic Apache Syncope project is now ready t
564564
Before actual deployment as executable or onto a Jakarta EE container, you need to further check the **Customization**
565565
chapter of the
566566
ifeval::["{backend}" == "html5"]
567-
https://syncope.apache.org/docs/reference-guide.html[Apache Syncope Reference Guide.]
567+
https://syncope.apache.org/docs/4.0/reference-guide.html[Apache Syncope Reference Guide.]
568568
endif::[]
569569
ifeval::["{backend}" == "pdf"]
570-
https://syncope.apache.org/docs/reference-guide.pdf[Apache Syncope Reference Guide.]
570+
https://syncope.apache.org/docs/4.0/reference-guide.pdf[Apache Syncope Reference Guide.]
571571
endif::[]
572572
====
573573

@@ -595,10 +595,10 @@ configured for the embedded mode.
595595
When building for production, instead, it is recommended to check the **Customization** chapter of
596596
the
597597
ifeval::["{backend}" == "html5"]
598-
https://syncope.apache.org/docs/reference-guide.html[Apache Syncope Reference Guide.]
598+
https://syncope.apache.org/docs/4.0/reference-guide.html[Apache Syncope Reference Guide.]
599599
endif::[]
600600
ifeval::["{backend}" == "pdf"]
601-
https://syncope.apache.org/docs/reference-guide.pdf[Apache Syncope Reference Guide.]
601+
https://syncope.apache.org/docs/4.0/reference-guide.pdf[Apache Syncope Reference Guide.]
602602
endif::[]
603603
====
604604

src/main/asciidoc/reference-guide/usage/clientlibrary.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ than JSON (default), to select
6969
https://en.wikipedia.org/wiki/HTTP_compression[HTTP compression^] or to set the
7070
https://cxf.apache.org/javadoc/latest/org/apache/cxf/configuration/jsse/TLSClientParameters.html[TLS client configuration^]
7171
(more options in the
72-
https://syncope.apache.org/apidocs/3.0/org/apache/syncope/client/lib/SyncopeClientFactoryBean.html[Javadoc^]):
72+
https://syncope.apache.org/apidocs/4.0/org/apache/syncope/client/lib/SyncopeClientFactoryBean.html[Javadoc^]):
7373

7474
[source,java]
7575
----
@@ -102,7 +102,7 @@ SyncopeClient client = new SyncopeClientFactoryBean().
102102
===== Examples
103103

104104
Select one of the
105-
https://syncope.apache.org/apidocs/3.0/org/apache/syncope/common/rest/api/service/package-summary.html[RESTful services^]
105+
https://syncope.apache.org/apidocs/4.0/org/apache/syncope/common/rest/api/service/package-summary.html[RESTful services^]
106106
and invoke one of the available methods:
107107

108108
[source,java]
@@ -117,13 +117,13 @@ loggerService.update(LoggerType.LOG, loggerTO);
117117

118118
[TIP]
119119
Advanced REST features are also available from `SyncopeClient` instances: check
120-
https://syncope.apache.org/apidocs/3.0/org/apache/syncope/client/lib/SyncopeClient.html[the javadoc^]
120+
https://syncope.apache.org/apidocs/4.0/org/apache/syncope/client/lib/SyncopeClient.html[the javadoc^]
121121
for more information.
122122

123123
.Search for Users, Groups or Any Objects
124124
====
125125
All search operations return
126-
https://syncope.apache.org/apidocs/3.0/org/apache/syncope/common/lib/to/PagedResult.html[paged result handlers^]
126+
https://syncope.apache.org/apidocs/4.0/org/apache/syncope/common/lib/to/PagedResult.html[paged result handlers^]
127127
which can be exploited both for getting the actual results and for extrapolating pagination coordinates.
128128
129129
[source,java]
@@ -211,7 +211,7 @@ UserTO userTO = self.getRight(); // <1>
211211
Map<String, Set<String>> realm2entitlements = self.getLeft(); // <2>
212212
List<String> delegations = self.getMiddle(); // <3>
213213
----
214-
<1> https://syncope.apache.org/apidocs/3.0/org/apache/syncope/common/lib/to/UserTO.html[UserTO^] of the requesting user
214+
<1> https://syncope.apache.org/apidocs/4.0/org/apache/syncope/common/lib/to/UserTO.html[UserTO^] of the requesting user
215215
<2> for each <<realms,realm>>, the owned <<entitlements,entitlements>>
216216
<3> <<delegation,delegations>> assigned to the requesting user
217217
====

src/main/asciidoc/reference-guide/usage/customization.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ adding new features or replacing existing components.
3030

3131
In general, the Embedded Mode (see the
3232
ifeval::["{backend}" == "html5"]
33-
https://syncope.apache.org/docs/getting-started.html[Apache Syncope Getting Started Guide]
33+
https://syncope.apache.org/docs/4.0/getting-started.html[Apache Syncope Getting Started Guide]
3434
endif::[]
3535
ifeval::["{backend}" == "pdf"]
36-
https://syncope.apache.org/docs/getting-started.pdf[Apache Syncope Getting Started Guide]
36+
https://syncope.apache.org/docs/4.0/getting-started.pdf[Apache Syncope Getting Started Guide]
3737
endif::[]
3838
for details) allows developers to work comfortably from a single workstation, with no need of additional setup; it is
3939
effectively implemented as the `all`

src/main/asciidoc/reference-guide/usage/usage.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
Before proceeding, please ensure that you have access to a running Apache Syncope deployment.
2222
You can take a look at the
2323
ifeval::["{backend}" == "html5"]
24-
https://syncope.apache.org/docs/getting-started.html[Apache Syncope Getting Started Guide]
24+
https://syncope.apache.org/docs/4.0/getting-started.html[Apache Syncope Getting Started Guide]
2525
endif::[]
2626
ifeval::["{backend}" == "pdf"]
27-
https://syncope.apache.org/docs/getting-started.pdf[Apache Syncope Getting Started Guide]
27+
https://syncope.apache.org/docs/4.0/getting-started.pdf[Apache Syncope Getting Started Guide]
2828
endif::[]
2929
to check system requirements and to choose among the various options for obtaining Apache Syncope.
3030

0 commit comments

Comments
 (0)