Die Basis für die contextrelativen URL's wird jetzt Applicationweit bestimmt
authorKai Moritz <km@feder-software.de>
Wed, 26 Feb 2014 00:13:22 +0000 (01:13 +0100)
committerKai Moritz <kai@juplo.de>
Tue, 19 Jan 2016 16:45:41 +0000 (17:45 +0100)
Zuvor wurde das Attribut "base" in jedem Template mithilfe des Tags <url>
aus der Spring-Taglib bestimmt. Jetzt wird das Attribut beim Start der
Webanwendung einmalig bestimmt und im Application-Scope abgelegt.

Das hat den Vorteil, dass das Attribut in abgeleiteten Webanwendungen, die
die Templates wiederverwenden gezielt anders gesetzt werden kann.

49 files changed:
src/main/java/de/juplo/branding/web/ApplicationConfig.java [new file with mode: 0644]
src/main/webapp/WEB-INF/404.jsp
src/main/webapp/WEB-INF/error.jsp
src/main/webapp/WEB-INF/spring/mvc.xml
src/main/webapp/WEB-INF/templates/about.jsp
src/main/webapp/WEB-INF/templates/footer.jsp
src/main/webapp/WEB-INF/templates/header.jsp
src/main/webapp/WEB-INF/templates/html-head.jsp
src/main/webapp/WEB-INF/templates/html5page.jsp
src/main/webapp/WEB-INF/templates/maincontent.jsp
src/main/webapp/WEB-INF/templates/navigation.jsp
src/main/webapp/WEB-INF/templates/test/breadcrumb.jsp
src/main/webapp/WEB-INF/templates/test/experimente.jsp
src/main/webapp/WEB-INF/templates/test/navigation.jsp
src/main/webapp/WEB-INF/views/about.jsp
src/main/webapp/WEB-INF/views/about/professions.jsp
src/main/webapp/WEB-INF/views/about/references.jsp
src/main/webapp/WEB-INF/views/blog.jsp
src/main/webapp/WEB-INF/views/blog/article.jsp
src/main/webapp/WEB-INF/views/blog/comments.jsp
src/main/webapp/WEB-INF/views/contact.jsp
src/main/webapp/WEB-INF/views/impressum.jsp
src/main/webapp/WEB-INF/views/impressum/datenschutz.jsp
src/main/webapp/WEB-INF/views/impressum/google-analytics.jsp
src/main/webapp/WEB-INF/views/impressum/haftung-inhalte.jsp
src/main/webapp/WEB-INF/views/impressum/haftung-links.jsp
src/main/webapp/WEB-INF/views/impressum/urheberrechte.jsp
src/main/webapp/WEB-INF/views/index.jsp
src/main/webapp/WEB-INF/views/projects.jsp
src/main/webapp/WEB-INF/views/projects/fix-swf.jsp
src/main/webapp/WEB-INF/views/projects/fix-swf/getting-started.jsp
src/main/webapp/WEB-INF/views/projects/fix-swf/overview.jsp
src/main/webapp/WEB-INF/views/projects/html-experimente.jsp
src/main/webapp/WEB-INF/views/projects/typo.jsp
src/main/webapp/WEB-INF/views/test/basis-layout.jsp
src/main/webapp/WEB-INF/views/test/druck-layout.jsp
src/main/webapp/WEB-INF/views/test/error.jsp
src/main/webapp/WEB-INF/views/test/fast-leer-kein-menü-aber-marginalinhalt.jsp
src/main/webapp/WEB-INF/views/test/fast-leer-kein-menü.jsp
src/main/webapp/WEB-INF/views/test/fast-leer-mit-menü-und-marginalinhalt.jsp
src/main/webapp/WEB-INF/views/test/fast-leer-mit-menü.jsp
src/main/webapp/WEB-INF/views/test/formulare.jsp
src/main/webapp/WEB-INF/views/test/kein-layout.jsp
src/main/webapp/WEB-INF/views/test/phone.jsp
src/main/webapp/WEB-INF/views/test/seitenaufteilung.jsp
src/main/webapp/WEB-INF/views/test/seitenkopf.jsp
src/main/webapp/WEB-INF/views/test/symbole.jsp
src/main/webapp/WEB-INF/views/test/tablet.jsp
src/main/webapp/WEB-INF/views/test/tiny.jsp

diff --git a/src/main/java/de/juplo/branding/web/ApplicationConfig.java b/src/main/java/de/juplo/branding/web/ApplicationConfig.java
new file mode 100644 (file)
index 0000000..598f1b0
--- /dev/null
@@ -0,0 +1,22 @@
+package de.juplo.branding.web;
+
+import javax.annotation.PostConstruct;
+import javax.annotation.Resource;
+import javax.servlet.ServletContext;
+import org.springframework.stereotype.Component;
+
+
+@Component
+public class ApplicationConfig
+{
+  public static final String ATTRIBUTE_BASE = "base";
+
+  @Resource
+  private ServletContext context;
+
+  @PostConstruct
+  public void configureApplication()
+  {
+    context.setAttribute(ATTRIBUTE_BASE, context.getContextPath() + '/');
+  }
+}
\ No newline at end of file
index 9218707..d826d41 100644 (file)
@@ -3,8 +3,6 @@
 <%@page session="false" %>
 <%@page isErrorPage="true" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="NOMENU">
   <t:putAttribute name="contentclass" value="nomenu withbackground" type="string"/>
   <t:putAttribute name="title" value="404: Page not found" type="string"/>
index 5644494..b6359a3 100644 (file)
@@ -3,8 +3,6 @@
 <%@page session="false" %>
 <%@page isErrorPage="true" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="NOMENU">
   <t:putAttribute name="contentclass" value="nomenu withbackground" type="string"/>
   <t:putAttribute name="title" value="An unexpected Error occured!" type="string"/>
index cc5a037..5fb88cf 100644 (file)
@@ -2,17 +2,23 @@
 <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:mvc="http://www.springframework.org/schema/mvc"
+       xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="
            http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
            http://www.springframework.org/schema/mvc
            http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
+           http://www.springframework.org/schema/context
+           http://www.springframework.org/schema/context/spring-context-3.1.xsd
            ">
 
   <!-- Damit das DispatcherServlet auf /* gemappt werden kann -->
   <mvc:default-servlet-handler/>
   <mvc:view-controller path="/" view-name="index"/>
 
+  <!-- Scann classpath for classes anntated as components -->
+  <context:component-scan base-package="de.juplo.branding"/>
+
   <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
     <property name="mappings">
       <value>
index 2360f2f..c4e4458 100644 (file)
@@ -1,8 +1,6 @@
 <%@page contentType="text/html;charset=UTF-8"%>
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <aside class="m">
   <h1>What the f*#!@ is an <em>Impressum</em> ?!?</h1>
   The german law enforces the so called <em>Impressum</em> to enable
index 7191e62..9c7005e 100644 (file)
@@ -1,8 +1,6 @@
 <%@page contentType="text/html;charset=UTF-8"%>
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <li class="f" id="copyright">© <strong>mo</strong> 2013</li>
 <li class="f"><a class="f" href="${base}impressum.html">Impressum</a></li>
 <li class="f about"><a class="f" href="${base}about.html">About</a></li>
index 864dbed..3a27951 100644 (file)
@@ -1,6 +1,4 @@
 <%@page contentType="text/html;charset=UTF-8"%>
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <h1 id="logo"><a href="${base}index.html" title="Home" class="l">juplo</a></h1>
index 098c372..1bc9738 100644 (file)
@@ -1,8 +1,6 @@
 <%@page contentType="text/html;charset=UTF-8"%>
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <meta name="viewport" content="width=device-width, initial-scale=1" />
 <link rel="stylesheet" type="text/css" href="${base}css/base.css" />
 <style type="text/css">
index 5918e65..ec1a850 100644 (file)
@@ -3,8 +3,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <html>
   <head>
     <title>juplo - <t:getAsString name="title"/></title>
index b8f6e35..de5e179 100644 (file)
@@ -1,8 +1,6 @@
 <%@page contentType="text/html;charset=UTF-8"%>
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <p>
   <strong>Lorem ipsum</strong> dolor <a href="${base}projects/typo.html">sit amet</a>, consectetur adipisicing elit, sed do
   eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
index e878bf8..41aa3e5 100644 (file)
@@ -1,8 +1,6 @@
 <%@page contentType="text/html;charset=UTF-8"%>
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <h1 class="nav">Navigation</h1>
 <h2 class="nav menu">Section-Menu</h2>
 <ul id="menu" class="cf">
index cc4a1c1..efe3672 100644 (file)
@@ -1,8 +1,6 @@
 <%@page contentType="text/html;charset=UTF-8"%>
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <li class="b"><a class="b" href="${base}index.html">Home</a></li>
 <li class="b"><a class="b" href="${base}projects.html">Projects</a></li>
 <li class="b"><a class="b" href="${base}projects/html-experimente.html">HTML-Experimente</a></li>
index 6245a8e..7a73a79 100644 (file)
@@ -1,8 +1,6 @@
 <%@page contentType="text/html;charset=UTF-8"%>
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <h2>HTML-Elemente / spezielle Seiten</h2>
 <ul>
   <li><a href="${base}test/formulare.html">Formulare</a></li>
index 679a32e..8188d1c 100644 (file)
@@ -1,8 +1,6 @@
 <%@page contentType="text/html;charset=UTF-8"%>
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <h1 class="nav">Navigation</h1>
 <h2 class="nav menu">Section-Menu</h2>
 <ul id="menu" class="cf">
index 8d72835..f3d9b0e 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="About" type="string"/>
   <t:putAttribute name="breadcrumb">
index 7a419d5..66f3b80 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Professions" type="string"/>
   <t:putAttribute name="breadcrumb">
index e495abb..239e422 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="References" type="string"/>
   <t:putAttribute name="breadcrumb">
index 1aa6c60..3640ea0 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Blog" type="string"/>
     <t:putAttribute name="breadcrumb">
index 55058fe..82d348f 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="" type="string"/>
     <t:putAttribute name="breadcrumb">
index 1871c3a..f098525 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="" type="string"/>
     <t:putAttribute name="breadcrumb">
index 39d19fd..7ba4d0c 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Contact" type="string"/>
   <t:putAttribute name="breadcrumb">
index f606d24..c4416b0 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Impressum" type="string"/>
   <t:putAttribute name="breadcrumb">
index 78be349..8bd5df3 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Datenschutz" type="string"/>
   <t:putAttribute name="breadcrumb">
index a665f41..706c50a 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Google Analytics" type="string"/>
   <t:putAttribute name="breadcrumb">
index 650f788..42c3c86 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Haftung für Inhalte" type="string"/>
   <t:putAttribute name="breadcrumb">
index 08bb0df..71db763 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Haftung für Links" type="string"/>
   <t:putAttribute name="breadcrumb">
index 280a132..19f31d5 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Urheberrechte" type="string"/>
   <t:putAttribute name="breadcrumb">
index 6dc32ea..89f9c87 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="NOMENU">
   <t:putAttribute name="title" value="Branding" type="string"/>
   <t:putAttribute name="header">
index d04d2e7..b51dd78 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Projects" type="string"/>
   <t:putAttribute name="breadcrumb">
index aaee718..101311c 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Fix SWF" type="string"/>
   <t:putAttribute name="breadcrumb">
index d3400be..d95b4dc 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Fix SWF - Getting Started" type="string"/>
   <t:putAttribute name="breadcrumb">
index 5ceca69..c5d79e0 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Fix SWF - Overview" type="string"/>
   <t:putAttribute name="breadcrumb">
index ecce583..7e72b6d 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="HTML-Experimente" type="string"/>
   <t:putAttribute name="breadcrumb">
index 48bf69a..143b9a7 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="BASEPAGE">
   <t:putAttribute name="title" value="Typo" type="string"/>
   <t:putAttribute name="breadcrumb">
index c279f16..f74e5bc 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Nur das Basis-Layout" type="string"/>
   <t:putAttribute name="htmlhead" type="string">
index fcca5a7..2d2fd5b 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Die für den Ausdruck angepasste Ansicht" type="string"/>
   <t:putAttribute name="htmlhead" type="string">
index 5e8e4e1..2235e92 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Diese Seite erzeugt einen Fehler!" type="string"/>
   <t:putAttribute name="maincontent" type="string">
index b164cd3..a066a97 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Fast leere Seite ohne Menü, aber mit Marginalinhalt" type="string"/>
   <t:putAttribute name="contentclass" value="nomenu" type="string"/>
index 64fb1d1..52836d0 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Fast leere Seite ohne Menü" type="string"/>
   <t:putAttribute name="contentclass" value="nomenu" type="string"/>
index e7bb385..59825e6 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Fast leere Seite mit Menü und Marginalinhalt" type="string"/>
   <t:putAttribute name="maincontent" type="string">
index bd82825..7145efe 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Fast leere Seite mit Menü" type="string"/>
   <t:putAttribute name="maincontent" type="string">
index dbc9672..7656cb9 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Formulare" type="string"/>
   <t:putAttribute name="maincontent" type="string">
index f3ef2c0..11dd163 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Nur das Basis-Layout" type="string"/>
   <t:putAttribute name="htmlhead" type="string" value=""/>
index db3e859..e9c7291 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Layout für Smartphones" type="string"/>
   <t:putAttribute name="htmlhead" type="string">
index 0ef0520..acb38eb 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Nur das Basis-Layout und die Seitenaufteilung" type="string"/>
   <t:putAttribute name="htmlhead" type="string">
index c9a82c0..dbb067b 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Nur das Basis-Layout und der Seitenkopf" type="string"/>
   <t:putAttribute name="htmlhead" type="string">
index dfc3839..fbfea30 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Symbol-Font" type="string"/>
   <t:putAttribute name="maincontent" type="string">
index cfe37c7..adcf883 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Layout für Tablets" type="string"/>
   <t:putAttribute name="htmlhead" type="string">
index 220895a..cc5a79d 100644 (file)
@@ -2,8 +2,6 @@
 <%@page pageEncoding="UTF-8"%>
 <%@page session="false" %>
 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
-<%@taglib uri="http://www.springframework.org/tags" prefix="s"%>
-<s:url var="base" value="/" />
 <t:insertDefinition name="test">
   <t:putAttribute name="title" value="Layout für sehr kleine Bildschirmgrößen" type="string"/>
   <t:putAttribute name="htmlhead" type="string">