Re: [PHP] Wiki formatting class or something similar

2011-04-30 Thread Stuart Dallas
On Friday, 29 April 2011 at 22:04, Andre Polykanine wrote:
Hi everyone,
 I allow my users to put some Html into their blogs. I filter it using
 a great tool called HtmLawed and written by Dr. Santosh Patnaik (if
 you're reading this, many thanks to you!).
 However, I would like to give them a possibility to mark-up their text
 in a more convenient way for beginners (such as Wiki or something
 similar).
 I searched through http://phpclasses.org/ but didn't find anything.
 Could you suggest me something?
 And one more question: maybe some of you already have a handy solution
 to process smilies? Say, a user writes :) and this is replaced by an
 image in my directory.
 Thanks in advance!

Markdown is a pretty good option for a wiki: 
http://michelf.com/projects/php-markdown/

Textile is another option (and supports tables which markdown does not): 
http://textile.thresholdstate.com/

-Stuart

-- 
Stuart Dallas
3ft9 Ltd
http://3ft9.com/






-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Wiki formatting class or something similar

2011-04-30 Thread Peter Lind
On 30 April 2011 15:13, Stuart Dallas stu...@3ft9.com wrote:
 On Friday, 29 April 2011 at 22:04, Andre Polykanine wrote:
 Hi everyone,
 I allow my users to put some Html into their blogs. I filter it using
 a great tool called HtmLawed and written by Dr. Santosh Patnaik (if
 you're reading this, many thanks to you!).
 However, I would like to give them a possibility to mark-up their text
 in a more convenient way for beginners (such as Wiki or something
 similar).
 I searched through http://phpclasses.org/ but didn't find anything.
 Could you suggest me something?
 And one more question: maybe some of you already have a handy solution
 to process smilies? Say, a user writes :) and this is replaced by an
 image in my directory.
 Thanks in advance!

 Markdown is a pretty good option for a wiki: 
 http://michelf.com/projects/php-markdown/

 Textile is another option (and supports tables which markdown does not): 
 http://textile.thresholdstate.com/


MarkItUp is a favourite plugin editor of mine - will allow you to work
with a lot of different syntaxes and users don't need to know them.

http://markitup.jaysalvat.com/home/

If you're considering sanitizing html instead of using a markup
language to convert into html, I'd read
http://blog.astrumfutura.com/2010/08/html-sanitisation-the-devils-in-the-details-and-the-vulnerabilities/
before settling on any tool to do the job. Far as I can tell, HtmLawed
isn't actually capable of sanitizing properly, according to the author
- unless it's since been updated to fix the problems mentioned in the
blog.

Regards
Peter

-- 
hype
WWW: plphp.dk / plind.dk
LinkedIn: plind
BeWelcome/Couchsurfing: Fake51
Twitter: kafe15
/hype

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Wiki formatting class or something similar

2011-04-30 Thread Andre Polykanine
Hello Peter,

And what would you recommend as an Html sanitizing tool?

-- 
With best regards from Ukraine,
Andre
Skype: Francophile
My blog: http://oire.org/menelion (mostly in Russian)
Twitter: http://twitter.com/m_elensule
Facebook: http://facebook.com/menelion

 Original message 
From: Peter Lind peter.e.l...@gmail.com
To: Stuart Dallas
Date created: , 4:26:41 PM
Subject: [PHP] Wiki formatting class or something similar


  On 30 April 2011 15:13, Stuart Dallas stu...@3ft9.com wrote:
 On Friday, 29 April 2011 at 22:04, Andre Polykanine wrote:
 Hi everyone,
 I allow my users to put some Html into their blogs. I filter it using
 a great tool called HtmLawed and written by Dr. Santosh Patnaik (if
 you're reading this, many thanks to you!).
 However, I would like to give them a possibility to mark-up their text
 in a more convenient way for beginners (such as Wiki or something
 similar).
 I searched through http://phpclasses.org/ but didn't find anything.
 Could you suggest me something?
 And one more question: maybe some of you already have a handy solution
 to process smilies? Say, a user writes :) and this is replaced by an
 image in my directory.
 Thanks in advance!

 Markdown is a pretty good option for a wiki: 
 http://michelf.com/projects/php-markdown/

 Textile is another option (and supports tables which markdown does not): 
 http://textile.thresholdstate.com/


MarkItUp is a favourite plugin editor of mine - will allow you to work
with a lot of different syntaxes and users don't need to know them.

http://markitup.jaysalvat.com/home/

If you're considering sanitizing html instead of using a markup
language to convert into html, I'd read
http://blog.astrumfutura.com/2010/08/html-sanitisation-the-devils-in-the-details-and-the-vulnerabilities/
before settling on any tool to do the job. Far as I can tell, HtmLawed
isn't actually capable of sanitizing properly, according to the author
- unless it's since been updated to fix the problems mentioned in the
blog.

Regards
Peter

-- 
hype
WWW: plphp.dk / plind.dk
LinkedIn: plind
BeWelcome/Couchsurfing: Fake51
Twitter: kafe15
/hype


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Wiki formatting class or something similar

2011-04-30 Thread Peter Lind
On 30 April 2011 21:26, Andre Polykanine an...@oire.org wrote:
 Hello Peter,

 And what would you recommend as an Html sanitizing tool?


I go by htmlpurifier when I need to sanitize html. I generally try to
avoid the issue though, by having users use other markup languages (I
like markdown but dislike textile). That's much faster and just as
secure - downside is that your users might not be as used to it.

Regards
Peter

-- 
hype
WWW: plphp.dk / plind.dk
LinkedIn: plind
BeWelcome/Couchsurfing: Fake51
Twitter: kafe15
/hype

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Wiki formatting class or something similar

2011-04-29 Thread Andre Polykanine
Hi everyone,
I  allow my users to put some Html into their blogs. I filter it using
a  great  tool  called HtmLawed and written by Dr. Santosh Patnaik (if
you're reading this, many thanks to you!).
However, I would like to give them a possibility to mark-up their text
in  a  more  convenient  way  for beginners (such as Wiki or something
similar).
I searched through http://phpclasses.org/ but didn't find anything.
Could you suggest me something?
And one more question: maybe some of you already have a handy solution
to process smilies? Say, a user writes :) and this is replaced by an
image in my directory.
Thanks in advance!

  

-- 
With best regards from Ukraine,
Andre
Skype: Francophile
Twitter: http://twitter.com/m_elensule
Facebook: http://facebook.com/menelion


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Wiki formatting class or something similar

2011-04-29 Thread Gerardo Benitez
Hi Andre,

I did a intranet with TextWiki (
http://pear.php.net/package/Text_Wiki/redirected )
TextWiki is a reliable Class to create Wiki using Php.

Regards.
Gerardo.


On Fri, Apr 29, 2011 at 6:04 PM, Andre Polykanine an...@oire.org wrote:

 Hi everyone,
 I  allow my users to put some Html into their blogs. I filter it using
 a  great  tool  called HtmLawed and written by Dr. Santosh Patnaik (if
 you're reading this, many thanks to you!).
 However, I would like to give them a possibility to mark-up their text
 in  a  more  convenient  way  for beginners (such as Wiki or something
 similar).
 I searched through http://phpclasses.org/ but didn't find anything.
 Could you suggest me something?
 And one more question: maybe some of you already have a handy solution
 to process smilies? Say, a user writes :) and this is replaced by an
 image in my directory.
 Thanks in advance!



 --
 With best regards from Ukraine,
 Andre
 Skype: Francophile
 Twitter: http://twitter.com/m_elensule
 Facebook: http://facebook.com/menelion


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
Gerardo Benitez
-
www.webseficientes.com.ar
DiseƱo web, programaciĆ³n, Seo


Re: [PHP] Wiki recommendation?

2009-11-26 Thread Lester Caine

Skip Evans wrote:

Hey all,

Thanks much for the recommendations. I'll check them out.

We don't need fine grained control over access; basically admins that 
can modify content and the public who cannot.


But right now DocuWiki is sounding good, and I'd rather, for some 
strange reason, not use a DB, although I can't justify that in any 
rational way. I mean, MySQL is already on the machine.


Perhaps good enough reason for NOT wanting to use a database ;)
Although a lot more stable than it used to be - but until one can run a backup 
transparently at intervals is it really suitable for live data? My own live 
sites just mirror to a backup machine including a backup of the database 
automatically.


--
Lester Caine - G8HFL
-
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Wiki recommendation?

2009-11-26 Thread Olav
Jonathan Tapicer wrote:

 I also recommend dokuwiki (with a k, not c :) ):
 http://www.dokuwiki.org/

I will add just my 2 cts to that. I have used several wikis but I always 
come back to DokuWiki. Among other things that I like about it, like 
plugins, is the fact that it is file based. It can be nice sometimes to 
be able to make certain changes to your pages with a normal editor, 
search and replace tool or whatever.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Wiki recommendation?

2009-11-25 Thread Skip Evans

Hey all,

I'm looking for a good Wiki to maintain documentation on a 
large commercial web site that is always growing.


DokuWiki is the only one I've installed and used at any 
length, so before I just use that one again I'd like to hear 
from the peanut gallery what other suggestions you'd have.


Remember, this will be for end user documentation for a large 
commercial CMS type system, something site admins will go to 
for information on site features, updates, etc.


Let the shouting begin!

Thanks, all, and a very happy eating-charred-dead-bird-flesh 
day to you all!!!


Skip

--

Skip Evans
PenguinSites.com, LLC
503 S Baldwin St, #1
Madison WI 53703
608.250.2720
http://penguinsites.com

Those of you who believe in
telekinesis, raise my hand.
 -- Kurt Vonnegut

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Wiki recommendation?

2009-11-25 Thread aurfalien

On Nov 25, 2009, at 2:42 PM, Skip Evans wrote:


Hey all,

I'm looking for a good Wiki to maintain documentation on a large  
commercial web site that is always growing.


DokuWiki is the only one I've installed and used at any length, so  
before I just use that one again I'd like to hear from the peanut  
gallery what other suggestions you'd have.


Remember, this will be for end user documentation for a large  
commercial CMS type system, something site admins will go to for  
information on site features, updates, etc.


Let the shouting begin!

Thanks, all, and a very happy eating-charred-dead-bird-flesh day to  
you all!!!


Skip



Well, I've used DocuWiki and bit new to MediaWiki which I think  
WikiPedia uses.


MediaWiki uses a MySQL DB were as DocuWiki is a tree dir structure  
kind of thing.


I actually prefer DocuWiki but maybe thats because I didn't setup  
MediaWiki correctly.


Cacti uses DocuWiki by the way and I personally avoid DB usage if  
possible.


I think its easier to corrupt a DB then it is to corrupt a filesystem.

However I'm unsure of how scalable a pure file system based Wiki is, I  
think if you put it on a mirrored disk with a decent cache on the Raid  
controller, you'll be fine performance and DR wise.


If its Linux, then MD based (software raids) works pretty well.

- aurf



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Wiki recommendation?

2009-11-25 Thread TG
Well, if you want to get really extreme, you could use TiddlyWiki:
http://www.tiddlywiki.com/

It's a wiki contained in a single HTML file.  No database.  No server side 
scripting.  No server!  hah

-TG

- Original Message -
From: Skip Evans s...@bigskypenguin.com
To: TG tg-...@gryffyndevelopment.com
Cc: Jonathan Tapicer tapi...@gmail.com, aurfal...@gmail.com, 
php-general@lists.php.net php-general@lists.php.net
Date: Wed, 25 Nov 2009 22:33:54 -0600
Subject: Re: [PHP] Wiki recommendation?

 Hey all,
 
 Thanks much for the recommendations. I'll check them out.
 
 We don't need fine grained control over access; basically 
 admins that can modify content and the public who cannot.
 
 But right now DocuWiki is sounding good, and I'd rather, for 
 some strange reason, not use a DB, although I can't justify 
 that in any rational way. I mean, MySQL is already on the machine.
 
 Thanks again!
 
 Skip
 
 TG wrote:
  A while back I set up a TikiWiki for a client.  I think I liked it 
better 
  than any of the other wikis I've messed with.  But honestly, I didn't 
get 
  to use it much and I've only ever used Mediawiki to any real length.
  
  Definitely give it a look, though.
  
  -TG
  
  - Original Message -
  From: Jonathan Tapicer tapi...@gmail.com
  To: aurfal...@gmail.com
  Cc: Skip Evans s...@bigskypenguin.com, php-general@lists.php.net 
  php-general@lists.php.net
  Date: Wed, 25 Nov 2009 23:54:07 -0300
  Subject: Re: [PHP] Wiki recommendation?
  
  On Wed, Nov 25, 2009 at 8:37 PM,  aurfal...@gmail.com wrote:
  On Nov 25, 2009, at 2:42 PM, Skip Evans wrote:
 
  Hey all,
 
  I'm looking for a good Wiki to maintain documentation on a large
  commercial web site that is always growing.
 
  DokuWiki is the only one I've installed and used at any length, so 
  before
  I just use that one again I'd like to hear from the peanut gallery 
what
  other suggestions you'd have.
 
  Remember, this will be for end user documentation for a large 
  commercial
  CMS type system, something site admins will go to for information on 
  site
  features, updates, etc.
 
  Let the shouting begin!
 
  Thanks, all, and a very happy eating-charred-dead-bird-flesh day to 
you
  all!!!
 
  Skip
 
  Well, I've used DocuWiki and bit new to MediaWiki which I think 
  WikiPedia
  uses.
 
  MediaWiki uses a MySQL DB were as DocuWiki is a tree dir structure 
kind 
  of
  thing.
 
  I actually prefer DocuWiki but maybe thats because I didn't setup 
  MediaWiki
  correctly.
 
  Cacti uses DocuWiki by the way and I personally avoid DB usage if 
  possible.
  I think its easier to corrupt a DB then it is to corrupt a filesystem.
 
  However I'm unsure of how scalable a pure file system based Wiki is, 
I 
  think
  if you put it on a mirrored disk with a decent cache on the Raid 
  controller,
  you'll be fine performance and DR wise.
 
  If its Linux, then MD based (software raids) works pretty well.
 
  - aurf
 
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
  I also recommend dokuwiki (with a k, not c :) ): 
http://www.dokuwiki.org/
 
  Regards,
 
  Jonathan
 
  -- 
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
  
 
 -- 
 
 Skip Evans
 PenguinSites.com, LLC
 503 S Baldwin St, #1
 Madison WI 53703
 608.250.2720
 http://penguinsites.com
 
 Those of you who believe in
 telekinesis, raise my hand.
   -- Kurt Vonnegut
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Wiki lib?

2007-06-19 Thread Emil Edeholt

Hi,

Do any of you guys know of a good php library to use as a base if one 
wants to develop a simple wiki? I don't want a complete system like 
MediaWiki, I want a library that can compare different versions of text, 
and so on. I first thought of using subversion, but it seems a bit 
overkill. It would be really neat with a small php library under LGPL or 
BSD or similiar license.


Any ideas?

--

Regards Emil Edeholt

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Wiki lib?

2007-06-19 Thread Greg Donald

On 6/19/07, Emil Edeholt [EMAIL PROTECTED] wrote:

I want a library that can compare different versions of text,


Command line diff wrapped in exec() calls should work fine.


--
Greg Donald
http://destiney.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] wiki question

2006-02-02 Thread Richard Lynch
On Mon, January 30, 2006 1:56 pm, Jay Blanchard wrote:
 I have been searching for a PHP wiki that will allow me to use and
 ODBC
 connection to a MS_SQL server database. Does anyone know if such an
 animal
 exists?

If no such thing exists, look for the Wiki that supports the most
databases, and you can probably most easily add code to that one to
make it work.

Actually, any Wiki that supports 2 or more databases probably has the
db code abstract enough for you to hack a new ODBC-MS_SQL codebase in
an hour, test it in a day, and debug it for real in about a week.

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] wiki question

2006-01-30 Thread Jay Blanchard
Howdy all!

I have been searching for a PHP wiki that will allow me to use and ODBC
connection to a MS_SQL server database. Does anyone know if such an animal
exists?

Thanks!

Jay

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] wiki question

2006-01-30 Thread Mike Smith
...dang, hit the reply, not the reply to all...Sorry about that Jay.

http://sourceforge.net/projects/phpwiki/

I haven't tried it, but it looks like phpwiki supports adodb/pear, so
if you've got you mssql extension loading you should be able to use
it. How's that for a product endorsement!

Mike Smith

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Wiki Filesystem integration

2005-09-30 Thread Rory Browne
Hi Folks

Anyone here have any experience with integrating Filesystem documents
and Wikis?

One of our depts uses a wiki(phpwiki) for docs, whilst the other uses
a network drive. Anyone here have any experience in consolodating
something like this into one interface?

Thanks

Rory

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] RE: PHP wiki recommendations

2005-09-09 Thread Murray @ PlanetThoughtful
  I'm not a Wiki expert, but have been using TikiWiki for a while and
 very much like it.  It does everything you say with the possible
 exception of CSS.  It may very well support CSS, I just don't need it so
 haven't investigated.  It also allows for the use of templates that can
 be applied globally or by each user (these may be the CSS bit, again, I
 just haven't played).
 
 User logins can be pre-assigned or user driven so you can control who
 does what.
 
 I think you can turn on/off the CamelCase feature.
 
 Doug
 
 
 -Original Message-
 From: Murray @ PlanetThoughtful [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 08, 2005 2:03 AM
 To: php-general@lists.php.net
 Subject: PHP wiki recommendations
 
 Hi All,
 
 I want to add a wiki to my blog site to help create a knowledgebase of
 the characters, localities, stories I write to make it easier for new
 visitors to delve into the areas that interest them.
 
 I've been experimenting with a couple of different wiki packages, but am
 always interested in others' thoughts and recommendations.
 
 In particular, I've looked at MediaWiki and PmWiki. Of the two, I like
 MediaWiki's 'completeness', but it's also quite slow and doesn't strike
 me as being particularly (or easily?) customizable. PmWiki is probably
 my current candidate, but again I'd like to make sure I'm not missing a
 more obvious choice.
 
 My shopping list for the ideal wiki application is:
 
 - wiki entries preferably stored in MySQL tables. I'm not adamant about
 this (eg PmWiki uses files rather than a db backend), but it would suit
 my purposes better to be able to draw from the wiki tables from the
 front page of my blog to show lists of recently added and recently
 updated wiki entries
 
 - non-reliance on CamelCase wiki links. Many of my characters etc use
 joined CamelCase names (eg KillFork and DangerSpoon), and to avoid
 confusion I'd rather explicitly define links to wiki content
 
 - ability to categorize wiki entries
 
 - ability to compare history of wiki edits and easily reinstate older
 edits if wiki pages get 'graffiti'd'
 
 - ability to allow others to edit / create wiki entries, thru a user id
 / password system, so that regulars who would like to participate can do
 so
 
 - ability to customize presentation of wiki pages, presumably through
 CSS etc, so that I can maintain the 'look and feel' of my blog thru the
 wiki content
 
 - PHP based, though my host does run Perl, so if the killer wiki app is
 a Perl-based one, I'm sure I can muddle thru implementing it
 
 If anyone has any recommendations for other wiki applications I should
 look at before making a decision, I'd love to hear from you!

Hi Doug,

Thanks for the recommendation -- I did take a brief glance at TikiWiki, but
my original impression was that it was too CMS-heavy for my needs.

Given your recommendation, though, I'll take another look at it, and will
probably download it and play around with it on my local machine.

If anyone else has any other recommendations, I'm still very open to
suggestions!

Much warmth,

Murray
---
Lost in thought...
http://www.planetthoughtful.org

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] PHP wiki recommendations

2005-09-08 Thread Murray @ PlanetThoughtful
Hi All,

I want to add a wiki to my blog site to help create a knowledgebase of the
characters, localities, stories I write to make it easier for new visitors
to delve into the areas that interest them.

I've been experimenting with a couple of different wiki packages, but am
always interested in others' thoughts and recommendations.

In particular, I've looked at MediaWiki and PmWiki. Of the two, I like
MediaWiki's 'completeness', but it's also quite slow and doesn't strike me
as being particularly (or easily?) customizable. PmWiki is probably my
current candidate, but again I'd like to make sure I'm not missing a more
obvious choice.

My shopping list for the ideal wiki application is:

- wiki entries preferably stored in MySQL tables. I'm not adamant about this
(eg PmWiki uses files rather than a db backend), but it would suit my
purposes better to be able to draw from the wiki tables from the front page
of my blog to show lists of recently added and recently updated wiki entries

- non-reliance on CamelCase wiki links. Many of my characters etc use joined
CamelCase names (eg KillFork and DangerSpoon), and to avoid confusion I'd
rather explicitly define links to wiki content

- ability to categorize wiki entries

- ability to compare history of wiki edits and easily reinstate older edits
if wiki pages get 'graffiti'd' 

- ability to allow others to edit / create wiki entries, thru a user id /
password system, so that regulars who would like to participate can do so

- ability to customize presentation of wiki pages, presumably through CSS
etc, so that I can maintain the 'look and feel' of my blog thru the wiki
content

- PHP based, though my host does run Perl, so if the killer wiki app is a
Perl-based one, I'm sure I can muddle thru implementing it

If anyone has any recommendations for other wiki applications I should look
at before making a decision, I'd love to hear from you!

Much warmth,

Murray
---
Lost in thought...
http://www.planetthoughtful.org

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] RE: PHP wiki recommendations

2005-09-08 Thread Finner, Doug
 I'm not a Wiki expert, but have been using TikiWiki for a while and
very much like it.  It does everything you say with the possible
exception of CSS.  It may very well support CSS, I just don't need it so
haven't investigated.  It also allows for the use of templates that can
be applied globally or by each user (these may be the CSS bit, again, I
just haven't played).

User logins can be pre-assigned or user driven so you can control who
does what.

I think you can turn on/off the CamelCase feature.

Doug


-Original Message-
From: Murray @ PlanetThoughtful [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 08, 2005 2:03 AM
To: php-general@lists.php.net
Subject: PHP wiki recommendations

Hi All,

I want to add a wiki to my blog site to help create a knowledgebase of
the characters, localities, stories I write to make it easier for new
visitors to delve into the areas that interest them.

I've been experimenting with a couple of different wiki packages, but am
always interested in others' thoughts and recommendations.

In particular, I've looked at MediaWiki and PmWiki. Of the two, I like
MediaWiki's 'completeness', but it's also quite slow and doesn't strike
me as being particularly (or easily?) customizable. PmWiki is probably
my current candidate, but again I'd like to make sure I'm not missing a
more obvious choice.

My shopping list for the ideal wiki application is:

- wiki entries preferably stored in MySQL tables. I'm not adamant about
this (eg PmWiki uses files rather than a db backend), but it would suit
my purposes better to be able to draw from the wiki tables from the
front page of my blog to show lists of recently added and recently
updated wiki entries

- non-reliance on CamelCase wiki links. Many of my characters etc use
joined CamelCase names (eg KillFork and DangerSpoon), and to avoid
confusion I'd rather explicitly define links to wiki content

- ability to categorize wiki entries

- ability to compare history of wiki edits and easily reinstate older
edits if wiki pages get 'graffiti'd' 

- ability to allow others to edit / create wiki entries, thru a user id
/ password system, so that regulars who would like to participate can do
so

- ability to customize presentation of wiki pages, presumably through
CSS etc, so that I can maintain the 'look and feel' of my blog thru the
wiki content

- PHP based, though my host does run Perl, so if the killer wiki app is
a Perl-based one, I'm sure I can muddle thru implementing it

If anyone has any recommendations for other wiki applications I should
look at before making a decision, I'd love to hear from you!

Much warmth,

Murray
---
Lost in thought...
http://www.planetthoughtful.org
___
This e-mail message has been sent by Kollsman, Inc. and is for the use
of the intended recipients only. The message may contain privileged
or confidential information. If you are not the intended recipient
you are hereby notified that any use, distribution or copying of
this communication is strictly prohibited, and you are requested to
delete the e-mail and any attachments and notify the sender immediately.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] PHP Wiki

2005-02-25 Thread Randy Johnson
Is there a Wiki site for PHP?   Is there a need for one?
-Randy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


RE: [PHP] PHP Wiki

2005-02-25 Thread Jay Blanchard
[snip]
Is there a Wiki site for PHP?   Is there a need for one?
[/snip]

What would be the wiki's purpose here?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] PHP Wiki

2005-02-25 Thread Chris W. Parker
Randy Johnson mailto:[EMAIL PROTECTED]
on Thursday, February 24, 2005 2:50 PM said:

 Is there a Wiki site for PHP?   Is there a need for one?

Been to http://phpcommunity.org/wiki/?


Chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP Wiki

2005-02-25 Thread Randy Johnson
Nope I had not been there.  Thanks for the link
Randy
Chris W. Parker wrote:
Randy Johnson mailto:[EMAIL PROTECTED]
on Thursday, February 24, 2005 2:50 PM said:

Is there a Wiki site for PHP?   Is there a need for one?

Been to http://phpcommunity.org/wiki/?
Chris.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP Wiki

2005-02-25 Thread Robby Russell
On Thu, 2005-02-24 at 17:49 -0500, Randy Johnson wrote:
Is there a Wiki site for PHP?   Is there a need for one?

-Randy

The php.net site doesn't really need a wiki.

or did you mean is there a php-based wiki?

http://www.google.com/search?q=php+wiki


-Robby

-- 
/***
* Robby Russell | Owner.Developer.Geek
* PLANET ARGON  | www.planetargon.com
* Portland, OR  | [EMAIL PROTECTED]
* 503.351.4730  | blog.planetargon.com
* PHP/PostgreSQL Hosting  Development
* --- Now hosting Ruby on Rails Apps ---
/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP Wiki

2005-02-25 Thread Randy Johnson
yea I just thought maybe a php-wiki would be neat, not one programmed in 
php but a wiki for everything php :-)

Randy
Robby Russell wrote:
On Thu, 2005-02-24 at 17:49 -0500, Randy Johnson wrote:
Is there a Wiki site for PHP?   Is there a need for one?
-Randy

The php.net site doesn't really need a wiki.
or did you mean is there a php-based wiki?
http://www.google.com/search?q=php+wiki
-Robby
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP Wiki

2005-02-25 Thread Richard Lynch
Randy Johnson wrote:
 Is there a Wiki site for PHP?

More than I can count.

 Is there a need for one?

Will you fill it up with Good Content?
Or will it be a cobweb?

I personally just don't find myself going back to Wikis and forums and
blogs very often.

Many people thrive on them.

Some folks say If you build it, they will come.

Me, I think it's more along the lines of:
If you build it, and maintain it, and expand it, and maintain it, and
improve it, and maintain it, they will come.

:-)

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] wiki as php object?

2005-01-22 Thread Kurt Yoder
Hi folks
I am creating a php site that will eventually include a wiki. The twist 
is that visitors to my site will each be able to create their own 
sections. Each section should have its own wiki, completely independent 
of all the other wikis. I could of course code up my own wiki from 
scratch, but would prefer not to have to re-invent the wheel.

I have found many wiki implementations that are full-blown 
applications. Has anyone seen a wiki implementation that is more 
integration friendly? Ideally, a wiki could be created, accessed, and 
displayed as an object so that I could completely encapsulate it within 
my own code. This would give me complete control over url's, look and 
feel, etc.

Anyone have any suggestions?
--
Kurt Yoder
http://yoderhome.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] PHP Wiki recomendations

2004-12-25 Thread Greg Donald
Could anyone recommend a good PHP-based Wiki script, for PHP 4.x? 
I've been testing a bunch of them and almost all seem to be crap so
far.

Thanks..


-- 
Greg Donald
Zend Certified Engineer
http://gdconsultants.com/
http://destiney.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP Wiki recomendations

2004-12-25 Thread Matthew Fonda
Yawiki is nice
http://yawiki.com/

On Sat, 2004-12-25 at 09:13, Greg Donald wrote:
 Could anyone recommend a good PHP-based Wiki script, for PHP 4.x? 
 I've been testing a bunch of them and almost all seem to be crap so
 far.
 
 Thanks..
 
 
 -- 
 Greg Donald
 Zend Certified Engineer
 http://gdconsultants.com/
 http://destiney.com/
-- 
Regards,
Matthew Fonda

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: PHP Wiki recomendations

2004-12-25 Thread Matthew Weier O'Phinney
* Greg Donald [EMAIL PROTECTED]:
 Could anyone recommend a good PHP-based Wiki script, for PHP 4.x? 
 I've been testing a bunch of them and almost all seem to be crap so
 far.

Crap in what way(s)? Could you elaborate on those you have tested and
what deficiencies you found -- in part so that any developers of the
wikis in question who might be monitoring this list might fix them, in
part so those on the list wishing to respond will have a better idea of
what you're looking for, and in part so those on the list don't get
flamed down by you when they recommend something you've already
discounted...

-- 
Matthew Weier O'Phinney   | mailto:[EMAIL PROTECTED]
Webmaster and IT Specialist   | http://www.garden.org
National Gardening Association| http://www.kidsgardening.com
802-863-5251 x156 | http://nationalgardenmonth.org

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] wiki

2003-11-13 Thread Dennis Gearon
I need a wiki, VERY simple. BUT OTOH, it'd be nice if it had the ability 
to display, or attache a picture to a topic.

Any good stuff known to exist?

MySQL background.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] wiki

2003-11-13 Thread Raditha Dissanayake
wikipedia.org  - their sourcecode is available as a sourceforge.net project

Dennis Gearon wrote:

I need a wiki, VERY simple. BUT OTOH, it'd be nice if it had the 
ability to display, or attache a picture to a topic.

Any good stuff known to exist?

MySQL background.



--
Raditha Dissanayake.

http://www.radinks.com/sftp/ | http://www.raditha.com/megaupload
Lean and mean Secure FTP applet with | Mega Upload - PHP file uploader
Graphical User Inteface. Just 150 KB | with progress bar.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] WIKI - CMS scripts

2002-04-05 Thread Miles Thompson

This is a general question, and I'm not trying for flames, but I've been 
looking at various CMS sites:

php-nuke, post-nuke, php-website, typo-3, and ez-publish. I've probably 
visited others, but haven't book marked them.

One thing which seems to characterize them all, is that they seem awfully 
busy, and it is easy to lose your way when navigating. Is that because 
the developers are trying to cram as much as possible on to their front 
pages, or do they tend that way as content and headlines are added?

Anyone know of any sites using  any of the aforementioned scripts which are 
less busy, and on which navigation is clearer?

Regards - Miles Thompson

PS If you don't want to clutter the list, reply to me offlist and I'll 
summarize and post. /mt


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php