Re: Pear (Re: wiki parser)

2006-09-15 Thread codecowboy

Can we get back to the original question please???


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~--~~~~--~~--~--~---



wiki parser

2006-09-14 Thread codecowboy

I am looking to give site users the ability to input wiki syntax into
form fields.  I have been looking for a good wiki text parser and I
have only found a few.  The ones that I have found were all from PEAR.
My requirements are that the parser must be extensible.  Our site will
have some special wiki tags that are more advanced than traditional
tags.  It would also be nice if I could find a wiki text validator (i
can't find one anywhere)  Does anyone know where I could find some good
open source or even commercial solutions?  I have already coded my own
parser but I realized that someone else has more than likely coded a
better one that is more robust.

Thank you,

codecowboy


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~--~~~~--~~--~--~---



Pear (Re: wiki parser)

2006-09-14 Thread Brian French

Actually, an extended questions to his...

How could you use PEAR in cakephp? (no, im lazy ad didnt do even a basic 
search)

codecowboy wrote:
 I am looking to give site users the ability to input wiki syntax into
 form fields.  I have been looking for a good wiki text parser and I
 have only found a few.  The ones that I have found were all from PEAR.
 My requirements are that the parser must be extensible.  Our site will
 have some special wiki tags that are more advanced than traditional
 tags.  It would also be nice if I could find a wiki text validator (i
 can't find one anywhere)  Does anyone know where I could find some good
 open source or even commercial solutions?  I have already coded my own
 parser but I realized that someone else has more than likely coded a
 better one that is more robust.

 Thank you,

 codecowboy


 

   

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~--~~~~--~~--~--~---



Re: Pear (Re: wiki parser)

2006-09-14 Thread John David Anderson (_psychic_)


On Sep 14, 2006, at 2:36 PM, Brian French wrote:


 Actually, an extended questions to his...

 How could you use PEAR in cakephp? (no, im lazy ad didnt do even a  
 basic
 search)

Let us know how that search turns out. ;o)

Hint: vendors().

-- John


 codecowboy wrote:
 I am looking to give site users the ability to input wiki syntax into
 form fields.  I have been looking for a good wiki text parser and I
 have only found a few.  The ones that I have found were all from  
 PEAR.
 My requirements are that the parser must be extensible.  Our site  
 will
 have some special wiki tags that are more advanced than traditional
 tags.  It would also be nice if I could find a wiki text validator (i
 can't find one anywhere)  Does anyone know where I could find some  
 good
 open source or even commercial solutions?  I have already coded my  
 own
 parser but I realized that someone else has more than likely coded a
 better one that is more robust.

 Thank you,

 codecowboy






 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~--~~~~--~~--~--~---



Re: Re: Pear (Re: wiki parser)

2006-09-14 Thread Samuel DeVore

like a vendor, (precede with pear/



On 9/14/06, John David Anderson (_psychic_) [EMAIL PROTECTED] wrote:


 On Sep 14, 2006, at 2:36 PM, Brian French wrote:

 
  Actually, an extended questions to his...
 
  How could you use PEAR in cakephp? (no, im lazy ad didnt do even a
  basic
  search)

 Let us know how that search turns out. ;o)

 Hint: vendors().

 -- John

 
  codecowboy wrote:
  I am looking to give site users the ability to input wiki syntax into
  form fields.  I have been looking for a good wiki text parser and I
  have only found a few.  The ones that I have found were all from
  PEAR.
  My requirements are that the parser must be extensible.  Our site
  will
  have some special wiki tags that are more advanced than traditional
  tags.  It would also be nice if I could find a wiki text validator (i
  can't find one anywhere)  Does anyone know where I could find some
  good
  open source or even commercial solutions?  I have already coded my
  own
  parser but I realized that someone else has more than likely coded a
  better one that is more robust.
 
  Thank you,
 
  codecowboy
 
 
 
 
 
 
  


 



-- 
==
S. DeVore
(the old fart) the advice is free, the lack of crankiness will cost you

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~--~~~~--~~--~--~---



Re: Pear (Re: wiki parser)

2006-09-14 Thread John Zimmerman
Actually for some reason many of the PEAR libraries will not load properly if you try to use them via vendors.QuickForm is one of these. It has been a while since I was having problems, but basically it had to do with the order in which things were being included and constants that were trying to be re-defined.
My work around was to performa a require_once outside of a controller or other class definition definition. I ended up defining all of my include_path modifications and performing require_once for all the pear libraries I wanted to use in my 
bootstrap.php file.After that I could use the pear libraries pretty much like normal.On 9/14/06, codecowboy 
[EMAIL PROTECTED] wrote:Anyways!!!lol
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake PHP group.  To post to this group, send email to cake-php@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cake-php  -~--~~~~--~~--~--~---