From: Steve W. <sw...@pa...> - 2001-11-07 21:39:22
|
I haven't really looked at these, just spent the time tracking them down. I found them all via Freshmeat or Sourceforge. There were a *lot* of supposed PHP auth packages on SF that had no web site and had no files released. The best laid plans of mice and men... Or should I say, the road to hell is paved with good intentions... Horde Application Framework: http://freshmeat.net/projects/horde/ Lib2 PHP: http://ziet.zhitomir.ua/~fonin/code/ A set of classes from some developer: http://www.arcabama.com/framesets/freeware.html Of course, PHPLib: http://sourceforge.net/projects/phplib/ phpMember: http://freshmeat.net/projects/phpmember/ phpSecurePages: http://freshmeat.net/projects/phpsecurepages/ Phortify. The description on this one makes me hopeful: http://sourceforge.net/projects/phortify/ Prolly overkill: phpShop http://sourceforge.net/projects/phpshop/ azAuth also sounds too promising to be true: http://sourceforge.net/projects/azauth/ ~swain --- http://www.panix.com/~swain/ "Without music to decorate it, time is just a bunch of boring production deadlines or dates by which bills must be paid." -- Frank Zappa |
From: Sergio A. K. <ser...@ho...> - 2001-11-08 17:56:36
|
again :) this time with javascript... (and you can download the code) http://www.aspalliance.com/Yusuf/Article10a.asp (it will not work with mozilla, sorry, but maybe someone can hack it) and a question: is there any plan to clean up the visual design of phpWiki ? after seeing wikis like http://openwiki.com/ phpWiki look dirty and baroque... /sergio |
From: Steve W. <sw...@pa...> - 2001-11-08 18:11:06
|
Yes, just yesterday I started on a "classicweb.css" style sheet. That was when I discovered I couldn't get a copy out of CVS on my laptop (OS X). It will have a beautiful gray background and everything else will be user defaults. To the extent possible. ~swain On Thu, 8 Nov 2001, Sergio A. Kessler wrote: > again :) > this time with javascript... (and you can download the code) > http://www.aspalliance.com/Yusuf/Article10a.asp > (it will not work with mozilla, sorry, but maybe someone > can hack it) > > and a question: is there any plan to clean up the visual > design of phpWiki ? > after seeing wikis like http://openwiki.com/ phpWiki look > dirty and baroque... > > /sergio > > _______________________________________________ > Phpwiki-talk mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwiki-talk > --- http://www.panix.com/~swain/ "Without music to decorate it, time is just a bunch of boring production deadlines or dates by which bills must be paid." -- Frank Zappa |
From: Gary B. <ga...@in...> - 2001-11-08 20:30:07
|
On Thu, 8 Nov 2001, Steve Wainstead wrote: > Yes, just yesterday I started on a "classicweb.css" style sheet. That was > when I discovered I couldn't get a copy out of CVS on my laptop (OS X). > > It will have a beautiful gray background and everything else will be user > defaults. To the extent possible. If you wanted to offer more that one stylesheet and allow the user to choose between them then it would be trivial to do with a ###STYLESHEET### token (gets replaced with the URL) and a cookie. Gary [ ga...@in... ][ GnuPG 85A8F78B ][ http://inauspicious.org/ ] |
From: Gary B. <ga...@in...> - 2001-11-08 20:14:48
|
On Thu, 8 Nov 2001, Sergio A. Kessler wrote: > and a question: is there any plan to clean up the visual > design of phpWiki ? > after seeing wikis like http://openwiki.com/ phpWiki look > dirty and baroque... Just create some new templates -- you don't have to clean up the code. See a (slightly outdated) screenshot of my PersonalWiki at: http://inauspicious.org/files/screenshots/calender-improved.png Gary [ ga...@in... ][ GnuPG 85A8F78B ][ http://inauspicious.org/ ] |
From: Adam S. <ad...@pe...> - 2001-11-09 00:30:42
|
> See a (slightly outdated) screenshot of my PersonalWiki at: > http://inauspicious.org/files/screenshots/calender-improved.png speaking of which, can you're calandar (and maybe todo judging by the screenshot) be contributed back? is it a plugin? it would be very useful. could even put slashboxes below it :) adam. |
From: Gary B. <ga...@in...> - 2001-11-09 02:22:30
|
On Thu, 8 Nov 2001, Adam Shand wrote: > > See a (slightly outdated) screenshot of my PersonalWiki at: > > http://inauspicious.org/files/screenshots/calender-improved.png > > speaking of which, can you're calandar (and maybe todo judging by the > screenshot) be contributed back? is it a plugin? it would be very > useful. could even put slashboxes below it :) The calender is available, but only for PhpWiki 1.2. You can find every patch I ever wrote for PhpWiki at http://inauspicious.org/files/phpwiki/ ToDo is just a page where I add random things I have to do, and it also gets used as a WikiBadge. Gary [ ga...@in... ][ GnuPG 85A8F78B ][ http://inauspicious.org/ ] |
From: Adam S. <ad...@pe...> - 2001-11-09 06:39:48
|
> The calender is available, but only for PhpWiki 1.2. You can find > every patch I ever wrote for PhpWiki at > http://inauspicious.org/files/phpwiki/ ah, cool. any plans to port it to 1.3? :-) > ToDo is just a page where I add random things I have to do, and it > also gets used as a WikiBadge. ah, good thought. i thought you might have made another step towards the wiki as pim stuff and got all excited :) speaking of which after our last exchange of email on that subject ... have you had any further thoughts on how/why to do it? adam. |
From: Gary B. <ga...@in...> - 2001-11-09 11:18:07
|
On Thu, 8 Nov 2001, Adam Shand wrote: > > The calender is available, but only for PhpWiki 1.2. You can find > > every patch I ever wrote for PhpWiki at > > http://inauspicious.org/files/phpwiki/ > > ah, cool. any plans to port it to 1.3? :-) No, but it shouldn't be too difficult. Most of the functionality is encapsulated in RenderCalender() which is in stdlib.php -- the rest of the patch is just hooks. Bear in mind that it uses the cal program, so Steve might not want it in the main tree as it won't work on Windows; you could always add this to the top of RenderCalender(): | if (!is_exec("/usr/bin/cal")) { | return "Get a proper OS!"; | } :) > > ToDo is just a page where I add random things I have to do, and it > > also gets used as a WikiBadge. > > ah, good thought. i thought you might have made another step towards the > wiki as pim stuff and got all excited :) speaking of which after our last > exchange of email on that subject ... have you had any further thoughts on > how/why to do it? Most of the stuff I use for WikiAsPim uses existing wiki functionality, and I haven't needed to add anything else yet. I've been working on some other funky stuff, however, but I'm keeping quiet about it until I get it straight in my head. Stay tuned... Gary [ ga...@in... ][ GnuPG 85A8F78B ][ http://inauspicious.org/ ] |
From: Adam S. <ad...@pe...> - 2001-11-09 17:44:07
|
> No, but it shouldn't be too difficult. Most of the functionality is > encapsulated in RenderCalender() which is in stdlib.php -- the rest of > the patch is just hooks. hrm, cool. maybe i'll check it out. one of my main regrets is being a sysadmin for so long ... i'm still such a shitty programmer :-( i just never needed to write any more then 100 lines of perl to get my job done and most of that was all text file processing, not anything fun. > Bear in mind that it uses the cal program, so Steve might not want it > in the main tree as it won't work on Windows; you could always add > this to the top of RenderCalender(): well if nothing else it could go in the contrib section. i personally see windows users as second class citizens but i understand that he wants it as portable as possible. > Most of the stuff I use for WikiAsPim uses existing wiki > functionality, and I haven't needed to add anything else yet. I've > been working on some other funky stuff, however, but I'm keeping quiet > about it until I get it straight in my head. Stay tuned... cool. i look forward to it :) adam. |
From: Jeff D. <da...@da...> - 2001-11-09 14:33:57
|
On Thu, 8 Nov 2001 22:37:02 -0800 (PST) "Adam Shand" <ad...@pe...> wrote: > ah, cool. any plans to port it to 1.3? :-) I've been planning on doing so. Then again, I've been planning on doing lots of things. I think it's a pretty cool idea. |