[phpwebapp-commits] CVS: web_app/tools/fileBrowser panel.php,1.4,1.5 panel.html,1.3,1.4 fileBrowser.
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2004-07-15 14:46:13
|
Update of /cvsroot/phpwebapp/web_app/tools/fileBrowser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16073/tools/fileBrowser Modified Files: panel.php panel.html fileBrowser.html Log Message: Index: panel.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/tools/fileBrowser/panel.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** panel.php 25 Aug 2003 13:18:29 -0000 1.4 --- panel.php 15 Jul 2004 14:46:03 -0000 1.5 *************** *** 38,42 **** { WebApp::addVars( array( ! "codeView_checked" => 'checked="true"', "preview_checked" => '' )); --- 38,42 ---- { WebApp::addVars( array( ! "codeView_checked" => 'checked="checked"', "preview_checked" => '' )); *************** *** 46,50 **** WebApp::addVars( array( "codeView_checked" => '', ! "preview_checked" => 'checked="true"' )); } --- 46,50 ---- WebApp::addVars( array( "codeView_checked" => '', ! "preview_checked" => 'checked="checked"' )); } Index: panel.html =================================================================== RCS file: /cvsroot/phpwebapp/web_app/tools/fileBrowser/panel.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** panel.html 14 Jul 2004 14:45:35 -0000 1.3 --- panel.html 15 Jul 2004 14:46:03 -0000 1.4 *************** *** 4,30 **** <table border="0" cellspacing="0" cellpadding="1" bgcolor="white"> <tr> ! <form name="changeViewForm" onsubmit="return false;"> ! <td width="17%" nowrap="true" valign="top"> ! <input type="checkbox" name="hide" class="checkbox"><span class="font">Hide Folder Box</span><br /> ! <input type="button" name="refresh" value="Refresh" class="button" onclick="on_refresh()"> </td> ! <td width="17%" nowrap="true" valign="top"> ! <input type="radio" name="viewMode" value="codeView" class="radio" {{codeView_checked}}><span class="font">Code View</span> <br /> ! <input type="radio" name="viewMode" value="preview" class="radio" {{preview_checked}}><span class="font">Preview</span> </td> <td bgcolor="#006633"></td> ! <td width="10%" nowrap="true" valign="top" align="right"> <span class="font">Change Session:</span> <br /> ! <input type="button" name="changeSess" value="Change" class="button" onclick="on_changeSess()"> </td> ! <td width="20%" nowrap="true" valign="top"> ! <input type="text" name="var_name" class="text" size="15"> <br /> ! <input type="text" name="var_value" class="text" size="15"> </td> <td bgcolor="#006633"></td> ! <td width="40%" nowrap="true"> <span class="font">Root Folder:</span> <br /> ! <input type="text" name="root_folder" class="text" value="{{folderListing->root}}" size="30"> ! <input type="button" name="changePath" value="GO" class="button" onclick="on_changePath()"> </td> </form> --- 4,30 ---- <table border="0" cellspacing="0" cellpadding="1" bgcolor="white"> <tr> ! <form name="changeViewForm" id="changeViewForm" onsubmit="return false;"> ! <td width="17%" nowrap="nowrap" valign="top"> ! <input type="checkbox" name="hide" id="hide" class="checkbox"><span class="font">Hide Folder Box</span><br /> ! <input type="button" name="refresh" id="refresh" value="Refresh" class="button" onclick="on_refresh()"> </td> ! <td width="17%" nowrap="nowrap" valign="top"> ! <input type="radio" name="viewMode" id="viewMode" value="codeView" class="radio" {{codeView_checked}}><span class="font">Code View</span> <br /> ! <input type="radio" name="viewMode" id="viewMode" value="preview" class="radio" {{preview_checked}}><span class="font">Preview</span> </td> <td bgcolor="#006633"></td> ! <td width="10%" nowrap="nowrap" valign="top" align="right"> <span class="font">Change Session:</span> <br /> ! <input type="button" name="changeSess" id="changeSess" value="Change" class="button" onclick="on_changeSess()"> </td> ! <td width="20%" nowrap="nowrap" valign="top"> ! <input type="text" name="var_name" id="var_name" class="text" size="15"> <br /> ! <input type="text" name="var_value" id="var_value" class="text" size="15"> </td> <td bgcolor="#006633"></td> ! <td width="40%" nowrap="nowrap"> <span class="font">Root Folder:</span> <br /> ! <input type="text" name="root_folder" id="root_folder" class="text" value="{{folderListing->root}}" size="30"> ! <input type="button" name="changePath" id="changePath" value="GO" class="button" onclick="on_changePath()"> </td> </form> Index: fileBrowser.html =================================================================== RCS file: /cvsroot/phpwebapp/web_app/tools/fileBrowser/fileBrowser.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fileBrowser.html 14 Jul 2004 14:45:35 -0000 1.4 --- fileBrowser.html 15 Jul 2004 14:46:03 -0000 1.5 *************** *** 11,15 **** <tr> <If condition="{{panel->folderVisible}}"> ! <td width="200" valign="top" nowrap="true"> <Include SRC="{{./}}folder.html" /> </td> --- 11,15 ---- <tr> <If condition="{{panel->folderVisible}}"> ! <td width="200" valign="top" nowrap="nowrap"> <Include SRC="{{./}}folder.html" /> </td> |