You can subscribe to this list here.
2001 |
Jan
|
Feb
(1) |
Mar
(265) |
Apr
(166) |
May
(25) |
Jun
(17) |
Jul
(20) |
Aug
(47) |
Sep
(6) |
Oct
(14) |
Nov
(66) |
Dec
(64) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(109) |
Feb
(64) |
Mar
(34) |
Apr
(23) |
May
(64) |
Jun
(9) |
Jul
(13) |
Aug
(6) |
Sep
(33) |
Oct
(272) |
Nov
(67) |
Dec
(75) |
2003 |
Jan
(264) |
Feb
(244) |
Mar
(171) |
Apr
(119) |
May
(54) |
Jun
(93) |
Jul
(51) |
Aug
(48) |
Sep
(14) |
Oct
(49) |
Nov
(47) |
Dec
(15) |
2004 |
Jan
(13) |
Feb
(27) |
Mar
(18) |
Apr
(44) |
May
(35) |
Jun
(24) |
Jul
(39) |
Aug
(142) |
Sep
(35) |
Oct
(34) |
Nov
(49) |
Dec
(24) |
2005 |
Jan
(60) |
Feb
(71) |
Mar
(19) |
Apr
(27) |
May
(68) |
Jun
(4) |
Jul
(30) |
Aug
(10) |
Sep
(23) |
Oct
(24) |
Nov
(13) |
Dec
(6) |
2006 |
Jan
(4) |
Feb
(46) |
Mar
(64) |
Apr
(18) |
May
(16) |
Jun
(37) |
Jul
(7) |
Aug
(19) |
Sep
(9) |
Oct
(8) |
Nov
(3) |
Dec
(23) |
2007 |
Jan
(25) |
Feb
(21) |
Mar
(32) |
Apr
(36) |
May
(12) |
Jun
(1) |
Jul
(7) |
Aug
(15) |
Sep
(13) |
Oct
(1) |
Nov
|
Dec
|
2008 |
Jan
(3) |
Feb
(5) |
Mar
(1) |
Apr
(2) |
May
|
Jun
(1) |
Jul
(2) |
Aug
(7) |
Sep
|
Oct
(5) |
Nov
(1) |
Dec
|
2009 |
Jan
(7) |
Feb
(1) |
Mar
|
Apr
|
May
(1) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Alessandro P. (T. / J578) <al...@ti...> - 2002-01-04 21:15:17
|
After an evening spent in testing/fixing and five minutes of pure panic due to CVS conflicts (now solved), I've finally uploaded the new "Look & Feel" admin panel. Ehy, stop imagine such a wonderful thing: it actually has limited features. Current features (which replaces old variables in config.php) are: setting of the old: - $default_theme (site global theme) - $disable_themes (can user have a own theme?) - $block_percent (columns size in %) - $extend_menu (menu is fully extended by default?) - $show_articles_morebytes (self explicative :>) All these values are stored in an updated version of the flags table. I know it would be better to store them in a proper table, but I preferred storing them there due to the fact they are core-related flags. Feel free to burn me screaming "no, stupid! do not put them there!!" :> I've also updates both install and upgrade scripts, they should work. Please contribute some testing, if you want/can :> Bye, Alessandro -- Alessandro "TXM" Pisani - al...@ti... - ICQ #2209087 phpWebSite Development Team http://phpwebsite.appstate.edu INWO Project coordinator http://inwoproject.sourceforge.net "I will carry you through, hicking and screaming, and in the end you will thank me" - Tyler Durden [from "Fight Club"] |
From: Vlad S. <vl...@bi...> - 2002-01-04 20:49:25
|
Matthew - sorry, I had no choice with the Outlook thing at the office :-( I'll elm this time :-] > > > first of all - > > most of the options on config.php could be moved to an SQL table. > > Agreed, but it should be on a module to module basis. Well, Alessandro seems to have this one under control already ;) > > > second - > > create a generic theme that reads CSS values from SQL. That would let > > admins change the primary website colors and fonts without having to make > > a new theme or modify an existing one. > > The funny thing about CSS is it does not like any php code in them at all. > I am thinking of writing a CSS editor module that writes a CSS file or > prints to screen for uploading. > > Having a CSS file alone is pretty essential as it ties together all the > other modules. I think having a module change colors and such on the fly > would limit the module/plugin developers as they would design with it in > mind. If I can be proven wrong great ;) but I think that style by DB would > be difficult. > True. However there are several ways to implment this (i'm sure this one sucks - i'm not that good with PHP yet, but the concept seems ok) Say, you have a table (styletable) that has a couple of fields - 'theme' (varchar) and 'stylesheet' (text). you populate the table with stylesheets corresponding to the theme(s). then, you could write a little wrapper (e.g. getstylesheet.php) like this - (sans error checking for now...) <?php $result = mysql_query("select stylesheet from styletable where theme like '$HTTP_GET_VARS[theme]'"); $style = mysql_fetch_object($result); echo $style->stylesheet; mysql_free_result($style); ?> then, in your theme header: <link rel="stylesheet" href="/getstylesheet.php?theme=MyFavoriteTheme" type="text/css" /> this way, you only change one line in the theme... would this not work?... best regards, Vlad |
From: Matthew M. <ma...@tu...> - 2002-01-04 19:53:10
|
Vlad, Are you using Outlook? Squirrelmail dies everytime I try to read one of your letters :( > first of all - > most of the options on config.php could be moved to an SQL table. Agreed, but it should be on a module to module basis. > second - > create a generic theme that reads CSS values from SQL. That would let > admins change the primary website colors and fonts without having to make > a new theme or modify an existing one. The funny thing about CSS is it does not like any php code in them at all. I am thinking of writing a CSS editor module that writes a CSS file or prints to screen for uploading. Having a CSS file alone is pretty essential as it ties together all the other modules. I think having a module change colors and such on the fly would limit the module/plugin developers as they would design with it in mind. If I can be proven wrong great ;) but I think that style by DB would be difficult. Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Vlad S. <vl...@hu...> - 2002-01-04 18:07:49
|
Zm9vZCBmb3IgdGhvdWdodCAtIA0KDQp0aGVzZSBpZGVhcyBoYXZlIHN1cmZhY2VkIGJlZm9yZSBv biB0aGlzIG1haWxpbmcgbGlzdC4NCg0KZmlyc3Qgb2YgYWxsIC0gDQptb3N0IG9mIHRoZSBvcHRp b25zIG9uIGNvbmZpZy5waHAgY291bGQgYmUgbW92ZWQgdG8gYW4gU1FMIHRhYmxlLiBUaGF0IHdh eSBpdCB3b3VsZCBiZSBlYXN5IHRvIG1ha2UgYWxsIHRoZSBvcHRpb25zIGNvbmZpZ3VyYWJsZSB2 aWEgdGhlIGFkbWluIHBhbmVsIHdpdGhvdXQgaGF2aW5nIHRvIHdyaXRlIHRvIGZpbGVzLg0KDQpz ZWNvbmQgLSANCmNyZWF0ZSBhIGdlbmVyaWMgdGhlbWUgdGhhdCByZWFkcyBDU1MgdmFsdWVzIGZy b20gU1FMLiBUaGF0IHdvdWxkIGxldCBhZG1pbnMgY2hhbmdlIHRoZSBwcmltYXJ5IHdlYnNpdGUg Y29sb3JzIGFuZCBmb250cyB3aXRob3V0IGhhdmluZyB0byBtYWtlIGEgbmV3IHRoZW1lIG9yIG1v ZGlmeSBhbiBleGlzdGluZyBvbmUuDQoNCnllcywgaXQgd291bGQgYWRkIG1vcmUgU1FMIHRyYWZm aWMsIGJ1dCB5b3Ugd29uJ3QgaGF2ZSB0byBkZWFsIHdpdGggRlRQIG9yIHNoZWxsIGFjY2VzcyBh cyBtdWNoLg0KQWxzbywgdGhhdCB3b3VsZCBtZWFuIHRoYXQgcGVvcGxlIHdpdGhvdXQgYW55IFBI UCBrbm93bGVkZ2Ugd291bGQgYmUgYWJsZSB0byBtYWludGFpbiBhIHBocFdlYi4NCg0KDQoNClZs YWQNCi0tLS0tDQouc2lnIG1vdmVkIGZvciBncmVhdCBqdXN0aWNlDQo= |
From: Alessandro P. (T. / J578) <al...@ti...> - 2002-01-04 17:49:15
|
Hi all, yesterday and this afternoon I fixed another pool of bugs. Now phpWebSite CVS should finally work fine also in IE6 (damn M$! :) and also the default themes should be okay. I'm near completion of the new look&feel admin panel, which will let user change theme and some other things and I'm also working on another set of bugs and features; for a complete up2date list please look at my page: http://res1.stddev.appstate.edu/phpwebsite/alextxm/ Last but not least, today I've submitted another i18n patch which should help phpWebSite getting near solution of all the i18n issues; btw there still is some work to do : for more info see comments of bug #484658. I've also talked/worked with some kind guys who are taking care respectively of the estonian traslation and the spanish translation. Currently estonian is up2date, I hope spanish will get soon :> Bye for now :> See you at next report :> -- Alessandro "TXM" Pisani - al...@ti... - ICQ #2209087 phpWebSite Development Team http://phpwebsite.appstate.edu INWO Project coordinator http://inwoproject.sourceforge.net "I will carry you through, hicking and screaming, and in the end you will thank me" - Tyler Durden [from "Fight Club"] |
From: Alessandro P. (T. / J578) <al...@ti...> - 2002-01-04 17:40:52
|
On Fri, 2002-01-04 at 17:21, Matthew McNaney wrote: > I have entered a script into CVS by Phillip McAllister. Basically it finds > out what modules are in the directory and gives you a link to install them. I've just added a small fix to this one to let the script not consider the "CVS" directory as a module. Bye, Alessandro -- Alessandro "TXM" Pisani - al...@ti... - ICQ #2209087 phpWebSite Development Team http://phpwebsite.appstate.edu INWO Project coordinator http://inwoproject.sourceforge.net "I will carry you through, hicking and screaming, and in the end you will thank me" - Tyler Durden [from "Fight Club"] |
From: Jeremy A. <ja...@tu...> - 2002-01-04 17:27:15
|
It should be fixed. I fixed it last night but i didn't notice i just replied to W.D.Sumilang and not the main dev list. Ops! It was a small fill system permission problem. No group write access = no lock file and no checkout! A little different question is does it annoy any one that just replying goes to the use and not the list. I can fix it on SF if every one does not like it. > W.D.Sumilang wrote: > >>>So if you want to try out the new core, go to CVS and >>>look >>>under FALLOUT. >>> >> >>can't checkout 'fallout' using wincvs, i get: >>cvs server: Updating fallout >>cvs server: failed to create lock directory in repository >>`/home/cvsroot/fallout': Permission denied >>cvs server: failed to obtain dir lock in repository >>`/home/cvsroot/fallout' cvs [server aborted]: read lock failed - giving >>up >> >>However, i can get 'phpwebsite' just fine. Can someone shed some >>light?:) TIA, >>-W.D. >> > > It is not just you, I am having the same problem too and I have tried > with my username and with anonymous but no luck. > > Paivi > > > > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers -- Jeremy Agee phpWebSite Development Team (http://phpwebsite.appstate.edu) Appalachian State University phpEasyAdmin (http://easyadmin.sourceforge.net) |
From: Matthew M. <ma...@tu...> - 2002-01-04 16:28:27
|
I have entered a script into CVS by Phillip McAllister. Basically it finds out what modules are in the directory and gives you a link to install them. For it to work, there has to be a setup operation within the module. While there are not any currently, it would be a nice feature on new modules. The script checks to see if the module is installed yet. However, it was showing modules that had definately been installed. This may be because they were not installed using the script, not sure. There probably needs to be a switch indicating whether the mod is compatable with this function. Also, the block code for Fallout is a little more recognizable for what I am thinking about. Once it is finished, I will start working on the backward compatible components so it will work with old modules. Please make sure to get the SQL dump each time and start from scratch. Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 P.S. Nice work lately Alessandro. |
From: Matthew M. <ma...@tu...> - 2002-01-04 13:27:21
|
Please try to get fallout using an anonymous user. See if that helps. Matt Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Matthew M. <ma...@tu...> - 2002-01-04 13:05:44
|
> >can't checkout 'fallout' using wincvs, i get: >cvs server: Updating fallout >cvs server: failed to create lock directory in repository `/home/cvsroot/fallout': >Permission denied >cvs server: failed to obtain dir lock in repository `/home/cvsroot/fallout' >cvs [server aborted]: read lock failed - giving up > >However, i can get 'phpwebsite' just fine. Can someone shed some light?:) >TIA, >-W.D. i am taking a look at it. I can't figure out why it is not working now :( I'll let you know when it is fixed. Matt Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Alessandro P. (T. / J578) <al...@ti...> - 2002-01-04 12:14:34
|
On Fri, 2002-01-04 at 05:09, Geoff Staples wrote: > One item missing from phpWebsite is the ability to upload a file and create > a link to it from an announcement or from a user page. The purpose of this > is to eliminate the need for phpwebsite Admins to have FTP access. > > So, here is a simple specification for accomplishing this: > > Provide a "browse" to file function, exactly as for the images on the user > pages. > Provide a text box for a file description. *snip* Interesting feature. Please open a feature request for it and I'll work on it as-soon-as-possible. Thank you Bye, Alessandro -- Alessandro "TXM" Pisani - al...@ti... - ICQ #2209087 phpWebSite Development Team http://phpwebsite.appstate.edu INWO Project coordinator http://inwoproject.sourceforge.net "I will carry you through, hicking and screaming, and in the end you will thank me" - Tyler Durden [from "Fight Club"] |
From: Alessandro P. (T. / J578) <al...@ti...> - 2002-01-04 12:13:16
|
On Fri, 2002-01-04 at 05:52, Geoff Staples wrote: > We need a function that will allow the admin to manage certain of the > variables in the config.php file. This is probably only a temporary fix > which will be superceded by version 1.0 when it comes out. This thing will soon happen with themes and polls, with the new admin modules I'm working on. Btw, you should open a feature-request for this instead of mailing it on the developers-maillist Thank you for your suggestion :> Bye, Alessandro -- Alessandro "TXM" Pisani - al...@ti... - ICQ #2209087 phpWebSite Development Team http://phpwebsite.appstate.edu INWO Project coordinator http://inwoproject.sourceforge.net "I will carry you through, hicking and screaming, and in the end you will thank me" - Tyler Durden [from "Fight Club"] |
From: Alessandro P. (T. / J578) <al...@ti...> - 2002-01-04 12:11:13
|
On Fri, 2002-01-04 at 05:59, Geoff Staples wrote: > We need a function that will allow the admin to tailor a theme. This is > probably only a temporary fix which will be superceded by version 1.0 when > it comes out. I'm working on it, and it will soon appear in current CVS version of phpWebSite. Bye, Alessandro -- Alessandro "TXM" Pisani - al...@ti... - ICQ #2209087 phpWebSite Development Team http://phpwebsite.appstate.edu INWO Project coordinator http://inwoproject.sourceforge.net "I will carry you through, hicking and screaming, and in the end you will thank me" - Tyler Durden [from "Fight Club"] |
From: spiggy <th...@me...> - 2002-01-04 05:48:20
|
W.D.Sumilang wrote: >>So if you want to try out the new core, go to CVS and >>look >>under FALLOUT. >> > >can't checkout 'fallout' using wincvs, i get: >cvs server: Updating fallout >cvs server: failed to create lock directory in repository `/home/cvsroot/fallout': >Permission denied >cvs server: failed to obtain dir lock in repository `/home/cvsroot/fallout' >cvs [server aborted]: read lock failed - giving up > >However, i can get 'phpwebsite' just fine. Can someone shed some light?:) >TIA, >-W.D. > It is not just you, I am having the same problem too and I have tried with my username and with anonymous but no luck. Paivi |
From: Geoff S. <ge...@ho...> - 2002-01-04 05:13:56
|
I left out an important aspect of the theme tailoring in the previous message: The admin needs to be able to upload graphics files for the theme through this function - primarily a logo. ALSO, we need the ability to create a logo on the fly. Perhaps by uploading a background image for a table cell and then being able to specify text to go over it. Geoff Below is the text of the previous post: We need a function that will allow the admin to tailor a theme. This is probably only a temporary fix which will be superceded by version 1.0 when it comes out. Here's my spec for this function. 1. It should be a module accessed via the admin control panel. The reason it should be a module rather than part of the core is because it would only work with themes setup to use the feature. 2. It should allow an admin to set variables in the style.css file. 3. There should be a file or table that contains the list of variables that can be modified through this admin feature. This means that any item that can be customized by the admin will have to be defined in style.css. So, text, logos, colors, and other elements that are to be managed by this feature will have to be specified in the style.css rather than hard-coded in the theme files. Geoff Staples www.Hostricity.com |
From: Geoff S. <ge...@ho...> - 2002-01-04 04:59:18
|
We need a function that will allow the admin to tailor a theme. This is probably only a temporary fix which will be superceded by version 1.0 when it comes out. Here's my spec for this function. 1. It should be a module accessed via the admin control panel. The reason it should be a module rather than part of the core is because it would only work with themes setup to use the feature. 2. It should allow an admin to set variables in the style.css file. 3. There should be a file or table that contains the list of variables that can be modified through this admin feature. This means that any item that can be customized by the admin will have to be defined in style.css. So, text, logos, colors, and other elements that are to be managed by this feature will have to be specified in the style.css rather than hard-coded in the theme files. Geoff Staples www.Hostricity.com |
From: Geoff S. <ge...@ho...> - 2002-01-04 04:52:20
|
We need a function that will allow the admin to manage certain of the variables in the config.php file. This is probably only a temporary fix which will be superceded by version 1.0 when it comes out. Here's my spec for this function. 1. It should be in the core and accessed via the admin control panel. 2. It should allow an admin to set variables in the config.php. 3. There should be a file or table that contains the list of variables that can be modified through this admin feature. Examples of variables that one might want to set via the admin control panel are: $defaulttheme and $sitename. Geoff Staples www.Hostricity.com |
From: Geoff S. <ge...@ho...> - 2002-01-04 04:09:16
|
One item missing from phpWebsite is the ability to upload a file and create a link to it from an announcement or from a user page. The purpose of this is to eliminate the need for phpwebsite Admins to have FTP access. So, here is a simple specification for accomplishing this: Provide a "browse" to file function, exactly as for the images on the user pages. Provide a text box for a file description. An example is the easiest way to describe the functionality: The user selects the file "1099taxform.pdf" from his harddrive and enters the Description: "Printable 1099 Form". When this is processed, the phpWebsite uploads the file, creates a link to it with the description as the text of the link. So, if the file is uploaded into a directory called "/userpages/files" then, here is the code that would be placed at the bottom of the appropriate section on a user page, or at the bottom of the announcement page: <a href="/userpages/files/1099taxform.pdf">Printable 1099 Form</a> Additional requirements: Admin or Webmaster configurable list of allowed file extensions. This will prevent the upload of executable files. On user pages, each section of the user page should have this feature, just as each section has an upload for a graphic. The ability to delete the file, just as a graphic can be deleted now. NICE TO HAVE: A check box to provide a hyperlink to the file from the graphic. Geoff Staples www.Hostricity.com |
From: W.D.Sumilang <wa...@on...> - 2002-01-04 03:57:20
|
> So if you want to try out the new core, go to CVS and > look > under FALLOUT. can't checkout 'fallout' using wincvs, i get: cvs server: Updating fallout cvs server: failed to create lock directory in repository `/home/cvsroot/fallout': Permission denied cvs server: failed to obtain dir lock in repository `/home/cvsroot/fallout' cvs [server aborted]: read lock failed - giving up However, i can get 'phpwebsite' just fine. Can someone shed some light?:) TIA, -W.D. __________________________________________________ FREE voicemail, email, and fax...all in one place. Sign Up Now! http://www.onebox.com |
From: Jeremy A. <ja...@tu...> - 2002-01-04 00:36:03
|
I updated the package that powers the web based cvs. If you use it like I do you might like a few of the new features/improvements! -- Jeremy Agee phpWebSite Development Team (http://phpwebsite.appstate.edu) Appalachian State University phpEasyAdmin (http://easyadmin.sourceforge.net) |
From: Jeremy A. <ja...@tu...> - 2002-01-03 21:26:22
|
For those of you who may not have noticed I have expanded the block_pos now instead of having Off, Left, Right, or Top Center you can have Off, Left, Right, Top Center, Middle Center, Bottom Center, or any combination. Topcenter = Above mainpage. Middlecenter = Below mainpage and above articles. Bottomcenter = Below articles. Everything is reverse compatible so old themes with plug_check(1) and plug_check(3) will still work the now called are plug_check("left") and plug_check("right"). Here is the list of what block_pos you can have. 0 - Off 1 - Left 2 - Topcenter 3 - Right 4 - Middlecenter 5 - Bottomcenter 6 - Left & Topcenter 7 - Left & Middlecenter 8 - Left & Bottomcenter 9 - Left & Right 10 - Topcenter & Middlecenter 11 - Topcenter & Bottomcenter 12 - Topcenter & Right 13 - Middlecenter & Bottomcenter 14 - Middlecenter & Right 15 - Bottomcenter & Right 16 - Left & Topcenter & Right 17 - Left & Middlecenter & Right 18 - Left & Bottomcenter & Right 19 - Topcenter & Middlecenter & Right 20 - Topcenter & Bottomcenter & Right 21 - Middlecenter & Bottomcenter & Right 22 - Topcenter & Middlecenter & Left 23 - Topcenter & Bottomcenter & Left 24 - Middlecenter & Bottomcenter & Left 25 - Topcenter & Middlecenter & Bottomcenter 26 - Left & Topcenter & Middlecenter & Right 27 - Left & Topcenter & Bottomcenter & Right 28 - Left & Middlecenter & Bottomcenter & Right 29 - Topcenter & Middlecenter & Bottomcenter & Right 30 - Topcenter & Middlecenter & Bottomcenter & Left 31 - All You can then figure out more buy checking the variable $position for left, right, topcenter, middlecenter, and bottomcenter when you are in your module_block.php to see what block you are in if you are using more than one block(Ex. Left and Right). Let me know what you thank! -- Jeremy Agee phpWebSite Development Team (http://phpwebsite.appstate.edu) Appalachian State University phpEasyAdmin (http://easyadmin.sourceforge.net) |
From: Alessandro P. (T. / J578) <al...@ti...> - 2002-01-03 18:59:19
|
Hi all again :> Okay, this evening I've also fixed: #498623, #498625 and #498950 Fixes for #498978 and #498649 are in progress... I hope to fix them in time for (my) localized-daily-builds. Bye, Alessandro "bugsbuster" Pisani :> -- Alessandro "TXM" Pisani - al...@ti... - ICQ #2209087 phpWebSite Development Team http://phpwebsite.appstate.edu INWO Project coordinator http://inwoproject.sourceforge.net "I will carry you through, hicking and screaming, and in the end you will thank me" - Tyler Durden [from "Fight Club"] |
From: Alessandro P. (T. / J578) <al...@ti...> - 2002-01-03 15:29:27
|
On Wed, 2002-01-02 at 21:10, Guy Brand wrote: > have an other approach of localization in pws, I really don't like > this "make_distro" phase with lots of sed (gnu-sed), sh (ahem > bash/gnu-sh) etc. I was wondering if strings to localize could be > globalized inside the php pages, I'm sure you can answer that as you > have a much better view than I have over the whole code. > > For example, in admin.php get rid of: > > $box_title = "TRANSLATE[[Administrative Login]]"; > > and rather use: > > thememainbox($g_box_title, $box_stuff); > > instead of: > > thememainbox($box_title, $box_stuff); > > with a direction on the $strings_<lang> to use in the vars of config.php > which is included almost everywhere. > > With themes, frozen localization (= using this make_distro) will > become very weird. I also believe that one of the "choice" a > registered user could have is choosing his prefered idiom in the > available ones, which could also be done by storing a $strings_<lang> > in his prefs. *snip* PHPNuke and PostNuke uses such a system. I think it is a quite reasonable solution! I'll talk with the other people on phpWebSite-Developers ml about this :> > If you think it's an idea to test, i'm ok to play with that on my > sandbox in the coming days. If used, we need a way to generate the > "strings_<lang>" files from the master "strings" (english) file. > > I don't see where $backend_language present in the config.php file > is used and wonder if this is really of any use at all. Having a > frozen version of pws forces users to have all the same language based > phpwebsite. It would be more useful if one would just use the soft > with the prefered (default) language specified in the config.php file > and let registered users switch to an other language if needed. It's > also more sane to have everyone use the same version of the sources > and not "patched" sources where localized strings can have introduced > "bugs" or weird behaviors. I agree :> Bye! Alessandro -- Alessandro "TXM" Pisani - al...@ti... - ICQ #2209087 phpWebSite Development Team http://phpwebsite.appstate.edu INWO Project coordinator http://inwoproject.sourceforge.net "I will carry you through, hicking and screaming, and in the end you will thank me" - Tyler Durden [from "Fight Club"] |
From: Alessandro P. (T. / J578) <al...@ti...> - 2002-01-03 12:44:26
|
Hi all, I've just fixed bugs #498579, #498597 and #498593. Fixing these correlated bugs required changes both in the blocks module and the Default and the phpWebSite themes. Give the changes a look if you're gonna work on those files. Bye! (i'm in a hurry! it's late, it's late! :>>) more fixing this evening (GMT+1 time) ! Alessandro -- Alessandro "TXM" Pisani - al...@ti... - ICQ #2209087 phpWebSite Development Team http://phpwebsite.appstate.edu INWO Project coordinator http://inwoproject.sourceforge.net "I will carry you through, hicking and screaming, and in the end you will thank me" - Tyler Durden [from "Fight Club"] |
From: Alessandro P. (T. / J578) <al...@ti...> - 2002-01-02 21:03:19
|
Thanks to Jaanus Teiva, who kindly provided it, phpWebSite now has also an estonian translation. Bye, Alessandro -- Alessandro "TXM" Pisani - al...@ti... - ICQ #2209087 phpWebSite Development Team http://phpwebsite.appstate.edu INWO Project coordinator http://inwoproject.sourceforge.net "I will carry you through, hicking and screaming, and in the end you will thank me" - Tyler Durden [from "Fight Club"] |