Skip to content

Commit e9b26e9

Browse files
authored
Merge pull request #126 from miljanuscumlic/broken-api-links
Changed broken relative javadocs links with absolute ones
2 parents 997f740 + a2f83e6 commit e9b26e9

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

data/devguide_soap.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
<para>while the second is available on:</para>
4040
<synopsis format="linespecific">http://localhost:8080/exist/services/Admin</synopsis>
4141
<para>Both services are described in the Java docs regarding their interfaces. Visit:
42-
<ulink url="api/org/exist/soap/Query.html">org.exist.soap.Query</ulink> and
43-
<ulink url="api/org/exist/soap/Admin.html">org.exist.soap.Admin</ulink> for more
42+
<ulink url="http://exist-db.org/api/org/exist/soap/Query.html">org.exist.soap.Query</ulink> and
43+
<ulink url="http://exist-db.org/api/org/exist/soap/Admin.html">org.exist.soap.Admin</ulink> for more
4444
information.</para>
4545
<para>The following SOAP example (available at:
4646
<filename>samples/org/exist/examples/soap/GetDocument.java</filename>)

data/devguide_xmldb.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
databases and supports the development of portable, reusable applications. eXist's
2424
implementation of the XML:DB standards follows the Xindice implementation, and
2525
conforms to the latest working drafts put forth by the <ulink url="http://xmldb-org.sourceforge.net/xapi/">XML:DB Initiative</ulink>. For more
26-
information, refer to the <ulink url="api/index.html">Javadocs for this API</ulink>.</para>
26+
information, refer to the <ulink url="http://exist-db.org/api/index.html">Javadocs for this API</ulink>.</para>
2727
<para>The basic components employed by the XML:DB API are <emphasis>drivers</emphasis>,
2828
<emphasis>collections</emphasis>, <emphasis>resources</emphasis> and
2929
<emphasis>services</emphasis>.</para>
@@ -407,19 +407,19 @@ public class StoreExample {
407407
<title>Additional Services</title>
408408
<para>eXist provides several services in addition to those defined by the XML:DB
409409
specification:</para>
410-
<para>The <ulink url="api/org/exist/xmldb/UserManagementService.html">UserManagementService</ulink> service contains methods to manage users and
410+
<para>The <ulink url="http://exist-db.org/api/org/exist/xmldb/UserManagementService.html">UserManagementService</ulink> service contains methods to manage users and
411411
handle permissions. These methods resemble common Unix commands such as
412412
<methodname>chown</methodname> or <methodname>chmod</methodname>. As with
413413
other services, <classname>UserManagementService</classname> can be retrieved
414414
from a collection object, as in:</para>
415415
<synopsis format="linespecific">UserManagementService service =
416416
(UserManagementService)collection.getService("UserManagementService", "1.0");</synopsis>
417-
<para>Another service called <ulink url="api/org/exist/xmldb/DatabaseInstanceManager.html">DatabaseInstanceManager</ulink>, provides a single method to shut down the
417+
<para>Another service called <ulink url="http://exist-db.org/api/org/exist/xmldb/DatabaseInstanceManager.html">DatabaseInstanceManager</ulink>, provides a single method to shut down the
418418
database instance accessed by the driver. You have to be a member of the
419419
<option>dba</option> user group to use this method or an exception will be
420-
thrown. See the <ulink url="deployment.xml#embedded">Deployment Guide</ulink>
420+
thrown. See the <ulink url="deployment.xml#D2.4.12">Deployment Guide</ulink>
421421
for an example.</para>
422-
<para>Finally, interface <ulink url="api/org/exist/xmldb/IndexQueryService.html">IndexQueryService</ulink> supports access to the terms and elements
422+
<para>Finally, interface <ulink url="http://exist-db.org/api/org/exist/xmldb/IndexQueryService.html">IndexQueryService</ulink> supports access to the terms and elements
423423
contained in eXist's internal index. Method getIndexedElements() returns a list
424424
of element occurrences for the current collection. For each occurring element,
425425
the element's name and a frequency count is returned.</para>

data/devguide_xmlrpc.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ sub process {
190190
<title>XML-RPC: Available Methods</title>
191191
<para>This section gives you an overview of the methods implemented by the eXist XML-RPC
192192
server. Only the most common methods are presented here. For a complete list see the
193-
Java interface <ulink url="api/org/exist/xmlrpc/RpcAPI.html">RpcAPI.java</ulink>.
193+
Java interface <ulink url="http://exist-db.org/api/org/exist/xmlrpc/RpcAPI.html">RpcAPI.java</ulink>.
194194
Note that the method signatures are presented below using Java data types. Also note
195195
that some methods like <methodname>getDocument()</methodname> and
196196
<methodname>retrieve()</methodname> accept a struct to specify optional output
@@ -890,7 +890,7 @@ sub process {
890890
<listitem>
891891
<para>The permissions assigned to the resource, which can be
892892
specified either as an integer value constructed using the
893-
<ulink url="api/org/exist/security/Permission">Permission</ulink> class, or using a modification
893+
<ulink url="http://exist-db.org/api/org/exist/security/Permission.html">Permission</ulink> class, or using a modification
894894
string. The bit encoding of the integer value corresponds to
895895
Unix conventions. The modification string has the following
896896
syntax:</para>

data/xquery.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ return $w</synopsis>
766766
methods are defined in <classname>
767767
<ulink url="http://download.oracle.com/javase/6/docs/api/javax/xml/transform/OutputKeys.html">javax.xml.transform.OutputKeys</ulink>
768768
</classname> and <classname>
769-
<ulink url="api/org/exist/storage/serializers/EXistOutputKeys.html">EXistOutputKeys</ulink>
769+
<ulink url="http://exist-db.org/api/org/exist/storage/serializers/EXistOutputKeys.html">EXistOutputKeys</ulink>
770770
</classname>. The latter eXist-specific options include the following:</para>
771771
<variablelist>
772772
<varlistentry>

0 commit comments

Comments
 (0)