Skip to content

Commit 26f4102

Browse files
authored
Merge pull request #4339 from vespa-engine/bratseth/link-22
Fix links
2 parents 8a735da + da47ba7 commit 26f4102

File tree

97 files changed

+254
-254
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+254
-254
lines changed

en/applications/bundles.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ <h3 id="add-jni-code-to-global-classpath">Add JNI code to the global classpath</
181181
</p>
182182
<p>
183183
Add the following configuration in the top level <em>services</em>
184-
element in <a href="../reference/services/applications/container.html">services.xml</a>:
184+
element in <a href="../reference/applications/services/container.html">services.xml</a>:
185185
</p>
186186
<pre>{% highlight xml %}
187187
<services version="1.0">

en/applications/chaining.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
what it should be placed after and what itself provides,
3535
may be either defined using Java annotations directly on the component class,
3636
or it may be added specifically to the component declarations
37-
in <a href="../reference/services/applications/container.html">services.xml</a>.
37+
in <a href="../reference/applications/services/container.html">services.xml</a>.
3838
In general, the implementation should have as many of the necessary annotations as practical,
3939
leaving the application specific configuration clean and simple to work with.
4040
</p>
@@ -86,7 +86,7 @@ <h2 id="ordering-components">Ordering Components</h2>
8686
"B"})</code>.
8787
</p><p>
8888
Annotations which do not belong in the code may be added in the
89-
<a href="../reference/services/applications/container.html">configuration</a>:
89+
<a href="../reference/applications/services/container.html">configuration</a>:
9090
</p>
9191
<pre>
9292
&lt;container version="1.0"&gt;
@@ -264,7 +264,7 @@ <h2 id="example-configuration">Example: Configuration</h2>
264264
&lt;/container&gt;
265265
</pre>
266266
<p>
267-
And for <a href="../reference/services/applications/docproc.html">document processor chains</a>, it becomes:
267+
And for <a href="../reference/applications/services/docproc.html">document processor chains</a>, it becomes:
268268
</p>
269269
<pre>
270270
&lt;container version="1.0"&gt;

en/applications/components.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ <h2 id="resource-management">Resource management</h2>
6767
<p>
6868
Note that it is always advisable to call the super-method first.
6969
Also see <a href="https://github.com/vespa-engine/vespa/blob/master/jdisc_core/src/main/java/com/yahoo/jdisc/SharedResource.java">
70-
SharedResource.java</a> for how to configure <a href="../reference/services/applications/container.html#jvm">debug options</a>
70+
SharedResource.java</a> for how to configure <a href="../reference/applications/services/container.html#jvm">debug options</a>
7171
for use in tools like YourKit.
7272
This can be used to track component lifetime / (de)construction issues, e.g.:
7373
</p>
@@ -164,7 +164,7 @@ <h3 id="adding-component-to-application-package">Adding the Plugin to the Vespa
164164
<ul>
165165
<li>put <code>com.yahoo.search.example.SimpleSearcher-1.0-deploy.jar</code>
166166
in the <code>components/</code> directory under the application package root</li>
167-
<li>modify <a href="../reference/services/applications/services.html">services.xml</a> to include the Searcher</li>
167+
<li>modify <a href="../reference/applications/services/services.html">services.xml</a> to include the Searcher</li>
168168
</ul>
169169
<p>
170170
To include the searcher, define a search chain and add the searcher to it. Example:

en/applications/containers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ <h2 id="developing-components">Developing Components</h2>
110110

111111
<h2 id="reference-documentation">Reference documentation</h2>
112112
<ul>
113-
<li><a href="../reference/services/applications/container.html">services.xml</a></li>
113+
<li><a href="../reference/applications/services/container.html">services.xml</a></li>
114114
</ul>
115115

116116

en/applications/dependency-injection.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ <h2 id="depending-on-all-components-of-a-specific-type">Depending on all compone
146146
declares a dependency on the set of all components registered in <code>services.xml</code>
147147
that are instances of the class <code>Strategy</code> (including subclasses).
148148
The <code>ComponentRegistry</code> class provides accessors for components based
149-
on their <a href="../reference/services/applications/container.html#component">component id</a>.
149+
on their <a href="../reference/applications/services/container.html#component">component id</a>.
150150
</p>
151151

152152

en/applications/developer-guide.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h3 id="availability">Availability</h3>
4949
<h2 id="performance-testing">Performance testing</h2>
5050
<p>
5151
For performance testing, to avoid auto downsizing,
52-
lock the <a href="../reference/services/applications/services.html">resources</a> using <code>deploy:environment="dev"</code>:
52+
lock the <a href="../reference/applications/services/services.html">resources</a> using <code>deploy:environment="dev"</code>:
5353
</p>
5454
<pre>{% highlight xml %}
5555
<nodes deploy:environment="dev" count="1">
@@ -188,7 +188,7 @@ <h2 id="debugging-components">Debugging Components</h2>
188188
<li>Select the "Remote JVM Debug" option in the left-most pane.</li>
189189
<li>Set hostname to the host running the container, change the port if needed.</li>
190190
<li>
191-
Set the container's <a href="../reference/services/applications/container.html#jvm">jvm options</a>
191+
Set the container's <a href="../reference/applications/services/container.html#jvm">jvm options</a>
192192
to the value in "Command line arguments for remote JVM":
193193
<pre>
194194
&lt;container id="default" version="1.0"&gt;

en/applications/document-processors.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
As document processors are chained components just like Searchers,
3131
read <a href="searchers.html">Searcher Development</a>.
3232
For reference, see the <a href="https://javadoc.io/doc/com.yahoo.vespa/docproc">Javadoc</a>,
33-
and <a href="../reference/services/applications/docproc.html">services.xml</a>.
33+
and <a href="../reference/applications/services/docproc.html">services.xml</a>.
3434
</p>
3535
<img src="/assets/img/vespa-overview-docproc.svg" width="810px" height="auto"
3636
alt="Document Processing component in Vespa overview">
@@ -43,7 +43,7 @@ <h2 id="deploying-a-document-processor">Deploying a Document Processor</h2>
4343
album-recommendation-docproc</a> to get started,
4444
<a href="https://github.com/vespa-engine/sample-apps/blob/master/examples/document-processing/src/main/java/ai/vespa/example/album/LyricsDocumentProcessor.java">
4545
LyricsDocumentProcessor.java</a> is a document processor example.
46-
Add the document processor in <a href="../reference/services/applications/docproc.html">services.xml</a>,
46+
Add the document processor in <a href="../reference/applications/services/docproc.html">services.xml</a>,
4747
and then add it to a <a href="#chains">chain</a>.
4848
The type of processing done by the processor dictates what chain it should be part of:
4949
<ul>

en/applications/http-servers-and-filters.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ <h3 id="configure-the-http-server">Configure the HTTP Server</h3>
7070

7171
<h3 id="tls">TLS</h3>
7272
<p>
73-
TLS can be configured using either the <a href="../reference/services/applications/http.html#ssl">ssl</a>
74-
or the <a href="../reference/services/applications/http.html#ssl-provider">ssl-provider</a> element.
73+
TLS can be configured using either the <a href="../reference/applications/services/http.html#ssl">ssl</a>
74+
or the <a href="../reference/applications/services/http.html#ssl-provider">ssl-provider</a> element.
7575
</p>
7676
<pre>{% highlight xml %}
7777
<container version="1.0">
@@ -122,7 +122,7 @@ <h3 id="using-filter-chains">Using Filter Chains</h3>
122122
<p>
123123
Filter chains are set up by using the <code>request-chain</code> and
124124
<code>response-chain</code> elements inside the
125-
<a href="../reference/services/applications/http.html#filtering">filtering</a> element.
125+
<a href="../reference/applications/services/http.html#filtering">filtering</a> element.
126126
Example setting up two request filter chains, and one response filter chain:
127127
</p>
128128
<pre>{% highlight xml %}
@@ -152,7 +152,7 @@ <h3 id="using-filter-chains">Using Filter Chains</h3>
152152
as shown with <code>request-filter1</code> in the example above.
153153
</p>
154154
<p>
155-
To actually use a filter chain, add one or more URI <a href="../reference/services/applications/http.html#binding">bindings</a>:
155+
To actually use a filter chain, add one or more URI <a href="../reference/applications/services/http.html#binding">bindings</a>:
156156
</p>
157157
<pre>{% highlight xml %}
158158
<http>
@@ -194,15 +194,15 @@ <h3 id="using-filter-chains">Using Filter Chains</h3>
194194

195195
<p>
196196
A request must match a filter chain if any filter is configured. A 403 response is returned for non-matching request.
197-
This semantic can be disabled - see <a href="../reference/services/applications/http.html#filtering">strict-mode</a>.
197+
This semantic can be disabled - see <a href="../reference/applications/services/http.html#filtering">strict-mode</a>.
198198
</p>
199199

200200
<h4 id="excluding-filters-from-an-inherited-chain">Excluding Filters from an Inherited Chain</h4>
201201
<p>
202202
Say you have a request filter chain that you are binding to most of your URIs.
203203
Now, you want to run almost the same chain on another URI, but you need to exclude one of the filters.
204204
This is done by adding <code>excludes</code>, which takes a space separated list of filter ids,
205-
to the <a href="../reference/services/applications/http.html#chain">chain element</a>.
205+
to the <a href="../reference/applications/services/http.html#chain">chain element</a>.
206206
Example where a security filter is excluded from an inherited chain for <em>status.html</em>:
207207
</p>
208208
<pre>{% highlight xml %}

en/applications/processing.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ <h2 id="chaining-processors">Chaining Processors</h2>
9797
In most cases it is more convenient to configure chains and processor
9898
instances using external configuration. Chains of processors may be
9999
specified in
100-
a <a href="../reference/services/applications/processing.html">processing</a>
100+
a <a href="../reference/applications/services/processing.html">processing</a>
101101
element in
102-
the <em><a href="../reference/services/applications/services.html">services.xml</a></em>
102+
the <em><a href="../reference/applications/services/services.html">services.xml</a></em>
103103
file in the application package. The compiled processors are added to
104104
the application package as
105105
<a href="components.html">OSGi components</a>. Chain
@@ -160,7 +160,7 @@ <h2 id="response-rendering">Response Rendering</h2>
160160
Processors are
161161
regular <a href="components.html">components</a> which are
162162
added to the application package in
163-
the <a href="../reference/services/applications/processing.html#renderer">renderer
163+
the <a href="../reference/applications/services/processing.html#renderer">renderer
164164
section</a> of the <em>services.xml</em> file. A renderer is selected
165165
in the request by setting the <code>format</code> parameter in the request
166166
to the renderer id.

en/applications/request-handlers.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ <h3 id="example-request-handler-implementations">Example request handler impleme
7171
<h2 id="deploying-a-request-handler">Deploying a request handler</h2>
7272
<p>
7373
To deploy a request handler in an application,
74-
use the <a href="../reference/services/applications/container.html#handler">handler</a> element in <em>services.xml</em>:
74+
use the <a href="../reference/applications/services/container.html#handler">handler</a> element in <em>services.xml</em>:
7575
</p>
7676
<pre>
7777
&lt;container id="default" version="1.0"&gt;
@@ -81,5 +81,5 @@ <h2 id="deploying-a-request-handler">Deploying a request handler</h2>
8181
</pre>
8282
<p>
8383
A request handler may be bound to zero or more URI patterns by adding a
84-
<a href="../reference/services/applications/container.html#binding">binding</a> element for each pattern.
84+
<a href="../reference/applications/services/container.html#binding">binding</a> element for each pattern.
8585
</p>

0 commit comments

Comments
 (0)