blob: f9fcbea0b22b308a9155e21ebcea5baf5f9fac3c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MappedTemplateLink.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Turbine</a> &gt; <a href="index.source.html" class="el_package">org.apache.turbine.services.urlmapper</a> &gt; <span class="el_source">MappedTemplateLink.java</span></div><h1>MappedTemplateLink.java</h1><pre class="source lang-java linenums">package org.apache.turbine.services.urlmapper;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* &quot;License&quot;); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.turbine.annotation.TurbineService;
import org.apache.turbine.services.pull.tools.TemplateLink;
/**
* This is a pull to to be used in Templates to convert links in
* Templates into the correct references.
*
* The pull service might insert this tool into the Context.
* in templates. Here's an example of its Velocity use:
*
* &lt;p&gt;&lt;code&gt;
* $link.setPage(&quot;index.vm&quot;).addPathInfo(&quot;hello&quot;,&quot;world&quot;)
* This would return: http://foo.com/Turbine/template/index.vm/hello/world
* &lt;/code&gt;
*
* &lt;p&gt;
*
* This is an application pull tool for the template system. You should &lt;b&gt;not&lt;/b&gt;
* use it in a normal application!
*
* @author &lt;a href=&quot;mbryson@mont.mindspring.com&quot;&gt;Dave Bryson&lt;/a&gt;
* @author &lt;a href=&quot;mailto:jon@latchkey.com&quot;&gt;Jon S. Stevens&lt;/a&gt;
* @author &lt;a href=&quot;mailto:hps@intermeta.de&quot;&gt;Henning P. Schmiedehausen&lt;/a&gt;
* @author &lt;a href=&quot;mailto:quintonm@bellsouth.net&quot;&gt;Quinton McCombs&lt;/a&gt;
* @author &lt;a href=&quot;mailto:peter@courcoux.biz&quot;&gt;Peter Courcoux&lt;/a&gt;
* @version $Id: TemplateLink.java 1854688 2019-03-03 10:36:42Z tv $
*/
<span class="nc" id="L50">public class MappedTemplateLink extends TemplateLink</span>
{
/**
* The URL Mapper service.
*/
@TurbineService
private URLMapperService urlMapperService;
/**
* Builds the URL with all of the data URL-encoded as well as
* encoded using HttpServletResponse.encodeUrl(). The resulting
* URL is absolute; it starts with http/https...
*
* &lt;pre&gt;
* TemplateURI tui = new TemplateURI (data, &quot;UserScreen&quot;);
* tui.addPathInfo(&quot;user&quot;,&quot;jon&quot;);
* tui.getAbsoluteLink();
* &lt;/pre&gt;
*
* The above call to absoluteLink() would return the String:
* &lt;p&gt;
* http://www.server.com/servlets/Turbine/screen/UserScreen/user/jon
* &lt;p&gt;
* After rendering the URI, it clears the
* pathInfo and QueryString portions of the TemplateURI. So you can
* use the $link reference multiple times on a page and start over
* with a fresh object every time.
*
* @return A String with the built URL.
*/
@Override
public String getAbsoluteLink()
{
<span class="nc" id="L84"> urlMapperService.mapToURL(templateURI);</span>
<span class="nc" id="L85"> return super.getAbsoluteLink();</span>
}
/**
* Builds the URL with all of the data URL-encoded as well as
* encoded using HttpServletResponse.encodeUrl(). The resulting
* URL is relative to the webserver root.
*
* &lt;pre&gt;
* TemplateURI tui = new TemplateURI (data, &quot;UserScreen&quot;);
* tui.addPathInfo(&quot;user&quot;,&quot;jon&quot;);
* tui.getRelativeLink();
* &lt;/pre&gt;
*
* The above call to relativeLink() would return the String:
* &lt;p&gt;
* /servlets/Turbine/screen/UserScreen/user/jon
* &lt;p&gt;
* After rendering the URI, it clears the
* pathInfo and QueryString portions of the TemplateURI. So you can
* use the $link reference multiple times on a page and start over
* with a fresh object every time.
*
* @return A String with the built URL.
*/
@Override
public String getRelativeLink()
{
<span class="nc" id="L114"> urlMapperService.mapToURL(templateURI);</span>
<span class="nc" id="L115"> return super.getRelativeLink();</span>
}
}
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.12.202403310830</span></div></body></html>