From: TAO R. <ron...@ho...> - 2001-07-12 04:03:27
|
alex, it's not a big deal.... just give me a minute..... ronald >The only standard that I would like is that it be extremely detailed. > >Ronald, are you happy to write the make/r2 tutorial for windows? > >best, > >_alex > > > Alex, > > > > Another suggestion included having someone do a write up on some of the > > stuff we've discussed here including a win2K install. Do you have any > > standards for doing so? I could lend a hand, often times useful info gets > > lost in a list like this. > > > > Alby _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. |
From: Jimmy H. <ji...@ha...> - 2001-07-12 06:01:34
|
Please let us know when the 'general questions' list have been created, coz surely I would be one of the 'active' member in it <g> By the way, what is the proper way to create 'another' page in htdocs? Say I want to create /path/to/binarycloud/user/htdocs/news.php it did not get included in the build. I noticed the Makefile only specifically include the 4 files in htdocs, and all of ./resources. Is this just a shortcut to 'get it out' or is it meant to only include those 4 files? If so how can I have other pages or subdirectories in the build? |
From: Alex B. <en...@tu...> - 2001-07-12 18:18:41
|
> Please let us know when the 'general questions' list have been created, > coz surely I would be one of the 'active' member in it <g> > > By the way, what is the proper way to create 'another' page in htdocs? cd binarycloud/user/htdocs/ cp index.php foo.php edit foo.php. > Say I want to create /path/to/binarycloud/user/htdocs/news.php > it did not get included in the build. I noticed the Makefile only > specifically include the 4 files in htdocs, and all of ./resources. You'll need to add your page to htdocs. That will change in future. _a > Is this just a shortcut to 'get it out' or is it meant to only include > those 4 files? If so how can I have other pages or subdirectories in the > build? > > > > _______________________________________________ > binarycloud-dev mailing list > bin...@li... > http://lists.sourceforge.net/lists/listinfo/binarycloud-dev > -- alex black, ceo en...@tu... the turing studio, inc. http://www.turingstudio.com vox+510.666.0074 fax+510.666.0093 |
From: Jimmy H. <ji...@ha...> - 2001-07-12 06:09:49
|
Further to my previous email, I have made this change on the Makefile inside /path/to/binarycloud/user/htdocs HTDOCFILES=`find ./ -name '*' | grep -v './resources' | grep -v './' ` it will include the rest of the files as well. Not sure if that's what was intended but at the moment I need my site to work. I'd also like to know if anyone ever managed to get a database connection working with Metabase. I also noticed it is not currently possible to import() it since it is outside the binarycloud/base or /user path. I think QueryManager needs to be finished before anything else.... oh well auth and perm is also important but QM should be #1 as I think auth and perm would also run on top of QM |
From: Alex B. <en...@tu...> - 2001-07-12 18:20:37
|
> Further to my previous email, I have made this change on the Makefile > inside /path/to/binarycloud/user/htdocs > > HTDOCFILES=`find ./ -name '*' | grep -v './resources' | grep -v './' ` > > it will include the rest of the files as well. Not sure if that's what > was intended but at the moment I need my site to work. > > I'd also like to know if anyone ever managed to get a database > connection working with Metabase. I also noticed it is not currently > possible to import() it since it is outside the binarycloud/base or > /user path. ext/ isn't part of the make system yet, it will be soon. the best place to look is binarycloud r1 (binarycloud/user/db/objects/bc_global_db.inc) for the metabase config array. > I think QueryManager needs to be finished before anything else.... oh > well auth and perm is also important but QM should be #1 as I think auth > and perm would also run on top of QM Yep, a lot of that stuff is coming :) _a -- alex black, ceo en...@tu... the turing studio, inc. http://www.turingstudio.com vox+510.666.0074 fax+510.666.0093 |
From: Jimmy H. <ji...@ha...> - 2001-07-12 06:18:10
|
Hi, I can start to see a pattern in having a page up: 1. Create the page at /user/htdocs/page.php (this will load prepend.php, and the Init class) 2. Create the layout at /user/tmpl/html/layout/page.php (this will have the layout template including HTML) 3. Create the module at /user/mod/page/page.php (this will be the module class with constructor and Output()) 4. Create the module specific template at /user/mod/page/html/page.php (this will contain the html stuff) Am I doing it right so far? |
From: Alex B. <en...@tu...> - 2001-07-12 18:20:37
|
yes! :) > Hi, > > I can start to see a pattern in having a page up: > > 1. Create the page at /user/htdocs/page.php (this will load prepend.php, > and the Init class) > > 2. Create the layout at /user/tmpl/html/layout/page.php (this will have > the layout template including HTML) > > 3. Create the module at /user/mod/page/page.php (this will be the module > class with constructor and Output()) > > 4. Create the module specific template at /user/mod/page/html/page.php > (this will contain the html stuff) > > Am I doing it right so far? > > > > _______________________________________________ > binarycloud-dev mailing list > bin...@li... > http://lists.sourceforge.net/lists/listinfo/binarycloud-dev > -- alex black, ceo en...@tu... the turing studio, inc. http://www.turingstudio.com vox+510.666.0074 fax+510.666.0093 |
From: Alby L. <al...@th...> - 2001-07-12 21:24:37
|
Oops - I am lost. In my BC2 tree, I've got binarycloud/user/htdocs/, but this isn't how I got the sample to work. Wouldn't the page.php file be in the build dir? Or is this after you do a make? A side note: As I was perusing the folders that are mentioned further down, I tried to open /user/htdocs/index.php with an error: >>> Warning: Failed opening './prepend.php' for inclusion (include_path='') in c:\htdocs\cygwin\usr\r2\binarycloud\user\htdocs\index.php on line 11 Fatal error: Call to undefined function: import() in c:\htdocs\cygwin\usr\r2\binarycloud\user\htdocs\index.php on line 13 <<< I imagine this is because the file is not in the right directory yet...right? It will or another version will move to the /build/_sitename_/htdocs folder after the move...? Sorry I am a bit confused.... Alby *****Quote***** > yes! > > 1. Create the page at /user/htdocs/page.php (this will load prepend.php, > > and the Init class) > > > > 2. Create the layout at /user/tmpl/html/layout/page.php (this will have > > the layout template including HTML) > > > > 3. Create the module at /user/mod/page/page.php (this will be the module > > class with constructor and Output()) > > > > 4. Create the module specific template at /user/mod/page/html/page.php > > (this will contain the html stuff) *****/Quote***** |
From: Alex B. <en...@tu...> - 2001-07-12 21:42:48
|
> In my BC2 tree, I've got binarycloud/user/htdocs/, but this isn't how I got > the sample to work. > Wouldn't the page.php file be in the build dir? Or is this after you do a > make? Page.php is the page class, that's in binarycloud/build/{lang}/binarycloud/core/Page.php after the make. pages in user/htdocs/ go into binarycluod/build/{lang}/htdocs/ > A side note: As I was perusing the folders that are mentioned further down, > I tried to open /user/htdocs/index.php with an error: > >>>> > Warning: Failed opening './prepend.php' for inclusion (include_path='') in > c:\htdocs\cygwin\usr\r2\binarycloud\user\htdocs\index.php on line 11 yes, that will never work. you can't do anything useful out of the non-make (i.e. source) tree. The source tree isn't functional at all, imports won't work, etc. Everything now requires that you do a make. > Fatal error: Call to undefined function: import() in > c:\htdocs\cygwin\usr\r2\binarycloud\user\htdocs\index.php on line 13 > <<< > > I imagine this is because the file is not in the right directory > yet...right? It will or another version will move to the > /build/_sitename_/htdocs folder after the move...? Sorry I am a bit > confused.... You need to point apache at binarycloud/build/{lang}/htdocs/index.php, _not_ binarucloud/user/htdocs/index.php :) _a > > *****Quote***** >> yes! > >>> 1. Create the page at /user/htdocs/page.php (this will load prepend.php, >>> and the Init class) >>> >>> 2. Create the layout at /user/tmpl/html/layout/page.php (this will have >>> the layout template including HTML) >>> >>> 3. Create the module at /user/mod/page/page.php (this will be the module >>> class with constructor and Output()) >>> >>> 4. Create the module specific template at /user/mod/page/html/page.php >>> (this will contain the html stuff) > *****/Quote***** > > > > _______________________________________________ > binarycloud-dev mailing list > bin...@li... > http://lists.sourceforge.net/lists/listinfo/binarycloud-dev > -- alex black, ceo en...@tu... the turing studio, inc. http://www.turingstudio.com vox+510.666.0074 fax+510.666.0093 |