]> juplo.de Git - website/commitdiff
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 921870723e7da9a0566826c75ff2fb109d56db3d..d826d41742dd1e14c249900099767bb2bf2dd66b 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 5644494bf5f8f6e7809c3f1974a9ddfe06dac72a..b6359a36fa450d3cab0fc4ea88c2172d1eed432c 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 cc5a0376d7a379d043d63ef4e96aac487e045e68..5fb88cf1cae303666bab4c090c387b779ad09ab7 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 2360f2f4d80fb492d0d30318c07d57e3ba014529..c4e44586802948be2f242ac1daa55ff3afdbde17 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 7191e62acb9a1977763708e3ad4b3c9b242953ca..9c7005e664dde213a4bf867f0a854025142188a4 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 864dbed151a89706069b520a6cdd36c942fac877..3a27951db3a272e52ba3be20d2ef6d65e262e904 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 098c37275d5677b768c8060e212babfc8ff1dcc8..1bc97384fb7a71c0bcecca5656fc3e76ae24a71e 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 5918e651a1d8ff752f15f0065385aecd163761b5..ec1a850c26b2a4c85253b5ecd201f03bdfcc6a19 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 b8f6e3524f4574d5f8499febae02905f39b794fe..de5e1794d282b848b9c2b2db753caa96a54f6ba7 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 e878bf8944ffe3ecaab26df72fc3d711ec693eb5..41aa3e5e3b0e907ce57b61931d7367c692b8e5d0 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 cc4a1c1e463214dfc6684b0017b45910c8d03f4f..efe36728dde8ab7936b7386b73613749f208505b 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 6245a8ef0d5728b64de62e0482390d6b130c28d8..7a73a79e41fe5bc9f1ab337343fbb55b3c78e755 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 679a32e23905ba2826ad4e6516b15f8e51977c8e..8188d1c8008b91f552f50fe5bf3970753f3a4e45 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 8d72835f39ce8be6bcf034d4600992323a98af51..f3d9b0e8901e659541ac8d6bfc95e1b40fa49235 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 7a419d5ffd4b4faae1497c7932ddbafd9197dd0d..66f3b807b99f76aa8cfcb093104761dd54185e46 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 e495abbb08b17ff2679a8b47a60390394dd394a3..239e422463c80caac63461bc7c5d22426559afbd 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 1aa6c605928dbf6abbb0954af37bd934efe73ad7..3640ea06cb7597cebc97935a5c8fb77da68b15cf 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 55058fe56e5770694617bcb8e8ba60168ffd96c3..82d348f2854e712c302ce1d1b7caf75c6318b88e 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 1871c3a17ace14ab6350f99fd6210062bafcccce..f098525d349f1d59acbaebd5172cc670cca123df 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 39d19fd2fa94c0c57722a1f82c4eb5fe113cb138..7ba4d0c0e82d7eb9305307ce2aea93fa3b90dcf1 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 f606d24e4ff1d02268022feabd934806deb88dba..c4416b09f161897b2da10965f9a8477289f9a152 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 78be3492356018214a6a79f6b5504e38fd76c50c..8bd5df3436078f61ceec4020345c40b19912eb09 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 a665f412a3d9d976890ff3e0ed15fc83d9d9dfe3..706c50aac84a36992dff0b533db6d1958263bc40 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 650f788126b83f29039a8e1b6b7b5c21e61943de..42c3c863af14b82db5d583fc5ddec6a28452b9e2 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 08bb0dfafbd2488617f9af40e318e4386c2e9ee3..71db7631782f56ab1d7ee3273be1a44449cf3f0f 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 280a132fec2dbf5133ff029ac56d30c0fa3c700a..19f31d5e70af107c2c7e2db99fbe9fd25d585369 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 6dc32ea060b314d22aba5ad45c7f6ded21993db7..89f9c87faa6771f7d63fd9c1ad335f7e28e18af9 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 d04d2e7b649fc7e7ac98ac5b5d2e3f0715765df7..b51dd7829fe2c264fae69eb8f0f35ae5b7eb287f 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 aaee718e3c12e5680ceb0ac90547ac608b2ccf67..101311c8c7fa3e4263ffb0e543d85ad8e702e5fc 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 d3400be3492537efc7be7e59b9637de4f5dcadec..d95b4dcdc60ae14a9dae3e1a2249385a88c85fab 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 5ceca69efbd3eb41c4ea6104aa6e05971d18450c..c5d79e05dcb76f2ad90188ede727978bf52579e6 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 ecce5832f81ff72056d67ca3dd758e50488a4beb..7e72b6d352fdec1b3718281d94069ce971c80a3e 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 48bf69aa96875fd97ce1fa3b876179336c750cf2..143b9a772cdd17f73ca41144419a6d2835e2f688 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 c279f167032cb1c93c90eab3c2aa4b1a696b93f1..f74e5bcd8c7154c166b2fdd80e5de56daaab89d3 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 fcca5a71193542f889d0557d58e143de9787523f..2d2fd5b8f427a5577e1ef2db29424cc75654f032 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 5e8e4e1f2ca4f895dd36061770f490233ef0327b..2235e9234f37b6a99f2a65afdf6d8b0392443f04 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 b164cd3f0d01b00c8cd34421e0a726d357148859..a066a977c0ac74dd6eb0960a94b546508ea380c0 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 64fb1d198d5158f874f75c51b4feb92a744b9ea7..52836d0ab1ff62812bca3a8611ce418039e973b2 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 e7bb3856cbbe5bb9ff7201adde2662e5a35950b1..59825e6afb9f821f7e8f0aec4b72f48601175b74 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 bd82825d7e14afb82b4e78d8c7e2c76a18494af8..7145efef08e2db10ddf47126204a366f205211dc 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 dbc967261ba37ae5bb0525ebcb257c1deaa83d56..7656cb991801a5ea7037013ae4d5bb33af1534f9 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 f3ef2c0ea90e50209e7dc8ff6a6f5f5276fc0522..11dd1636c8cbe94acfa465153751ca6b062c17f2 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 db3e859954edf1d517146bf6f718202ba2b29806..e9c72911a37bfdd67138efcafdf2d9ad3de565dd 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 0ef0520c669b759fa2a2cced5272b77de40deb17..acb38eb5942ee23bf16565c2ac7cd05e34670dff 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 c9a82c0a00a73c22fd269f57c239f411d7bb9019..dbb067b0d5b9733f72b9618732103c83dd2da50d 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 dfc3839f90eb34ecde94dfe74407346da49e2264..fbfea30e5ecfe0cd29a00e63a6d35af0d4020749 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 cfe37c73d3c55a9b7c26df5382718ee9e09556b3..adcf8834d407f5e2826dc1343d92a53d49a3ea7d 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 220895ac6ba2249118ed99488a22ff2c9fea9230..cc5a79da033cb8fba2139ace50eac47305a16803 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">