You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
(57) |
May
(287) |
Jun
(166) |
Jul
(286) |
Aug
(273) |
Sep
(254) |
Oct
(144) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: alex b. <en...@tu...> - 2001-06-08 06:47:02
|
hi all, more thinking about how to deal with multiple languages in the source tree... I'd like to see what people think of some of these ideas: -if you have a single 'master' source file, which has language keys in it (like: $foo="<lang>file.id</lang>"; those are just made into standard files within make: binarycloud/ make/ binarycloud/ user/en/foo.php user/fr/foo.php from the same original source file: user/foo.php -if you need to actually have variant _logic_ for different languages (a rarer case, but nonetheless important) - we have decided on a naming scheme like this: FileName.php FileName.fr.php (for a french variant of the source file, which will replace FileName.php in the fr/ tree in the make directory) -for resources (gifs,js,and css that browser include), we have decided on a fairly simple solution to the problem of multiple asset bases (different CSS for Japanese than English sites, different gifs, etc: all "browser referenceable" assets, including CSS, javascript, and gifs must be placed in user/htdocs/resources/ when you write templates in the source tree, you'll use <img src="/resources/images/foo/foo.gif">. That will be taken by the makefile, and ripped into each language specific source tree as: <img src="/resources/en/images/foo/foo.gif"> or <img src="/resources/fr/images/foo/foo.gif"> etc. the idea here is to avoid this: <img src="/resources/<?=BC_LANG?>/images/foo/foo.gif"> because that's messy and inconvenient. the only ramification is that you have to be willing to store your stuff under user/htdocs/resources (or you have to change the makefiles and run variants) the contents under resources would function much the same way as the rest of the stuff in the source tree: resources/images/foo.gif would just be copied by the makefile into each resources/LANG/images/foo.gif but if there was: resources/images/foo.gif and resources/images/foo.fr.gif then we would copy foo.gif to all the languages except fr, and when we come across fr, the foo.fr.gif _replaces_ foo.gif. --------------- I expect most of the source variants actually to be images, because our language (string) keying system will be quite flexible, and you should rarely need to write code that is actually language specific at the logical level. _alex |
From: <sd...@ya...> - 2001-06-07 11:26:05
|
--- "W.D.Sumilang" <wa...@on...> a écrit : > > http://www.rusland.org/ > Umm... your link doesn't work > sorry http://www.ruslan.org ___________________________________________________________ Do You Yahoo!? -- Pour faire vos courses sur le Net, Yahoo! Shopping : http://fr.shopping.yahoo.com |
From: TAO R. <ron...@ho...> - 2001-06-07 04:54:32
|
hi alex, I found that if r2 is installed in a domain user a/c, like http://www.abc.com/~username/ and abc.com is a virtual host, the $HTTP_SERVER_VARS[DOCUMENT_ROOT] will got a problem. it will not pointed to the "username" web directory, but the "abc.com" we directory. I am not you realized this or not, or you have a brand new routine for the next release....??? I have alredy made a patch for this, I have tested with a linux box without any problem, and I will test it in a Win32 Apache. If no problem exist, and you will not change your mind in binarycloud.php, I will commit it to the CVS server later this day and notice in the list. ronald Ronald TAO ron...@ho... _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. |
From: W.D.Sumilang <wa...@on...> - 2001-06-06 20:45:51
|
> http://www.rusland.org/ Umm... your link doesn't work __________________________________________________ FREE voicemail, email, and fax...all in one place. Sign Up Now! http://www.onebox.com |
From: Alex B. <en...@tu...> - 2001-06-06 19:56:06
|
> This library allows you to create XML pages with ease. > You basically define XSLT transformation style sheet > (in which you can use PHP), > and writes your pages which conforms to this new XML > you`ve invented. I'm assuming the transformer itself is written in php? If so, it would probably be much too slow for our needs, but I will definitely have a look as embedded PHP in XSLT is something everyone in the php world badly needs (whether they know it or not yet :) -alex -- alex black, ceo en...@tu... the turing studio, inc. http://www.turingstudio.com vox+510.666.0074 fax+510.666.0093 |
From: <sd...@ya...> - 2001-06-06 19:36:51
|
it seems that you 've asked for something like that xsltlib. http://www.rusland.org XSLTlib v.1.0 ------------- License: GNU Library License Author: Ruslan <co...@ru...> Requirements: Apache, PHP 4 latest version with XSLT module compiled in About ----- This library allows you to create XML pages with ease. You basically define XSLT transformation style sheet (in which you can use PHP), and writes your pages which conforms to this new XML you`ve invented. ___________________________________________________________ Do You Yahoo!? -- Pour faire vos courses sur le Net, Yahoo! Shopping : http://fr.shopping.yahoo.com |
From: W.D.Sumilang <wa...@on...> - 2001-06-03 21:20:39
|
Ronald, > i'm on win95... > what error do you get? > if you modify these two lines in BC_PATH_MOD.XSLT_example.php: > > $xml=BC_PATH_MOD.'xslt_example/form.xml'; > $xsl=BC_PATH_MOD.'xslt_example/form.xsl'; > >to: $xml='form.xml'; > $xsl='form.xsl'; >i get: cannot open file 'C:/Program Files/Apache Group/Apache/form.xsl' > my error is not the problem any path....????? if you have any problem with any path in Win32, please tell me, I will correct is as soon as possible.... >by stripping all the extra path info i discovered that either the class >XMSLTransformer.php or sablot is taking the above $xml,$xsl vars and >treating them like relative uri's thus the error: unsupported URI scheme >'c'. > my error is like this, but I got unsupported URI scheme 'e', and alex said it may be the problem from sablot, but I am already using the latest version.....poor..... ronald ====================== hmmm... mine _is_ the path problem as i explained: So, i put together a simple example that doesn't use the XSLTranformer.php class but a different one... and it works, but this class doesn't support extra $params args! so i'm attaching the zip file so you can run this example and see what you get... i tried this class with alex's form's example but got this" error: line 5: 'arg:/form_inputs.xsl' not found back to the drawing board, cheers -WD __________________________________________________ FREE voicemail, email, and fax...all in one place. Sign Up Now! http://www.onebox.com |
From: Peter B. <re...@f2...> - 2001-06-03 13:02:14
|
At 07:21 PM 6/3/01 +0800, you wrote: >my error is not the problem any path....????? >if you have any problem with any path in Win32, please tell me, >I will correct is as soon as possible.... This may be no use whatsoever, but to get decent error messages out of the sablotron parser, add the following function to your code: function xsl_error($parser, $code, $level, $errors) { echo "$parser [$code]: $level, <p>"; var_dump($errors); } And then where you have $processor = xslt_create(); Add the following line: xslt_set_error_handler($processor, "xsl_error"); or if already present then modify it to that form, where $processor is the name of the variable with the xslt_create() handle HTH! Peter. -oOo- Maple Design - web design, hosting, domain names http://www.mapledesign.co.uk -oOo- |
From: Andris S. <li...@ap...> - 2001-06-03 11:43:23
|
> a note on user management, I expect to release a fairly extensive set of > code in the r2 distro for user management, with groups and roles. > _alex Well, I'm currently trying to build right that - my idea was that I could take the Knowledgebase code as a base (the code responsible to create categories can be used to create user groups as well) and then to modify the Knowledgebase question manager to work with users - it only means rewriting a lot of database queries and adding some new tables to database. If you haven't created the code yet I will be able to release it after a week so you won't have to start from a scratch... Andris Spruds |
From: TAO R. <ron...@ho...> - 2001-06-03 11:21:41
|
>Ronald, > i'm on win95... > what error do you get? > if you modify these two lines in BC_PATH_MOD.XSLT_example.php: > > $xml=BC_PATH_MOD.'xslt_example/form.xml'; > $xsl=BC_PATH_MOD.'xslt_example/form.xsl'; > >to: $xml='form.xml'; > $xsl='form.xsl'; >i get: cannot open file 'C:/Program Files/Apache Group/Apache/form.xsl' > my error is not the problem any path....????? if you have any problem with any path in Win32, please tell me, I will correct is as soon as possible.... >by stripping all the extra path info i discovered that either the class >XMSLTransformer.php or sablot is taking the above $xml,$xsl vars and >treating them like relative uri's thus the error: unsupported URI scheme >'c'. > my error is like this, but I got unsupported URI scheme 'e', and alex said it may be the problem from sablot, but I am already using the latest version.....poor..... ronald Ronald TAO ron...@ho... _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. |
From: W.D.Sumilang <wa...@on...> - 2001-06-03 09:24:54
|
>hmm... > >it sounds like the win version of sablot is missing some features? > >_alex > >but the offical website do not say something about win32 version >will lose some features......... Ronald, i'm on win95... what error do you get? if you modify these two lines in BC_PATH_MOD.XSLT_example.php: $xml=BC_PATH_MOD.'xslt_example/form.xml'; $xsl=BC_PATH_MOD.'xslt_example/form.xsl'; to: $xml='form.xml'; $xsl='form.xsl'; i get: cannot open file 'C:/Program Files/Apache Group/Apache/form.xsl' by stripping all the extra path info i discovered that either the class XMSLTransformer.php or sablot is taking the above $xml,$xsl vars and treating them like relative uri's thus the error: unsupported URI scheme 'c'. i believe the prepended path appears to be the SERVER ROOT path declared in my apache httpd.conf: ServerRoot "C:/Program Files/Apache Group/Apache" This is apparently no problemo on *nix. _not_ sure where to hack this ;( tho i'd like to fix it myself, sorry that's all the insight i can offer right now. Cheers. -WD __________________________________________________ FREE voicemail, email, and fax...all in one place. Sign Up Now! http://www.onebox.com |
From: Andreas A. <a.a...@th...> - 2001-06-02 12:32:07
|
Hi Peter, > Now I've got to figure out how to use CVS - I thought using WinCVS. The idea is that you check out a loacal copy you work on from the remote server. Then you work on the files and commit your changes to the server. By doing this CVS creates a new revision of the file you committed. So lets say you check out a file "info.txt" with the revision 1.1. Then edit it, commit it back. The new revision people get, when they check out is 1.2. The old revision is not lost, only the changes you made are applied when checking out a copy, and one can check out earlier revisions too (kinda "advanced undelete"). If two people simulatniously make changes to the same file-revision CVS merges the changes. Lets say you edit function_a in file.php and onther programmer edits function_b in the same file. Then both of you commit. CVS manages that and both changes are applied. You have to review the files that everything is correct (imagine both of you edit function_a and commit -- bad idea;-)). So you see, CVS can not replace the very important communication between developers ;-) Often there exist essential committing rules, e.g. in a file "commit" to prevent uncontrolled committing. So be careful with committing changes. Enough theory. To get a local copy (with wincvs) all you have to do for now is setting up some parameters and check out. Go to "Admin >> Prefs.." ----------------------- General-Tab: - CVSROOT: ":pserver:yo...@cv...:/home/scm/cvsroot" - Authentication: passwd file on server Globals-Tab: - "Supply control when adding files" -> checked - "prune empty dirs" -> checked - "use tpc compression : 3" - "autologout: 1min" - "Checkout files with unix lf" -> checked Proxy-Tab: set your proxy if you use one WinCvs-Tab: e.g. some settings, e.g. I use here Ultraedit as default viewer. OK now you have to set-up a location where the working copy (checked out copy) is stored. E.g. I store them on my linux box and have a vhost for every project directory. So - create a direcotry at will e.g. c:/projects/binarycloud. - go to "View >> Browser Location >> Change" - select c:/projects/binarycloud - press ok Now lets login and checkout: - "Admin >> Login" - enter pass - "Create >> Checkout module" - Enter module name you want to check out, in this case "r2" - Check the other settings (local folder, checkout options, e.g.). - press ok Now the checkout should work fine. After finished checking out, log out and you'll see the whole binarycloud distro in c:/projects/binarycloud/r2. Note: In the view window there is a checkmark on each folder. This denotes the file/foler is a cvs-file. Puh. That should do the trick. For further information the following doc by Per Cederqvist is the cvs-bible and strongly recommended: http://ftp.cvshome.org/cvs-1.11.1/cvs-1.11.1p1.pdf Other docs can also be found here: http://cvshome.org/docs/ Andreas -- www.thyrell.de |
From: Peter B. <re...@f2...> - 2001-06-02 11:44:45
|
At 09:06 AM 6/2/01 +0100, you wrote: >Can someone please send me the tcl81.dll needed, as >http://www.scriptics.com seems to be down, and has been so for over 24 >hours now :-( Thanks to Andreas, I now have a copy. No-one else need send me one :-) Cheers! Peter. --oOo-- Narrow Gauge on the web - photos, directory and forums! http://www.narrow-gauge.co.uk --oOo-- Peter's web page - Scottish narrow gauge in 009 http://members.aol.com/reywob/ --oOo-- |
From: Peter B. <re...@f2...> - 2001-06-02 11:31:54
|
At 08:13 AM 5/21/01 -0700, you wrote: > > otoh, is the source for bc_edit available somewhere? > >I will do this as soon as I get into the office. where could I donwnload a copy please? I can't find it on sourceforge or at bc.com Thanks, Peter. |
From: TAO R. <ron...@ho...> - 2001-06-02 09:08:54
|
alex, any idea about the error I have got before....??? ronald _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. |
From: Peter B. <re...@f2...> - 2001-06-02 08:07:17
|
At 01:54 PM 5/31/01 -0400, you wrote: >You just need a CVS client. WinCVS is one such client: >http://wincvs.org/ Can someone please send me the tcl81.dll needed, as http://www.scriptics.com seems to be down, and has been so for over 24 hours now :-( Thanks! Peter. |
From: Alex B. <en...@tu...> - 2001-06-02 06:01:34
|
> I'd like to give away some of my code for BC-R1 (I am developing different > administration modules, such as user admin, etc), but I just wonder whether > it will work with R2 as well. I hope there won't be very dramatic changes on > how it (the core, etc) works, at least from modules perspective...??? some questions for you: -do your modules talk to the database? -are you doing anything particularly strange (messing with sessions, maybe relying on some of your own constants loaded from defined_constants, etc. the basic changes for modules are pretty simple: -r1 modules with module_name() and module_name_print() will become classes in r2, with two methods: Init(), Output(). The changes necessary to get this working are minuscule, you only need to create a class out of your existing files, and change the function names to methods. -if you are doing database queries, we have space for r1 db connection files, which will require a small amount of modification, but they should be functional with very little trouble. that's it. now, to take full advantage of the system, you'll need to ditch the r1 db code and move into entity/querymanager. ---- a note on user management, I expect to release a fairly extensive set of code in the r2 distro for user management, with groups and roles. for _anyone_ building modules you intend to release, please let the list know, so we can coordinate and work on different things :) _alex |
From: Andris S. <li...@ap...> - 2001-06-01 16:09:33
|
I'd like to give away some of my code for BC-R1 (I am developing different administration modules, such as user admin, etc), but I just wonder whether it will work with R2 as well. I hope there won't be very dramatic changes on how it (the core, etc) works, at least from modules perspective...??? Andris Spruds |
From: TAO R. <ron...@ho...> - 2001-06-01 11:20:33
|
> >the former, those other two look like source downloads. > >but I've never used winCVS :) > >_a if someone still don't like the messily GUI, just go to http://www.cvshome.org/ and get the text mode Win32 cvs client, it works just like the one in UNIX platform, and it work fine for me..... ronald _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. |
From: Gokhan T. <mir...@tr...> - 2001-05-31 21:27:09
|
We are currently using WinCVS 1.20 from www.cvsgui.org First i strongly advise to read a documents below; http://www.phpbuilder.com/columns/tim19990915.php3 // setup cvs issues http://www.loria.fr/~molli/cvs/doc/cvs_toc.html // using cvs issues We are on w2k clients and have a Redhat Linuz cvs server. If any help needed especially for this subject drop me a mail personally separeted from this mail list. Cheers all, Gokhan |
From: Alex B. <en...@tu...> - 2001-05-31 20:47:27
|
the former, those other two look like source downloads. but I've never used winCVS :) _a ----- Original Message ----- From: "Peter Bowyer" <re...@f2...> To: <bin...@li...> Sent: Thursday, May 31, 2001 11:56 AM Subject: RE: [binarycloud-dev] web cvs? > At 07:49 PM 5/31/01 +0200, you wrote: > >Ever tried WinCVS it's a descent free CVS client for windows. We're using it > >here on win workstations, works fine. > > Thanks. I looked, but couldn't figure out which download I want. Is it > WinCvs120.zip, WinCvs120_src_app.zip, or WinCvs120_src_shared.zip? I only > need the client I think. > > Thanks, > Peter. > > --oOo-- > Narrow Gauge on the web - photos, directory and forums! > http://www.narrow-gauge.co.uk > --oOo-- > Peter's web page - Scottish narrow gauge in 009 > http://members.aol.com/reywob/ > --oOo-- > > > _______________________________________________ > binarycloud-dev mailing list > bin...@li... > http://lists.sourceforge.net/lists/listinfo/binarycloud-dev > |
From: Andreas A. <a.a...@th...> - 2001-05-31 19:10:24
|
Hi Peter, > I looked, but couldn't figure out which download I want. Is it > WinCvs120.zip yep, that's the one ! Andi www.thyrell.de |
From: Peter B. <re...@f2...> - 2001-05-31 19:01:28
|
At 07:49 PM 5/31/01 +0200, you wrote: >Ever tried WinCVS it's a descent free CVS client for windows. We're using it >here on win workstations, works fine. Thanks. I looked, but couldn't figure out which download I want. Is it WinCvs120.zip, WinCvs120_src_app.zip, or WinCvs120_src_shared.zip? I only need the client I think. Thanks, Peter. --oOo-- Narrow Gauge on the web - photos, directory and forums! http://www.narrow-gauge.co.uk --oOo-- Peter's web page - Scottish narrow gauge in 009 http://members.aol.com/reywob/ --oOo-- |
From: David W. <dwe...@po...> - 2001-05-31 17:54:17
|
You just need a CVS client. WinCVS is one such client: http://wincvs.org/ -dave >Hi, > >Is there any chance of a web-based cvs front end? I haven't ever >used cvs being stuck on windows, so am unsure how I could see what's >there unless you did. The other option would be for you to make >tarballs of the cvs contents at regular intervals, so we can >download them. > >Thanks! >Peter. -- David Weingart dwe...@po... The foot can split wood, but it can't split a watermelon. |
From: Andreas A. <a.a...@th...> - 2001-05-31 17:45:46
|
Hi Peter, > Is there any chance of a web-based cvs front end? I haven't ever used cvs > being stuck on windows, Ever tried WinCVS it's a descent free CVS client for windows. We're using it here on win workstations, works fine. http://www.cvsgui.org http://sourceforge.net/project/showfiles.php?group_id=10072&release_id=24467 Andi www.thyrell.de |