This commit is contained in:
2024-10-14 00:08:40 +02:00
parent dbfba56f66
commit 1462d52e13
4572 changed files with 2658864 additions and 0 deletions

View File

@@ -0,0 +1,117 @@
#!/bin/perl
use CGI qw(:standard);
my $file=param('file');
print header();
print <<FIRST_HTML;
<!DOCTYPE BHTML PUBLIC "-//BC//DTD BHTML 3.2 Final//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Example of Xinha</title>
<link rel="stylesheet" href="full_example.css" />
<script type="text/javascript">
// You must set _editor_url to the URL (including trailing slash) where
// where xinha is installed, it's highly recommended to use an absolute URL
// eg: _editor_url = "/path/to/xinha/";
// You may try a relative URL if you wish]
// eg: _editor_url = "../";
// in this example we do a little regular expression to find the absolute path.
// _editor_url = document.location.href.replace(/examples\/full_example-body\.html.*/, '')
_editor_url = "../xinha/";
_editor_lang = "en"; // And the language we need to use in the editor.
</script>
<!-- Load up the actual editor core -->
<script type="text/javascript" src="../xinha/htmlarea.js"></script>
<script type="text/javascript">
xinha_editors = null;
xinha_init = null;
xinha_config = null;
xinha_plugins = null;
// This contains the names of textareas we will make into Xinha editors
xinha_init = xinha_init ? xinha_init : function()
{
xinha_plugins = xinha_plugins ? xinha_plugins :
[
'CharacterMap',
'ContextMenu',
'FullScreen',
'ListType',
'SpellChecker',
'Stylist',
'SuperClean',
'TableOperations',
'ImageManager',
'Forms',
'FormOperations',
'Linker',
'InsertAnchor',
'FindReplace',
'InsertWords',
'Equation',
'InsertMarquee',
'QuickTag',
'Template',
'DoubleClick'
];
// THIS BIT OF JAVASCRIPT LOADS THE PLUGINS, NO TOUCHING :)
if(!HTMLArea.loadPlugins(xinha_plugins, xinha_init)) return;
xinha_editors = xinha_editors ? xinha_editors :
[
'ta'
];
xinha_config = xinha_config ? xinha_config() : new HTMLArea.Config();
xinha_editors = HTMLArea.makeEditors(xinha_editors, xinha_config, xinha_plugins);
HTMLArea.startEditors(xinha_editors);
}
window.onload = xinha_init;
</script>
<!--link type="text/css" rel="alternate stylesheet" title="blue-look" href="../xinha/skins/blue-look/skin.css" />
<link type="text/css" rel="alternate stylesheet" title="green-look" href="../xinha/skins/green-look/skin.css" />
<link type="text/css" rel="alternate stylesheet" title="xp-blue" href="../xinha/skins/xp-blue/skin.css" />
<link type="text/css" rel="alternate stylesheet" title="xp-green" href="../xinha/skins/xp-green/skin.css" />
<link type="text/css" rel="alternate stylesheet" title="inditreuse" href="../xinha/skins/inditreuse/skin.css" />
<link type="text/css" rel="alternate stylesheet" title="blue-metallic" href="../xinha/skins/blue-metallic/skin.css" /-->
</head>
<body>
<form action="save.pl" method="post" id="edit" name="edit">
<textarea id="ta" name="ta" rows="30" cols="80" style="width:100%">
FIRST_HTML
open FILE, "<$file";
@file=<FILE>;
close FILE;
print @file;
print " </textarea>\n";
print " <input type='hidden' name='file' value='$file'>";
print <<THIRD_HTML;
<input type="submit" name="ok" value="Speichern">
<input type="button" name="can" value="Abbruch" onclick="window.open('http://dev1.andrewisniewski.de/admin/','_top','')">
</form>
</body>
</html>
THIRD_HTML

View File

@@ -0,0 +1,47 @@
/*--------------------------------------:noTabs=true:tabSize=2:indentSize=2:--
-- Xinha example CSS file. This is ripped from Trac ;)
--
-- $HeadURL: http://svn.xinha.python-hosting.com/trunk/examples/full_example.css $
-- $LastChangedDate: 2005-02-19 17:10:03 +1300 (Sat, 19 Feb 2005) $
-- $LastChangedRevision: 14 $
-- $LastChangedBy: gogo $
--------------------------------------------------------------------------*/
body {
background: #fff;
color: #000;
margin: 10px;
}
body, th, td {
font: normal 13px verdana,arial,'Bitstream Vera Sans',helvetica,sans-serif;
}
h1, h2, h3, h4 {
font-family: arial,verdana,'Bitstream Vera Sans',helvetica,sans-serif;
font-weight: bold;
letter-spacing: -0.018em;
}
h1 { font-size: 21px; margin: .15em 1em 0 0 }
h2 { font-size: 16px; margin: 2em 0 .5em; }
h3 { font-size: 14px; margin: 1.5em 0 .5em; }
hr { border: none; border-top: 1px solid #ccb; margin: 2em 0; }
address { font-style: normal }
img { border: none }
:link, :visited {
text-decoration: none;
color: #b00;
border-bottom: 1px dotted #bbb;
}
:link:hover, :visited:hover {
background-color: #eee;
color: #555;
}
h1 :link, h1 :visited ,h2 :link, h2 :visited, h3 :link, h3 :visited,
h4 :link, h4 :visited, h5 :link, h5 :visited, h6 :link, h6 :visited {
color: inherit;
}
.area_holder
{
margin:10px;
}

View File

@@ -0,0 +1,10 @@
<html>
<head>
<title>Admin</title>
</head>
<frameset cols='150,*'>
<frame src='./left.html' name='left' frameborder='0' noresize scrolling='no'>
<frame src='./right.html' name='right' frameborder='0' noresize scrolling='yes'>
</frameset>
</html>

View File

@@ -0,0 +1,5 @@
<font size="2"></font>
<fieldset style="WIDTH: 120px; HEIGHT: 130px">
<p><legend><font style="BACKGROUND-COLOR: #ffffff">edit</font></legend><a href="admin.pl?file=../situation.html" target="right"><font face="georgia,times new roman,times,serif">Situation</font></a><br /><a href="admin.pl?file=../leistung.html" target="right"><font face="georgia,times new roman,times,serif">Leistung</font></a><br /><a href="admin.pl?file=../download.html" target="right"><font face="georgia,times new roman,times,serif">Download</font></a><br /><a href="admin.pl?file=../kontakt.html" target="right"><font face="georgia,times new roman,times,serif">Kontakt</font></a><br /><a href="admin.pl?file=../presse.html" target="right"><font face="georgia,times new roman,times,serif">Presse</font></a><br /><a href="admin.pl?file=../home.html" target="right"><font face="georgia,times new roman,times,serif">Home</font></a><br /></p>
</fieldset><br />
<fieldset style="WIDTH: 120px; HEIGHT: 39px"><legend><font style="BACKGROUND-COLOR: #ffffff">open</font></legend><a href="http://dev1.andrewisniewski.de/" target="new"><font face="georgia,times new roman,times,serif">Homepage</font></a></fieldset>

View File

@@ -0,0 +1,5 @@
<html>
<body>
</body>
</html>

View File

@@ -0,0 +1,27 @@
#! /usr/bin/perl -w
use CGI;
print "Content-type: text/html\n\n";
$c = new CGI;
$ta = $c->param('ta');
$file = $c->param('file');
open FILE, ">$file";
print FILE $ta;
close FILE;
print <<EOF;
<html>
<head>
<meta http-equiv='refresh' content='2; URL=./right.html'>
</head>
<body>
gespeichert
</body>
</html>
EOF
1;

View File

@@ -0,0 +1,9 @@
<link href="style.css" type="text/css" rel="stylesheet" />
<table id="content_t">
<tbody>
<tr id="content_r">
<td id="content_d" />
<td id="edit">download</td>
</tr>
</tbody>
</table>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,7 @@
<HTML><HEAD><TITLE>Titel</TITLE><LINK href="style.css" type=text/css rel=stylesheet></HEAD>
<BODY id=inner >
<TABLE id=content_t>
<TBODY>
<TR id=content_r>
<TD id=content_d></TD>
<TD id="edit">home</TD></TR></TBODY></TABLE></BODY></HTML>

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

@@ -0,0 +1,81 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Titel</title>
<!-- START OF SCRIPT -->
<link href="style.css" type="text/css" rel="stylesheet" />
<!-- START OF SCRIPT -->
<style type="text/css">
#coolmenu{border: 1px solid black;width: 170px;background-color: #E6E6E6;}
#coolmenu a{font: bold 13px Verdana;padding: 2px;padding-left: 4px;display: block;width: 100%;color: black;text-decoration: none;border-bottom: 1px solid black;}
html>body #coolmenu a{width: auto;}
#coolmenu a:hover{background-color: black;color: white;}
#tabledescription{width: 100%;height: 3em;padding: 2px;filter:alpha(opacity=0);-moz-opacity:0;}
</style>
<script type="text/javascript">
// Fading routine based on Dynamic Drive script: http://www.dynamicdrive.com/dynamicindex4/highlightgrad.htm
// This notice must stay intact for usevar baseopacity=0
function showtext(thetext){
if (!document.getElementById)
returntextcontainerobj=document.getElementById("tabledescription")
browserdetect=textcontainerobj.filters? "ie" : typeof textcontainerobj.style.MozOpacity=="string"? "mozilla" : ""
instantset(baseopacity)
document.getElementById("tabledescription").innerHTML=thetexthighlighting=setInterval("gradualfade(textcontainerobj)",50)
}
function hidetext(){
cleartimer()
instantset(baseopacity)
}
function instantset(degree){
if (browserdetect=="mozilla")
textcontainerobj.style.MozOpacity=degree/100
else
if (browserdetect=="ie")
textcontainerobj.filters.alpha.opacity=degreeelse
if (document.getElementById && baseopacity==0)
document.getElementById("tabledescription").innerHTML=""
}
function cleartimer(){if (window.highlighting) clearInterval(highlighting)}function gradualfade(cur2){if (browserdetect=="mozilla" && cur2.style.MozOpacity<1)cur2.style.MozOpacity=Math.min(parseFloat(cur2.style.MozOpacity)+0.2, 0.99)else if (browserdetect=="ie" && cur2.filters.alpha.opacity<100)cur2.filters.alpha.opacity+=20else if (window.highlighting)clearInterval(highlighting)}
</script>
<!-- END OF SCRIPT -->
</head>
<body id="outer">
<div align="center">
<table id="inner" cellspacing="0" cellpadding="0" width="800" align="center" border="0">
<tbody>
<tr>
<td colspan="2">
<img style="WIDTH: 100%; HEIGHT: 88px" src="newspaper_cut.jpg" border="0" alt="newspaper" />
</td>
</tr>
<tr>
<td colspan="2">
</td>
</tr>
<tr valign="top" align="left">
<td width="180px">
<div id="coolmenu">
<a href="situation.html" target="frame" onMouseover="showtext('Ihre Situation')" onMouseout="hidetext()">Situation</a>
<a href="leistung.html" target="frame" onMouseover="showtext('Unsere Leistung')" onMouseout="hidetext()">Leistung</a>
<a href="download.html" target="frame" onMouseover="showtext('Informationen und Antr&auml;ge')" onMouseout="hidetext()">Downloads</a>
<a href="presse.html" target="frame" onMouseover="showtext('Aktuelle Pressemitteilungen')" onMouseout="hidetext()">Presse</a>
<a href="kontakt.html" target="frame" onMouseover="showtext('So erreichen Sie uns')" onMouseout="hidetext()">Kontakt</a>
<div id="tabledescription"></div>
</div>
</td>
<td valign="top" height="400">
<iframe id="frame" style="WIDTH: 600px; HEIGHT: 450px" name="frame" src="home.html" frameborder="0"></iframe>
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>

View File

@@ -0,0 +1,54 @@
<HTML >
<HEAD >
<TITLE >Titel</TITLE>
</HEAD>
<BODY id=inner >
<link href="style.css" type="text/css" rel="stylesheet" />
<table id="content_t">
<tbody>
<tr id="content_r">
<td id="content_d" />
<td id="edit">
<FORM name=myform action=sent.html target=frame>
<TABLE style="WIDTH: 543px; HEIGHT: 270px">
<TR>
<TD width=66>Name</TD>
<TD width=222><INPUT size=30 name=name></TD>
</TR>
<TR>
<TD width=66>eMail</TD>
<TD width=222><INPUT size=30 name=email></TD>
</TR>
<TR>
<TD width=66>Telefon</TD>
<TD width=222><INPUT size=30 name=tel></TD>
</TR>
<TR>
<TD width=66>Fax</TD>
<TD width=222><INPUT size=30 name=fax></TD>
</TR>
<TR>
<TD width=66>
<P align=left>Kommentar</P>
</TD>
<TD width=222>
<INPUT size=50 name=text>
</TEXTAREA>
</TD>
</TR>
<TR>
<TD width=66>
<INPUT style="WIDTH: 90px; HEIGHT: 24px" type=button value=Abbruch name=cancel>
</TD>
<TD width=222><INPUT style="WIDTH: 90px; HEIGHT: 24px" type=submit size=16 value=OK name=send></TD>
</TR>
</TABLE>
</FORM>
</td>
</tr>
</tbody>
</table>
</BODY>
</HTML>

View File

@@ -0,0 +1,9 @@
<link href="style.css" type="text/css" rel="stylesheet" />
<table id="content_t">
<tbody>
<tr id="content_r">
<td id="content_d" />
<td id="edit">leistung</td>
</tr>
</tbody>
</table>

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,30 @@
<link href="style.css" type="text/css" rel="stylesheet" />
<table id="content_t">
<tbody>
<tr id="content_r">
<td id="content_d" rowspan="3" />
<td>
<fieldset><legend>n-tv</legend>§xy geändert! </fieldset>
</td>
<td />
<td />
</tr>
<tr>
<td />
<td>jjj</td>
<td>
<fieldset>
<p><legend>t-online</legend>§cv <sub><del>hei</del></sub>ß<sup> jjjjjjjjj</sup></p>
<p>kkkkkdiskutiert </p>
</fieldset>
</td>
</tr>
<tr>
<td />
<td>
<fieldset><legend>BBC</legend>§df Abs.3 gescheitert! </fieldset>
</td>
<td />
</tr>
</tbody>
</table>

View File

@@ -0,0 +1 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head> <title>Titel</title> <link rel='stylesheet' type='text/css' href='style.css'> <meta http-equiv='refresh' content='3; URL=home.html'> </head> <body id="inner"> <table id="content_t"> <tbody> <tr id="content_r"> <td id="content_d"></td> <td>email gesendet!</td> </tr> </tbody> </table> </body></html>

View File

@@ -0,0 +1,9 @@
<link href="style.css" type="text/css" rel="stylesheet" />
<table id="content_t">
<tbody>
<tr id="content_r">
<td id="content_d" />
<td id="edit">Situation</td>
</tr>
</tbody>
</table>

View File

@@ -0,0 +1,25 @@
#inner { BACKGROUND-COLOR: #ffffff; }
#outer { BACKGROUND-COLOR: #aaaaaa; }
#coolmenu { BORDER-RIGHT: black 1px solid; BORDER-TOP: black 1px solid; BORDER-LEFT: black 1px solid; WIDTH: 170px;
BORDER-BOTTOM: black 1px solid; BACKGROUND-COLOR: #e6e6e6 }
#coolmenu A { PADDING-RIGHT: 2px; DISPLAY: block; PADDING-LEFT: 4px; PADDING-BOTTOM: 2px; FONT: bold 13px Verdana; WIDTH: 170px;
COLOR: black; PADDING-TOP: 2px; BORDER-BOTTOM: black 1px solid; TEXT-DECORATION: none }
UNKNOWN { WIDTH: auto }
#coolmenu A:hover { COLOR: white; BACKGROUND-COLOR: black }
#tabledescription { PADDING-RIGHT: 2px; PADDING-LEFT: 2px; FILTER: alpha(opacity=0); PADDING-BOTTOM: 2px; WIDTH: 170px;
PADDING-TOP: 2px; HEIGHT: 3em; moz-opacity: 0 }
#presse { DISPLAY: block; BORDER-RIGHT: black 2px solid; BORDER-TOP: black 2px solid; BORDER-LEFT: black 2px solid;
BORDER-BOTTOM: black 2px solid; FONT-FAMILY: Arial; FONT-WEIGHT: bold; }
#content_t { HEIGHT: 400px; }
#content_d { BACKGROUND-COLOR: #CC6633; WIDTH: 5px; }
#content_r { }

File diff suppressed because one or more lines are too long