|
<!DOCTYPE html
|
|
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<?xml-stylesheet href="#internalStyle" type="text/css"?>
|
|
|
|
<html>
|
|
<head>
|
|
<!-- TYPO3 Script ID: typo3/alt_doc.php -->
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
<meta name="generator" content="TYPO3 4.0, http://typo3.com, © Kasper Skårhøj 1998-2006, extensions are copyright of their respective owners." />
|
|
<title>TYPO3 Edit Document</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
|
|
|
|
|
|
<style type="text/css" id="internalStyle">
|
|
/*<![CDATA[*/
|
|
|
|
|
|
|
|
/*]]>*/
|
|
</style>
|
|
<link rel="stylesheet" type="text/css" href="sysext/t3skin/stylesheets/stylesheet_post.css" />
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
function jumpToUrl(URL,formEl) { //
|
|
if (!TBE_EDITOR_isFormChanged()) {
|
|
window.location.href = URL;
|
|
} else if (formEl && formEl.type=="checkbox") {
|
|
formEl.checked = formEl.checked ? 0 : 1;
|
|
}
|
|
}
|
|
|
|
// Object: TS:
|
|
function typoSetup () { //
|
|
this.uniqueID = "";
|
|
}
|
|
var TS = new typoSetup();
|
|
|
|
// Info view:
|
|
function launchView(table,uid,bP) { //
|
|
var backPath= bP ? bP : "";
|
|
var thePreviewWindow="";
|
|
thePreviewWindow = window.open(backPath+"show_item.php?table="+escape(table)+"&uid="+escape(uid),"ShowItem"+TS.uniqueID,"height=300,width=410,status=0,menubar=0,resizable=0,location=0,directories=0,scrollbars=1,toolbar=0");
|
|
if (thePreviewWindow && thePreviewWindow.focus) {
|
|
thePreviewWindow.focus();
|
|
}
|
|
}
|
|
function deleteRecord(table,id,url) { //
|
|
if (
|
|
confirm(String.fromCharCode(65,114,101,32,121,111,117,32,115,117,114,101,32,121,111,117,32,119,97,110,116,32,116,111,32,100,101,108,101,116,101,32,116,104,105,115,32,114,101,99,111,114,100,63))
|
|
) {
|
|
window.location.href = "tce_db.php?cmd["+table+"]["+id+"][delete]=1&redirect="+escape(url)+"&vC=80d5e675d3&prErr=1&uPT=1";
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/*]]>*/
|
|
</script>
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
var DTM_array = new Array();
|
|
var DTM_origClass = new String();
|
|
|
|
// if tabs are used in a popup window the array might not exists
|
|
if(!top.DTM_currentTabs) {
|
|
top.DTM_currentTabs = new Array();
|
|
}
|
|
|
|
function DTM_activate(idBase,index,doToogle) { //
|
|
// Hiding all:
|
|
if (DTM_array[idBase]) {
|
|
for(cnt = 0; cnt < DTM_array[idBase].length ; cnt++) {
|
|
if (DTM_array[idBase][cnt] != idBase+"-"+index) {
|
|
document.getElementById(DTM_array[idBase][cnt]+"-DIV").style.display = "none";
|
|
document.getElementById(DTM_array[idBase][cnt]+"-MENU").attributes.getNamedItem("class").nodeValue = "tab";
|
|
}
|
|
}
|
|
}
|
|
|
|
// Showing one:
|
|
if (document.getElementById(idBase+"-"+index+"-DIV")) {
|
|
if (doToogle && document.getElementById(idBase+"-"+index+"-DIV").style.display == "block") {
|
|
document.getElementById(idBase+"-"+index+"-DIV").style.display = "none";
|
|
if(DTM_origClass=="") {
|
|
document.getElementById(idBase+"-"+index+"-MENU").attributes.getNamedItem("class").nodeValue = "tab";
|
|
} else {
|
|
DTM_origClass = "tab";
|
|
}
|
|
top.DTM_currentTabs[idBase] = -1;
|
|
} else {
|
|
document.getElementById(idBase+"-"+index+"-DIV").style.display = "block";
|
|
if(DTM_origClass=="") {
|
|
document.getElementById(idBase+"-"+index+"-MENU").attributes.getNamedItem("class").nodeValue = "tabact";
|
|
} else {
|
|
DTM_origClass = "tabact";
|
|
}
|
|
top.DTM_currentTabs[idBase] = index;
|
|
}
|
|
}
|
|
}
|
|
function DTM_toggle(idBase,index,isInit) { //
|
|
// Showing one:
|
|
if (document.getElementById(idBase+"-"+index+"-DIV")) {
|
|
if (document.getElementById(idBase+"-"+index+"-DIV").style.display == "block") {
|
|
document.getElementById(idBase+"-"+index+"-DIV").style.display = "none";
|
|
if(isInit) {
|
|
document.getElementById(idBase+"-"+index+"-MENU").attributes.getNamedItem("class").nodeValue = "tab";
|
|
} else {
|
|
DTM_origClass = "tab";
|
|
}
|
|
top.DTM_currentTabs[idBase+"-"+index] = 0;
|
|
} else {
|
|
document.getElementById(idBase+"-"+index+"-DIV").style.display = "block";
|
|
if(isInit) {
|
|
document.getElementById(idBase+"-"+index+"-MENU").attributes.getNamedItem("class").nodeValue = "tabact";
|
|
} else {
|
|
DTM_origClass = "tabact";
|
|
}
|
|
top.DTM_currentTabs[idBase+"-"+index] = 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
function DTM_mouseOver(obj) { //
|
|
DTM_origClass = obj.attributes.getNamedItem('class').nodeValue;
|
|
obj.attributes.getNamedItem('class').nodeValue += "_over";
|
|
}
|
|
|
|
function DTM_mouseOut(obj) { //
|
|
obj.attributes.getNamedItem('class').nodeValue = DTM_origClass;
|
|
DTM_origClass = "";
|
|
}
|
|
|
|
|
|
/*]]>*/
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
// is called from most clickmenu links
|
|
function showClickmenu(table, uid, listFr, enDisItems, backPath, addParams) {
|
|
var url = "alt_clickmenu.php?table=" + table
|
|
+ "&uid=" + uid
|
|
+ "&listFr=" + listFr
|
|
+ "&enDisItems=" + enDisItems
|
|
+ "&backPath=" + backPath
|
|
+ "&addParams=" + addParams;
|
|
|
|
showClickmenu_raw(url);
|
|
}
|
|
// switch - either forwards call to ajax or does the request in the top frame
|
|
function showClickmenu_raw(url) {
|
|
url += "&ajax=1";
|
|
ajax_doRequest(url);
|
|
}
|
|
|
|
/**
|
|
* [Describe function...]
|
|
*
|
|
* @param [type] $url: ...
|
|
* @return [type] ...
|
|
*/
|
|
function showClickmenu_noajax(url) {
|
|
top.loadTopMenu(url);
|
|
}
|
|
function ajax_initObject() {
|
|
var A;
|
|
try {
|
|
A=new ActiveXObject("Msxml2.XMLHTTP");
|
|
} catch (e) {
|
|
try {
|
|
A=new ActiveXObject("Microsoft.XMLHTTP");
|
|
} catch (oc) {
|
|
A=null;
|
|
}
|
|
}
|
|
if(!A && typeof XMLHttpRequest != "undefined") {
|
|
A = new XMLHttpRequest();
|
|
}
|
|
return A;
|
|
}
|
|
function ajax_doRequest(url) {
|
|
var x;
|
|
|
|
x = ajax_initObject();
|
|
if(!x) {
|
|
showClickmenu_noajax(url);
|
|
}
|
|
x.open("GET", url, true);
|
|
|
|
x.onreadystatechange = function() {
|
|
if (x.readyState != 4) {
|
|
return;
|
|
}
|
|
|
|
var xmldoc = x.responseXML;
|
|
var t3ajax = xmldoc.getElementsByTagName("t3ajax")[0];
|
|
showClickmenu_ajax(t3ajax);
|
|
}
|
|
x.send("");
|
|
|
|
delete x;
|
|
}
|
|
// opens the clickmenu, is called from ajax_doRequest
|
|
function showClickmenu_ajax(t3ajax) {
|
|
if (t3ajax.getElementsByTagName("data")[0]) {
|
|
var clickmenu = t3ajax.getElementsByTagName("data")[0].getElementsByTagName("clickmenu")[0];
|
|
var tableData = clickmenu.getElementsByTagName("htmltable")[0].firstChild.data;
|
|
var cmlevel = clickmenu.getElementsByTagName("cmlevel")[0].firstChild.data;
|
|
setLayerObj(tableData,cmlevel);
|
|
}
|
|
}
|
|
|
|
var GLV_gap=10;
|
|
var GLV_curLayerX=new Array(0,0);
|
|
var GLV_curLayerY=new Array(0,0);
|
|
var GLV_curLayerWidth=new Array(0,0);
|
|
var GLV_curLayerHeight=new Array(0,0);
|
|
var GLV_isVisible=new Array(0,0);
|
|
var GLV_x=0;
|
|
var GLV_y=0;
|
|
var GLV_xRel=0;
|
|
var GLV_yRel=0;
|
|
var layerObj=new Array();
|
|
var layerObjCss=new Array();
|
|
|
|
//browsercheck...
|
|
function GL_checkBrowser(){ //
|
|
this.dom= (document.getElementById);
|
|
this.op= (navigator.userAgent.indexOf("Opera")>-1);
|
|
this.op7= this.op && (navigator.appVersion.indexOf("7")>-1); // check for Opera version 7
|
|
this.konq= (navigator.userAgent.indexOf("Konq")>-1);
|
|
this.ie4= (document.all && !this.dom && !this.op && !this.konq);
|
|
this.ie5= (document.all && this.dom && !this.op && !this.konq);
|
|
this.ns4= (document.layers && !this.dom && !this.konq);
|
|
this.ns5= (!document.all && this.dom && !this.op && !this.konq);
|
|
this.ns6= (this.ns5);
|
|
this.bw= (this.ie4 || this.ie5 || this.ns4 || this.ns6 || this.op || this.konq);
|
|
return this;
|
|
}
|
|
bw= new GL_checkBrowser();
|
|
|
|
// GL_getObj(obj)
|
|
function GL_getObj(obj){ //
|
|
nest="";
|
|
this.el= (bw.ie4||bw.op7)?document.all[obj]:bw.ns4?eval(nest+"document."+obj):document.getElementById(obj);
|
|
this.css= bw.ns4?this.el:this.el.style;
|
|
this.ref= bw.ns4?this.el.document:document;
|
|
this.x= (bw.ns4||bw.op)?this.css.left:this.el.offsetLeft;
|
|
this.y= (bw.ns4||bw.op)?this.css.top:this.el.offsetTop;
|
|
this.height= (bw.ie4||bw.dom)?this.el.offsetHeight:bw.ns4?this.ref.height:0;
|
|
this.width= (bw.ie4||bw.dom)?this.el.offsetWidth:bw.ns4?this.ref.width:0;
|
|
return this;
|
|
}
|
|
// GL_getObjCss(obj)
|
|
function GL_getObjCss(obj){ //
|
|
return bw.dom? document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?document.layers[obj]:0;
|
|
}
|
|
// GL_getMouse(event)
|
|
function GL_getMouse(event) { //
|
|
if (layerObj) {
|
|
// GLV_x= (bw.ns4||bw.ns5)?event.pageX:(bw.ie4||bw.op)?event.clientX:(event.clientX-2)+document.body.scrollLeft;
|
|
// GLV_y= (bw.ns4||bw.ns5)?event.pageY:(bw.ie4||bw.op)?event.clientY:(event.clientY-2)+document.body.scrollTop;
|
|
// 17/12 2003: When documents run in XHTML standard compliance mode, the old scrollLeft/Top properties of document.body is gone - and for Opera/MSIE we have to use document.documentElement:
|
|
|
|
GLV_xRel = event.clientX-2;
|
|
GLV_yRel = event.clientY-2;
|
|
GLV_x = GLV_xRel + (document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft);
|
|
GLV_y = GLV_yRel + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);
|
|
|
|
// status = (GLV_x+GLV_gap-GLV_curLayerX[0]) + " | " + (GLV_y+GLV_gap-GLV_curLayerY[0]);
|
|
if (GLV_isVisible[1]) {
|
|
if (outsideLayer(1)) hideSpecific(1);
|
|
} else if (GLV_isVisible[0]) {
|
|
if (outsideLayer(0)) hideSpecific(0);
|
|
}
|
|
}
|
|
}
|
|
// outsideLayer(level)
|
|
function outsideLayer(level) { //
|
|
return GLV_x+GLV_gap-GLV_curLayerX[level] <0 ||
|
|
GLV_y+GLV_gap-GLV_curLayerY[level] <0 ||
|
|
GLV_curLayerX[level]+GLV_curLayerWidth[level]+GLV_gap-GLV_x <0 ||
|
|
GLV_curLayerY[level]+GLV_curLayerHeight[level]+GLV_gap-GLV_y <0;
|
|
}
|
|
// setLayerObj(html,level)
|
|
function setLayerObj(html,level) { //
|
|
var winHeight = document.documentElement.clientHeight && !bw.op7 ? document.documentElement.clientHeight : document.body.clientHeight;
|
|
var winWidth = document.documentElement.clientWidth && !bw.op7 ? document.documentElement.clientWidth : document.body.clientWidth;
|
|
var tempLayerObj = GL_getObj("contentMenu"+level);
|
|
var tempLayerObjCss = GL_getObjCss("contentMenu"+level);
|
|
|
|
if (tempLayerObj && (level==0 || GLV_isVisible[level-1])) {
|
|
tempLayerObj.el.innerHTML = html;
|
|
tempLayerObj.width= (bw.ie4||bw.dom)?this.el.offsetWidth:bw.ns4?this.ref.width:0;
|
|
tempLayerObj.height= (bw.ie4||bw.dom)?this.el.offsetHeight:bw.ns4?this.ref.height:0;
|
|
|
|
// konqueror (3.2.2) workaround
|
|
winHeight = (bw.konq)?window.innerHeight:winHeight;
|
|
winWidth = (bw.konq)?window.innerWidth:winWidth;
|
|
|
|
// Adjusting the Y-height of the layer to fit it into the window frame if it goes under the window frame in the bottom:
|
|
if (winHeight-tempLayerObj.height < GLV_yRel) {
|
|
if (GLV_yRel < tempLayerObj.height) {
|
|
GLV_y+= (winHeight-tempLayerObj.height-GLV_yRel); // Setting it so bottom is just above window height.
|
|
} else {
|
|
GLV_y-= tempLayerObj.height-8; // Showing the menu upwards
|
|
}
|
|
}
|
|
// Adjusting the X position like Y above
|
|
if (winWidth-tempLayerObj.width < GLV_xRel) {
|
|
if (GLV_xRel < tempLayerObj.width) {
|
|
GLV_x+= (winWidth-tempLayerObj.width-GLV_xRel);
|
|
} else {
|
|
GLV_x-= tempLayerObj.width-8;
|
|
}
|
|
}
|
|
GLV_x = Math.max(GLV_x,1);
|
|
GLV_y = Math.max(GLV_y,1);
|
|
|
|
GLV_curLayerX[level] = GLV_x;
|
|
GLV_curLayerY[level] = GLV_y;
|
|
tempLayerObjCss.left = GLV_x+"px";
|
|
tempLayerObjCss.top = GLV_y+"px";
|
|
tempLayerObjCss.visibility = "visible";
|
|
if (bw.ie5) showHideSelectorBoxes("hidden");
|
|
|
|
GLV_isVisible[level]=1;
|
|
GLV_curLayerWidth[level] = tempLayerObj.width;
|
|
GLV_curLayerHeight[level] = tempLayerObj.height;
|
|
}
|
|
}
|
|
// hideEmpty()
|
|
function hideEmpty() { //
|
|
hideSpecific(0);
|
|
hideSpecific(1);
|
|
return false;
|
|
}
|
|
// hideSpecific(level)
|
|
function hideSpecific(level) { //
|
|
GL_getObjCss("contentMenu"+level).visibility = "hidden";
|
|
GL_getObj("contentMenu"+level).el.innerHTML = "";
|
|
GLV_isVisible[level]=0;
|
|
|
|
if (bw.ie5 && level==0) showHideSelectorBoxes("visible");
|
|
}
|
|
// debugObj(obj,name)
|
|
function debugObj(obj,name) { //
|
|
var acc;
|
|
for (i in obj) {if (obj[i]) {acc+=i+": "+obj[i]+"\n";}}
|
|
alert("Object: "+name+"\n\n"+acc);
|
|
}
|
|
// initLayer()
|
|
function initLayer(){ //
|
|
if (document.all) {
|
|
window.onmousemove=GL_getMouse;
|
|
}
|
|
layerObj = GL_getObj("contentMenu1");
|
|
layerObjCss = GL_getObjCss("contentMenu1");
|
|
}
|
|
function showHideSelectorBoxes(action) { // This function by Michiel van Leening
|
|
for (i=0;i<document.forms.length;i++) {
|
|
for (j=0;j<document.forms[i].elements.length;j++) {
|
|
if(document.forms[i].elements[j].type=="select-one") {
|
|
document.forms[i].elements[j].style.visibility=action;
|
|
}
|
|
}
|
|
}
|
|
} /*]]>*/
|
|
</script>
|
|
<script src="tab.js" type="text/javascript"></script>
|
|
|
|
|
|
|
|
|
|
</head>
|
|
<body onmousemove="GL_getMouse(event);" onload="initLayer();" id="typo3-alt-doc-php">
|
|
|
|
<!-- Wrapping DIV-section for whole page BEGIN -->
|
|
<div class="typo3-mediumDoc">
|
|
<form action="/typo3/typo3/alt_doc.php?&edit[tt_content][1]=new&defVals[tt_content][colPos]=0&defVals[tt_content][sys_language_uid]=0&defVals[tt_content][CType]=textpic&defVals[tt_content][imageorient]=17&returnUrl=%2Ftypo3%2Ftypo3%2Fsysext%2Fcms%2Flayout%2Fdb_layout.php%3Fid%3D1" method="post" enctype="multipart/form-data" name="editform" onsubmit="return TBE_EDITOR_checkSubmit(1);">
|
|
<link rel="alternate stylesheet" type="text/css" href="http://localhost/typo3/typo3/sysext/rtehtmlarea/htmlarea/plugins/DynamicCSS/dynamiccss.css" />
|
|
<link rel="alternate stylesheet" type="text/css" href="http://localhost/typo3/typo3/sysext/t3skin/rtehtmlarea/htmlarea-edited-content.css" />
|
|
<link rel="stylesheet" type="text/css" href="/typo3/typo3/sysext/t3skin/rtehtmlarea/htmlarea.css" />
|
|
|
|
<!-- NEXT: -->
|
|
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
var RTEarea = new Array();
|
|
RTEarea[0] = new Array();
|
|
RTEarea[0]["version"] = "1.3.7";
|
|
RTEarea[0]["popupwin"] = "/typo3/typo3temp/rtehtmlarea_popupwin_1d33fdcd98b7121beac8211e0207cd43-compressed.js";
|
|
RTEarea[0]["htmlarea-gecko"] = "/typo3/typo3temp/rtehtmlarea_htmlarea-gecko_834909c14b6da914524aaec7dd5f4de7-compressed.js";
|
|
RTEarea[0]["htmlarea-ie"] = "/typo3/typo3temp/rtehtmlarea_htmlarea-ie_1bdec922ceb7139d1f6b4e6f060ca7d0-compressed.js";
|
|
var _editor_url = "/typo3/typo3/sysext/rtehtmlarea/htmlarea";
|
|
var _editor_lang = "en";
|
|
var _editor_CSS = "/typo3/typo3/sysext/t3skin/rtehtmlarea/htmlarea.css";
|
|
var _editor_skin = "/typo3/typo3/sysext/t3skin/rtehtmlarea";
|
|
var _editor_edited_content_CSS = "http://localhost/typo3/typo3/sysext/t3skin/rtehtmlarea/htmlarea-edited-content.css";
|
|
var _typo3_host_url = "http://localhost";
|
|
var _editor_debug_mode = true;
|
|
var _editor_compressed_scripts = true;
|
|
var _editor_mozAllowClipboard_url = "http://releases.mozilla.org/pub/mozilla.org/extensions/allowclipboard_helper/allowclipboard_helper-0.5.3-fx+mz.xpi";
|
|
var _spellChecker_lang = "";
|
|
var _spellChecker_charset = "";
|
|
var _spellChecker_mode = "";
|
|
var _quickTag_hideTags = "";
|
|
/*]]>*/
|
|
</script>
|
|
|
|
<script type="text/javascript" src="/typo3/typo3temp/rtehtmlarea_en_iso-8859-1_0b7fde0eb4d63eb2aeef6d8091a7a4b4.js"></script>
|
|
<script type="text/javascript" src="/typo3/typo3temp/rtehtmlarea_htmlarea_5526a046bd877b2b83aee257313cb43e-compressed.js"></script>
|
|
|
|
|
|
|
|
<!--
|
|
JavaScript in top of page (before form):
|
|
-->
|
|
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
|
|
|
|
var conf_RTEtsConfigParams = "&RTEtsConfigParams=tt_content%3ANEW454b70afc1aff%3Abodytext%3A1%3Atextpic%3A1%3A";
|
|
var rtePathImageFile = "../mod4/select_image.php";
|
|
var rtePathLinkFile = "../mod3/browse_links.php";
|
|
var rtePathUserFile = "../mod5/user.php";
|
|
var rtePathAcronymFile = "../mod2/acronym.php";
|
|
var rtePathParseHtmlFile = "/typo3/typo3/sysext/rtehtmlarea/mod6/parse_html.php";
|
|
HTMLArea.loadPlugin("TableOperations", true, "/typo3/typo3temp/rtehtmlarea_TableOperations_1fb03718b3fb02c0cc86bd1e60b7b01d-compressed.js");
|
|
HTMLArea.loadPlugin("ContextMenu", true, "/typo3/typo3temp/rtehtmlarea_ContextMenu_7a360abbe687969114311791bc92f137-compressed.js");
|
|
HTMLArea.loadPlugin("SelectColor", true, "/typo3/typo3temp/rtehtmlarea_SelectColor_9ad6fc831aa629c327bf3949baf256a9-compressed.js");
|
|
HTMLArea.loadPlugin("TYPO3Browsers", true, "/typo3/typo3temp/rtehtmlarea_TYPO3Browsers_84d5d9ba19e94f701e7a43469d887f3d-compressed.js");
|
|
HTMLArea.loadPlugin("FindReplace", true, "/typo3/typo3temp/rtehtmlarea_FindReplace_bac6d7e94b078ba21132d7dcb020ef4d-compressed.js");
|
|
HTMLArea.loadPlugin("RemoveFormat", true, "/typo3/typo3temp/rtehtmlarea_RemoveFormat_708d419df5bcfb0ca52840d8fc8c199a-compressed.js");
|
|
HTMLArea.loadPlugin("CharacterMap", true, "/typo3/typo3temp/rtehtmlarea_CharacterMap_9e1195b594ac0bb98b66badcfe8a0b82-compressed.js");
|
|
HTMLArea.loadPlugin("InlineCSS", true, "/typo3/typo3temp/rtehtmlarea_InlineCSS_a9757be0a48e210ba03d23ec42dffaa7-compressed.js");
|
|
HTMLArea.loadPlugin("DynamicCSS", true, "/typo3/typo3temp/rtehtmlarea_DynamicCSS_0cd22ccf7bfab3d6542f94f4a9d630fd-compressed.js");
|
|
HTMLArea.init();
|
|
|
|
/*]]>*/
|
|
</script>
|
|
|
|
|
|
<!--
|
|
Header of the editing page.
|
|
Contains the buttons for saving/closing, the document selector and menu selector.
|
|
Shows the path of the editing operation as well.
|
|
-->
|
|
<table border="0" cellpadding="0" cellspacing="1" width="470" id="typo3-altdoc-header">
|
|
<tr>
|
|
|
|
<td nowrap="nowrap" valign="top"><input type="image" class="c-inputButton" name="_savedok" src="sysext/t3skin/icons/gfx/savedok.gif" width="16" height="16" title="Save document" /><input type="image" class="c-inputButton" name="_savedokview" src="sysext/t3skin/icons/gfx/savedokshow.gif" width="16" height="16" title="Save document and view page" /><input type="image" class="c-inputButton" name="_saveandclosedok" src="sysext/t3skin/icons/gfx/saveandclosedok.gif" width="16" height="16" title="Save and close document" /><a href="#" onclick="document.editform.closeDoc.value=1; document.editform.submit(); return false;"><img src="sysext/t3skin/icons/gfx/closedok.gif" width="16" height="16" class="c-inputButton" title="Close document" alt="" /></a></td>
|
|
<td nowrap="nowrap" valign="top" align="right"><select name="cacheCmd" onchange="if (!this.options[this.selectedIndex].value) {
|
|
this.selectedIndex=0;
|
|
} else if (this.options[this.selectedIndex].value.indexOf(';')!=-1) {
|
|
eval(this.options[this.selectedIndex].value);
|
|
}else{
|
|
window.location.href='tce_db.php?vC=80d5e675d3&redirect=%2Ftypo3%2Ftypo3%2Falt_doc.php%3Fedit%5Btt_content%5D%5B1%5D%3Dnew%26defVals%5Btt_content%5D%5BcolPos%5D%3D0%26defVals%5Btt_content%5D%5Bsys_language_uid%5D%3D0%26returnUrl%3D%252Ftypo3%252Ftypo3%252Fsysext%252Fcms%252Flayout%252Fdb_layout.php%253Fid%253D1%26defVals%5Btt_content%5D%5BCType%5D%3Dtextpic%26defVals%5Btt_content%5D%5Bimageorient%5D%3D17&cacheCmd='+this.options[this.selectedIndex].value;
|
|
}"><option value="">[menu]</option><option value="TBE_EDITOR_checkAndDoSubmit(1);">Save document</option><option value="document.editform.closeDoc.value=-2; TBE_EDITOR_checkAndDoSubmit(1);">Save and close document</option><option value="document.editform.closeDoc.value=2; document.editform.submit();">Close document</option><option value="document.editform.closeDoc.value=3; document.editform.submit();">Close all documents</option><option value=""></option><option value="">[ Clear cache ]</option><option value="1">This page</option><option value="pages">Clear Page Cache</option><option value="all">Clear FE cache</option></select><a href="#" onclick="vHWin=window.open('view_help.php?tfID=xMOD_csh_corebe.TCEforms_cacheSelector','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="typo3-csh-icon" alt="" /></a></td>
|
|
</tr>
|
|
<tr>
|
|
|
|
<td colspan="2"><div id="typo3-altdoc-header-info-options"><div id="typo3-altdoc-page-path">Path: /Root/</div><div></td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
|
|
|
|
<!--
|
|
EDITING FORM:
|
|
-->
|
|
|
|
|
|
<table border="0" cellspacing="0" cellpadding="0" width="440" class="typo3-TCEforms"><tr class="bgColor2">
|
|
<td> </td>
|
|
|
|
<td><img src="sysext/t3skin/icons/gfx/i/tt_content_textpic.gif" width="16" height="16" class="absmiddle" alt="/Root/" title="/Root/" /> <span class="typo3-TCEforms-recHeader">Pagecontent</span> <span class="typo3-TCEforms-newToken">NEW</span> - <em>[PID: 1] Root</em></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><img src="clear.gif" width="1" height="0" alt="" /></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><table border="0" cellspacing="0" cellpadding="0" width="100%" class="wrapperTable1">
|
|
<tr class="class-main12">
|
|
<td><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.CType','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
<td width="99%"><span style="color:;" class="class-main14"><b>Type:</b></span></td>
|
|
</tr>
|
|
<tr class="class-main11">
|
|
<td nowrap="nowrap"><img name="req_tt_content_NEW454b70afc1aff_CType" src="clear.gif" width="10" height="10" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_CType" src="clear.gif" width="7" height="10" alt="" /></td>
|
|
|
|
<td valign="top"><input type="hidden" name="data[tt_content][NEW454b70afc1aff][CType]_selIconVal" value="2" /><select name="data[tt_content][NEW454b70afc1aff][CType]" class="select" onchange="if (this.options[this.selectedIndex].value=='--div--') {this.selectedIndex=2;} TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','CType','data[tt_content][NEW454b70afc1aff][CType]');if (confirm(String.fromCharCode(84,104,105,115,32,99,104,97,110,103,101,32,119,105,108,108,32,97,102,102,101,99,116,32,119,104,105,99,104,32,102,105,101,108,100,115,32,97,114,101,32,97,118,97,105,108,97,98,108,101,32,105,110,32,116,104,101,32,102,111,114,109,46,10,87,111,117,108,100,32,121,111,117,32,108,105,107,101,32,116,111,32,115,97,118,101,32,110,111,119,32,105,110,32,111,114,100,101,114,32,116,111,32,114,101,102,114,101,115,104,32,116,104,101,32,100,105,115,112,108,97,121,63)) && TBE_EDITOR_checkSubmit(-1)){ TBE_EDITOR_submitForm() };" onfocus="TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:4','sys_language_uid,l18n_parent,colPos,spaceBefore,spaceAfter,section_frame,sectionIndex,linkToTop',8,'tt_content','NEW454b70afc1aff',1);"><option value="header">Header</option><option value="text">Text</option><option value="textpic" selected="selected">Text w/image</option><option value="image">Image</option><option value="bullets">Bullet list</option><option value="table">Table</option><option value="uploads">Filelinks</option><option value="multimedia">Multimedia</option><option value="mailform">Form</option><option value="search">Search</option><option value="login">Login</option><option value="splash">Textbox</option><option value="menu">Menu/Sitemap</option><option value="shortcut">Insert records</option><option value="list">Insert plugin</option><option value="script">Script</option><option value="div">Divider</option><option value="html">HTML</option></select><a href="#" onclick="this.blur();TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:4','sys_language_uid,l18n_parent,colPos,spaceBefore,spaceAfter,section_frame,sectionIndex,linkToTop',8,'tt_content','NEW454b70afc1aff',0);return false;" title="tt_content"><img src="sysext/t3skin/icons/gfx/options.gif" width="16" height="16" border="0" title="More options..." alt="" /></a></td>
|
|
|
|
</tr></table></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><img src="clear.gif" width="1" height="0" alt="" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><table border="0" cellspacing="0" cellpadding="0" width="100%" class="wrapperTable2">
|
|
<tr class="class-main22">
|
|
<td><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.header','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
|
|
<td width="99%"><span style="color:;" class="class-main24"><b>Header:</b></span></td>
|
|
</tr>
|
|
<tr class="class-main21">
|
|
<td nowrap="nowrap"><img name="req_tt_content_NEW454b70afc1aff_header" src="clear.gif" width="10" height="10" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_header" src="clear.gif" width="7" height="10" alt="" /></td>
|
|
<td valign="top"><input type="text" name="data[tt_content][NEW454b70afc1aff][header]_hr" value="" style="width:288px;" class="formField2" maxlength="256" onchange="typo3FormFieldGet('data[tt_content][NEW454b70afc1aff][header]','','',0,'');TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','header','data[tt_content][NEW454b70afc1aff][header]');" onfocus="TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:3','header_position,header_layout,header_link,date',4,'tt_content','NEW454b70afc1aff',1);" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][header]" value="" /><a href="#" onclick="this.blur();TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:3','header_position,header_layout,header_link,date',4,'tt_content','NEW454b70afc1aff',0);return false;" title="tt_content"><img src="sysext/t3skin/icons/gfx/options.gif" width="16" height="16" border="0" title="More options..." alt="" /></a></td>
|
|
</tr></table></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2"><img src="clear.gif" width="1" height="0" alt="" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><table border="0" cellspacing="0" cellpadding="0" width="100%" class="wrapperTable3">
|
|
<tr class="class-main32">
|
|
<td><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.bodytext','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
<td width="99%"><span style="color:;" class="class-main34"><b>Text:</b></span></td>
|
|
</tr>
|
|
|
|
<tr class="class-main31">
|
|
<td nowrap="nowrap"><img name="req_tt_content_NEW454b70afc1aff_bodytext" src="clear.gif" width="10" height="10" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_bodytext" src="clear.gif" width="7" height="10" alt="" /></td>
|
|
<td valign="top"><input type="hidden" name="data[tt_content][NEW454b70afc1aff][_TRANSFORM_bodytext]" value="RTE" />
|
|
<div id="pleasewait1" class="pleasewait">The editor is being loaded. Please wait...</div>
|
|
<div id="editorWrap1" class="editorWrap" style="visibility:hidden; width:530px; height:380px;">
|
|
<textarea id="RTEarea1" name="data[tt_content][NEW454b70afc1aff][bodytext]" style="position:relative; left:0px; top:0px; height:380px; width:530px; border: 1px solid black; padding: 2px 0px 2px 2px;">
|
|
</textarea>
|
|
</div><div id="HTMLAreaLog"></div>
|
|
<a href="#" onclick="this.blur();TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:9','text_align,text_face,text_size,text_color',4,'tt_content','NEW454b70afc1aff',0);return false;" title="tt_content"><img src="sysext/t3skin/icons/gfx/options.gif" width="16" height="16" border="0" title="More options..." alt="" /></a></td>
|
|
|
|
</tr>
|
|
<tr class="class-main32">
|
|
<td><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.rte_enabled','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
<td width="99%"><span style="color:;" class="class-main34"><b>Disable Rich Text Editor:</b></span></td>
|
|
</tr>
|
|
<tr class="class-main31">
|
|
<td nowrap="nowrap"><img name="req_tt_content_NEW454b70afc1aff_rte_enabled" src="clear.gif" width="10" height="10" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_rte_enabled" src="clear.gif" width="7" height="10" alt="" /></td>
|
|
<td valign="top"><input type="checkbox" class="checkbox" value="1" name="data[tt_content][NEW454b70afc1aff][rte_enabled]_0" onclick="document.editform['data[tt_content][NEW454b70afc1aff][rte_enabled]'].value=this.checked?(document.editform['data[tt_content][NEW454b70afc1aff][rte_enabled]'].value|1):(document.editform['data[tt_content][NEW454b70afc1aff][rte_enabled]'].value&0);TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','rte_enabled','data[tt_content][NEW454b70afc1aff][rte_enabled]');" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][rte_enabled]" value="0" /></td>
|
|
|
|
</tr>
|
|
<tr class="class-main32">
|
|
<td><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.text_properties','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
<td width="99%"><span style="color:;" class="class-main34"><b>Properties:</b></span></td>
|
|
</tr>
|
|
<tr class="class-main31">
|
|
<td nowrap="nowrap"><img name="req_tt_content_NEW454b70afc1aff_text_properties" src="clear.gif" width="10" height="10" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_text_properties" src="clear.gif" width="7" height="10" alt="" /></td>
|
|
<td valign="top"><table border="0" cellspacing="0" cellpadding="0" class="typo3-TCEforms-checkboxArray"><tr><td nowrap="nowrap"><input type="checkbox" class="checkbox" value="1" name="data[tt_content][NEW454b70afc1aff][text_properties]_0" onclick="document.editform['data[tt_content][NEW454b70afc1aff][text_properties]'].value=this.checked?(document.editform['data[tt_content][NEW454b70afc1aff][text_properties]'].value|1):(document.editform['data[tt_content][NEW454b70afc1aff][text_properties]'].value&14);TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','text_properties','data[tt_content][NEW454b70afc1aff][text_properties]');" />Bold </td><td nowrap="nowrap"><input type="checkbox" class="checkbox" value="1" name="data[tt_content][NEW454b70afc1aff][text_properties]_1" onclick="document.editform['data[tt_content][NEW454b70afc1aff][text_properties]'].value=this.checked?(document.editform['data[tt_content][NEW454b70afc1aff][text_properties]'].value|2):(document.editform['data[tt_content][NEW454b70afc1aff][text_properties]'].value&13);TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','text_properties','data[tt_content][NEW454b70afc1aff][text_properties]');" />Italics </td><td nowrap="nowrap"><input type="checkbox" class="checkbox" value="1" name="data[tt_content][NEW454b70afc1aff][text_properties]_2" onclick="document.editform['data[tt_content][NEW454b70afc1aff][text_properties]'].value=this.checked?(document.editform['data[tt_content][NEW454b70afc1aff][text_properties]'].value|4):(document.editform['data[tt_content][NEW454b70afc1aff][text_properties]'].value&11);TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','text_properties','data[tt_content][NEW454b70afc1aff][text_properties]');" />Underline </td><td nowrap="nowrap"><input type="checkbox" class="checkbox" value="1" name="data[tt_content][NEW454b70afc1aff][text_properties]_3" onclick="document.editform['data[tt_content][NEW454b70afc1aff][text_properties]'].value=this.checked?(document.editform['data[tt_content][NEW454b70afc1aff][text_properties]'].value|8):(document.editform['data[tt_content][NEW454b70afc1aff][text_properties]'].value&7);TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','text_properties','data[tt_content][NEW454b70afc1aff][text_properties]');" />Uppercase </td></tr></table><input type="hidden" name="data[tt_content][NEW454b70afc1aff][text_properties]" value="0" /></td>
|
|
|
|
</tr></table></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><img src="clear.gif" width="1" height="0" alt="" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><table border="0" cellspacing="0" cellpadding="0" width="100%" class="wrapperTable4">
|
|
<tr class="class-main42">
|
|
<td><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.image','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
|
|
<td width="99%"><span style="color:;" class="class-main44"><b>Images:</b></span></td>
|
|
</tr>
|
|
<tr class="class-main41">
|
|
<td nowrap="nowrap"><img name="req_tt_content_NEW454b70afc1aff_image" src="clear.gif" width="10" height="10" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_image" src="clear.gif" width="7" height="10" alt="" /></td>
|
|
<td valign="top"><input type="hidden" name="data[tt_content][NEW454b70afc1aff][image]_mul" value="0" /><table border="0" cellpadding="0" cellspacing="0" width="1">
|
|
|
|
<tr>
|
|
<td valign="top"><select size="3" class="formField4" multiple="multiple" name="data[tt_content][NEW454b70afc1aff][image]_list" style="width:250px;"></select><br />GIF JPG JPEG TIF BMP PCX TGA PNG PDF AI </td>
|
|
<td valign="top"><a href="#" onclick="setFormValueManipulate('data[tt_content][NEW454b70afc1aff][image]','Up'); return false;"><img src="sysext/t3skin/icons/gfx/up.gif" width="14" height="14" border="0" alt="Move selected items upwards" title="Move selected items upwards" /></a><br /><a href="#" onclick="setFormValueManipulate('data[tt_content][NEW454b70afc1aff][image]','Down'); return false;"><img src="sysext/t3skin/icons/gfx/down.gif" width="14" height="14" border="0" alt="Move selected items downwards" title="Move selected items downwards" /></a><br /><a href="#" onclick="setFormValueManipulate('data[tt_content][NEW454b70afc1aff][image]','Remove'); return false;"><img src="sysext/t3skin/icons/gfx/group_clear.gif" width="14" height="14" border="0" alt="Remove selected items" title="Remove selected items" /></a></td>
|
|
|
|
<td valign="top"><a href="#" onclick="setFormValueOpenBrowser('file','data[tt_content][NEW454b70afc1aff][image]|||gif,jpg,jpeg,tif,bmp,pcx,tga,png,pdf,ai|'); return false;"><img src="sysext/t3skin/icons/gfx/insert3.gif" width="15" height="15" border="0" alt="Browse for files" title="Browse for files" /></a></td>
|
|
<td><img src="clear.gif" width="5" height="1" alt="" /></td>
|
|
<td valign="top"></td>
|
|
</tr>
|
|
</table><input type="hidden" name="data[tt_content][NEW454b70afc1aff][image]" value="" /><input type="file" name="data_files[tt_content][NEW454b70afc1aff][image]" style="width:460px;" class="formField4" size="60" /></td>
|
|
</tr>
|
|
<tr class="class-main42">
|
|
<td><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.imageorient','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
<td width="99%"><span style="color:;" class="class-main44"><b>Position:</b></span></td>
|
|
|
|
</tr>
|
|
<tr class="class-main41">
|
|
<td nowrap="nowrap"><img name="req_tt_content_NEW454b70afc1aff_imageorient" src="clear.gif" width="10" height="10" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_imageorient" src="clear.gif" width="7" height="10" alt="" /></td>
|
|
<td valign="top"><input type="hidden" name="data[tt_content][NEW454b70afc1aff][imageorient]_selIconVal" value="6" /><select name="data[tt_content][NEW454b70afc1aff][imageorient]" class="select" onchange="if (this.options[this.selectedIndex].value=='--div--') {this.selectedIndex=6;} TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imageorient','data[tt_content][NEW454b70afc1aff][imageorient]');" onfocus="TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:2','imagecols,image_noRows,imageborder',3,'tt_content','NEW454b70afc1aff',1);"><option value="0" style="background-image: url(sysext/t3skin/icons/gfx/selicons/above_center.gif); background-repeat: no-repeat; height: 20px; padding-top: 5px; padding-left: 26px;">Above, center</option><option value="1" style="background-image: url(sysext/t3skin/icons/gfx/selicons/above_right.gif); background-repeat: no-repeat; height: 20px; padding-top: 5px; padding-left: 26px;">Above, right</option><option value="2" style="background-image: url(sysext/t3skin/icons/gfx/selicons/above_left.gif); background-repeat: no-repeat; height: 20px; padding-top: 5px; padding-left: 26px;">Above, left</option><option value="8" style="background-image: url(sysext/t3skin/icons/gfx/selicons/below_center.gif); background-repeat: no-repeat; height: 20px; padding-top: 5px; padding-left: 26px;">Below, center</option><option value="9" style="background-image: url(sysext/t3skin/icons/gfx/selicons/below_right.gif); background-repeat: no-repeat; height: 20px; padding-top: 5px; padding-left: 26px;">Below, right</option><option value="10" style="background-image: url(sysext/t3skin/icons/gfx/selicons/below_left.gif); background-repeat: no-repeat; height: 20px; padding-top: 5px; padding-left: 26px;">Below, left</option><option value="17" selected="selected" style="background-image: url(sysext/t3skin/icons/gfx/selicons/intext_right.gif); background-repeat: no-repeat; height: 20px; padding-top: 5px; padding-left: 26px;">In text, right</option><option value="18" style="background-image: url(sysext/t3skin/icons/gfx/selicons/intext_left.gif); background-repeat: no-repeat; height: 20px; padding-top: 5px; padding-left: 26px;">In text, left</option><option value="--div--" class="c-divider">__No wrap:__</option><option value="25" style="background-image: url(sysext/t3skin/icons/gfx/selicons/intext_right_nowrap.gif); background-repeat: no-repeat; height: 20px; padding-top: 5px; padding-left: 26px;">In text, right</option><option value="26" style="background-image: url(sysext/t3skin/icons/gfx/selicons/intext_left_nowrap.gif); background-repeat: no-repeat; height: 20px; padding-top: 5px; padding-left: 26px;">In text, left</option></select><table border="0" cellpadding="0" cellspacing="0" class="typo3-TCEforms-selectIcons"><tr><td><img name="selIcon_tt_content_NEW454b70afc1aff_imageorient_0" src="clear.gif" width="7" height="10" alt="" /></td><td><a href="#" onclick="document.editform['data[tt_content][NEW454b70afc1aff][imageorient]'].selectedIndex=0; TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imageorient','data[tt_content][NEW454b70afc1aff][imageorient]');this.blur();return false;"><img src="sysext/t3skin/icons/gfx/selicons/above_center.gif" width="22" height="23" vspace="2" border="0" title="Above, center" alt="Above, center" /></a></td><td><img name="selIcon_tt_content_NEW454b70afc1aff_imageorient_1" src="clear.gif" width="7" height="10" alt="" /></td><td><a href="#" onclick="document.editform['data[tt_content][NEW454b70afc1aff][imageorient]'].selectedIndex=1; TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imageorient','data[tt_content][NEW454b70afc1aff][imageorient]');this.blur();return false;"><img src="sysext/t3skin/icons/gfx/selicons/above_right.gif" width="22" height="23" vspace="2" border="0" title="Above, right" alt="Above, right" /></a></td><td><img name="selIcon_tt_content_NEW454b70afc1aff_imageorient_2" src="clear.gif" width="7" height="10" alt="" /></td><td><a href="#" onclick="document.editform['data[tt_content][NEW454b70afc1aff][imageorient]'].selectedIndex=2; TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imageorient','data[tt_content][NEW454b70afc1aff][imageorient]');this.blur();return false;"><img src="sysext/t3skin/icons/gfx/selicons/above_left.gif" width="22" height="23" vspace="2" border="0" title="Above, left" alt="Above, left" /></a></td><td><img name="selIcon_tt_content_NEW454b70afc1aff_imageorient_3" src="clear.gif" width="7" height="10" alt="" /></td><td><a href="#" onclick="document.editform['data[tt_content][NEW454b70afc1aff][imageorient]'].selectedIndex=3; TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imageorient','data[tt_content][NEW454b70afc1aff][imageorient]');this.blur();return false;"><img src="sysext/t3skin/icons/gfx/selicons/below_center.gif" width="22" height="23" vspace="2" border="0" title="Below, center" alt="Below, center" /></a></td><td><img name="selIcon_tt_content_NEW454b70afc1aff_imageorient_4" src="clear.gif" width="7" height="10" alt="" /></td><td><a href="#" onclick="document.editform['data[tt_content][NEW454b70afc1aff][imageorient]'].selectedIndex=4; TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imageorient','data[tt_content][NEW454b70afc1aff][imageorient]');this.blur();return false;"><img src="sysext/t3skin/icons/gfx/selicons/below_right.gif" width="22" height="23" vspace="2" border="0" title="Below, right" alt="Below, right" /></a></td><td><img name="selIcon_tt_content_NEW454b70afc1aff_imageorient_5" src="clear.gif" width="7" height="10" alt="" /></td><td><a href="#" onclick="document.editform['data[tt_content][NEW454b70afc1aff][imageorient]'].selectedIndex=5; TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imageorient','data[tt_content][NEW454b70afc1aff][imageorient]');this.blur();return false;"><img src="sysext/t3skin/icons/gfx/selicons/below_left.gif" width="22" height="23" vspace="2" border="0" title="Below, left" alt="Below, left" /></a></td></tr><tr><td><img name="selIcon_tt_content_NEW454b70afc1aff_imageorient_6" src="gfx/content_selected.gif" width="7" height="10" alt="" /></td><td><a href="#" onclick="document.editform['data[tt_content][NEW454b70afc1aff][imageorient]'].selectedIndex=6; TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imageorient','data[tt_content][NEW454b70afc1aff][imageorient]');this.blur();return false;"><img src="sysext/t3skin/icons/gfx/selicons/intext_right.gif" width="22" height="23" vspace="2" border="0" title="In text, right" alt="In text, right" /></a></td><td><img name="selIcon_tt_content_NEW454b70afc1aff_imageorient_7" src="clear.gif" width="7" height="10" alt="" /></td><td><a href="#" onclick="document.editform['data[tt_content][NEW454b70afc1aff][imageorient]'].selectedIndex=7; TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imageorient','data[tt_content][NEW454b70afc1aff][imageorient]');this.blur();return false;"><img src="sysext/t3skin/icons/gfx/selicons/intext_left.gif" width="22" height="23" vspace="2" border="0" title="In text, left" alt="In text, left" /></a></td><td><img name="selIcon_tt_content_NEW454b70afc1aff_imageorient_9" src="clear.gif" width="7" height="10" alt="" /></td><td><a href="#" onclick="document.editform['data[tt_content][NEW454b70afc1aff][imageorient]'].selectedIndex=9; TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imageorient','data[tt_content][NEW454b70afc1aff][imageorient]');this.blur();return false;"><img src="sysext/t3skin/icons/gfx/selicons/intext_right_nowrap.gif" width="22" height="23" vspace="2" border="0" title="In text, right" alt="In text, right" /></a></td><td><img name="selIcon_tt_content_NEW454b70afc1aff_imageorient_10" src="clear.gif" width="7" height="10" alt="" /></td><td><a href="#" onclick="document.editform['data[tt_content][NEW454b70afc1aff][imageorient]'].selectedIndex=10; TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imageorient','data[tt_content][NEW454b70afc1aff][imageorient]');this.blur();return false;"><img src="sysext/t3skin/icons/gfx/selicons/intext_left_nowrap.gif" width="22" height="23" vspace="2" border="0" title="In text, left" alt="In text, left" /></a></td><td><img name="selIcon_tt_content_NEW454b70afc1aff_imageorient_" src="clear.gif" width="7" height="10" alt="" /></td><td></td><td><img name="selIcon_tt_content_NEW454b70afc1aff_imageorient_" src="clear.gif" width="7" height="10" alt="" /></td><td></td></tr></table><a href="#" onclick="this.blur();TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:2','imagecols,image_noRows,imageborder',3,'tt_content','NEW454b70afc1aff',0);return false;" title="tt_content"><img src="sysext/t3skin/icons/gfx/options.gif" width="16" height="16" border="0" title="More options..." alt="" /></a></td>
|
|
|
|
</tr>
|
|
<tr class="class-main42">
|
|
<td><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.imagewidth','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
<td width="99%"><span style="color:;" class="class-main44"><b>Width (pixels):</b></span></td>
|
|
</tr>
|
|
<tr class="class-main41">
|
|
<td nowrap="nowrap"><img name="req_tt_content_NEW454b70afc1aff_imagewidth" src="clear.gif" width="10" height="10" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_imagewidth" src="clear.gif" width="7" height="10" alt="" /></td>
|
|
<td valign="top"><input type="checkbox" class="checkbox" name="data[tt_content][NEW454b70afc1aff][imagewidth]_cb" onclick="typo3FormFieldGet('data[tt_content][NEW454b70afc1aff][imagewidth]','int','',1,'0',1,'');TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imagewidth','data[tt_content][NEW454b70afc1aff][imagewidth]');" /><input type="text" name="data[tt_content][NEW454b70afc1aff][imagewidth]_hr" value="" style="width:48px;" class="formField4" maxlength="4" onchange="typo3FormFieldGet('data[tt_content][NEW454b70afc1aff][imagewidth]','int','',1,'0');TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imagewidth','data[tt_content][NEW454b70afc1aff][imagewidth]');" onfocus="TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:13','imageheight',1,'tt_content','NEW454b70afc1aff',1);" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][imagewidth]" value="0" /><a href="#" onclick="this.blur();TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:13','imageheight',1,'tt_content','NEW454b70afc1aff',0);return false;" title="tt_content"><img src="sysext/t3skin/icons/gfx/options.gif" width="16" height="16" border="0" title="More options..." alt="" /></a></td>
|
|
|
|
</tr>
|
|
<tr class="class-main41">
|
|
<td> </td>
|
|
<td nowrap="nowrap" valign="top"><a href="#" onclick="this.blur();TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:7','image_link,image_zoom',2,'tt_content','NEW454b70afc1aff',0);return false;" title="tt_content"><img src="sysext/t3skin/icons/gfx/options.gif" width="16" height="16" border="0" title="More options..." align="top" alt="" /><strong>Image Links</strong></a></td>
|
|
</tr>
|
|
<tr class="class-main41">
|
|
<td> </td>
|
|
<td nowrap="nowrap" valign="top"><a href="#" onclick="this.blur();TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:11','image_compression,image_effects,image_frames',3,'tt_content','NEW454b70afc1aff',0);return false;" title="tt_content"><img src="sysext/t3skin/icons/gfx/options.gif" width="16" height="16" border="0" title="More options..." align="top" alt="" /><strong>Image Options</strong></a></td>
|
|
|
|
</tr>
|
|
<tr class="class-main42">
|
|
<td><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.imagecaption','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
<td width="99%"><span style="color:;" class="class-main44"><b>Caption:</b></span></td>
|
|
</tr>
|
|
<tr class="class-main41">
|
|
<td nowrap="nowrap"><img name="req_tt_content_NEW454b70afc1aff_imagecaption" src="clear.gif" width="10" height="10" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_imagecaption" src="clear.gif" width="7" height="10" alt="" /></td>
|
|
<td valign="top">
|
|
|
|
<textarea name="data[tt_content][NEW454b70afc1aff][imagecaption]" style="width:288px;" cols="30" class="formField4" rows="3" wrap="virtual" onchange="TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','imagecaption','data[tt_content][NEW454b70afc1aff][imagecaption]');" onfocus="TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:5','imagecaption_position',1,'tt_content','NEW454b70afc1aff',1);">
|
|
</textarea><a href="#" onclick="this.blur();TBE_EDITOR_palUrl('tt_content:NEW454b70afc1aff:5','imagecaption_position',1,'tt_content','NEW454b70afc1aff',0);return false;" title="tt_content"><img src="sysext/t3skin/icons/gfx/options.gif" width="16" height="16" border="0" title="More options..." alt="" /></a></td>
|
|
</tr></table></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><img src="clear.gif" width="1" height="0" alt="" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><table border="0" cellspacing="0" cellpadding="0" width="100%" class="wrapperTable1">
|
|
|
|
<tr class="class-main12">
|
|
<td><span class="nbsp"> </span></td>
|
|
<td width="99%"><span style="color:;" class="class-main14"><b>Alternative Text:</b></span></td>
|
|
</tr>
|
|
<tr class="class-main11">
|
|
<td nowrap="nowrap"><img name="req_tt_content_NEW454b70afc1aff_altText" src="clear.gif" width="10" height="10" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_altText" src="clear.gif" width="7" height="10" alt="" /></td>
|
|
<td valign="top">
|
|
<textarea name="data[tt_content][NEW454b70afc1aff][altText]" style="width:288px;" cols="30" class="formField1" rows="3" wrap="virtual" onchange="TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','altText','data[tt_content][NEW454b70afc1aff][altText]');">
|
|
|
|
</textarea></td>
|
|
</tr>
|
|
<tr class="class-main12">
|
|
<td><span class="nbsp"> </span></td>
|
|
<td width="99%"><span style="color:;" class="class-main14"><b>Title Text:</b></span></td>
|
|
</tr>
|
|
<tr class="class-main11">
|
|
<td nowrap="nowrap"><img name="req_tt_content_NEW454b70afc1aff_titleText" src="clear.gif" width="10" height="10" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_titleText" src="clear.gif" width="7" height="10" alt="" /></td>
|
|
<td valign="top">
|
|
|
|
<textarea name="data[tt_content][NEW454b70afc1aff][titleText]" style="width:288px;" cols="30" class="formField1" rows="3" wrap="virtual" onchange="TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','titleText','data[tt_content][NEW454b70afc1aff][titleText]');">
|
|
</textarea></td>
|
|
</tr>
|
|
<tr class="class-main12">
|
|
<td><span class="nbsp"> </span></td>
|
|
<td width="99%"><span style="color:;" class="class-main14"><b>Long Description URL:</b></span></td>
|
|
</tr>
|
|
<tr class="class-main11">
|
|
<td nowrap="nowrap"><img name="req_tt_content_NEW454b70afc1aff_longdescURL" src="clear.gif" width="10" height="10" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_longdescURL" src="clear.gif" width="7" height="10" alt="" /></td>
|
|
|
|
<td valign="top">
|
|
<textarea name="data[tt_content][NEW454b70afc1aff][longdescURL]" style="width:288px;" cols="30" class="formField1" rows="3" wrap="virtual" onchange="TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','longdescURL','data[tt_content][NEW454b70afc1aff][longdescURL]');">
|
|
</textarea></td>
|
|
</tr></table></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><img src="clear.gif" width="1" height="0" alt="" /></td>
|
|
</tr>
|
|
<tr>
|
|
|
|
<td colspan="2"><table border="0" cellspacing="0" cellpadding="0" width="100%" class="wrapperTable">
|
|
<tr class="class-main2">
|
|
<td> </td>
|
|
<td nowrap="nowrap" valign="top"><strong>General options:</strong></td>
|
|
</tr>
|
|
<tr class="class-main1">
|
|
<td> </td>
|
|
<td nowrap="nowrap" valign="top"><table border="0" cellpadding="0" cellspacing="0" class="typo3-TCEforms-palette">
|
|
|
|
<tr>
|
|
<td><img src="clear.gif" width="1" height="1" alt="" /></td><td class="class-main3"> </td>
|
|
<td nowrap="nowrap" class="class-main3"><span class="class-main5">Hide:</span></td>
|
|
<td class="class-main3"> </td>
|
|
<td nowrap="nowrap" class="class-main3"><span class="class-main5">Start:</span></td>
|
|
<td class="class-main3"> </td>
|
|
<td nowrap="nowrap" class="class-main3"><span class="class-main5">Stop:</span></td>
|
|
|
|
</tr>
|
|
<tr>
|
|
<td></td><td valign="top"><img name="req_tt_content_NEW454b70afc1aff_hidden" src="clear.gif" width="10" height="10" vspace="4" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_hidden" src="clear.gif" width="7" height="10" vspace="4" alt="" /></td>
|
|
<td nowrap="nowrap" valign="top"><input type="checkbox" class="checkbox" value="1" name="data[tt_content][NEW454b70afc1aff][hidden]_0" onclick="document.editform['data[tt_content][NEW454b70afc1aff][hidden]'].value=this.checked?(document.editform['data[tt_content][NEW454b70afc1aff][hidden]'].value|1):(document.editform['data[tt_content][NEW454b70afc1aff][hidden]'].value&0);TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','hidden','data[tt_content][NEW454b70afc1aff][hidden]');" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][hidden]" value="0" /><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.hidden','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
<td valign="top"><img name="req_tt_content_NEW454b70afc1aff_starttime" src="clear.gif" width="10" height="10" vspace="4" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_starttime" src="clear.gif" width="7" height="10" vspace="4" alt="" /></td>
|
|
<td nowrap="nowrap" valign="top"><input type="checkbox" class="checkbox" name="data[tt_content][NEW454b70afc1aff][starttime]_cb" onclick="typo3FormFieldGet('data[tt_content][NEW454b70afc1aff][starttime]','date','',1,'0',1,'1162504800');TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','starttime','data[tt_content][NEW454b70afc1aff][starttime]');" /><input type="text" name="data[tt_content][NEW454b70afc1aff][starttime]_hr" value="" style="width:77px;" class="formField" maxlength="20" onchange="typo3FormFieldGet('data[tt_content][NEW454b70afc1aff][starttime]','date','',1,'0');TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','starttime','data[tt_content][NEW454b70afc1aff][starttime]');" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][starttime]" value="0" /><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.starttime','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
<td valign="top"><img name="req_tt_content_NEW454b70afc1aff_endtime" src="clear.gif" width="10" height="10" vspace="4" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_endtime" src="clear.gif" width="7" height="10" vspace="4" alt="" /></td>
|
|
<td nowrap="nowrap" valign="top"><input type="checkbox" class="checkbox" name="data[tt_content][NEW454b70afc1aff][endtime]_cb" onclick="typo3FormFieldGet('data[tt_content][NEW454b70afc1aff][endtime]','date','',1,'0',1,'1162504800');TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','endtime','data[tt_content][NEW454b70afc1aff][endtime]');" /><input type="text" name="data[tt_content][NEW454b70afc1aff][endtime]_hr" value="" style="width:77px;" class="formField" maxlength="20" onchange="typo3FormFieldGet('data[tt_content][NEW454b70afc1aff][endtime]','date','',1,'0');TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','endtime','data[tt_content][NEW454b70afc1aff][endtime]');" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][endtime]" value="0" /><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.endtime','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
</tr>
|
|
|
|
</table></td>
|
|
</tr></table></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2"><img src="clear.gif" width="1" height="0" alt="" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><table border="0" cellspacing="0" cellpadding="0" width="100%" class="wrapperTable">
|
|
<tr class="class-main2">
|
|
|
|
<td> </td>
|
|
<td nowrap="nowrap" valign="top"><strong>General options (continued):</strong></td>
|
|
</tr>
|
|
<tr class="class-main1">
|
|
<td> </td>
|
|
<td nowrap="nowrap" valign="top"><table border="0" cellpadding="0" cellspacing="0" class="typo3-TCEforms-palette">
|
|
<tr>
|
|
<td><img src="clear.gif" width="1" height="1" alt="" /></td><td class="class-main3"> </td>
|
|
|
|
<td nowrap="nowrap" class="class-main3"><span class="class-main5">Access:</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td><td valign="top"><img name="req_tt_content_NEW454b70afc1aff_fe_group" src="clear.gif" width="10" height="10" vspace="4" alt="" /><img name="cm_tt_content_NEW454b70afc1aff_fe_group" src="clear.gif" width="7" height="10" vspace="4" alt="" /></td>
|
|
<td nowrap="nowrap" valign="top"><input type="hidden" name="data[tt_content][NEW454b70afc1aff][fe_group]_mul" value="0" /><table border="0" cellpadding="0" cellspacing="0" width="1">
|
|
|
|
<tr>
|
|
<td>Selected:<br /></td>
|
|
<td></td>
|
|
|
|
<td></td>
|
|
<td></td>
|
|
<td>Items:<br /></td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top"><select size="5" class="formField" multiple="multiple" name="data[tt_content][NEW454b70afc1aff][fe_group]_list" style="width:250px;"></select><br /></td>
|
|
<td valign="top"><a href="#" onclick="setFormValueManipulate('data[tt_content][NEW454b70afc1aff][fe_group]','Top'); return false;"><img src="sysext/t3skin/icons/gfx/group_totop.gif" width="14" height="14" border="0" alt="Move selected items to top" title="Move selected items to top" /></a><br /><a href="#" onclick="setFormValueManipulate('data[tt_content][NEW454b70afc1aff][fe_group]','Up'); return false;"><img src="sysext/t3skin/icons/gfx/up.gif" width="14" height="14" border="0" alt="Move selected items upwards" title="Move selected items upwards" /></a><br /><a href="#" onclick="setFormValueManipulate('data[tt_content][NEW454b70afc1aff][fe_group]','Down'); return false;"><img src="sysext/t3skin/icons/gfx/down.gif" width="14" height="14" border="0" alt="Move selected items downwards" title="Move selected items downwards" /></a><br /><a href="#" onclick="setFormValueManipulate('data[tt_content][NEW454b70afc1aff][fe_group]','Bottom'); return false;"><img src="sysext/t3skin/icons/gfx/group_tobottom.gif" width="14" height="14" border="0" alt="Move selected items to bottom" title="Move selected items to bottom" /></a><br /><a href="#" onclick="setFormValueManipulate('data[tt_content][NEW454b70afc1aff][fe_group]','Remove'); return false;"><img src="sysext/t3skin/icons/gfx/group_clear.gif" width="14" height="14" border="0" alt="Remove selected items" title="Remove selected items" /></a></td>
|
|
<td valign="top"></td>
|
|
|
|
<td><img src="clear.gif" width="5" height="1" alt="" /></td>
|
|
<td valign="top">
|
|
<select name="data[tt_content][NEW454b70afc1aff][fe_group]_sel" class="select" size="5" onchange="setFormValueFromBrowseWin('data[tt_content][NEW454b70afc1aff][fe_group]',this.options[this.selectedIndex].value,this.options[this.selectedIndex].text,'-1,-2'); TBE_EDITOR_fieldChanged('tt_content','NEW454b70afc1aff','fe_group','data[tt_content][NEW454b70afc1aff][fe_group]');" style="width:250px;">
|
|
<option value="-1">Hide at login</option>
|
|
<option value="-2">Show at any login</option>
|
|
<option value="--div--">__Usergroups:__</option>
|
|
</select></td>
|
|
|
|
</tr>
|
|
</table><input type="hidden" name="data[tt_content][NEW454b70afc1aff][fe_group]" value="" /><a href="#" onclick="vHWin=window.open('view_help.php?tfID=tt_content.fe_group','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="absmiddle" style="cursor:help;" alt="" /></a></td>
|
|
</tr>
|
|
</table></td>
|
|
</tr></table></td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td><img src="clear.gif" width="440" height="1" alt="" /></td>
|
|
|
|
</tr>
|
|
</table><input type="hidden" name="data[tt_content][NEW454b70afc1aff][sys_language_uid]" value="0" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][colPos]" value="0" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][spaceBefore]" value="0" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][spaceAfter]" value="0" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][section_frame]" value="0" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][sectionIndex]" value="1" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][linkToTop]" value="" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][header_position]" value="" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][header_layout]" value="0" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][header_link]" value="" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][date]" value="0" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][text_align]" value="" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][text_face]" value="0" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][text_size]" value="0" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][text_color]" value="0" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][imagecols]" value="0" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][image_noRows]" value="" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][imageborder]" value="" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][imageheight]" value="0" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][image_link]" value="" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][image_zoom]" value="" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][image_compression]" value="" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][image_effects]" value="" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][image_frames]" value="" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][imagecaption_position]" value="" /><input type="hidden" name="data[tt_content][NEW454b70afc1aff][pid]" value="1" />
|
|
|
|
|
|
|
|
<!--
|
|
Saving buttons (same as in top)
|
|
-->
|
|
|
|
<input type="image" class="c-inputButton" name="_savedok" src="sysext/t3skin/icons/gfx/savedok.gif" width="16" height="16" title="Save document" /><input type="image" class="c-inputButton" name="_savedokview" src="sysext/t3skin/icons/gfx/savedokshow.gif" width="16" height="16" title="Save document and view page" /><input type="image" class="c-inputButton" name="_saveandclosedok" src="sysext/t3skin/icons/gfx/saveandclosedok.gif" width="16" height="16" title="Save and close document" /><a href="#" onclick="document.editform.closeDoc.value=1; document.editform.submit(); return false;"><img src="sysext/t3skin/icons/gfx/closedok.gif" width="16" height="16" class="c-inputButton" title="Close document" alt="" /></a><input type="hidden" name="returnUrl" value="/typo3/typo3/sysext/cms/layout/db_layout.php?id=1" />
|
|
<input type="hidden" name="viewUrl" value="" /><input type="hidden" name="popViewId" value="1" /><input type="hidden" name="closeDoc" value="0" /><input type="hidden" name="doSave" value="0" /><input type="hidden" name="_serialNumber" value="9cbf63f975252ba6f9c354e0cf9f71e3" /><input type="hidden" name="_disableRTE" value="" />
|
|
<script type="text/javascript" src="md5.js"></script>
|
|
|
|
<script type="text/javascript" src="../t3lib/jsfunc.evalfield.js"></script>
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
|
|
var TBE_EDITOR_req=new Image(); TBE_EDITOR_req.src = "sysext/t3skin/icons/gfx/required_h.gif";
|
|
var TBE_EDITOR_cm=new Image(); TBE_EDITOR_cm.src = "sysext/t3skin/icons/gfx/content_client.gif";
|
|
var TBE_EDITOR_sel=new Image(); TBE_EDITOR_sel.src = "sysext/t3skin/icons/gfx/content_selected.gif";
|
|
var TBE_EDITOR_clear=new Image(); TBE_EDITOR_clear.src = "clear.gif";
|
|
var TBE_REQUIRED=new Array();
|
|
|
|
|
|
var TBE_RANGE=new Array();
|
|
var TBE_RANGE_lower=new Array();
|
|
var TBE_RANGE_upper=new Array();
|
|
TBE_RANGE['data[tt_content][NEW454b70afc1aff][image]']=1;
|
|
TBE_RANGE_lower['data[tt_content][NEW454b70afc1aff][image]']=0;
|
|
TBE_RANGE_upper['data[tt_content][NEW454b70afc1aff][image]']=200;
|
|
TBE_RANGE['data[tt_content][NEW454b70afc1aff][fe_group]']=1;
|
|
TBE_RANGE_lower['data[tt_content][NEW454b70afc1aff][fe_group]']=0;
|
|
TBE_RANGE_upper['data[tt_content][NEW454b70afc1aff][fe_group]']=20;
|
|
|
|
// $this->additionalJS_post:
|
|
|
|
RTEarea[1] = new Array();
|
|
RTEarea[1]["number"] = 1;
|
|
RTEarea[1]["id"] = "RTEarea1";
|
|
RTEarea[1]["enableWordClean"] = true;
|
|
RTEarea[1]["htmlRemoveComments"] = true;
|
|
RTEarea[1]["disableEnterParagraphs"] = false;
|
|
RTEarea[1]["removeTrailingBR"] = true;
|
|
RTEarea[1]["useCSS"] = false;
|
|
RTEarea[1]["keepButtonGroupTogether"] = true;
|
|
RTEarea[1]["disablePCexamples"] = false;
|
|
RTEarea[1]["statusBar"] = true;
|
|
RTEarea[1]["showTagFreeClasses"] = false;
|
|
RTEarea[1]["useHTTPS"] = false;
|
|
RTEarea[1]["enableMozillaExtension"] = false;
|
|
RTEarea[1]["typo3ContentLanguage"] = "en";
|
|
RTEarea[1]["typo3ContentCharset"] = "iso-8859-1";
|
|
RTEarea[1]["enablePersonalDicts"] = false;
|
|
RTEarea[1]["userUid"] = "BE_1";
|
|
RTEarea[1]["plugin"] = new Array();
|
|
RTEarea[1]["plugin"]["TableOperations"] = true;
|
|
RTEarea[1]["plugin"]["ContextMenu"] = true;
|
|
RTEarea[1]["plugin"]["SelectColor"] = true;
|
|
RTEarea[1]["plugin"]["TYPO3Browsers"] = true;
|
|
RTEarea[1]["plugin"]["FindReplace"] = true;
|
|
RTEarea[1]["plugin"]["RemoveFormat"] = true;
|
|
RTEarea[1]["plugin"]["CharacterMap"] = true;
|
|
RTEarea[1]["plugin"]["InlineCSS"] = true;
|
|
RTEarea[1]["plugin"]["DynamicCSS"] = true;
|
|
RTEarea[1]["htmlRemoveTags"] = /^(center|font|o:p|sdfield|strike|u)$/i;
|
|
RTEarea[1]["htmlRemoveTagsAndContents"] = /^(style|script)$/i;
|
|
RTEarea[1]["defaultPageStyle"] = "http://localhost/typo3/typo3temp/rtehtmlarea_css_dffac98b3175880c8c50347c30aeac2a.css";
|
|
RTEarea[1]["pageStyle"] = "http://localhost/typo3/typo3/sysext/rtehtmlarea/htmlarea/plugins/DynamicCSS/dynamiccss.css";
|
|
RTEarea[1]["disableColorPicker"] = false;
|
|
RTEarea[1]["classesTag"] = new Array();
|
|
RTEarea[1]["classesTag"]["span"] = "important,name-of-person,detail";
|
|
RTEarea[1]["classesTag"]["p"] = "align-left,align-center,align-right,csc-frame-frame1,csc-frame-frame2";
|
|
RTEarea[1]["classesTag"]["img"] = null;
|
|
RTEarea[1]["classesTag"]["table"] = "csc-frame-frame1,csc-frame-frame2";
|
|
RTEarea[1]["classesTag"]["a"] = "external-link,external-link-new-window,internal-link,internal-link-new-window,download,mail";
|
|
RTEarea[1]["classesTag"]["td"] = "align-left,align-center,align-right";
|
|
RTEarea[1]["classesUrl"] = "http://localhost/typo3/typo3temp/rtehtmlarea_classes_0_e236851595086a79afb4095288c7b62c.js";
|
|
RTEarea[1]["fontname"] = {
|
|
"No font" : "",
|
|
"Arial" : "Arial,sans-serif",
|
|
"Arial Black" : "Arial Black,sans-serif",
|
|
"Verdana" : "Verdana,Arial,sans-serif",
|
|
"Times New Roman" : "Times New Roman,Times,serif",
|
|
"Garamond" : "Garamond",
|
|
"Lucida Handwriting" : "Lucida Handwriting",
|
|
"Courier" : "Courier",
|
|
"Webdings" : "Webdings",
|
|
"Wingdings" : "Wingdings"};
|
|
RTEarea[1]["paragraphs"] = {
|
|
"Normal" : "p",
|
|
"Heading 1" : "h1",
|
|
"Heading 2" : "h2",
|
|
"Heading 3" : "h3",
|
|
"Heading 4" : "h4",
|
|
"Heading 5" : "h5",
|
|
"Heading 6" : "h6"};
|
|
RTEarea[1]["fontsize"] = {
|
|
"No size" : "",
|
|
"1 (8 pt)" : "1",
|
|
"2 (10 pt)" : "2",
|
|
"3 (12 pt)" : "3",
|
|
"4 (14 pt)" : "4",
|
|
"5 (18 pt)" : "5",
|
|
"6 (24 pt)" : "6",
|
|
"7 (36 pt)" : "7"};
|
|
RTEarea[1]["hideTableOperationsInToolbar"] = false;
|
|
RTEarea[1]["keepToggleBordersInToolbar"] = false;
|
|
RTEarea[1]["disableLayoutFieldsetInTableOperations"] = true;
|
|
RTEarea[1]["disableAlignmentFieldsetInTableOperations"] = true;
|
|
RTEarea[1]["disableSpacingFieldsetInTableOperations"] = true;
|
|
RTEarea[1]["disableBordersFieldsetInTableOperations"] = true;
|
|
RTEarea[1]["disableColorFieldsetInTableOperations"] = true;
|
|
RTEarea[1]["classesAnchorUrl"] = "/typo3/typo3temp/rtehtmlarea_classesAnchor_0_9b6e257fa4b36b4adb5146c0b9c02a34.js";
|
|
RTEarea[1]["toolbar"] = [["separator", "I[style]", "DynamicCSS-class", "space", "I[text_style]", "InlineCSS-class", "linebreak", "separator", "FormatBlock", "separator", "Bold", "Italic", "Subscript", "Superscript", "separator", "InsertOrderedList", "InsertUnorderedList", "Outdent", "Indent", "separator", "TextIndicator", "separator", "InsertCharacter", "CreateLink", "InsertTable", "separator", "FindReplace", "separator", "HtmlMode", "RemoveFormat", "separator", "Undo", "Redo", "separator", "About", "linebreak", "separator", "TO-toggle-borders", "separator", "TO-table-prop", "separator", "TO-row-prop", "TO-row-insert-above", "TO-row-insert-under", "TO-row-delete", "TO-row-split", "separator", "TO-col-insert-before", "TO-col-insert-after", "TO-col-delete", "TO-col-split", "separator", "TO-cell-prop", "TO-cell-insert-before", "TO-cell-insert-after", "TO-cell-delete", "TO-cell-split", "TO-cell-merge"]];
|
|
HTMLArea.initEditor(1);
|
|
|
|
var TBE_EDITOR_loadTime = 0;
|
|
var TBE_EDITOR_isChanged = 0;
|
|
|
|
function TBE_EDITOR_loginRefreshed() { //
|
|
var date = new Date();
|
|
TBE_EDITOR_loadTime = Math.floor(date.getTime()/1000);
|
|
if (top.busy && top.busy.loginRefreshed) {top.busy.loginRefreshed();}
|
|
}
|
|
function TBE_EDITOR_checkLoginTimeout() { //
|
|
var date = new Date();
|
|
var theTime = Math.floor(date.getTime()/1000);
|
|
if (theTime > TBE_EDITOR_loadTime+3600-10) {
|
|
return true;
|
|
}
|
|
}
|
|
function TBE_EDITOR_setHiddenContent(RTEcontent,theField) { //
|
|
document.editform[theField].value = RTEcontent;
|
|
alert(document.editform[theField].value);
|
|
}
|
|
function TBE_EDITOR_fieldChanged_fName(fName,el) { //
|
|
var idx=2;
|
|
var table = TBE_EDITOR_split(fName, "[", idx);
|
|
var uid = TBE_EDITOR_split(fName, "[", idx+1);
|
|
var field = TBE_EDITOR_split(fName, "[", idx+2);
|
|
|
|
table = table.substr(0,table.length-1);
|
|
uid = uid.substr(0,uid.length-1);
|
|
field = field.substr(0,field.length-1);
|
|
TBE_EDITOR_fieldChanged(table,uid,field,el);
|
|
}
|
|
function TBE_EDITOR_fieldChanged(table,uid,field,el) { //
|
|
var theField = "data["+table+"]["+uid+"]["+field+"]";
|
|
TBE_EDITOR_isChanged = 1;
|
|
|
|
// Set change image:
|
|
var imgObjName = "cm_"+table+"_"+uid+"_"+field;
|
|
TBE_EDITOR_setImage(imgObjName,"TBE_EDITOR_cm");
|
|
|
|
// Set change image
|
|
if (document.editform[theField] && document.editform[theField].type=="select-one" && document.editform[theField+"_selIconVal"]) {
|
|
var imgObjName = "selIcon_"+table+"_"+uid+"_"+field+"_";
|
|
TBE_EDITOR_setImage(imgObjName+document.editform[theField+"_selIconVal"].value,"TBE_EDITOR_clear");
|
|
document.editform[theField+"_selIconVal"].value = document.editform[theField].selectedIndex;
|
|
TBE_EDITOR_setImage(imgObjName+document.editform[theField+"_selIconVal"].value,"TBE_EDITOR_sel");
|
|
}
|
|
|
|
// Set required flag:
|
|
var imgReqObjName = "req_"+table+"_"+uid+"_"+field;
|
|
if (TBE_REQUIRED[theField] && document.editform[theField]) {
|
|
if (document.editform[theField].value) {
|
|
TBE_EDITOR_setImage(imgReqObjName,"TBE_EDITOR_clear");
|
|
} else {
|
|
TBE_EDITOR_setImage(imgReqObjName,"TBE_EDITOR_req");
|
|
}
|
|
}
|
|
if (TBE_RANGE[theField] && document.editform[theField]) {
|
|
if (TBE_EDITOR_checkRange(document.editform[theField+"_list"],TBE_RANGE_lower[theField],TBE_RANGE_upper[theField])) {
|
|
TBE_EDITOR_setImage(imgReqObjName,"TBE_EDITOR_clear");
|
|
} else {
|
|
TBE_EDITOR_setImage(imgReqObjName,"TBE_EDITOR_req");
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
function TBE_EDITOR_isFormChanged(noAlert) { //
|
|
if (TBE_EDITOR_isChanged && !noAlert && confirm(String.fromCharCode(84,104,101,114,101,32,97,114,101,32,117,110,115,97,118,101,100,32,99,104,97,110,103,101,115,32,105,110,32,116,104,101,32,102,111,114,109,33,10,68,111,32,121,111,117,32,119,97,110,116,32,116,111,32,99,111,110,116,105,110,117,101,32,87,73,84,72,79,85,84,32,115,97,118,105,110,103,63))) {
|
|
return 0;
|
|
}
|
|
return TBE_EDITOR_isChanged;
|
|
}
|
|
function TBE_EDITOR_checkAndDoSubmit(sendAlert) { //
|
|
if (TBE_EDITOR_checkSubmit(sendAlert)) {
|
|
TBE_EDITOR_submitForm();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Checks if the form can be submitted according to any possible restrains like required values, item numbers etc.
|
|
* Returns true if the form can be submitted, otherwise false (and might issue an alert message, if "sendAlert" is 1)
|
|
* If "sendAlert" is false, no error message will be shown upon false return value (if "1" then it will).
|
|
* If "sendAlert" is "-1" then the function will ALWAYS return true regardless of constraints (except if login has expired) - this is used in the case where a form field change requests a form update and where it is accepted that constraints are not observed (form layout might change so other fields are shown...)
|
|
*/
|
|
function TBE_EDITOR_checkSubmit(sendAlert) { //
|
|
if (TBE_EDITOR_checkLoginTimeout() && confirm(String.fromCharCode(89,111,117,114,32,108,111,103,105,110,32,104,97,115,32,112,114,111,98,97,98,108,121,32,101,120,112,105,114,101,100,46,10,68,111,32,121,111,117,32,119,97,110,116,32,116,111,32,114,101,102,114,101,115,104,32,105,116,32,110,111,119,63))) {
|
|
vHWin=window.open('login_frameset.php?','relogin','height=300,width=400,status=0,menubar=0');
|
|
vHWin.focus();
|
|
return false;
|
|
}
|
|
var OK=1;
|
|
|
|
// $this->additionalJS_post:
|
|
|
|
editornumber = 1;
|
|
if (RTEarea[editornumber]) {
|
|
document.editform["data[tt_content][NEW454b70afc1aff][bodytext]"].value = RTEarea[editornumber]["editor"].getHTML();
|
|
}
|
|
else {
|
|
OK=0;
|
|
}
|
|
|
|
|
|
if(!OK) {
|
|
if (!confirm(unescape("SYSTEM ERROR: One or more Rich Text Editors on the page could not be contacted. This IS an error, although it should not be regular.\nYou can save the form now by pressing OK, but you will loose the Rich Text Editor content if you do.\n\nPlease report the error to your administrator if it persists."))) {
|
|
return false;
|
|
} else {
|
|
OK = 1;
|
|
}
|
|
}
|
|
|
|
|
|
if (!TBE_EDITOR_checkRange(document.editform['data[tt_content][NEW454b70afc1aff][image]_list'],0,200)) {OK=0;}
|
|
if (!TBE_EDITOR_checkRange(document.editform['data[tt_content][NEW454b70afc1aff][fe_group]_list'],0,20)) {OK=0;}
|
|
|
|
if (OK || sendAlert==-1) {
|
|
return true;
|
|
} else {
|
|
if(sendAlert) alert(String.fromCharCode(84,104,101,32,102,105,101,108,100,115,32,109,97,114,107,101,100,32,119,105,116,104,32,97,32,121,101,108,108,111,119,32,101,120,99,108,97,109,97,116,105,111,110,32,109,97,114,107,32,97,114,101,32,110,111,116,32,121,101,116,32,99,111,114,114,101,99,116,108,121,32,102,105,108,108,101,100,32,105,110,46,32,80,108,101,97,115,101,32,99,111,109,112,108,101,116,101,32,116,104,101,109,32,112,114,111,112,101,114,108,121,46));
|
|
return false;
|
|
}
|
|
}
|
|
function TBE_EDITOR_checkRange(el,lower,upper) { //
|
|
if (el && el.length>=lower && el.length<=upper) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
function TBE_EDITOR_initRequired() { //
|
|
|
|
if (!TBE_EDITOR_checkRange(document.editform['data[tt_content][NEW454b70afc1aff][image]_list'],0,200)) {TBE_EDITOR_setImage('req_tt_content_NEW454b70afc1aff_image','TBE_EDITOR_req');}
|
|
if (!TBE_EDITOR_checkRange(document.editform['data[tt_content][NEW454b70afc1aff][fe_group]_list'],0,20)) {TBE_EDITOR_setImage('req_tt_content_NEW454b70afc1aff_fe_group','TBE_EDITOR_req');}
|
|
}
|
|
function TBE_EDITOR_setImage(name,imgName) { //
|
|
if (document[name]) {document[name].src = eval(imgName+".src");}
|
|
}
|
|
function TBE_EDITOR_submitForm() { //
|
|
document.editform['doSave'].value=1;
|
|
document.editform.submit();
|
|
}
|
|
function typoSetup () { //
|
|
this.passwordDummy = "********";
|
|
this.decimalSign = ".";
|
|
}
|
|
var TS = new typoSetup();
|
|
var evalFunc = new evalFunc();
|
|
evalFunc.USmode = 0;
|
|
|
|
function typo3FormFieldSet(theField, evallist, is_in, checkbox, checkboxValue) { //
|
|
if (document.editform[theField]) {
|
|
var theFObj = new evalFunc_dummy (evallist,is_in, checkbox, checkboxValue);
|
|
var theValue = document.editform[theField].value;
|
|
if (checkbox && theValue==checkboxValue) {
|
|
document.editform[theField+"_hr"].value="";
|
|
if (document.editform[theField+"_cb"]) document.editform[theField+"_cb"].checked = "";
|
|
} else {
|
|
document.editform[theField+"_hr"].value = evalFunc.outputObjValue(theFObj, theValue);
|
|
if (document.editform[theField+"_cb"]) document.editform[theField+"_cb"].checked = "on";
|
|
}
|
|
}
|
|
}
|
|
function typo3FormFieldGet(theField, evallist, is_in, checkbox, checkboxValue, checkbox_off, checkSetValue) { //
|
|
if (document.editform[theField]) {
|
|
var theFObj = new evalFunc_dummy (evallist,is_in, checkbox, checkboxValue);
|
|
if (checkbox_off) {
|
|
if (document.editform[theField+"_cb"].checked) {
|
|
document.editform[theField].value=checkSetValue;
|
|
} else {
|
|
document.editform[theField].value=checkboxValue;
|
|
}
|
|
}else{
|
|
document.editform[theField].value = evalFunc.evalObjValue(theFObj, document.editform[theField+"_hr"].value);
|
|
}
|
|
typo3FormFieldSet(theField, evallist, is_in, checkbox, checkboxValue);
|
|
}
|
|
}
|
|
function TBE_EDITOR_split(theStr1, delim, index) { //
|
|
var theStr = ""+theStr1;
|
|
var lengthOfDelim = delim.length;
|
|
sPos = -lengthOfDelim;
|
|
if (index<1) {index=1;}
|
|
for (var a=1; a<index; a++) {
|
|
sPos = theStr.indexOf(delim, sPos+lengthOfDelim);
|
|
if (sPos==-1) {return null;}
|
|
}
|
|
ePos = theStr.indexOf(delim, sPos+lengthOfDelim);
|
|
if(ePos == -1) {ePos = theStr.length;}
|
|
return (theStr.substring(sPos+lengthOfDelim,ePos));
|
|
}
|
|
function TBE_EDITOR_palUrl(inData,fieldList,fieldNum,table,uid,isOnFocus) { //
|
|
var url = "alt_palette.php?inData="+inData+"&formName=editform"+"&prependFormFieldNames=data";
|
|
var field = "";
|
|
var theField="";
|
|
for (var a=0; a<fieldNum;a++) {
|
|
field = TBE_EDITOR_split(fieldList, ",", a+1);
|
|
theField = "data["+table+"]["+uid+"]["+field+"]";
|
|
if (document.editform[theField]) url+="&rec["+field+"]="+TBE_EDITOR_rawurlencode(document.editform[theField].value);
|
|
}
|
|
if (top.topmenuFrame) {
|
|
top.topmenuFrame.location.href = url+"&backRef="+(top.content.list_frame ? (top.content.list_frame.view_frame ? "top.content.list_frame.view_frame" : "top.content.list_frame") : "top.content");
|
|
} else if (!isOnFocus) {
|
|
var vHWin=window.open(url,"palette","height=300,width=200,status=0,menubar=0,scrollbars=1");
|
|
vHWin.focus();
|
|
}
|
|
}
|
|
function TBE_EDITOR_curSelected(theField) { //
|
|
var fObjSel = document.editform[theField];
|
|
var retVal="";
|
|
if (fObjSel) {
|
|
if (fObjSel.type=="select-multiple" || fObjSel.type=="select-one") {
|
|
var l=fObjSel.length;
|
|
for (a=0;a<l;a++) {
|
|
if (fObjSel.options[a].selected==1) {
|
|
retVal+=fObjSel.options[a].value+",";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return retVal;
|
|
}
|
|
function TBE_EDITOR_rawurlencode(str,maxlen) { //
|
|
var output = str;
|
|
if (maxlen) output = output.substr(0,200);
|
|
output = escape(output);
|
|
output = TBE_EDITOR_str_replace("*","%2A", output);
|
|
output = TBE_EDITOR_str_replace("+","%2B", output);
|
|
output = TBE_EDITOR_str_replace("/","%2F", output);
|
|
output = TBE_EDITOR_str_replace("@","%40", output);
|
|
return output;
|
|
}
|
|
function TBE_EDITOR_str_replace(match,replace,string) { //
|
|
var input = ""+string;
|
|
var matchStr = ""+match;
|
|
if (!matchStr) {return string;}
|
|
var output = "";
|
|
var pointer=0;
|
|
var pos = input.indexOf(matchStr);
|
|
while (pos!=-1) {
|
|
output+=""+input.substr(pointer, pos-pointer)+replace;
|
|
pointer=pos+matchStr.length;
|
|
pos = input.indexOf(match,pos+1);
|
|
}
|
|
output+=""+input.substr(pointer);
|
|
return output;
|
|
}
|
|
/*]]>*/
|
|
</script>
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
|
|
typo3FormFieldSet('data[tt_content][NEW454b70afc1aff][header]','','',0,'');typo3FormFieldSet('data[tt_content][NEW454b70afc1aff][imagewidth]','int','',1,'0');typo3FormFieldSet('data[tt_content][NEW454b70afc1aff][starttime]','date','',1,'0');typo3FormFieldSet('data[tt_content][NEW454b70afc1aff][endtime]','date','',1,'0');
|
|
|
|
TBE_EDITOR_initRequired();
|
|
TBE_EDITOR_loginRefreshed();
|
|
/*]]>*/
|
|
</script>
|
|
|
|
|
|
|
|
<!--
|
|
JavaScript after the form has been drawn:
|
|
-->
|
|
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
|
|
|
|
// ***************
|
|
// Used to connect the db/file browser with this document and the formfields on it!
|
|
// ***************
|
|
|
|
var browserWin="";
|
|
|
|
function setFormValueOpenBrowser(mode,params) { //
|
|
var url = "browser.php?mode="+mode+"&bparams="+params;
|
|
|
|
browserWin = window.open(url,"Typo3WinBrowser","height=350,width="+(mode=="db"?650:600)+",status=0,menubar=0,resizable=1,scrollbars=1");
|
|
browserWin.focus();
|
|
}
|
|
function setFormValueFromBrowseWin(fName,value,label,exclusiveValues) { //
|
|
var formObj = setFormValue_getFObj(fName)
|
|
if (formObj && value!="--div--") {
|
|
fObj = formObj[fName+"_list"];
|
|
var len = fObj.length;
|
|
// Clear elements if exclusive values are found
|
|
if (exclusiveValues) {
|
|
var m = new RegExp("(^|,)"+value+"($|,)");
|
|
if (exclusiveValues.match(m)) {
|
|
// the new value is exclusive
|
|
for (a=len-1;a>=0;a--) fObj[a] = null;
|
|
len = 0;
|
|
} else if (len == 1) {
|
|
m = new RegExp("(^|,)"+fObj.options[0].value+"($|,)");
|
|
if (exclusiveValues.match(m)) {
|
|
// the old value is exclusive
|
|
fObj[0] = null;
|
|
len = 0;
|
|
}
|
|
}
|
|
}
|
|
// Inserting element
|
|
var setOK = 1;
|
|
if (!formObj[fName+"_mul"] || formObj[fName+"_mul"].value==0) {
|
|
for (a=0;a<len;a++) {
|
|
if (fObj.options[a].value==value) {
|
|
setOK = 0;
|
|
}
|
|
}
|
|
}
|
|
if (setOK) {
|
|
fObj.length++;
|
|
fObj.options[len].value = value;
|
|
fObj.options[len].text = unescape(label);
|
|
|
|
// Traversing list and set the hidden-field
|
|
setHiddenFromList(fObj,formObj[fName]);
|
|
TBE_EDITOR_fieldChanged_fName(fName,formObj[fName+"_list"]);
|
|
}
|
|
}
|
|
}
|
|
function setHiddenFromList(fObjSel,fObjHid) { //
|
|
l=fObjSel.length;
|
|
fObjHid.value="";
|
|
for (a=0;a<l;a++) {
|
|
fObjHid.value+=fObjSel.options[a].value+",";
|
|
}
|
|
}
|
|
function setFormValueManipulate(fName,type) { //
|
|
var formObj = setFormValue_getFObj(fName)
|
|
if (formObj) {
|
|
var localArray_V = new Array();
|
|
var localArray_L = new Array();
|
|
var localArray_S = new Array();
|
|
var fObjSel = formObj[fName+"_list"];
|
|
var l=fObjSel.length;
|
|
var c=0;
|
|
if (type=="Remove" || type=="Top" || type=="Bottom") {
|
|
if (type=="Top") {
|
|
for (a=0;a<l;a++) {
|
|
if (fObjSel.options[a].selected==1) {
|
|
localArray_V[c]=fObjSel.options[a].value;
|
|
localArray_L[c]=fObjSel.options[a].text;
|
|
localArray_S[c]=1;
|
|
c++;
|
|
}
|
|
}
|
|
}
|
|
for (a=0;a<l;a++) {
|
|
if (fObjSel.options[a].selected!=1) {
|
|
localArray_V[c]=fObjSel.options[a].value;
|
|
localArray_L[c]=fObjSel.options[a].text;
|
|
localArray_S[c]=0;
|
|
c++;
|
|
}
|
|
}
|
|
if (type=="Bottom") {
|
|
for (a=0;a<l;a++) {
|
|
if (fObjSel.options[a].selected==1) {
|
|
localArray_V[c]=fObjSel.options[a].value;
|
|
localArray_L[c]=fObjSel.options[a].text;
|
|
localArray_S[c]=1;
|
|
c++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (type=="Down") {
|
|
var tC = 0;
|
|
var tA = new Array();
|
|
|
|
for (a=0;a<l;a++) {
|
|
if (fObjSel.options[a].selected!=1) {
|
|
// Add non-selected element:
|
|
localArray_V[c]=fObjSel.options[a].value;
|
|
localArray_L[c]=fObjSel.options[a].text;
|
|
localArray_S[c]=0;
|
|
c++;
|
|
|
|
// Transfer any accumulated and reset:
|
|
if (tA.length > 0) {
|
|
for (aa=0;aa<tA.length;aa++) {
|
|
localArray_V[c]=fObjSel.options[tA[aa]].value;
|
|
localArray_L[c]=fObjSel.options[tA[aa]].text;
|
|
localArray_S[c]=1;
|
|
c++;
|
|
}
|
|
|
|
var tC = 0;
|
|
var tA = new Array();
|
|
}
|
|
} else {
|
|
tA[tC] = a;
|
|
tC++;
|
|
}
|
|
}
|
|
// Transfer any remaining:
|
|
if (tA.length > 0) {
|
|
for (aa=0;aa<tA.length;aa++) {
|
|
localArray_V[c]=fObjSel.options[tA[aa]].value;
|
|
localArray_L[c]=fObjSel.options[tA[aa]].text;
|
|
localArray_S[c]=1;
|
|
c++;
|
|
}
|
|
}
|
|
}
|
|
if (type=="Up") {
|
|
var tC = 0;
|
|
var tA = new Array();
|
|
var c = l-1;
|
|
|
|
for (a=l-1;a>=0;a--) {
|
|
if (fObjSel.options[a].selected!=1) {
|
|
|
|
// Add non-selected element:
|
|
localArray_V[c]=fObjSel.options[a].value;
|
|
localArray_L[c]=fObjSel.options[a].text;
|
|
localArray_S[c]=0;
|
|
c--;
|
|
|
|
// Transfer any accumulated and reset:
|
|
if (tA.length > 0) {
|
|
for (aa=0;aa<tA.length;aa++) {
|
|
localArray_V[c]=fObjSel.options[tA[aa]].value;
|
|
localArray_L[c]=fObjSel.options[tA[aa]].text;
|
|
localArray_S[c]=1;
|
|
c--;
|
|
}
|
|
|
|
var tC = 0;
|
|
var tA = new Array();
|
|
}
|
|
} else {
|
|
tA[tC] = a;
|
|
tC++;
|
|
}
|
|
}
|
|
// Transfer any remaining:
|
|
if (tA.length > 0) {
|
|
for (aa=0;aa<tA.length;aa++) {
|
|
localArray_V[c]=fObjSel.options[tA[aa]].value;
|
|
localArray_L[c]=fObjSel.options[tA[aa]].text;
|
|
localArray_S[c]=1;
|
|
c--;
|
|
}
|
|
}
|
|
c=l; // Restore length value in "c"
|
|
}
|
|
|
|
// Transfer items in temporary storage to list object:
|
|
fObjSel.length = c;
|
|
for (a=0;a<c;a++) {
|
|
fObjSel.options[a].value = localArray_V[a];
|
|
fObjSel.options[a].text = localArray_L[a];
|
|
fObjSel.options[a].selected = localArray_S[a];
|
|
}
|
|
setHiddenFromList(fObjSel,formObj[fName]);
|
|
|
|
TBE_EDITOR_fieldChanged_fName(fName,formObj[fName+"_list"]);
|
|
}
|
|
}
|
|
function setFormValue_getFObj(fName) { //
|
|
var formObj = document.editform;
|
|
if (formObj) {
|
|
if (formObj[fName] && formObj[fName+"_list"] && formObj[fName+"_list"].type=="select-multiple") {
|
|
return formObj;
|
|
} else {
|
|
alert("Formfields missing:\n fName: "+formObj[fName]+"\n fName_list:"+formObj[fName+"_list"]+"\n type:"+formObj[fName+"_list"].type+"\n fName:"+fName);
|
|
}
|
|
}
|
|
return "";
|
|
}
|
|
|
|
// END: dbFileCon parts.
|
|
|
|
/*]]>*/
|
|
</script>
|
|
|
|
<!--
|
|
Function menus (checkboxes for selecting options):
|
|
-->
|
|
<br /><br /><input type="checkbox" name="SET[showPalettes]" onclick="jumpToUrl('alt_doc.php?&id=&edit[tt_content][1]=new&defVals[tt_content][colPos]=0&defVals[tt_content][sys_language_uid]=0&defVals[tt_content][CType]=textpic&defVals[tt_content][imageorient]=17&returnUrl=%2Ftypo3%2Ftypo3%2Fsysext%2Fcms%2Flayout%2Fdb_layout.php%3Fid%3D1&SET=&SET[showPalettes]='+(this.checked?1:0),this);" />Show secondary options (palettes)<br /><input type="checkbox" name="SET[showDescriptions]" onclick="jumpToUrl('alt_doc.php?&id=&edit[tt_content][1]=new&defVals[tt_content][colPos]=0&defVals[tt_content][sys_language_uid]=0&defVals[tt_content][CType]=textpic&defVals[tt_content][imageorient]=17&returnUrl=%2Ftypo3%2Ftypo3%2Fsysext%2Fcms%2Flayout%2Fdb_layout.php%3Fid%3D1&SET=&SET[showDescriptions]='+(this.checked?1:0),this);" />Show field descriptions<br /><input type="checkbox" name="SET[disableRTE]" onclick="jumpToUrl('alt_doc.php?&id=&edit[tt_content][1]=new&defVals[tt_content][colPos]=0&defVals[tt_content][sys_language_uid]=0&defVals[tt_content][CType]=textpic&defVals[tt_content][imageorient]=17&returnUrl=%2Ftypo3%2Ftypo3%2Fsysext%2Fcms%2Flayout%2Fdb_layout.php%3Fid%3D1&SET=&SET[disableRTE]='+(this.checked?1:0),this);" />Disable Rich Text Editor (RTE)<br/><a href="#" onclick="vHWin=window.open('view_help.php?tfID=xMOD_csh_corebe.TCEforms','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="typo3-csh-icon" alt="" /></a>
|
|
|
|
<!--
|
|
Shortcut link:
|
|
-->
|
|
<br /><br /><a href="#" onclick="if (top.shortcutFrame && confirm(String.fromCharCode(67,114,101,97,116,101,32,97,32,115,104,111,114,116,99,117,116,32,116,111,32,116,104,105,115,32,112,97,103,101,63))){top.shortcutFrame.location.href='alt_shortcut.php?modName=xMOD_alt_doc.php&URL=%2Ftypo3%2Ftypo3%2Falt_doc.php%3F%26returnUrl%3D%252Ftypo3%252Ftypo3%252Fsysext%252Fcms%252Flayout%252Fdb_layout.php%253Fid%253D1%26edit%5Btt_content%5D%5B1%5D%3Dnew%26defVals%5Btt_content%5D%5BcolPos%5D%3D0%26defVals%5Btt_content%5D%5Bsys_language_uid%5D%3D0%26defVals%5Btt_content%5D%5BCType%5D%3Dtextpic%26defVals%5Btt_content%5D%5Bimageorient%5D%3D17%26overrideVals%3D%26columnsOnly%3D%26returnNewPageId%3D%26editRegularContentFromId%3D%26disHelp%3D%26noView%3D%26SET%5BshowPalettes%5D%3D%26SET%5BshowDescriptions%5D%3D%26SET%5BdisableRTE%5D%3D&motherModName='+top.currentModuleLoaded+'';}return false;">
|
|
<img src="sysext/t3skin/icons/gfx/shortcut.gif" width="16" height="16" title="Create a shortcut to this page?" alt="" /></a><a href="#" onclick="vHWin=window.open('/typo3/typo3/alt_doc.php?edit[tt_content][1]=new&defVals[tt_content][colPos]=0&defVals[tt_content][sys_language_uid]=0&defVals[tt_content][CType]=textpic&defVals[tt_content][imageorient]=17&returnUrl=close.html','54bffd64c22895ae6c359768a908c60a','width=600,height=400,status=0,menubar=0,scrollbars=1,resizable=1');vHWin.focus();return false;"><img src="sysext/t3skin/icons/gfx/open_in_new_window.gif" width="16" height="16" title="Open in new window" alt="" /></a>
|
|
|
|
<!-- TCEFORM messages
|
|
data[tt_content][NEW454b70afc1aff][imagecaption]: RTE was not configured for this field in TCA-types
|
|
data[tt_content][NEW454b70afc1aff][altText]: RTE was not configured for this field in TCA-types
|
|
data[tt_content][NEW454b70afc1aff][titleText]: RTE was not configured for this field in TCA-types
|
|
data[tt_content][NEW454b70afc1aff][longdescURL]: RTE was not configured for this field in TCA-types
|
|
-->
|
|
|
|
<div id="contentMenu0" style="z-index:1; position:absolute;visibility:hidden"></div><div id="contentMenu1" style="z-index:2; position:absolute;visibility:hidden"></div>
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
if (top.busy && top.busy.loginRefreshed) {
|
|
top.busy.loginRefreshed();
|
|
}
|
|
/*]]>*/
|
|
</script>
|
|
</form>
|
|
|
|
<!-- Wrapping DIV-section for whole page END -->
|
|
</div>
|
|
</body> </html>
|