Andreas Gohr | 1 Jan 04:00
Favicon
Gravatar

darcs changes 2009-01-01


Good Morning!

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

---------------------------------------------------------------------
Thu Jan  1 01:00:01 CET 2009  Andreas Gohr <andi[at]splitbrain.org>
  tagged develsnap 2009-01-01
---------------------------------------------------------------------

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

Andreas Gohr | 3 Jan 04:00
Favicon
Gravatar

darcs changes 2009-01-03


Good Morning!

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

---------------------------------------------------------------------
Fri Jan  2 14:15:40 CET 2009  Grzegorz Zur <grzegorz.zur[at]gmail.com>
  * Polish language update
---------------------------------------------------------------------

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

Andreas Gohr | 5 Jan 04:00
Favicon
Gravatar

darcs changes 2009-01-05


Good Morning!

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

---------------------------------------------------------------------
Sun Jan  4 15:22:15 CET 2009  Diego Pierotto <ita.translations[at]tiscali.it>
  * Italian language update
---------------------------------------------------------------------

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

Martin Erlandsson | 5 Jan 08:46
Picon

Re: Disabling namespaces in DokuWiki?

On Mon, Dec 22, 2008 at 2:17 PM, Samuel Penn <sam <at> glendale.org.uk> wrote:
>
> On Friday 19 December 2008 07:40:26 Martin Erlandsson wrote:
> > Different contexts have different needs, I guess.
> >
> > In my case (my personal view based on the wiki contexts I have
> > experience from), I find it very confusing to mix pure wiki linking
> > with a hierarchical strategy. Wikipedia and many other wikis work just
> > fine without namespaces or hierarchies. It's just a matter of handling
> > disambiguities in a good way.
>
> Pretty much the main reason I picked Dokuwiki was that it has
> hierarchical namespaces, something most (all?) other wiki software
> lacks.

If namespaces support is a good thing, why don't more wikis have it?
In my view (as previously stated) this is because namespaces go
against the wiki philosophy. All pages should be considered as remote
islands of independent pieces of information. (Breaking out of the
hierarchical mindset...) Every page should independently define itself
in order to simplify reuse from all contexts.

That said, I do believe namespaces *could* be useful in some very
specific, narrow and hierarchical contexts...

>
> But then, all my wikis contain several very distinct subject
> areas, with similar topics within each subject. Creating a
> new wiki for each subject would be a nightware. Whenever I've
> had to disambiguate pages on flat wikis, it always seems to
(Continue reading)

Dwayne Bent | 5 Jan 16:12
Favicon

Section Edit in Syntax Plugin

Hi all,

I'm working on the next version of my screenplay plugin 
(http://www.dokuwiki.org/plugin:screenplay) and I'd like to know what 
the easiest way to add section edit buttons to it would be? Basically, I 
want to add a section edit button for every act or scene heading that 
functions exactly like regular section edit buttons. Thanks.

-Dwayne Bent
--

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

Andreas Gohr | 5 Jan 22:50
Favicon
Gravatar

Re: Section Edit in Syntax Plugin

> I'm working on the next version of my screenplay plugin
> (http://www.dokuwiki.org/plugin:screenplay) and I'd like to know what the
> easiest way to add section edit buttons to it would be? Basically, I want to
> add a section edit button for every act or scene heading that functions
> exactly like regular section edit buttons. Thanks.

You'd need to call the section_edit() method of the renderer from your
render() method. You will need to pass the bytecounts of the start and
the end of your section to it. This info do you get from the $pos var
passed to your handle() method.

Andi

-- 
splitbrain.org
--

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

Andreas Gohr | 6 Jan 04:00
Favicon
Gravatar

darcs changes 2009-01-06


Good Morning!

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

---------------------------------------------------------------------
Mon Jan  5 23:34:47 CET 2009  Alexei Tereschenko <aytereschenko[at]gmail.com>
  * Russian language update

Mon Jan  5 21:06:26 CET 2009  Wouter Schoot <wouter[at]schoot.org>
  * Dutch language update
---------------------------------------------------------------------

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

Dwayne Bent | 6 Jan 19:03
Favicon

Re: Section Edit in Syntax Plugin

> You'd need to call the section_edit() method of the renderer from your
> render() method. You will need to pass the bytecounts of the start and
> the end of your section to it. This info do you get from the $pos var
> passed to your handle() method.
> 
> Andi

Thanks Andi, I've now gotten section edits working, but I'm wondering
what the purpose of the $level parameter is. I assume it's for nested
sections?

-Dwayne Bent

--

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

Andreas Gohr | 6 Jan 19:14
Favicon
Gravatar

Re: Section Edit in Syntax Plugin

> Thanks Andi, I've now gotten section edits working, but I'm wondering
> what the purpose of the $level parameter is. I assume it's for nested
> sections?

Have a look at the xhtml renderer code. It's basically used to check
if a section edit button should be displayed or not (only the upper
section levels have buttons usually).

Andi

-- 
splitbrain.org
--

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

Lindgren Daniel | 7 Jan 10:20
Picon

SV: Re: Disabling namespaces in DokuWiki?

> > Pretty much the main reason I picked Dokuwiki was that it has 
> > hierarchical namespaces, something most (all?) other wiki software 
> > lacks.
> 
> If namespaces support is a good thing, why don't more wikis have it?
> In my view (as previously stated) this is because namespaces 
> go against the wiki philosophy. All pages should be 
> considered as remote islands of independent pieces of 
> information. (Breaking out of the hierarchical mindset...) 
> Every page should independently define itself in order to 
> simplify reuse from all contexts.
> 
> That said, I do believe namespaces *could* be useful in some 
> very specific, narrow and hierarchical contexts...

One obvious example is when you want to apply security settings on
sections of the wiki. With a flat structure it is practically impossible
(administration nightmare, every page has to be secured individually),
with ACL support and a namespace structure it is simple, elegant and
requires minimal administration. Bind DokuWiki to an LDAP service and
it's even better.

We chose DokuWiki for that reason. If you really want a flat structure
and do not care about ACL support, why not use MediaWiki instead?

BR,
Daniel Lindgren

--

-- 
DokuWiki mailing list - more info at
(Continue reading)


Gmane