Discussion:
darcs changes
Andreas Gohr
2005-07-12 02:00:02 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Mon Jul 11 23:28:43 CEST 2005 andi[at]splitbrain.org
* added dumy files for windows compatibility
Some Windows archive tools do not extract empty directories from a tar
archive. This patch adds empty files to the data dirs to make sure they
are extracted

Mon Jul 11 21:58:50 CEST 2005 Anders Betnér <andbe611[at]users.sourceforge.net>
* minor bugfix to use strings instead of nonexistant defines

Mon Jul 11 18:51:23 CEST 2005 andi[at]splitbrain.org
* changed spellcheck access key to k #448

Mon Jul 11 18:39:37 CEST 2005 Bohumir Zamecnik <bohumir[at]zamecnik.org>
* cs lang update
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-13 02:00:02 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Tue Jul 12 23:12:36 CEST 2005 Christopher Smith <chris[at]teacherscpd.co.uk>
* make custom geshi language styles possible

Tue Jul 12 23:09:40 CEST 2005 Rainer Weinhold <mom.mom[at]gmx.net>
* safemode hack fixes #179

Tue Jul 12 23:02:58 CEST 2005 Benjamin Gilbert <gilbert.benjamin[at]mayo.edu>
* Security fix for page exposure #456
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-14 02:00:02 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Wed Jul 13 20:04:56 CEST 2005 andi[at]splitbrain.org
* fix for multiply entity #457

Wed Jul 13 19:38:30 CEST 2005 andi[at]splitbrain.org
tagged rel 2005-07-13

Wed Jul 13 19:37:24 CEST 2005 andi[at]splitbrain.org
* spamlist update
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Rainer Weinhold
2005-07-18 13:07:15 UTC
Permalink
Hello,

could you check if my eMail is subscribed (***@gmx.de) ?

I was subscribed tried to post, got an error that I'm not
authentificated. So I unsubscribed und subscribed again.
You have sent a message to be posted on the
gmane.comp.web.wiki.dokuwiki.general newsgroup.
This is a non-public mailing list, which means that you have to
subscribe to the list to post to it. If you're already subscribed to
the list, Gmane can forward this message to the list if you respond to
this message. If not, you should sign up to the mailing list first,
and then respond to this message, or just forget about it.
Many mailing lists have an option to subscribe to a list, but then put
it in 'nomail' mode, which means that you won't receive any mail from
the list.
The mailing list software used for the list in question is ecartis.
You have to respond within one week.
PS: The Changes in the List are comming.
Andreas Gohr
2005-07-18 13:15:06 UTC
Permalink
Yes you are. We can read your mail :-)
This is a non-public mailing list, which means that you have to
subscribe to the list to post to it. If you're already subscribed to
the list, Gmane can forward this message to the list if you respond to
this message. If not, you should sign up to the mailing list first,
and then respond to this message, or just forget about it.
Did you read the stuff above? Did you as it says?

Andi
Rainer Weinhold
2005-07-18 13:55:05 UTC
Permalink
Post by Andreas Gohr
Yes you are. We can read your mail :-)
This is a non-public mailing list, which means that you have to
subscribe to the list to post to it. If you're already subscribed to
the list, Gmane can forward this message to the list if you respond to
this message. If not, you should sign up to the mailing list first,
and then respond to this message, or just forget about it.
Did you read the stuff above? Did you as it says?
Andi
Ok ...
Chris Smith
2005-07-13 23:24:12 UTC
Permalink
Hello,

I wonder if the plugin interface can be extended to provide two
improvements:

(1) checking if any plugin has been added/updated since the page cache was
created in much the same way that p_cached_html() checks the cachetime
against the latest modified time for several dokuwiki files.

I think this is particularly important and should be relatively easy to
implement from existing plugins. Something along the lines of checking the
'date' returned by getinfo() method.

(2) somehow recording any plugins used (along with some plugin supplied key
data) in page parsing/rendering and in the process of determining whether or
not the page should be served from the cache query those plugins to see if
the cache file can be used.

I think this might be more difficult, but would be very useful for plugins
that include data external to the current wiki page. It would give those
plugins an opportunity to verify the currency of the data used when the
cached version was prepared.

It is possible now for the plugin to force no caching on the page. That is
an inelegant solution and it loses the benefits of caching for what is
probably the majority of page views when the cached version would be
sufficient.

I think points for discussion are,
- how dokuwiki can record which plugins were involved in preparation of the
cached version and
- how the plugins can provide information that they can use later to
determine page currency.

Neat and elegant solutions to complex problems aren't really my thing :)

However, I would think that points to two extra methods for plugins.
- after the page is prepared, for each plugin used, dokuwiki calls a method
to discover if the plugin wishes to put any limits on page caching. The
plug in returns a variable containing the data it needs to establish page
currency or false/null for no restrictions.
- when deciding if a cached version of a page can be used, dokuwiki calls a
method with the previously supplied data to get a true/false answer.

I suspect most plugins could ignore these two methods, happy with the values
provided by the methods of the parent class. Those plugins like include &
source would supply overriding methods.

I am not sure of an appropriate method for dokuwiki to store the data. A
third cache file seems excessive. Could it be added to one of the other
two?

Any other thoughts or ideas?

Cheers,

Chris
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-14 19:02:41 UTC
Permalink
Post by Chris Smith
(1) checking if any plugin has been added/updated since the page cache
was created in much the same way that p_cached_html() checks the
cachetime against the latest modified time for several dokuwiki files.
If you install a plugin just do a touch conf/dokuwiki.php to invalidate all caches... I think that's easy enough.
Post by Chris Smith
(2) somehow recording any plugins used (along with some plugin
supplied key data) in page parsing/rendering and in the process of
determining whether or not the page should be served from the cache
query those plugins to see if the cache file can be used.
Hmm. If it is just about cache or no cache the plugin could simply set info['cache'] = false for the renderer. Eg:

function render($mode, &$renderer, $data) {
$renderer->info['cache'] = false;
// do the render stuff...
}

Andi
Chris Smith
2005-07-14 21:59:47 UTC
Permalink
Post by Andreas Gohr
Post by Chris Smith
(2) somehow recording any plugins used (along with some plugin
supplied key data) in page parsing/rendering and in the process of
determining whether or not the page should be served from the cache
query those plugins to see if the cache file can be used.
Hmm. If it is just about cache or no cache the plugin could
It really more than simply no cache / cache. If the plugin relies on
infrequently changing external data - e.g. another wiki page or file - most
of the time caching is desired. It would be nice(tm) if the plugin could be
given the opportunity to invalidate the cache. :)

Chris
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Chris Smith
2005-07-14 22:54:06 UTC
Permalink
Hi,

I can't find any documentation regarding the getSort() method. From looking
at the code, the number returned governs the order of the patterns in the
parser, lower numbers coming first.

Can anyone explain:

- What should be considered in choosing the number the method returns?

- What difference/problems is a badly chosen number going to cause?

Thanks in advance for the help,

Cheers,

Chris
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-17 17:11:08 UTC
Permalink
On Thu, 14 Jul 2005 23:54:06 +0100
Post by Chris Smith
Hi,
I can't find any documentation regarding the getSort() method. From
looking at the code, the number returned governs the order of the
patterns in the parser, lower numbers coming first.
To quote from
http://wiki.splitbrain.org/wiki:parser#order_of_adding_modes_important
Post by Chris Smith
Haven't entirely nailed down the "rules" on this one but the order in which modes are added is important (and the Parser doesn't check this for you). In particular, the eol mode should be loaded last, as it eats linefeed characters that may prevent other modes like lists and tables from working properly.<<
In general you should chose a unique number which is somewhat close to a similar mode. Then if you encounter problems (eg. modes do not nest correctly or eat some of your syntax) you should try to reorder...

In my experience the sortorder does not matter much.

Andi
Andreas Gohr
2005-07-15 02:00:01 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Fri Jul 15 00:37:51 CEST 2005 chris[at]teacherscpd.co.uk
* Doku_Handler->plugin() method fix, incorrectly named handler object

Thu Jul 14 22:13:33 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* The authcheck now prints a warning if no ACLs are available.

Thu Jul 14 21:33:36 CEST 2005 andi[at]splitbrain.org
* updated GeSHi to 1.0.7

Thu Jul 14 21:15:17 CEST 2005 Justin Kelly <linuxppc[at]gmail.com>
* small print.css style adjustments

Thu Jul 14 02:27:31 CEST 2005 chris[at]teacherscpd.co.uk
* long <?php tag update, all for tpl/default/footer.html
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Esther Brunner
2005-07-15 12:17:43 UTC
Permalink
Post by Chris Smith
Post by Andreas Gohr
Hmm. If it is just about cache or no cache the plugin could
It really more than simply no cache / cache. If the plugin relies on
infrequently changing external data - e.g. another wiki page or
file - most
of the time caching is desired. It would be nice(tm) if the plugin
could be
given the opportunity to invalidate the cache. :)
I agree with Chris. Plugins should be able to make some checks at
showtime, not only when the page is created for the cache. I use
$renderer->info['cache'] = FALSE in the include plugin, but I
consider it more like a hack. And it's no solution for a plugin that
will be used in a lot of pages. For example, I wanted to turn the
discussion template into a comments plugin, but that would only be
possible at the price of turning caching virtually off for the whole
site.

-- esther
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-15 21:42:31 UTC
Permalink
On Fri, 15 Jul 2005 14:17:43 +0200
Post by Esther Brunner
I agree with Chris. Plugins should be able to make some checks at
showtime, not only when the page is created for the cache.
You're right but if there have to a lot of stuff to be executed to calculate cache validity the speedup of using a cache may be contradicted...

If you have an idea how this could be efficiently implemented I will listen :-)

Andi
Andreas Gohr
2005-07-16 02:00:02 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Fri Jul 15 23:36:45 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* fix for auth_ldap if mapping is not defined
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-17 02:00:01 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Sat Jul 16 13:12:25 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* useheading fixes #460 #465
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-19 02:00:01 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Mon Jul 18 19:38:42 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* pagetemplate support #104
This adds very simple pagetemplate support. When a file named _template.txt
exists in a namespace this file's contents are loaded into the editor when
a new page is added in the namespace.

Please note that this file is not editable from within the Wiki as it starts
with an underscore. The wiki admin has to create it her self on the
filesystem.
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-20 02:00:01 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Tue Jul 19 23:16:58 CEST 2005 Roberto Bolli <info[at]rbnet.it>
* italian language update

Tue Jul 19 23:13:52 CEST 2005 chinsan <chinsan[at]mail2000.com.tw>
* zh-tw lang update
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-24 02:00:01 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Sat Jul 23 22:52:35 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* removed custom.conf
custom.conf is no longer supported

Sat Jul 23 22:48:24 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* Local configuration files #349
Local configs can now be added to the following files to make
updating simpler:

acronyms.local.conf
mime.local.conf
smileys.local.conf
entities.local.conf
interwiki.local.conf
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-25 02:00:03 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Sun Jul 24 22:11:11 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* EXIF/IPTC metadata in media popup

Sun Jul 24 14:50:47 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* some minor fixes in image detail handling

Sun Jul 24 13:55:40 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* first step in Image metadata support
This adds a detail page for images, for JPEG files
additional metadata from EXIF and IPTC fields is shown
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-26 02:00:04 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Mon Jul 25 20:34:10 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* added missing detail.php
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-27 02:00:03 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Tue Jul 26 21:14:12 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* es language update
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-29 02:00:04 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Thu Jul 28 22:40:42 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* GeSHi updated to 1.0.7.1

Thu Jul 28 20:42:38 CEST 2005 Brian Cowan <brian.cowan[at]reed.edu>
* use fread instead of fpassthru in fetch.php

Thu Jul 28 20:13:07 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* added missing JavaScript files for fancy footnotes

Thu Jul 28 14:41:31 CEST 2005 chris[at]teacherscpd.co.uk
* footnote fix: update to previous patch, corrects IE issues

Thu Jul 28 02:57:20 CEST 2005 chris[at]teacherscpd.co.uk
* syntax plugin class update: add getAllowedTypes() method (compatible with plugins written prior to the patch, although they should be updated!)

Thu Jul 28 02:55:22 CEST 2005 chris[at]teacherscpd.co.uk
* footnote fix: almagamate identical footnotes, insitu footnote popups

Thu Jul 28 20:04:47 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* handle all RFC 1738 compliable schemes in external links
RFC 1738 states:
Scheme names consist of a sequence of characters. The lower case
letters "a"--"z", digits, and the characters plus ("+"), period
("."), and hyphen ("-") are allowed.

DokuWiki did only recognize alphanumeric characters, this patch adds
periods, plus and hyphen.

Thanks to "ytrewq1" for pointing that out.
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-30 02:00:02 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Fri Jul 29 18:30:01 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* fallback to default template if custom one is not available

Fri Jul 29 18:13:31 CEST 2005 Johannes Buchner <buchner.johannes[at]gmx.at>
* typo fix for actions.inc #480

Fri Jul 29 17:54:57 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* DOKU_CONF define for config directory #479
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-07-31 02:00:03 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Sat Jul 30 23:51:56 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* Changed pluginloading to use references
This patch allows the use of $this in syntax plugins to set internal variables
and let them remain between handle and render calls. Even when it is possible
now to use this method you should exchange data betwenn handler and render calls
by using the $data array only.

Sat Jul 30 13:25:50 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* recoded chinese language files #485
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-08-01 02:00:03 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Sun Jul 31 19:26:12 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* Personal wordlist for spellchecker #488
This patch allows you to add a file named conf/words.aspell with your own
words you don't want the spellchecker to choke on.

Thanks to Steven Danz for code idea

Sun Jul 31 18:35:54 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* image metadata editor
This patch adds an meta data editor for JPEG files. Currently title,
caption, artist, copyright and keywords can be saved. The data is saved
to the apropriate IPTC fields. Additional fields can be added in the
appropriate template.

Compatibility testing with other programs is needed!

Sun Jul 31 13:50:30 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* optimized Image metadata handling

Sun Jul 31 09:35:21 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* Plugins can add their own CSS now
Plugins can use their own styleheets now. They are loaded in the tpl_metaheader
function.

The following files are used if existing in the plugin's directory:

style.css - overall style used always
screen.css - only used in normal view (media=screen)
print.css - only used when printing a page (media=print)
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-08-03 02:00:04 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Tue Aug 2 21:14:21 CEST 2005 chris[at]teacherscpd.co.uk
* support for plugin subfolders added - plugins/[name]/[type]/[file].php

Tue Aug 2 02:58:46 CEST 2005 chris[at]teacherscpd.co.uk
* syntax plugin class prototypes : fixes to previous update

Tue Aug 2 10:41:21 CEST 2005 chris[at]teacherscpd.co.uk
* plugin javascript load fix: print.css -> script.js
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-08-04 02:00:04 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Wed Aug 3 20:02:26 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* plugin tweaks, info plugin fixes

Wed Aug 3 19:24:02 CEST 2005 Esther Brunner <esther[at]kaffeehaus.ch>
* fix for closing plugindir
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-08-06 02:00:02 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Fri Aug 5 22:02:02 CEST 2005 Bernardo Arlandis Mañó <bernardo[at]tsolucio.com>
* spanish language update
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-08-07 02:00:01 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Sat Aug 6 23:20:00 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* changes to the page subscription feature

Sat Aug 6 17:58:57 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* caching for feeds
This patch adds caching for XML/ATOM feeds. This is most useful for the
default feed (linked from the footer and HTML meta header) as this is
usually the most used one.

The cache is invalidated if a change was made (by checking the the
filemtime of the changelog). A 5 minute settling time is used to avoid
invalidating the cache too often when the wiki changes rapidly.

Sat Aug 6 17:12:04 CEST 2005 Harry Fuecks <hfuecks[at]gmail.com>
* Alternative fix for #384
The bug with emphasis syntax clashing with URLs did still occur with
protocols different from http or ftp. This patch might be a better
solution.

I had to use [^\x00]* instead of .* - for some reason the later won't
work properly in this case. It means people won't be able to use ASCII
NUL characters inside an emphasis.

The other thing that won't work is this;

Won't work: //semi colon here>://

People will need to make sure there is at least a space - this will work;

Works //semi colon here>: //

---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-08-08 02:00:02 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Sun Aug 7 22:33:22 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* a first step for search indexing - nothing to see yet

Sun Aug 7 22:13:09 CEST 2005 Harry Fuecks <hfuecks[at]gmail.com>
* command line utilities for DokuWiki
This patch adds a command line tool which should help people modify
wiki pages on the command line.

Usage would be something like;

$ ./dokuwiki/bin/dwpage.php checkout wiki:syntax > /home/harryf/syntax.txt
$ vi syntax.txt
$ ./dokuwiki/bin/dwpage.php -m "Document new syntax" commit syntax.txt wiki:syntax

The second script outputs a list of wiki ids, seperated by newlines.
The idea would be it get's run by a cron job at regular intervals and
has it's results piped to a text file.


Sun Aug 7 21:59:58 CEST 2005 koeppe <koeppe[at]kazur.dk>
* danish language update

Sun Aug 7 15:47:26 CEST 2005 Andreas Gohr <andi[at]splitbrain.org>
* xhtml fix for recent changes #499
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Andreas Gohr
2005-08-09 02:00:01 UTC
Permalink
Good Morning!

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

---------------------------------------------------------------------
Mon Aug 8 20:52:40 CEST 2005 Alexandre ROSSI <niol[at]sousmonlit.dyndns.org>
* French translation update

Mon Aug 8 21:05:24 CEST 2005 Riny Heijdendael <riny[at]heijdendael.nl>
* nl language update
---------------------------------------------------------------------

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

Bye,
your darcs changlog mailer
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist
Loading...