From: <sbe...@mo...> - 2000-06-28 18:44:47
|
First I wanted to thanks you about your FANTASTIC work (1.1.6). Templates, etc .... I wish I could help, and I was thinking in translating the original pages in french, or at least the more important one. Would you be interested ? Then, since a few days, I am playing with the one I had before, older, maybe 1.0.3, and I did install it on a site I have here, in france, very cheap one, not free but almost, online.fr, with a php 3.0.15 and it did not work out of the box like it seem you want it does. I think it was due to some "virtuality" in the url of my provider, and changing one line in config.php3: $ServerAddress = ''; instead of all your schmilblik stuff with ereg solve the pb. Another trouble I had there, and I dont understand why AT ALL, is I had to change the .png and replace them with a .gif (or .jpeg i suppose) ! On my machine in my office, it was ok ! and it has nothing to do with php ! But ... Thanks Again. ------------------------ Sébastien BERNARD, sbe...@mo..., http://www.mouzaia.com/ |
From: Steve W. <sw...@wc...> - 2000-06-29 04:08:54
|
On Wed, 28 Jun 2000, [ISO-8859-1] Sébastien Bernard wrote: > First I wanted to thanks you about your FANTASTIC work (1.1.6). > Templates, etc .... Wow, thanks! It's messages like this one that motivate me to continue making PhpWiki better! :-) Of course Arno gets most of the credit for 1.1.6. > I wish I could help, and I was thinking in translating the original pages in > french, or at least the more important one. Would you be interested ? Absolutely. If you want to translate all the pages in pgsrc/ to French, I would definitely include it in the distribution, with full credit to you. > Then, since a few days, I am playing with the one I had before, older, > maybe 1.0.3, and I did install it on a site I have here, in france, very cheap > one, not free but almost, online.fr, with a php 3.0.15 and it did not work out > of the box like it seem you want it does. > I think it was due to some "virtuality" in the url of my provider, and > changing one line in config.php3: > $ServerAddress = ''; > instead of all your schmilblik stuff with ereg solve the pb. Good.. I wonder what server configuration they have would prevent the dynamic setting of $ServerAddress? > Another trouble I had there, and I dont understand why AT ALL, is I had to > change the .png and replace them with a .gif (or .jpeg i suppose) ! On my > machine in my office, it was ok ! and it has nothing to do with php ! But ... > Hmm. Maybe the server it's on does not know how to serve .png files? sw ...............................ooo0000ooo................................. Hear FM quality freeform radio through the Internet: http://wcsb.org/ home page: www.wcsb.org/~swain |
From: <sbe...@mo...> - 2000-06-29 16:06:09
|
> > I wish I could help, and I was thinking in translating the original > > pages in french, or at least the more important one. Would you be > > interested ? > > Absolutely. If you want to translate all the pages in pgsrc/ to > French, I would definitely include it in the distribution, with full > credit to you. > Ok, I will. Just to show how well written is phpwiki, I did some modifications on it you can see on http://www.grinibiz.com/phpwiki/ This is a prototype site still. It took me a very small on hour. I did include in the first line of index.php3 an include of a procedures files: <include "procedures.php3">; In this file, I have functions, like this one: <? // procedures.php3 // this is a personal file. I can have n functions in it. include("../parametres.php3"); include("../templates/proceduresmenu.php"); function function1() { // friendly links $strReturn = ""; include("../friendly/string_friendly.php"); return $strReturn ; } function function2() { // menu Haut global $Appel_News, $Appel_Reports; return RetourneMenu('','fr',2,'../'.$Appel_News, '../'.$Appel_Reports); } ?> In your wiki_stdlib.php3, function generatePage: I include these lines: $page = str_replace("#$FieldSeparator#RESULT1#$FieldSeparator#", function1(), $page); $page = str_replace("#$FieldSeparator#RESULT2#$FieldSeparator#", function2(), $page); as many I need, and in the templates: ###RESULT1###, ###RESULT2###, ###RESULTn### It is not very elegant, I am sure there is better way to do it ... And it is going to allow me to organize themes and languages on the left side nav. I dont like the way TheLinks LooksLike, I am going to look and see if there is not something else to do ! Of course if I continue, I will credit the phpwiki team (and the others). ------------------------ Sébastien BERNARD, sbe...@mo..., http://www.mouzaia.com/ |
From: Steve W. <sw...@wc...> - 2000-06-29 19:34:21
|
On Thu, 29 Jun 2000, [ISO-8859-1] Sébastien Bernard wrote: > Just to show how well written is phpwiki, I did some modifications on it > you can see on http://www.grinibiz.com/phpwiki/ > This is a prototype site still. I looked at it and I can't believe it's PhpWiki, it's so colorful! :-) > I dont like the way TheLinks LooksLike, I am going to look and see if there > is not something else to do ! There is a new linking scheme, using square brackets: [this is a Wiki link] [this is a link to wcsb.org | http://www.wcsb.org/ ] [send me an email | mailto:sw...@wc... ] I think this is what you are looking for. cheers! sw ...............................ooo0000ooo................................. Hear FM quality freeform radio through the Internet: http://wcsb.org/ home page: www.wcsb.org/~swain |
From: <sbe...@mo...> - 2000-06-29 17:24:46
|
Hello Steve. I think you should include in the original templates in the <HEAD></HEAD> tags this line: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> in order to allow the macs and others to see the foreign accents, since an é appears in the html sources as an é and not as an é as it should ... ------------------------ Sébastien BERNARD, sbe...@mo..., http://www.mouzaia.com/ |
From: Steve W. <sw...@wc...> - 2000-06-29 19:38:37
|
On Thu, 29 Jun 2000, [ISO-8859-1] Sébastien Bernard wrote: > Hello Steve. > > I think you should include in the original templates in the > <HEAD></HEAD> tags this line: > <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> > in order to allow the macs and others to see the foreign accents, since an > é appears in the html sources as an é and not as an é as it should > ... That's a good idea... thx! It won't affect the page rendering in any other way, will it? sw ...............................ooo0000ooo................................. Hear FM quality freeform radio through the Internet: http://wcsb.org/ home page: www.wcsb.org/~swain |
From: <sbe...@mo...> - 2000-06-30 08:00:36
|
> > I think you should include in the original templates in the > > <HEAD></HEAD> tags this line: > > <meta http-equiv="Content-Type" content="text/html; > > charset=iso-8859-1"> in order to allow the macs and others to see > > the foreign accents, since an é appears in the html sources as an é > > and not as an é as it should ... > > > That's a good idea... thx! > > It won't affect the page rendering in any other way, will it? > Nope . ------------------------ Sébastien BERNARD, sbe...@mo..., http://www.mouzaia.com/ |
From: Arno H. <aho...@in...> - 2000-06-30 17:43:22
|
Sebastien, > <HEAD></HEAD> tags this line: > <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> > in order to allow the macs and others to see the foreign accents, since an > é appears in the html sources as an é and not as an é as it should > ... I've added the Content-type tag. I did a quick search on w3.org and it seems to support your suggestion. Btw, I've also added ALT tags for the logo, as well as a <!DOCTYPE>. phpwiki is now fully HTML compliant, according to validator.w3.org :o) /Arno |