You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.2 KiB
62 lines
2.2 KiB
2 years ago
|
<%@page pageEncoding="utf-8" contentType="text/html" %>
|
||
|
<%@ page import ="java.util.Hashtable" %>
|
||
|
<%@ page import ="java.util.StringTokenizer" %>
|
||
|
<%@ page import ="info.bliki.wiki.model.*" %>
|
||
|
<%@ page import ="de.superx.common.SxResultSet,de.superx.common.SxResultRow,de.superx.servlet.ServletUtils" %>
|
||
|
|
||
|
<%
|
||
|
String mandantenid="default";
|
||
|
//Ermittlung der Mandantenid zuerst aus Session,
|
||
|
//wenn leer (d.h. User ist noch nicht angemeldet)
|
||
|
//dann über request-Parameter
|
||
|
Object mandantobject=request.getSession().getAttribute("MandantenID");
|
||
|
if(mandantobject != null)
|
||
|
mandantenid=mandantobject.toString();
|
||
|
String mandantparam=request.getParameter("MandantenID");
|
||
|
if(mandantparam !=null && !mandantenid.equals(""))
|
||
|
mandantenid=mandantparam;
|
||
|
|
||
|
String wikiHeader="Willkommen zu SuperX";
|
||
|
String wikiBody="";
|
||
|
String queryWiki = "select contents_short,contents_long \n"
|
||
|
+ "from sx_captions where id='WIKI_HEADFRAME' and locale='de'"
|
||
|
;
|
||
|
String info_text_html="";
|
||
|
String default_text_html="";
|
||
|
%>
|
||
|
|
||
|
<%@ include file="/xml/wikiSelector.inc" %>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta http-equiv="content-type" content="text/html;">
|
||
|
<title><%= wikiHeader%></title>
|
||
|
<link rel="stylesheet" type="text/css" href="../style/superx.css" />
|
||
|
</head>
|
||
|
<body style="padding:0; margin:0;background-image:url(../images/top_border3.png); background-repeat:repeat-x; margin:0">
|
||
|
<%
|
||
|
if(!info_text_html.equals(""))
|
||
|
{
|
||
|
out.println(info_text_html);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
//Default Text falls es keine Wiki Kopfzeile gibt:
|
||
|
%>
|
||
|
<div style="background-image:url(../images/top_border3.png); background-repeat:repeat-x; padding:30px 0 0 0; margin:0">
|
||
|
<!--img src="../images/top_superx.png" alt="Logo von SuperX" style="top:4px;left:20px;position:absolute"-->
|
||
|
|
||
|
<p style="padding:0; margin:0"><a style="padding:0; margin:0" href="http://www.superx-projekt.de" target="_parent">
|
||
|
<img src="../images/top_superx.png" border="0" width="61" height="20" alt="Logo von SuperX" style="top:4px;left:20px;position:absolute"></a>
|
||
|
</p>
|
||
|
<p style="padding:0; margin:0"><a style="padding:0; margin:0" href="../doku/benutzer/main.htm" target="_blank">
|
||
|
<img src="../images/info.gif" border="0" alt="Logo von SuperX" style="top:3px;right:20px;position:absolute"></a>
|
||
|
</p>
|
||
|
|
||
|
</div>
|
||
|
<%
|
||
|
}
|
||
|
%>
|
||
|
</body>
|
||
|
</html>
|