diff options
author | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2009-08-26 17:28:03 +0000 |
---|---|---|
committer | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2009-08-26 17:28:03 +0000 |
commit | 15d354a20c45cc5737438fe121696637f7dec1c8 (patch) | |
tree | ade3dc0bceb5c63981ee99c3e3922426fb5847e7 /BKUHelp/src/main/resources/help.jsp | |
parent | 598f62c5b30d6e40f6983fc3eec17613d19cdc0e (diff) | |
download | mocca-15d354a20c45cc5737438fe121696637f7dec1c8.tar.gz mocca-15d354a20c45cc5737438fe121696637f7dec1c8.tar.bz2 mocca-15d354a20c45cc5737438fe121696637f7dec1c8.zip |
MOCCA TLS Server CA cert installation servlet
removed help.jsp (and jsp dependencies in jetty)
moved html pages to src/main/webapp (encoding problem?)
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@473 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKUHelp/src/main/resources/help.jsp')
-rw-r--r-- | BKUHelp/src/main/resources/help.jsp | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/BKUHelp/src/main/resources/help.jsp b/BKUHelp/src/main/resources/help.jsp deleted file mode 100644 index f557dc02..00000000 --- a/BKUHelp/src/main/resources/help.jsp +++ /dev/null @@ -1,52 +0,0 @@ -<!-- - Copyright 2008 Federal Chancellery Austria and - Graz University of Technology - - Licensed under the Apache License, Version 2.0 (the "License"); - 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 "AS IS" 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. ---> -<%@ page language="java" contentType="text/html; charset=UTF-8" - pageEncoding="UTF-8"%> - -<% - StringBuilder path = new StringBuilder("/helpfiles/"); - - //servlet mapping assures pathInfo[0] == help - //expect pathinfo /help/<languagecode>/<helpfile> - String pathInfo[] = (request.getPathInfo() != null) ? request - .getPathInfo().split("/") : new String[] {}; - if (pathInfo.length < 2) { - path.append("index.html"); - } else { - if (pathInfo.length > 2) { - //new Locale(pathInfo[1]).getLanguage() returns de_at - //anyway, Locale uses _two-letter_ codes as defined by ISO-639 - String language = pathInfo[1].substring(0, 2).toLowerCase(); - if(getServletContext().getResource(path.toString() + language) != null) { - //System.out.println("help available for requested language " + language); - path.append(language); - path.append('/'); - } else { - //System.out.println("no help available for requested language " + language); - path.append("de/"); - } - path.append(pathInfo[2]); - } else { - //System.out.println("no language requested"); - path.append("de/"); - path.append(pathInfo[1]); - } - } - //System.out.println(path); -%> - -<jsp:include page="<%=path.toString()%>" flush="true"/> |