Otto Vainio | 1 Dec 15:18
Favicon

Re: DokuWiki Plugin Wizard

Michael Klier wrote:
> Hello @list,

Hi
> 
> a couple of days ago Andi came acrosse an Extension Wizard for Firefox
> extentions [1] and thought it might be a good Idea to have something similar
> for DokuWiki Plugins too and I as well as others agreed [2]. So we went ahead
> and put sth. together. Today, the thing went live and can be found at:
> 
> 	http://dwpluginwiz.chimeric.de
> 

found a bug. Yes really :)

For syntax plugin it creates the class as

class plugin_syntax_nnnn extends DokuWiki_Syntax_Plugin {

When it should be

class syntax_plugin_nnnn extends DokuWiki_Syntax_Plugin {

brgds Otto
--

-- 
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist

Michael Klier | 1 Dec 18:22
Picon
Favicon
Gravatar

Re: DokuWiki Plugin Wizard

On Tue, Dec 01, 2009 at 04:18:58PM +0200, Otto Vainio wrote:
> found a bug. Yes really :)
> 
> For syntax plugin it creates the class as
> 
> class plugin_syntax_nnnn extends DokuWiki_Syntax_Plugin {
> 
> When it should be
> 
> class syntax_plugin_nnnn extends DokuWiki_Syntax_Plugin {

Whoops, good catch (I think I should have tried one of the generatd classes
first ;-)). Consider it fixed!

Regards,
	Michael

--

-- 
Michael Klier

www:    http://www.chimeric.de
jabber: chi <at> jabber.shipdown.de
key:    http://downloads.chimeric.de/chi.asc
key-id: 0x8308F551
Philip Herron | 2 Dec 02:16
Gravatar

Source Code Formating and Highlighting

Hey guys,

Its my first time on this list, so for about the last 8 or so months 
I've been designing my own programming language and building its 
interpreter etc, so i want to make a proper release in a few months, and 
so i setup a site http://crules.org, i don't have much on there yet but 
dokuwiki is awesome for this, since i am not a web developer i am a C 
hacker :).

Anyways i am wondering is there any direction you could give me since i 
want to start putting up language specifications and lots of examples 
etc, but it would be nice to have some kind of decent syntax highlighter 
specific to my language that dokuwiki could do for me.

Anyways dokuwiki is brill for people like me so yeah keep it up!

--Phil
--

-- 
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist

Andreas Gohr | 2 Dec 04:00
Favicon
Gravatar

darcs changes 2009-12-02


Good Morning!

This are the darcs changes for DokuWiki committed
yesterday. Please test them and report bugs.

---------------------------------------------------------------------
Tue Dec  1 21:54:26 CET 2009  Chris Smith <chris.eureka[at]jalakai.co.uk>
  * fix footnote tests (includes hack to counter #1652, #1699 fix)
  Ignore-this: c5a934d8bce1c2b5953632bedd0c4f64

Tue Dec  1 21:26:03 CET 2009  Grzegorz Zur <grzegorz.zur[at]gmail.com>
  * Polish language update
  Ignore-this: 23537f1fe308cab68778f2da000aeaaf

Tue Dec  1 20:24:49 CET 2009  Andreas Gohr <andi[at]splitbrain.org>
  * more test fixes
  Ignore-this: 49e3a74cd437da3f65d66e1bf56b8ec

Tue Dec  1 20:16:22 CET 2009  Andreas Gohr <andi[at]splitbrain.org>
  * fixed some test cases
  Ignore-this: d14f492efbb4ef316895ef402308176e

Tue Dec  1 15:01:48 CET 2009  Kazutaka Miyasaka <kazmiya[at]gmail.com>
  * temporary workaround against PHP bug #49733
  Ignore-this: 286b24e2f71cf179f8a70aba64a42b48

Tue Dec  1 19:46:11 CET 2009  Andreas Gohr <andi[at]splitbrain.org>
  * syntax fixes in valencian language files
  Ignore-this: 12db90d91e276b0085c828efe11c8ca2
(Continue reading)

Andreas Gohr | 2 Dec 20:28
Favicon
Gravatar

Release Candidate available

Hi all!

With just one day delay, the first release candidate for the soon to
be stable release was made available.

Now everybody, please head over to http://splitbrain.org/go/dokuwiki
for downloading and testing it.

An abridged changelog is available at http://www.dokuwiki.org/changes

Thanks to all contributors who made this possible.

Andi

-- 
splitbrain.org
--

-- 
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist

Andreas Gohr | 3 Dec 04:00
Favicon
Gravatar

darcs changes 2009-12-03


Good Morning!

This are the darcs changes for DokuWiki committed
yesterday. Please test them and report bugs.

---------------------------------------------------------------------
Wed Dec  2 19:47:16 CET 2009  Andreas Gohr <andi[at]splitbrain.org>
  tagged release candidate 2009-12-02

Wed Dec  2 19:44:29 CET 2009  Andreas Gohr <andi[at]splitbrain.org>
  * release preparations
  Ignore-this: 36b32e660a93ab1af90edf22dc274dfc

Wed Dec  2 19:30:51 CET 2009  Fernando Gomez <fjgomez[at]gmail.com>
  * Spanish language update
  Ignore-this: f554aa2828a6779f0564dbbce8481e50
---------------------------------------------------------------------

Single patches can be downloaded from
http://dev.splitbrain.org/darcs/index.cgi/dokuwiki/?c=patches

Bye,
your darcs changelog mailer

--

-- 
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist

(Continue reading)

Joao Pissarro | 4 Dec 23:24

PHP and echo command

Hi,

I'm trying to do a PHP block on Dokuwiki, with the following code:

<php>
echo "Hello";
</php>

And I get the following error on saving:

Precondition Failed
The precondition on the request for the URL /wiki/doku.php evaluated to
false.

With the code block:

<php>
phpinfo();
</php>

everything works. I have tried some other combinations and all works
until the "echo" command is used. Then the same error is issued.

Using:
FreeBSD pendrell.textdrive.com 5.5-STABLE FreeBSD 5.5-STABLE #0: Fri Nov
9 06:03:26 GMT 2007
root <at> pendrell.textdrive.com:/usr/obj/usr/src/sys/BSD5s i386 

Any ideas how to solve this issue?

(Continue reading)

Andreas Gohr | 5 Dec 08:49
Favicon
Gravatar

Re: PHP and echo command

> I'm trying to do a PHP block on Dokuwiki, with the following code:
>
> And I get the following error on saving:
>
> Precondition Failed

Probably faq:mod_security

-- 
splitbrain.org
--

-- 
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist

target | 5 Dec 12:23
Picon
Favicon

gallery plugin, mediamanager - image loading speed performance

Hi,

Im new to this list but dokuwiki user since 2006.

I have general questions according performance problems in case of image 
rendering.
In situation, lets say: more than 20 typical digicam .jpgs (2 - 4 MB 
each) inside a namespace, thumbnail loading becomes very slow. Sometimes 
browsers hang... (My server is not very fast, but also not especially slow).
This behaviour seems to me is because of loading the whole image and 
creating a thumbnail from it on every page-load. Is there a way to 
configure it  for storing  thumbnails  permanently on server-side. Or is 
it supposed to do that and  am doing something wrong?
I still don't understand the caching/thumbnail mechanism very well. Can 
somebody give me a hint, maybe also to work around this?

Does 'caching' parameter in gallery-plugin mean client-side caching, 
during a loggon session?
Could the cache plugin help here (which i didnt find good 
usage-documentation for)

Thanks
Chris
--

-- 
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist

Anika Henke | 5 Dec 13:28
Gravatar

Re: Source Code Formating and Highlighting

Philip Herron wrote:
> I've been designing my own programming language

> Anyways i am wondering is there any direction you could give me since i 
> want to start putting up language specifications and lots of examples 
> etc, but it would be nice to have some kind of decent syntax highlighter 
> specific to my language that dokuwiki could do for me.

DokuWiki uses GeSHi for syntax highlighting. You can easily build and 
add your own language file:
http://qbnz.com/highlighter/geshi-doc.html#language-files

Anika
--

-- 
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist


Gmane