admin
FCKeditor
_samples
editor
_source
css
dialog
common
fck_about
fck_docprops
fck_flash
fck_image
fck_link
fck_select
fck_spellerpages
fck_template
fck_about.html
fck_anchor.html
fck_button.html
fck_checkbox.html
fck_colorselector.html
fck_docprops.html
fck_find.html
fck_flash.html
fck_form.html
fck_hiddenfield.html
fck_image.html
fck_link.html
fck_listprop.html
fck_paste.html
fck_radiobutton.html
fck_replace.html
fck_select.html
fck_smiley.html
fck_source.html
fck_specialchar.html
fck_spellerpages.html
fck_table.html
fck_tablecell.html
fck_template.html
fck_textarea.html
fck_textfield.html
filemanager
images
js
lang
plugins
skins
fckdebug.html
fckdialog.html
fckeditor.html
fckeditor.original.html
_documentation.html
_upgrade.html
_whatsnew.html
fckconfig.js
fckeditor.afp
fckeditor.asp
fckeditor.cfc
fckeditor.cfm
fckeditor.js
fckeditor.lasso
fckeditor.php
fckeditor.pl
fckeditor.py
fckeditor_php4.php
fckeditor_php5.php
fckpackager.xml
fckstyles.xml
fcktemplates.xml
htaccess.txt
license.txt
Uebersicht1
Uebersicht2
fachprojektscheine
fpdf
import
livesearch
###menuframe.php
adm_anleg.php
adm_bearb.php
adminrechte.php
adminrechte_del.php
anmschluss.php
anwesenheit.php
ausg_aush.php
ausgabe.php
auswahl.php
bearbeiten.php
cross.jpg
detailansicht.php
doz_anleg.php
doz_bearb.php
doz_del.php
erfassen.php
expo.php
export.php
export_themen.php
fach_del.php
fach_useronline.php
fachliste.php
fachprojekt_bearbeiten.php
fachprojektbescheinigung_admin.php
hauptframe.htm
hauptframe_jahr.php
index.php
jahrgang.php
kennwortwechsel_admin.php
ldap_search.php
liste.php
livesearch_stud.php
login_doz.php
login_log.php
logout_admin.php
mail.php
mail_doz.php
mail_fach.php
mail_unangemeldet.php
mailadressen.php
mailcompare.php
menuframe.php
menuframe_28.09.2005.php
noteneingabe_admin.php
ok.gif
pass_back.php
registrierung.php
stud_bearb.php
stud_neubelegen.php
studbeleg.php
suche.php
topframe.htm
ubersicht.php
ubersicht_fachthemen.php
ubersicht_prio.php
unangemeldet.php
doz
fachprojekt
html2pdf_v4.03
htmlpurifier-4.10.0
images
prints
prints3
Kennwortwechsel.php
hauptframe.php
index.php
index_alt.php
index_db.php
index_frame.htm
index_ldap.php
login.php
logout.php
menuframe.htm
styles_pc.css
topframe.php
66 lines
2.1 KiB
HTML
Executable File
66 lines
2.1 KiB
HTML
Executable File
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
|
<!--
|
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
|
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
|
*
|
|
* == BEGIN LICENSE ==
|
|
*
|
|
* Licensed under the terms of any of the following licenses at your
|
|
* choice:
|
|
*
|
|
* - GNU General Public License Version 2 or later (the "GPL")
|
|
* http://www.gnu.org/licenses/gpl.html
|
|
*
|
|
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
|
* http://www.gnu.org/licenses/lgpl.html
|
|
*
|
|
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
|
* http://www.mozilla.org/MPL/MPL-1.1.html
|
|
*
|
|
* == END LICENSE ==
|
|
*
|
|
* Source editor dialog window.
|
|
-->
|
|
<html>
|
|
<head>
|
|
<title>Source</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="robots" content="noindex, nofollow">
|
|
<link href="common/fck_dialog_common.css" rel="stylesheet" type="text/css" />
|
|
<script language="javascript">
|
|
|
|
var oEditor = window.parent.InnerDialogLoaded() ;
|
|
var FCK = oEditor.FCK ;
|
|
var FCKConfig = oEditor.FCKConfig ;
|
|
|
|
window.onload = function()
|
|
{
|
|
// EnableXHTML and EnableSourceXHTML has been deprecated
|
|
// document.getElementById('txtSource').value = ( FCKConfig.EnableXHTML && FCKConfig.EnableSourceXHTML ? FCK.GetXHTML( FCKConfig.FormatSource ) : FCK.GetHTML( FCKConfig.FormatSource ) ) ;
|
|
document.getElementById('txtSource').value = FCK.GetXHTML( FCKConfig.FormatSource ) ;
|
|
|
|
// Activate the "OK" button.
|
|
window.parent.SetOkButton( true ) ;
|
|
}
|
|
|
|
//#### The OK button was hit.
|
|
function Ok()
|
|
{
|
|
if ( oEditor.FCKBrowserInfo.IsIE )
|
|
oEditor.FCKUndo.SaveUndoStep() ;
|
|
|
|
FCK.SetHTML( document.getElementById('txtSource').value, false ) ;
|
|
|
|
return true ;
|
|
}
|
|
</script>
|
|
</head>
|
|
<body scroll="no" style="OVERFLOW: hidden">
|
|
<table width="100%" height="100%">
|
|
<tr>
|
|
<td height="100%"><textarea id="txtSource" dir="ltr" style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; FONT-SIZE: 14px; PADDING-BOTTOM: 5px; WIDTH: 100%; PADDING-TOP: 5px; FONT-FAMILY: Monospace; HEIGHT: 100%">Loading. Please wait...</textarea></td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|