|
From: Rene R. <re...@gr...> - 2002-09-01 12:35:48
|
I just used rFastTemplate for the html in some other stuff I just did. That should be nice and easy to use in bobs as well. This is a link to the tutorial. http://www.astrofoto.org/people/roland/rFT/tutorial.html I think I might want to use that anyway in some of the other stuff. If you can figure out how to uncommit a cvs commit, feel free to uncommit the changes I made that broke cvs. I'll try to figure out how to make a branch for the new stuff I'm working on. -Rene > I finished breaking up class_config into three classes. These are the > variables and functions of each class. I hope I didn't break much (or > anything). I was very careful, but I couldn't do good testing because > some of it was already broken. > > class config > var $admin_pwd; > var $sys_conf; > var $server_defs; > var $serverdir = ''; > function config () > function get_siteroot() > > class admin extends config > var $admin_ok = 'no'; > function check_admin ($password) > > class server extends config > var $login_ok = 'no'; > var $servers = ''; > var $config = ''; > function server() > function login ($login_server, $login_name, $login_password) > function set_config ($set_server) > function check_active () > function check_day () > function get_server_defs() > function init_new_server($server, $share) > function get_server_list() > function commit_changes ($mode) > > I'm planning to start on the user/group/server access screens next. I'm > going to make another class like class_list.php for the access screens. > I also need to figure out what to do with some of the html parsing in > admin.php and gui.pinc. |