You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(23) |
Jul
(37) |
Aug
(13) |
Sep
(33) |
Oct
(37) |
Nov
(1) |
Dec
(12) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(1) |
Feb
(7) |
Mar
(34) |
Apr
(41) |
May
(20) |
Jun
(13) |
Jul
(2) |
Aug
(20) |
Sep
(13) |
Oct
(8) |
Nov
(15) |
Dec
(32) |
| 2004 |
Jan
(65) |
Feb
(20) |
Mar
(29) |
Apr
(27) |
May
(37) |
Jun
(9) |
Jul
(7) |
Aug
(6) |
Sep
(16) |
Oct
|
Nov
(1) |
Dec
(18) |
| 2005 |
Jan
(18) |
Feb
(3) |
Mar
|
Apr
(14) |
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
|
Feb
|
Mar
(23) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(13) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Rene R. <re...@gr...> - 2002-09-29 05:11:21
|
I've just checked in some changes to make searching work again. I'll have to work some more on string searching to fix a potential problem. . I've hit a bug that is rather annoying. When you make a search, go to browse it, make another search and then go back again, the old search is still active in the tree view (because its not cleared from memory). This is actually and old bug which is just popping up again because of all the changes to bobs. I think I'll solve it by tagging the trees with a number which is controlled from class_backup. Whenever a change is made to a dirtree then that number must be incremented and the tree accordingly updated. Good to hear that you are back in business :) .. I've been playing a bit too (much?). |
|
From: Joe z. <jz...@at...> - 2002-09-29 02:04:56
|
I fixed the admin menu buttons. They tested okay with Opera, Netscape and Konqueror. Joe |
|
From: Joe z. <jz...@at...> - 2002-09-29 01:31:43
|
I like what you've done with the help screen. Joe |
|
From: Joe z. <jz...@at...> - 2002-09-29 01:27:48
|
I'm just starting to get back into BOBS after a couple of weeks of doing
other stuff (working weekends and playing Half-Life at night). I checked
in a few minor files.
* I'm going to fix the menu links - make them work like the image
links in menu.php - I don't know why I didn't do that in the first
place?! I installed Opera for testing, so I'm testing with
Netscape 7.0 (Mozilla), Konqueror and Opera.
* I'll update Makefile.am as I find broken things.
* I'm working on the user/group database.
* I need to look at using the rfasttemplate class.
Joe
|
|
From: Rene R. <re...@gr...> - 2002-09-27 21:40:24
|
I just found what seems to be a bug in Opera. I was testing the new search functions (which are working now), and printed the output to html using a "pre" tag to ease viewing. One line was empty which puzzled me, so I threw in some counters and checks which were all saying that nothing was wrong... damn. Anyways, using pre tags and _very_ long lines somehow kills the line. Proably some string length max in Opera (better then buffer overruns at least ;). The line has a size of ~6000 bytes. This maybe important to remember in the future. (I guess I'll stick some of those newlines in there from now on). -Ren=E9 |
|
From: Rene R. <re...@gr...> - 2002-09-17 09:03:08
|
Hi Joe.
I've begun testing the performance of the database to see where it could
use some optimization.
These two functions make it easy.
Add a "var $time; to the class you want to test and the functions below.
It'll handle several names in one turn and add timings to display a
total. (good for loops inside loops)
I use it like this:
// start the timer
$this->timer("Array_merge", microtime(), "start");
// whatever you measure gets done here.
$result = array_merge($result, $this->compare_data ($db_data, $array));
//stop the timer
$this->timer("Array_merge", microtime(), "stop");
// print the result
$this->get_times();
-------- functions ------ beware of line-wraps -------
// just a simple performance counter
function timer ( $name, $microtime , $type) {
list($usec, $sec) = explode(" ",$microtime);
$time = ((float)$usec + (float)$sec);
if ( $type == "start" ) {
$this->time["start"][$name] = $time;
} else {
$this->time["stop"][$name] = $time;
// add the difference to total
$this->time["total"][$name] = ($this->time["stop"][$name] -
$this->time["start"][$name]) +$this->time["total"][$name];
}
return;
}
function get_times () {
$names = array_keys($this->time["total"]);
foreach ( $names as $name ) {
echo "Total time for $name was : " . $this->time["total"][$name] . "
seconds<br>";
}
return;
}
|
|
From: Rene R. <re...@gr...> - 2002-09-16 04:29:24
|
Another possibility is to use one form for each link. Then have a hidden value attached to that. -Rene On Sun, 2002-09-15 at 07:09, Rene Rask wrote: >=20 > This is what I've found on the "input type=3Dimage" issue. > W3C standards specify that only x and y coordinates of the image clicked > are sent when submitting. This holds true with Opera. But Mozilla also > sends the name=3Dvalue value. I guess this is true for IE as well. > I suppose Mozilla has implemented an IE feature and Opera has not. >=20 > In any case I do not find this acceptable. >=20 > There are a few options. > Either we use regular links, or we use the name.x=3Dcoordinate values to > determine if a button is pressed. >=20 > Personally I find the link method easier and less error prone (with > regards to how browser handle it) >=20 > Your call. >=20 > -Ren=E9 >=20 >=20 >=20 >=20 > On Sun, 2002-09-15 at 06:39, Rene Rask wrote: > > On Sat, 2002-09-14 at 19:20, Joe zacky wrote: > > >=20 > > >=20 > > > Rene Rask wrote: > > >=20 > > > >Heh.. Sorry the server is created. The server login page just didn't > > > >update to reflect it. > > > > > > > You mean the newly created server didn't show up in the server list=20 > > > until you refreshed? > >=20 > > Yes but I might have been viewing a cached page. Disregard this for now= . > > If it turns out to be a problem we can work on it. > >=20 > > >=20 > > > > > > > >I'm going to put a password on the testserver so hitting login doesn= 't > > > >takes us anywhere. > > > >-Rene > > > > > > > >On Sat, 2002-09-14 at 05:55, Rene Rask wrote: > > > > =20 > > > > > > > >>I've made a few notes about the configuration interface > > > >> > > > >>Login and creation of servers seems to work. > > > >> > > > >>The problems are: > > > >>1. Servers are not written to disk and no warning is displayed to w= arn > > > >>of problems. I suggest a is_writeable() check on the inc/servers di= r > > > >>when starting the admin interface. That could give a warning to fix= this > > > >>problem before spending time on entering information about servers. > > > >>The permissions on inc/servers were like this on a fresh install > > > >>drwxr-xr-x 2 apache root 4096 Sep 14 05:44 servers > > > >> > > > >> > > > >>I was a little confused about clicking "ok" several times. Maybe a = there > > > >>should be a notice saying that ok must be clicked several times to > > > >>update and confirm the changes. > > > >> =20 > > > >> > > > Yeah. It will keep redisplaying until there are no more changes. I ne= ed=20 > > > to put a message there. > > >=20 > > > >>I cannot logout. > > > >> > > > >>I cannot used any of the menus. > > > >> =20 > > > >> > > > That's odd. Did you install into the default web location? > >=20 > > Yes. It's in /var/www/html/bobs > >=20 > > I've found that the problem is related to Opera. I just tested with > > Mozilla and it works flawlessly.=20 > >=20 > > I'm the kind of guy the put some pressure at people at my workplace to > > use Mozilla and/or Opera instead of IE. (same goes for any other MS > > program with serious security issues.) > >=20 > > Please don't use fancy features unless it's essential. I not happy abou= t > > including javascript at all but I found it to be needed for selecting > > lots of files quickly. If it should fail it is not critical but > > annoying. > >=20 > > I'll try to iron out this problem. I'm looking for a solution but if I > > don't find an acceptable one I think we should use an ordinary image > > link instead. > >=20 > > This should really work in any browser which supports javascript. > > Please test in both Mozilla and Opera if it's not too much trouble. > >=20 > > -Rene > >=20 > > >=20 > > > >>I'm still impressed at how cool this is compared to the stuff I hac= ked > > > >>together :) > > > >> > > > >> =20 > > > >> > > > Thanks! > > >=20 > > > >> =20 > > > >> > >=20 > >=20 > >=20 > >=20 > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Bobs-devel mailing list > > Bob...@li... > > https://lists.sourceforge.net/lists/listinfo/bobs-devel >=20 >=20 >=20 >=20 > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Bobs-devel mailing list > Bob...@li... > https://lists.sourceforge.net/lists/listinfo/bobs-devel |
|
From: Rene R. <re...@gr...> - 2002-09-15 05:06:46
|
This is what I've found on the "input type=3Dimage" issue. W3C standards specify that only x and y coordinates of the image clicked are sent when submitting. This holds true with Opera. But Mozilla also sends the name=3Dvalue value. I guess this is true for IE as well. I suppose Mozilla has implemented an IE feature and Opera has not. In any case I do not find this acceptable. There are a few options. Either we use regular links, or we use the name.x=3Dcoordinate values to determine if a button is pressed. Personally I find the link method easier and less error prone (with regards to how browser handle it) Your call. -Ren=E9 On Sun, 2002-09-15 at 06:39, Rene Rask wrote: > On Sat, 2002-09-14 at 19:20, Joe zacky wrote: > >=20 > >=20 > > Rene Rask wrote: > >=20 > > >Heh.. Sorry the server is created. The server login page just didn't > > >update to reflect it. > > > > > You mean the newly created server didn't show up in the server list=20 > > until you refreshed? >=20 > Yes but I might have been viewing a cached page. Disregard this for now. > If it turns out to be a problem we can work on it. >=20 > >=20 > > > > > >I'm going to put a password on the testserver so hitting login doesn't > > >takes us anywhere. > > >-Rene > > > > > >On Sat, 2002-09-14 at 05:55, Rene Rask wrote: > > > =20 > > > > > >>I've made a few notes about the configuration interface > > >> > > >>Login and creation of servers seems to work. > > >> > > >>The problems are: > > >>1. Servers are not written to disk and no warning is displayed to war= n > > >>of problems. I suggest a is_writeable() check on the inc/servers dir > > >>when starting the admin interface. That could give a warning to fix t= his > > >>problem before spending time on entering information about servers. > > >>The permissions on inc/servers were like this on a fresh install > > >>drwxr-xr-x 2 apache root 4096 Sep 14 05:44 servers > > >> > > >> > > >>I was a little confused about clicking "ok" several times. Maybe a th= ere > > >>should be a notice saying that ok must be clicked several times to > > >>update and confirm the changes. > > >> =20 > > >> > > Yeah. It will keep redisplaying until there are no more changes. I need= =20 > > to put a message there. > >=20 > > >>I cannot logout. > > >> > > >>I cannot used any of the menus. > > >> =20 > > >> > > That's odd. Did you install into the default web location? >=20 > Yes. It's in /var/www/html/bobs >=20 > I've found that the problem is related to Opera. I just tested with > Mozilla and it works flawlessly.=20 >=20 > I'm the kind of guy the put some pressure at people at my workplace to > use Mozilla and/or Opera instead of IE. (same goes for any other MS > program with serious security issues.) >=20 > Please don't use fancy features unless it's essential. I not happy about > including javascript at all but I found it to be needed for selecting > lots of files quickly. If it should fail it is not critical but > annoying. >=20 > I'll try to iron out this problem. I'm looking for a solution but if I > don't find an acceptable one I think we should use an ordinary image > link instead. >=20 > This should really work in any browser which supports javascript. > Please test in both Mozilla and Opera if it's not too much trouble. >=20 > -Rene >=20 > >=20 > > >>I'm still impressed at how cool this is compared to the stuff I hacke= d > > >>together :) > > >> > > >> =20 > > >> > > Thanks! > >=20 > > >> =20 > > >> >=20 >=20 >=20 >=20 > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Bobs-devel mailing list > Bob...@li... > https://lists.sourceforge.net/lists/listinfo/bobs-devel |
|
From: Rene R. <re...@gr...> - 2002-09-15 04:37:37
|
On Sat, 2002-09-14 at 19:20, Joe zacky wrote: > > > Rene Rask wrote: > > >Heh.. Sorry the server is created. The server login page just didn't > >update to reflect it. > > > You mean the newly created server didn't show up in the server list > until you refreshed? Yes but I might have been viewing a cached page. Disregard this for now. If it turns out to be a problem we can work on it. > > > > >I'm going to put a password on the testserver so hitting login doesn't > >takes us anywhere. > >-Rene > > > >On Sat, 2002-09-14 at 05:55, Rene Rask wrote: > > > > > >>I've made a few notes about the configuration interface > >> > >>Login and creation of servers seems to work. > >> > >>The problems are: > >>1. Servers are not written to disk and no warning is displayed to warn > >>of problems. I suggest a is_writeable() check on the inc/servers dir > >>when starting the admin interface. That could give a warning to fix this > >>problem before spending time on entering information about servers. > >>The permissions on inc/servers were like this on a fresh install > >>drwxr-xr-x 2 apache root 4096 Sep 14 05:44 servers > >> > >> > >>I was a little confused about clicking "ok" several times. Maybe a there > >>should be a notice saying that ok must be clicked several times to > >>update and confirm the changes. > >> > >> > Yeah. It will keep redisplaying until there are no more changes. I need > to put a message there. > > >>I cannot logout. > >> > >>I cannot used any of the menus. > >> > >> > That's odd. Did you install into the default web location? Yes. It's in /var/www/html/bobs I've found that the problem is related to Opera. I just tested with Mozilla and it works flawlessly. I'm the kind of guy the put some pressure at people at my workplace to use Mozilla and/or Opera instead of IE. (same goes for any other MS program with serious security issues.) Please don't use fancy features unless it's essential. I not happy about including javascript at all but I found it to be needed for selecting lots of files quickly. If it should fail it is not critical but annoying. I'll try to iron out this problem. I'm looking for a solution but if I don't find an acceptable one I think we should use an ordinary image link instead. This should really work in any browser which supports javascript. Please test in both Mozilla and Opera if it's not too much trouble. -Rene > > >>I'm still impressed at how cool this is compared to the stuff I hacked > >>together :) > >> > >> > >> > Thanks! > > >> > >> |
|
From: Joe z. <jz...@at...> - 2002-09-14 17:20:38
|
Rene Rask wrote: >Heh.. Sorry the server is created. The server login page just didn't >update to reflect it. > You mean the newly created server didn't show up in the server list until you refreshed? > >I'm going to put a password on the testserver so hitting login doesn't >takes us anywhere. >-Rene > >On Sat, 2002-09-14 at 05:55, Rene Rask wrote: > > >>I've made a few notes about the configuration interface >> >>Login and creation of servers seems to work. >> >>The problems are: >>1. Servers are not written to disk and no warning is displayed to warn >>of problems. I suggest a is_writeable() check on the inc/servers dir >>when starting the admin interface. That could give a warning to fix this >>problem before spending time on entering information about servers. >>The permissions on inc/servers were like this on a fresh install >>drwxr-xr-x 2 apache root 4096 Sep 14 05:44 servers >> >> >>I was a little confused about clicking "ok" several times. Maybe a there >>should be a notice saying that ok must be clicked several times to >>update and confirm the changes. >> >> Yeah. It will keep redisplaying until there are no more changes. I need to put a message there. >>I cannot logout. >> >>I cannot used any of the menus. >> >> That's odd. Did you install into the default web location? >>I'm still impressed at how cool this is compared to the stuff I hacked >>together :) >> >> >> Thanks! >> >> |
|
From: Joe z. <jz...@at...> - 2002-09-14 17:15:45
|
Rene Rask wrote: >I've commit some changes which make better use of classes. >They should work. At least they do for me. >I've not yet had the time to figure out how to change the Makefile. >I manually added class.rfasttemplate.php and other new files to >Makefile.am, but I did not commit those changes. I'm not sure that would >be a good idea. So "make install" is partly broken. > > I'll fixup the Makefile. >I have also removed todo.php and added a new help.html to replace it. >Please check it out a feel free to change anything that you think is >wrong, misleading, missing or whatever. > >What does the doc/list.php file do? > > > list.php is the documentation and working example of using class_list.php. I didn't know what to do with it, so I put it in the doc directory. Put it and class_list.php in the same directory, or change the "include path", and try it out. >new dirs list: >inc/templates > >new files list: >inc/class_rfasttemplate.php >inc/templates/servercheck.sh >inc/templates/restore_files.sh >winc/help.html > >remove files list: >winc/todo.php > > > > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >Bobs-devel mailing list >Bob...@li... >https://lists.sourceforge.net/lists/listinfo/bobs-devel > > > |
|
From: Rene R. <re...@gr...> - 2002-09-14 14:24:52
|
I've commit some changes which make better use of classes. They should work. At least they do for me. I've not yet had the time to figure out how to change the Makefile. I manually added class.rfasttemplate.php and other new files to Makefile.am, but I did not commit those changes. I'm not sure that would be a good idea. So "make install" is partly broken. I have also removed todo.php and added a new help.html to replace it. Please check it out a feel free to change anything that you think is wrong, misleading, missing or whatever. What does the doc/list.php file do? new dirs list: inc/templates new files list: inc/class_rfasttemplate.php inc/templates/servercheck.sh inc/templates/restore_files.sh winc/help.html remove files list: winc/todo.php |
|
From: Rene R. <re...@gr...> - 2002-09-14 03:57:06
|
Heh.. Sorry the server is created. The server login page just didn't update to reflect it. I'm going to put a password on the testserver so hitting login doesn't takes us anywhere. -Rene On Sat, 2002-09-14 at 05:55, Rene Rask wrote: > I've made a few notes about the configuration interface > > Login and creation of servers seems to work. > > The problems are: > 1. Servers are not written to disk and no warning is displayed to warn > of problems. I suggest a is_writeable() check on the inc/servers dir > when starting the admin interface. That could give a warning to fix this > problem before spending time on entering information about servers. > The permissions on inc/servers were like this on a fresh install > drwxr-xr-x 2 apache root 4096 Sep 14 05:44 servers > > > I was a little confused about clicking "ok" several times. Maybe a there > should be a notice saying that ok must be clicked several times to > update and confirm the changes. > > I cannot logout. > > I cannot used any of the menus. > > I'm still impressed at how cool this is compared to the stuff I hacked > together :) > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Bobs-devel mailing list > Bob...@li... > https://lists.sourceforge.net/lists/listinfo/bobs-devel |
|
From: Rene R. <re...@gr...> - 2002-09-14 03:53:30
|
I've made a few notes about the configuration interface Login and creation of servers seems to work. The problems are: 1. Servers are not written to disk and no warning is displayed to warn of problems. I suggest a is_writeable() check on the inc/servers dir when starting the admin interface. That could give a warning to fix this problem before spending time on entering information about servers. The permissions on inc/servers were like this on a fresh install drwxr-xr-x 2 apache root 4096 Sep 14 05:44 servers I was a little confused about clicking "ok" several times. Maybe a there should be a notice saying that ok must be clicked several times to update and confirm the changes. I cannot logout. I cannot used any of the menus. I'm still impressed at how cool this is compared to the stuff I hacked together :) |
|
From: Rene R. <re...@gr...> - 2002-09-14 03:36:22
|
Nice. I'm just about ready to check in updated classes. The code is getting less messy all the time ;-) Did you have any problems with the lates db stuff. Restoring files and such? I believe the only things actually not working are the search part and link files. -Ren=E9 On Sat, 2002-09-14 at 05:11, Joe zacky wrote: > I wasn't planning to use a dba/db2/db3 real type of database. Mainly=20 > because it's convenient to be able to read and edit text files. I'm=20 > thinking of /etc/group for example. But if you would like BOBS database=20 > handling to be consistent, just tell me what you'd like me to use. I=20 > haven't got very far on the database functions yet. >=20 > I finished a nice class, similar to class_list, it's called=20 > class_assign. It's 2 list boxes that you can move items back and forth.=20 > I'll use that for the user/group/server access screens. It's not checked=20 > in yet. >=20 > Joe >=20 > Rene Rask wrote: >=20 > >Please go ahead with what you are working on. > >The database you mention, does that involve dba style databases? > > > >The list below is just what I plan to do before I think a new release is > >in order. > >-Rene > > > >On Sat, 2002-09-14 at 03:23, Joe zacky wrote: > > =20 > > > >>I've been working on user/group/server access. I'm working on the=20 > >>database part of it now, 3 new files. I'm not sure how I should do it= .=20 > >>I've started by creating database classes for these files and I was=20 > >>planning to use plain text files. > >> > >>Would you like me to focus on the 5 items you list below, and delay the= =20 > >>access enhancements until later? > >> > >>Joe > >> > >>Rene Rask wrote: > >> > >> =20 > >> > >>>I've been reworking the classes to use the db_classes. This object stu= ff > >>>is starting to make some sense. Its not beautiful work, but it does th= e > >>>job ;) > >>> > >>>I'd like a small list of things we would like in the next release. > >>>I've got these items. > >>> > >>>1. Finalize the class rearranging. > >>>2. Make search work again. (a good way of testing the db class) > >>>3. Make the help page actually display a help page. > >>>4. Make all scripts use the template class. > >>> > >>>And possibly > >>>5. Make "link files" work. > >>> > >>>The "link files" stuff is rather tricky since it involves characters > >>>that are not easily type. Check the current list to see what I mean. > >>>I'd like a list of those which can be click on/off on a per share basi= s. > >>>Ideally it should be possible to browse the trees and select files tha= t > >>>way, but since there are several rules (rsync rules) to abide by, is > >>>fairly tricky. Check the rsync man page for information about that if > >>>you want to know more. > >>> > >>> > >>>Ok. I'll get back to ironing out the issues remaining with the classes > >>>and commit them when I've tested it. > >>> > >>>-Rene > >>> > >>> > >>> > >>>------------------------------------------------------- > >>>In remembrance > >>>www.osdn.com/911/ > >>>_______________________________________________ > >>>Bobs-devel mailing list > >>>Bob...@li... > >>>https://lists.sourceforge.net/lists/listinfo/bobs-devel > >>> > >>>=20 > >>> > >>> =20 > >>> > >> > >> > >>------------------------------------------------------- > >>This sf.net email is sponsored by:ThinkGeek > >>Welcome to geek heaven. > >>http://thinkgeek.com/sf > >>_______________________________________________ > >>Bobs-devel mailing list > >>Bob...@li... > >>https://lists.sourceforge.net/lists/listinfo/bobs-devel > >> =20 > >> > > > > > > > > > >------------------------------------------------------- > >This sf.net email is sponsored by:ThinkGeek > >Welcome to geek heaven. > >http://thinkgeek.com/sf > >_______________________________________________ > >Bobs-devel mailing list > >Bob...@li... > >https://lists.sourceforge.net/lists/listinfo/bobs-devel > > > > =20 > > >=20 |
|
From: Joe z. <jz...@at...> - 2002-09-14 03:11:14
|
I wasn't planning to use a dba/db2/db3 real type of database. Mainly because it's convenient to be able to read and edit text files. I'm thinking of /etc/group for example. But if you would like BOBS database handling to be consistent, just tell me what you'd like me to use. I haven't got very far on the database functions yet. I finished a nice class, similar to class_list, it's called class_assign. It's 2 list boxes that you can move items back and forth. I'll use that for the user/group/server access screens. It's not checked in yet. Joe Rene Rask wrote: >Please go ahead with what you are working on. >The database you mention, does that involve dba style databases? > >The list below is just what I plan to do before I think a new release is >in order. >-Rene > >On Sat, 2002-09-14 at 03:23, Joe zacky wrote: > > >>I've been working on user/group/server access. I'm working on the >>database part of it now, 3 new files. I'm not sure how I should do it. >>I've started by creating database classes for these files and I was >>planning to use plain text files. >> >>Would you like me to focus on the 5 items you list below, and delay the >>access enhancements until later? >> >>Joe >> >>Rene Rask wrote: >> >> >> >>>I've been reworking the classes to use the db_classes. This object stuff >>>is starting to make some sense. Its not beautiful work, but it does the >>>job ;) >>> >>>I'd like a small list of things we would like in the next release. >>>I've got these items. >>> >>>1. Finalize the class rearranging. >>>2. Make search work again. (a good way of testing the db class) >>>3. Make the help page actually display a help page. >>>4. Make all scripts use the template class. >>> >>>And possibly >>>5. Make "link files" work. >>> >>>The "link files" stuff is rather tricky since it involves characters >>>that are not easily type. Check the current list to see what I mean. >>>I'd like a list of those which can be click on/off on a per share basis. >>>Ideally it should be possible to browse the trees and select files that >>>way, but since there are several rules (rsync rules) to abide by, is >>>fairly tricky. Check the rsync man page for information about that if >>>you want to know more. >>> >>> >>>Ok. I'll get back to ironing out the issues remaining with the classes >>>and commit them when I've tested it. >>> >>>-Rene >>> >>> >>> >>>------------------------------------------------------- >>>In remembrance >>>www.osdn.com/911/ >>>_______________________________________________ >>>Bobs-devel mailing list >>>Bob...@li... >>>https://lists.sourceforge.net/lists/listinfo/bobs-devel >>> >>> >>> >>> >>> >> >> >>------------------------------------------------------- >>This sf.net email is sponsored by:ThinkGeek >>Welcome to geek heaven. >>http://thinkgeek.com/sf >>_______________________________________________ >>Bobs-devel mailing list >>Bob...@li... >>https://lists.sourceforge.net/lists/listinfo/bobs-devel >> >> > > > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >Bobs-devel mailing list >Bob...@li... >https://lists.sourceforge.net/lists/listinfo/bobs-devel > > > |
|
From: Rene R. <re...@gr...> - 2002-09-14 02:51:59
|
Please go ahead with what you are working on. The database you mention, does that involve dba style databases? The list below is just what I plan to do before I think a new release is in order. -Rene On Sat, 2002-09-14 at 03:23, Joe zacky wrote: > I've been working on user/group/server access. I'm working on the > database part of it now, 3 new files. I'm not sure how I should do it. > I've started by creating database classes for these files and I was > planning to use plain text files. > > Would you like me to focus on the 5 items you list below, and delay the > access enhancements until later? > > Joe > > Rene Rask wrote: > > >I've been reworking the classes to use the db_classes. This object stuff > >is starting to make some sense. Its not beautiful work, but it does the > >job ;) > > > >I'd like a small list of things we would like in the next release. > >I've got these items. > > > >1. Finalize the class rearranging. > >2. Make search work again. (a good way of testing the db class) > >3. Make the help page actually display a help page. > >4. Make all scripts use the template class. > > > >And possibly > >5. Make "link files" work. > > > >The "link files" stuff is rather tricky since it involves characters > >that are not easily type. Check the current list to see what I mean. > >I'd like a list of those which can be click on/off on a per share basis. > >Ideally it should be possible to browse the trees and select files that > >way, but since there are several rules (rsync rules) to abide by, is > >fairly tricky. Check the rsync man page for information about that if > >you want to know more. > > > > > >Ok. I'll get back to ironing out the issues remaining with the classes > >and commit them when I've tested it. > > > >-Rene > > > > > > > >------------------------------------------------------- > >In remembrance > >www.osdn.com/911/ > >_______________________________________________ > >Bobs-devel mailing list > >Bob...@li... > >https://lists.sourceforge.net/lists/listinfo/bobs-devel > > > > > > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Bobs-devel mailing list > Bob...@li... > https://lists.sourceforge.net/lists/listinfo/bobs-devel |
|
From: Joe z. <jz...@at...> - 2002-09-14 01:23:27
|
I've been working on user/group/server access. I'm working on the database part of it now, 3 new files. I'm not sure how I should do it. I've started by creating database classes for these files and I was planning to use plain text files. Would you like me to focus on the 5 items you list below, and delay the access enhancements until later? Joe Rene Rask wrote: >I've been reworking the classes to use the db_classes. This object stuff >is starting to make some sense. Its not beautiful work, but it does the >job ;) > >I'd like a small list of things we would like in the next release. >I've got these items. > >1. Finalize the class rearranging. >2. Make search work again. (a good way of testing the db class) >3. Make the help page actually display a help page. >4. Make all scripts use the template class. > >And possibly >5. Make "link files" work. > >The "link files" stuff is rather tricky since it involves characters >that are not easily type. Check the current list to see what I mean. >I'd like a list of those which can be click on/off on a per share basis. >Ideally it should be possible to browse the trees and select files that >way, but since there are several rules (rsync rules) to abide by, is >fairly tricky. Check the rsync man page for information about that if >you want to know more. > > >Ok. I'll get back to ironing out the issues remaining with the classes >and commit them when I've tested it. > >-Rene > > > >------------------------------------------------------- >In remembrance >www.osdn.com/911/ >_______________________________________________ >Bobs-devel mailing list >Bob...@li... >https://lists.sourceforge.net/lists/listinfo/bobs-devel > > > |
|
From: Rene R. <re...@gr...> - 2002-09-11 23:23:08
|
I've been reworking the classes to use the db_classes. This object stuff is starting to make some sense. Its not beautiful work, but it does the job ;) I'd like a small list of things we would like in the next release. I've got these items. 1. Finalize the class rearranging. 2. Make search work again. (a good way of testing the db class) 3. Make the help page actually display a help page. 4. Make all scripts use the template class. And possibly 5. Make "link files" work. The "link files" stuff is rather tricky since it involves characters that are not easily type. Check the current list to see what I mean. I'd like a list of those which can be click on/off on a per share basis. Ideally it should be possible to browse the trees and select files that way, but since there are several rules (rsync rules) to abide by, is fairly tricky. Check the rsync man page for information about that if you want to know more. Ok. I'll get back to ironing out the issues remaining with the classes and commit them when I've tested it. -Rene |
|
From: Rene R. <re...@gr...> - 2002-09-09 22:02:53
|
Ok. I've managed to get restore working again.=20 I'll check it again and commit it. This include a new class_db.php which I will modify the other classes to use. Some of what class_db does is currently being done by class_search which is misleading. -Ren=E9 |
|
From: Rene R. <re...@gr...> - 2002-09-08 23:04:39
|
I've committed rFastTemplate as the file class_rFastTemplate.php I also added a templates dir with a servercheck.sh file. -Rene On Sun, 2002-09-08 at 19:54, Joe zacky wrote: > > > Rene Rask wrote: > > >I'm going to use the class.rFastTemplate.php for the template scripts > >bobs executes. > >I suggest we use it for html as well. > > > >I'm making a dir called (boobsroot)/inc/templates/ > >I think all templates should go there > > > > > I'm printing the rFastTemplate manual, tutorial, and php class file. Let > me know when you put some of it in cvs. > > >I've halted my development of the more object oriented version of bobs > >based on my current lack of time and my pityful coding skill. > > > >I like your coding style. Really neat stuff you've made. > > > >-Rene > > > > > Thanks Rene, you've made my day! By halting development or saying your code looks good ;-) </humor> > > Joe > > > > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > _______________________________________________ > Bobs-devel mailing list > Bob...@li... > https://lists.sourceforge.net/lists/listinfo/bobs-devel |
|
From: Joe z. <jz...@at...> - 2002-09-08 17:54:22
|
Rene Rask wrote: >I'm going to use the class.rFastTemplate.php for the template scripts >bobs executes. >I suggest we use it for html as well. > >I'm making a dir called (boobsroot)/inc/templates/ >I think all templates should go there > > I'm printing the rFastTemplate manual, tutorial, and php class file. Let me know when you put some of it in cvs. >I've halted my development of the more object oriented version of bobs >based on my current lack of time and my pityful coding skill. > >I like your coding style. Really neat stuff you've made. > >-Rene > > Thanks Rene, you've made my day! Joe |
|
From: Rene R. <re...@gr...> - 2002-09-08 13:06:27
|
I'm going to use the class.rFastTemplate.php for the template scripts bobs executes. I suggest we use it for html as well. I'm making a dir called (boobsroot)/inc/templates/ I think all templates should go there I've halted my development of the more object oriented version of bobs based on my current lack of time and my pityful coding skill. I like your coding style. Really neat stuff you've made. -Rene On Sun, 2002-09-01 at 05:43, Joe zacky wrote: > 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. > |
|
From: Rene R. <re...@gr...> - 2002-09-07 20:37:43
|
Ok. I just added get_config() to class_server and fixed menu.php to use it. It should work now. I can do backups and view the files. The admin interface looks really nice. I did however have some problems. At some point I got stuck. None of the menus did anything and I couldn't log out. I'm not sure if you are aware of any problems. Another thing that would be nice is a warning that a config file couldn't be written to disk because of permission problems. -Rene On Sat, 2002-09-07 at 22:13, Joe zacky wrote: > I tested a bobs backup using an smb share and the backup worked, but I > couldn't view any of it through the user interface. > > Joe > > Rene Rask wrote: > > >I'm trying to get bobs working again but I seem to have some problems > >with the configurations. > >smb_share doesn't seem to be exported when I open the user interface. > >I'm looking into this. > >-Rene > > > > > >On Mon, 2002-09-02 at 14:37, Rene Rask wrote: > > > > > >>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. > >>> > >>> > >> > >> > >> > >>------------------------------------------------------- > >>This sf.net email is sponsored by: OSDN - Tired of that same old > >>cell phone? Get a new here for FREE! > >>https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > >>_______________________________________________ > >>Bobs-devel mailing list > >>Bob...@li... > >>https://lists.sourceforge.net/lists/listinfo/bobs-devel > >> > >> > > > > > > > > > >------------------------------------------------------- > >This sf.net email is sponsored by: OSDN - Tired of that same old > >cell phone? Get a new here for FREE! > >https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 > >_______________________________________________ > >Bobs-devel mailing list > >Bob...@li... > >https://lists.sourceforge.net/lists/listinfo/bobs-devel > > > > > > > |
|
From: Joe z. <jz...@at...> - 2002-09-07 20:13:43
|
I tested a bobs backup using an smb share and the backup worked, but I couldn't view any of it through the user interface. Joe Rene Rask wrote: >I'm trying to get bobs working again but I seem to have some problems >with the configurations. >smb_share doesn't seem to be exported when I open the user interface. >I'm looking into this. >-Rene > > >On Mon, 2002-09-02 at 14:37, Rene Rask wrote: > > >>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. >>> >>> >> >> >> >>------------------------------------------------------- >>This sf.net email is sponsored by: OSDN - Tired of that same old >>cell phone? Get a new here for FREE! >>https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 >>_______________________________________________ >>Bobs-devel mailing list >>Bob...@li... >>https://lists.sourceforge.net/lists/listinfo/bobs-devel >> >> > > > > >------------------------------------------------------- >This sf.net email is sponsored by: OSDN - Tired of that same old >cell phone? Get a new here for FREE! >https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 >_______________________________________________ >Bobs-devel mailing list >Bob...@li... >https://lists.sourceforge.net/lists/listinfo/bobs-devel > > > |