Project

General

Profile

Bug #15979 » file_list.txt

Administrator Admin, 2006-04-08 12:54

 

<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="#internalStyle" type="text/css"?>

<html>
<head>
<!-- TYPO3 Script ID: typo3/file_list.php -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="generator" content="TYPO3 4.0, http://typo3.com, &#169; Kasper Sk&#229;rh&#248;j 1998-2006, extensions are copyright of their respective owners." />
<title>files</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/qskin/stylesheets/stylesheet_post.css" />
<script type="text/javascript">
/*<![CDATA[*/
if (top.fsMod) top.fsMod.recentIds["file"] = unescape("C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg");
function jumpToUrl(URL) { //
window.location.href = URL;
}

// checkOffCB()
function checkOffCB(listOfCBnames) { //
var notChecked=0;
var total=0;

// Checking how many is checked, how many is not
var pointer=0;
var pos = listOfCBnames.indexOf(",");
while (pos!=-1) {
if (!cbValue(listOfCBnames.substr(pointer,pos-pointer))) notChecked++;
total++;
pointer=pos+1;
pos = listOfCBnames.indexOf(",",pointer);
}
if (!cbValue(listOfCBnames.substr(pointer))) notChecked++;
total++;

// Setting the status...
var flag = notChecked*2>total;
pointer=0;
pos = listOfCBnames.indexOf(",");
while (pos!=-1) {
setcbValue(listOfCBnames.substr(pointer,pos-pointer),flag);

pointer=pos+1;
pos = listOfCBnames.indexOf(",",pointer);
}
setcbValue(listOfCBnames.substr(pointer),flag);
}
// cbValue()
function cbValue(CBname) { //
var CBfullName = "CBC["+CBname+"]";
return (document.dblistForm[CBfullName] && document.dblistForm[CBfullName].checked ? 1 : 0);
}
// setcbValue()
function setcbValue(CBname,flag) { //
CBfullName = "CBC["+CBname+"]";
document.dblistForm[CBfullName].checked = flag ? "on" : 0;
}

/*]]>*/
</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-file-list-php"><form action="file_list.php?id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg&amp;imagemode=0" method="post" name="dblistForm">

<!--
Page header for file list
-->
<table border="0" cellpadding="0" cellspacing="0" id="typo3-filelist-top">
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"></td>
<td nowrap="nowrap"><img src="clear.gif" width="1" height="1" hspace="165" alt="" /><br />[fileadmin/]: templates/tg/</td>
<td nowrap="nowrap"><a href="file_list.php?id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg&amp;imagemode=0"><img src="sysext/qskin/icons/gfx/refresh_n.gif" width="16" height="16" title="Reload" alt="" /></a><a href="file_list.php?id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2F" onclick="top.content.nav_frame.hilight_row(&quot;file&quot;,&quot;folder233346248_&quot;+top.fsMod.currentBank)"><img src="gfx/i/folder_up.gif" width="18" height="16" title="Up one level" alt="" /></a></td>
</tr>
</table>


<!--
File list table:
-->
<table border="0" cellpadding="0" cellspacing="0" id="typo3-filelist">
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><img src="clear.gif" width="1" height="8" alt="" /></td>
<td nowrap="nowrap" colspan="6"><img src="clear.gif" width="1" height="1" hspace="165" alt="" /></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap" class="c-headLine"></td>
<td nowrap="nowrap" class="c-headLine"><a href="file_list.php?id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg&amp;SET[sort]=file&amp;SET[reverse]=1">Filename</a></td>
<td nowrap="nowrap" class="c-headLine"><a href="file_list.php?id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg&amp;SET[sort]=fileext&amp;SET[reverse]=0">Type</a></td>
<td nowrap="nowrap" class="c-headLine"><a href="file_list.php?id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg&amp;SET[sort]=tstamp&amp;SET[reverse]=0">Date</a></td>
<td nowrap="nowrap" class="c-headLine"><a href="file_list.php?id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg&amp;SET[sort]=size&amp;SET[reverse]=0">Size</a></td>
<td nowrap="nowrap" class="c-headLine"><a href="file_list.php?id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg&amp;SET[sort]=rw&amp;SET[reverse]=0">RW</a></td>
<td nowrap="nowrap" class="c-headLine"><a href="file_list.php?id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg&amp;SET[sort]=_REF_&amp;SET[reverse]=0">Ref</a></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/arrow_orange.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/arrow_orange.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="arrow_orange.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="arrow_orange.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/arrow_orange.gif','WebFile');">arrow_orange.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">03-04-06</td>
<td nowrap="nowrap">275 </td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/arrow_red.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/arrow_red.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="arrow_red.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="arrow_red.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/arrow_red.gif','WebFile');">arrow_red.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">03-04-06</td>
<td nowrap="nowrap">246 </td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"><a href="#" onclick="top.launchView('C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/arrow_red.gif', ''); return false;" title="sys_template:1:config">1</a></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/arrow_strip.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/arrow_strip.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="arrow_strip.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="arrow_strip.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/arrow_strip.gif','WebFile');">arrow_strip.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">03-04-06</td>
<td nowrap="nowrap">3.1 K</td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/clear.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/clear.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="clear.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="clear.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/clear.gif','WebFile');">clear.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">03-04-06</td>
<td nowrap="nowrap">43 </td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/datafile.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/datafile.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="datafile.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="datafile.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/datafile.gif','WebFile');">datafile.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">04-04-06</td>
<td nowrap="nowrap">735 </td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/menu_button_back.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/menu_button_back.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="menu_button_back.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="menu_button_back.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/menu_button_back.gif','WebFile');">menu_button_back.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">03-04-06</td>
<td nowrap="nowrap">463 </td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/print_button.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/print_button.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="print_button.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="print_button.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/print_button.gif','WebFile');">print_button.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">04-04-06</td>
<td nowrap="nowrap">669 </td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"><a href="#" onclick="top.launchView('C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/print_button.gif', ''); return false;" title="sys_template:1:config">1</a></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/QSTopGraduate.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/QSTopGraduate.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="QSTopGraduate.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="QSTopGraduate.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/QSTopGraduate.gif','WebFile');">QSTopGraduate.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">03-04-06</td>
<td nowrap="nowrap">2.7 K</td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"><a href="#" onclick="top.launchView('C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/QSTopGraduate.gif', ''); return false;" title="sys_template:1:config / sys_template:1:config">2</a></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/qs_arrow.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/qs_arrow.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="qs_arrow.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="qs_arrow.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/qs_arrow.gif','WebFile');">qs_arrow.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">03-04-06</td>
<td nowrap="nowrap">0.9 K</td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/QS_team.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/QS_team.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="QS_team.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="QS_team.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/QS_team.gif','WebFile');">QS_team.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">03-04-06</td>
<td nowrap="nowrap">1.1 K</td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/searchbox.htm&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/searchbox.htm&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/htm.gif" width="18" height="16" title="searchbox.htm" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="searchbox.htm" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/searchbox.htm','WebFile');">searchbox.htm</a></td>
<td nowrap="nowrap">HTM</td>
<td nowrap="nowrap">04-04-06</td>
<td nowrap="nowrap">1.8 K</td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"><a href="#" onclick="top.launchView('C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/searchbox.htm', ''); return false;" title="sys_template:1:config">1</a></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/search_icon.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/search_icon.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="search_icon.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="search_icon.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/search_icon.gif','WebFile');">search_icon.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">04-04-06</td>
<td nowrap="nowrap">139 </td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/title_back.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/title_back.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="title_back.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="title_back.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/title_back.gif','WebFile');">title_back.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">03-04-06</td>
<td nowrap="nowrap">56 </td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/TopGrads.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/TopGrads.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="TopGrads.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="TopGrads.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/TopGrads.gif','WebFile');">TopGrads.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">03-04-06</td>
<td nowrap="nowrap">6.7 K</td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"><a href="#" onclick="top.launchView('C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/TopGrads.gif', ''); return false;" title="sys_template:1:config">1</a></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"><a href="#" onclick="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/verysmallarrowred.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;" oncontextmenu="showClickmenu(&quot;C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg/verysmallarrowred.gif&quot;,&quot;&quot;,&quot;1&quot;,&quot;&quot;,&quot;|a439553667&quot;,&quot;&quot;);return false;"><img src="gfx/fileicons/gif.gif" width="18" height="16" title="verysmallarrowred.gif" alt="" /></a></td>
<td nowrap="nowrap"><a href="#" title="verysmallarrowred.gif" onclick="return top.openUrlInWindow('/fileadmin/templates/tg/verysmallarrowred.gif','WebFile');">verysmallarrowred.gif</a></td>
<td nowrap="nowrap">GIF</td>
<td nowrap="nowrap">03-04-06</td>
<td nowrap="nowrap">220 </td>
<td nowrap="nowrap"><span class="typo3-red"><b>R</b></span><span class="typo3-red"><b>W</b></span></td>
<td nowrap="nowrap"></td>
</tr>
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"></td>
<td nowrap="nowrap" colspan="6">15 File(s), 19.1 Kbytes</td>
</tr>
</table>

<!--
End of list table:
-->
<table border="0" cellpadding="0" cellspacing="0">
<!-- Element, begin: -->
<tr>
<td nowrap="nowrap"></td>
<td nowrap="nowrap" colspan="6"></td>
</tr>
</table><input type="hidden" name="cmd" /></form><br/><a href="#" onclick="vHWin=window.open('view_help.php?tfID=xMOD_csh_corebe.filelist_module','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/qskin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="typo3-csh-icon" alt="" /></a>
<!--
"Upload" and "New" buttons
-->
<div id="typo3-filelist-buttons">
<table border="0" cellpadding="4" cellspacing="0">
<tr>
<td>
<form name="upload" action="file_upload.php">
<input type="hidden" name="target" value="C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg" />
<input type="hidden" name="returnUrl" value="file_list.php?id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg&amp;imagemode=0" />
<input type="submit" value="Upload Files" />
</form>
</td>
<td>
<form name="new" action="file_newfolder.php">
<input type="hidden" name="target" value="C:/Program Files/Apache Group/Apache2/htdocs/typo3/fileadmin/templates/tg" />
<input type="hidden" name="returnUrl" value="file_list.php?id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg&amp;imagemode=0" />
<input type="submit" value="New" />
</form>
</td>
</tr>
</table>
</div>

<!--
Listing options for clipboard and thumbnails
-->
<div id="typo3-listOptions">
<input type="checkbox" name="SET[displayThumbs]" onclick="jumpToUrl('file_list.php?&amp;id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg&amp;SET[displayThumbs]='+(this.checked?1:0),this);" /> Display thumbnails<br /><input type="checkbox" name="SET[clipBoard]" onclick="jumpToUrl('file_list.php?&amp;id=C%3A%2FProgram%20Files%2FApache%20Group%2FApache2%2Fhtdocs%2Ftypo3%2Ffileadmin%2Ftemplates%2Ftg&amp;SET[clipBoard]='+(this.checked?1:0),this);" /> Show clipboard
</div>
<a href="#" onclick="vHWin=window.open('view_help.php?tfID=xMOD_csh_corebe.filelist_options','viewFieldHelp','height=400,width=600,status=0,menubar=0,scrollbars=1');vHWin.focus();return false;"><img src="sysext/qskin/icons/gfx/helpbubble.gif" width="16" height="16" hspace="2" border="0" class="typo3-csh-icon" alt="" /></a><br /><br /><a href="#" onclick="if (top.shortcutFrame &amp;&amp; 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=file_list&amp;URL=%2Ftypo3%2Ffile_list.php%3F%26pointer%3D%26id%3DC%253A%252FProgram%2520Files%252FApache%2520Group%252FApache2%252Fhtdocs%252Ftypo3%252Ffileadmin%252Ftemplates%252Ftg%26target%3D%26table%3D%26SET%5Bsort%5D%3Dfile%26SET%5Breverse%5D%3D0%26SET%5BdisplayThumbs%5D%3D%26SET%5BclipBoard%5D%3D';}return false;">
<img src="sysext/qskin/icons/gfx/shortcut.gif" width="16" height="16" title="Create a shortcut to this page?" alt="" /></a><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>
</body> </html>
(1-1/3)