[phpWebApp-commits] CVS: documentation/templates/webobjects webobj_items.php,1.1.1.1,1.2 webobjects.
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2003-02-23 14:29:13
|
Update of /cvsroot/phpwebapp/documentation/templates/webobjects In directory sc8-pr-cvs1:/tmp/cvs-serv11335/templates/webobjects Modified Files: webobj_items.php webobjects.html wobj_page.php Log Message: Index: webobj_items.php =================================================================== RCS file: /cvsroot/phpwebapp/documentation/templates/webobjects/webobj_items.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** webobj_items.php 21 Feb 2003 08:18:36 -0000 1.1.1.1 --- webobj_items.php 23 Feb 2003 14:29:07 -0000 1.2 *************** *** 5,17 **** */ $menu_items = array( - "intro" => "intro", "tabs" => "tabs", ! "leftMenu" => "leftMenu", "form" => "form", "datebox" => "datebox", - "listbox" => "listbox", - "xlistbox" => "xlistbox", "table" => "table", "dbTable" => "dbTable", ); ?> --- 5,17 ---- */ $menu_items = array( "tabs" => "tabs", ! "browse" => "fileBrowser", ! "folderListing" => "folderListing", "form" => "form", "datebox" => "datebox", "table" => "table", "dbTable" => "dbTable", + "listbox" => "listbox", + "xlistbox" => "xlistbox" ); ?> Index: webobjects.html =================================================================== RCS file: /cvsroot/phpwebapp/documentation/templates/webobjects/webobjects.html,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** webobjects.html 21 Feb 2003 08:18:36 -0000 1.1.1.1 --- webobjects.html 23 Feb 2003 14:29:07 -0000 1.2 *************** *** 6,14 **** <tr> <td> ! <Include SRC="{{WOBJ_PATH}}tabs2/tabs2.html" /> <WebObject Class="tabs2" Name="webobj" items="{{./}}webobj_items.php" /> <WebBox ID="wobj_page"> ! <Include SRC="{{CODEVIEWER_PATH}}codeViewer.html" /> </WebBox> </td> --- 6,14 ---- <tr> <td> ! <Include SRC="{{WEBOBJ_PATH}}tabs/tabs2.html" /> <WebObject Class="tabs2" Name="webobj" items="{{./}}webobj_items.php" /> <WebBox ID="wobj_page"> ! <Include SRC="{{WOBJ_PATH}}displaytxt/displaytxt.html" /> </WebBox> </td> Index: wobj_page.php =================================================================== RCS file: /cvsroot/phpwebapp/documentation/templates/webobjects/wobj_page.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** wobj_page.php 21 Feb 2003 08:18:36 -0000 1.1.1.1 --- wobj_page.php 23 Feb 2003 14:29:07 -0000 1.2 *************** *** 5,10 **** { $webobj = WebApp::getSVar("tabs2::webobj->selected_item"); ! $file = WEBOBJ_PATH.$webobj.'/'.$webobj.'.txt'; ! WebApp::setSVar("codeViewer->codeFile", $file); } } --- 5,10 ---- { $webobj = WebApp::getSVar("tabs2::webobj->selected_item"); ! $file = TPL_PATH."webobjects/pages/".$webobj.".txt"; ! WebApp::setSVar("displaytxt->file", $file); } } |