[pmwiki-users] initialize input textarea

2007-04-05 Thread SteP
Cookbook.Input says that there currently isn't a mechanism to initialize an input textarea control. Are there any plans to add a way to do it? Are there workarounds? It seems quite complicated, since the initial value could easily include quote characters and multiple lines. TIA SteP

[pmwiki-users] Slideshow presentations

2007-04-05 Thread Thierry Vanderschueren
Hi everybody, I've installed the slideshow cookbook ( http://www.pmwiki.org/wiki/Cookbook/SlideShow). It works fine, thanks Bardo ! But I can't make the incremental lists work. I followed the documentation : *%list class=incremental%item1 *item2 *item3 I can see in the html source code the

Re: [pmwiki-users] initialize input textarea

2007-04-05 Thread Petko Yotov
On Thursday 05 April 2007 09:32, SteP wrote: Cookbook.Input says that there currently isn't a mechanism to initialize an input textarea control. Are there any plans to add a way to do it? Are there workarounds? It seems quite complicated, since the initial value could easily include quote

[pmwiki-users] Cookbook Word2PmWiki

2007-04-05 Thread SMETS Stephane BKS-IT
Hello all Is there somebody which use this cookbook? With windows 2000 and Word 2000, I have a GPF when I try to open the document in word - yes, it is not a real cookbook, but a Word Macro Thanks forthe help Stéphane sa Banksys nv - Chaussee de Haecht 1442 Haachtsesteenweg - 1130 Brussels -

Re: [pmwiki-users] Slideshow presentations

2007-04-05 Thread Thierry Vanderschueren
Alright, I got it now ! The incremental lists do not work on the very first slide (slide 0) but work fine from the second slide on. And, one more thing to be aware of, one must use the keyboard controls (space bar) to show the items of the list. It doesn't work when clicking on the left or right

Re: [pmwiki-users] initialize input textarea

2007-04-05 Thread The Editor
On 4/5/07, Petko Yotov [EMAIL PROTECTED] wrote: On Thursday 05 April 2007 09:32, SteP wrote: Cookbook.Input says that there currently isn't a mechanism to initialize an input textarea control. Are there any plans to add a way to do it? Are there workarounds? It seems quite complicated,

Re: [pmwiki-users] initialize input textarea

2007-04-05 Thread SteP
Petko Yotov wrote: There is at least one workaround, see http://pmwiki.org/wiki/Cookbook/Textarea . Feel free to test it. Petko Wow, it's exactly what I was looking for. I use a PTV to initialize the textarea within a fox form. Posting the fox form saves the new text into the same PTV.

Re: [pmwiki-users] initialize input textarea

2007-04-05 Thread Hans
Thursday, April 5, 2007, 3:36:19 PM, SteP wrote: In my limited testing I found one issue, and added a noted to the recipe page: if you're entering markup in the text area, line breaks like \\ should be entered as because something -I suspect the input control- will turn each \\ into a \

Re: [pmwiki-users] initialize input textarea

2007-04-05 Thread Petko Yotov
On Thursday 05 April 2007 16:36, SteP wrote: Petko Yotov wrote: There is at least one workaround, see http://pmwiki.org/wiki/Cookbook/Textarea . Feel free to test it. Petko Wow, it's exactly what I was looking for. I use a PTV to initialize the textarea within a fox form. Posting the

Re: [pmwiki-users] initialize input textarea

2007-04-05 Thread Petko Yotov
On Thursday 05 April 2007 16:03, Petko Yotov wrote: On Thursday 05 April 2007 16:36, SteP wrote: In my limited testing I found one issue, and added a noted to the recipe page: if you're entering markup in the text area, line breaks like \\ should be entered as because something -I

Re: [pmwiki-users] initialize input textarea

2007-04-05 Thread Hans
Thursday, April 5, 2007, 3:36:19 PM, SteP wrote: I use a PTV to initialize the textarea within a fox form. Posting the fox form saves the new text into the same PTV. How does this work? Can you post multi-line text from a textarea into a PTV? I thought you can only use single lines for PTVs.

[pmwiki-users] Setting titles, keywords, description, and passwords

2007-04-05 Thread The Editor
Just released a fixed, simpler, and more efficient attr command extension, thanks to some great help and ideas from Pm. You can use it to set titles, keywords, page description and passwords, and/or edit them. There is also an {(attr )} ZAP markup which allows you list these kinds of things in

Re: [pmwiki-users] initialize input textarea

2007-04-05 Thread Hans
Thursday, April 5, 2007, 4:27:53 PM, The wrote: Sure, I've been doing it for ages. See http://www.fast.st/zapbeta/pmwiki.php?n=Snippets/MagicBoxes sorry this does not explain much. ~Hans ___ pmwiki-users mailing list pmwiki-users@pmichaud.com

Re: [pmwiki-users] initialize input textarea

2007-04-05 Thread Petko Yotov
On Thursday 05 April 2007 16:54, Hans wrote: Thursday, April 5, 2007, 3:36:19 PM, SteP wrote: I use a PTV to initialize the textarea within a fox form. Posting the fox form saves the new text into the same PTV. How does this work? Can you post multi-line text from a textarea into a PTV?

Re: [pmwiki-users] UTF-8 as core default encoding (was: Headersarenotsending charset !)

2007-04-05 Thread Petko Yotov
On Monday 02 April 2007 15:04, Athan wrote: Patrick R. Michaud [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I suggest holding off on the rewrite in xlpage-utf-8.php, if only because I'm expecting to deal with case-insensitive utf-8 searches later tonight, and that will

Re: [pmwiki-users] initialize input textarea

2007-04-05 Thread The Editor
On 4/5/07, Petko Yotov [EMAIL PROTECTED] wrote: On Thursday 05 April 2007 16:54, Hans wrote: Thursday, April 5, 2007, 3:36:19 PM, SteP wrote: I use a PTV to initialize the textarea within a fox form. Posting the fox form saves the new text into the same PTV. How does this work? Can

Re: [pmwiki-users] Database Standard and ADOdb

2007-04-05 Thread Ben Stallings
On March 29, Stephane wrote, I try to use dataquery cookbook with adodb. I receive this error : Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'ODBC' at 'localhost' (using password: NO) in D:\Phoenix\webroot\wiki\cookbook\adodb\drivers\adodb-mysql.inc.php on

[pmwiki-users] Search function query

2007-04-05 Thread ABC XYZ
Hi, I am working on a content management project.(Using PHP for the first time). I have managed to add the search button to the skins tmpl file and it dislays fine on my web page but I have no clue as to how to activate this function. Here is what I added to the skin TMPL file: /div div

Re: [pmwiki-users] initialize input textarea

2007-04-05 Thread SteP
Petko Yotov wrote: The form (:pagetextvar:some value:) can be multiline as of lately. That's right. Hans, this link http://pmichaud.com/pipermail/pmwiki- users/2006-September/033404.html referenced in Cookbook.PageTextVariables explains it. ___

[pmwiki-users] Parse error: syntax error, unexpected T_INCLUDE_ONCE

2007-04-05 Thread Donald Z. Osborn
Ran into an odd error setting up PmWiki on a new site (and server). When calling up the page, get this sort of message (where the line number = the first line local/config.php with an include_once(...); statement:* Parse error*: syntax error, unexpected T_INCLUDE_ONCE in *

Re: [pmwiki-users] Parse error: syntax error, unexpected T_INCLUDE_ONCE

2007-04-05 Thread Joshua J. Kugler
On Thursday 05 April 2007 18:35, Donald Z. Osborn wrote: Ran into an odd error setting up PmWiki on a new site (and server). When calling up the page, get this sort of message (where the line number = the first line local/config.php with an include_once(...); statement:* Parse error*: syntax

Re: [pmwiki-users] Parse error: syntax error, unexpected T_INCLUDE_ONCE

2007-04-05 Thread Donald Z. Osborn
Thanks, that indeed was one problem, but the software is apparently having trouble finding the files indicated in the include_once lines even though everything appears to be where it should be. ... [function.include-oncehttp://donosborn.org/pmwiki/pmwiki.php/Main/function.include-once]: failed

Re: [pmwiki-users] Parse error: syntax error, unexpected T_INCLUDE_ONCE

2007-04-05 Thread Donald Z. Osborn
Thanks for this. I double checked and these are okay. There were some other small issues and once each was taken care of the error messages are gone. Still a problem with functionality (maybe have to do something more with wiki.d which is chmod 777). Also an approve sites for the image in the