
|
[dokuwiki]
||
[Date Prev]
[02-2008 Date Index]
[Date Next]
||
[Thread Prev]
[02-2008 Thread Index]
[Thread Next]
[dokuwiki] Patch for mailguard visible
- From: Otto Vainio <oiv@xxxxxxxx>
- To: dokuwiki@xxxxxxxxxxxxx
- Date: Sun, 17 Feb 2008 20:22:19 +0200
Hi all
I wanted to configure mailguard visible options replaced text to
something else, than what was hardcoded in obfuscate function.
Included is a patch to allow admin to configure [at], [dash] and [dot]
text from configuration manager.
brgds Otto
New patches:
[mailguard_replace
Otto Vainio <otto@xxxxxxxxxxxx>**20080217170559
Add a configuration option to edit mailguard at, dot and replace texts.
] {
hunk ./conf/dokuwiki.php 57
+$conf['mailguard_replace']['at'] = '[at]';
+$conf['mailguard_replace']['dot'] = '[dot]';
+$conf['mailguard_replace']['dash'] = '[dash]';
hunk ./inc/common.php 1056
- $obfuscate = array('@' => ' [at] ', '.' => ' [dot] ', '-' => ' [dash] ');
+ $at = (isset($conf['mailguard_replace']['at'])) ? '
'.$conf['mailguard_replace']['at'] . ' ' : ' [at] ';
+ $dot = (isset($conf['mailguard_replace']['dot'])) ? '
'.$conf['mailguard_replace']['dot'] . ' ' : ' [dot] ';
+ $dash = (isset($conf['mailguard_replace']['dash']))? '
'.$conf['mailguard_replace']['dash']. ' ' : ' [dash] ';
+ $obfuscate = array('@' => $at, '.' => $dot, '-' => $dash);
hunk ./lib/plugins/config/lang/en/lang.php 83
+$lang['mailguard_replace____at'] = 'Replaace @ (at)';
+$lang['mailguard_replace____dot'] = 'Replace . (dot)';
+$lang['mailguard_replace____dash'] = 'Replace - (dash)';
hunk ./lib/plugins/config/settings/config.metadata.php 129
+$meta['mailguard_replace____at'] = array('string');
+$meta['mailguard_replace____dot'] = array('string');
+$meta['mailguard_replace____dash'] = array('string');
}
Context:
[fix for plugin manager breaking multibyte chars
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215214857]
[do case insensitive search word highlighting in page FS#1297
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215180239]
[fix highlighting of search engine referer keywords for recent highlight change
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215175816]
[better highlighting for phrase searches FS#1193
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215174653
This patch makes the highlighting of phrases in search snippets and on
the pages itself much better.
Now a regexp gets passed to the ?s= parameter. I ask everybody to test
this feature throughly especially for the handling of malicious inputs
and the use of non-latin characters.
]
[Use auth backend to verify password on profile update FS#1328
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215154316]
[fix for resetting timelimit in fetch.php FS#1243
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215152132]
[Make session reference file check overridable for auth backends
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215121716]
[invalidate all user session cache when userdatabase is changed FS#1085
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215114923
A reference file is now stored in data/cache/sessionpurge and is used to
check if user sessions are still valid.
To accomondate for slow auth backends DokuWiki caches user info for
a certain time in the user session.
]
[redirect to root namespace in mediamanager when namespace was deleted FS#1286
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215105251]
[correctly encode namespace in mediapopup URL FS#1319
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215094453]
[fix line endings for meta data editing in media manager FS#1324
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215091527]
[add title attribute on page title FS#1330
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215090454]
[LDAP backend: try to rebind with current user for getUserData() FS#1053
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080215085556]
[fix for earlier phpok & htmlok path
Chris Smith <chris@xxxxxxxxxxxxx>**20080214113350]
[French strings update
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20080213214113]
[make sure not supported profile fields are not accepted FS#1329
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080213214505]
[check modMail capability correctly FS#1329
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080213213322]
[Hungarian update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080213204325]
[filter usernames case-insensitive in user manager
Gabriel Birke <Gabriel.Birke@xxxxxxxxx>**20080213194342]
[Importoldchangelog: Added metadata support
'Simon Coffey <spc03@xxxxxxxxxxxx>'**20080213145734
Added function savePerPageMetadata() to populate creator and contributor fields
of metadata array from old-style changes.log.
]
[Rationalise Parser PHP & HTML syntax mode handling to renderer only.
Chris Smith <chris@xxxxxxxxxxxxx>**20080213024941
This patch corrects the problems with the previously (reversed) patch
"remove htmlok and phpok tests from Doku_Handler".
The handler will now write php, phpblock, html & htmlblock instructions
and let the renderer decide how these instructions should be processed.
The xhtml renderer will follow the "phpok" and "htmlok" config settings.
If these settings are turned off the any instructions will be rendered as
code with php or html syntax highlighting (as appropriate).
]
[Have aclcheck use auth_isadmin
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20080212213222]
[Hungarian update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080209092859]
[make sure $ID is set correct when rendering metadata
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080208212733]
[removed security token requirement for login
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080208200733
This was discussed a while ago on the mailing list. We want to work cross-site
logins keep working.
]
[TAG develsnap 2008-02-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080201000001]
[Norwegian update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080130222205]
[Hungarian update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080130220034]
[remove htmlok and phpok tests from Doku_Handler
Spring Pierre <pierre.spring@xxxxxxx>*-20080117222648
there is no necessity for the "htmlok"
and "phpok" testing in the Doku_Handler, taken the fact that the page
renderer does it too. and it gives the possibility to the renderer to
choose, what to do with such blocks.
]
[Hungarian update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080128211824]
[Support for deep namespace templates and strftime placeholders
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080126165959
This patch addes namespace templates will be used for all new namespaces in
the same namespace and the namespaces below. They have to be named
__template.txt
Additionally can strftime() place holders be used in namespace templates
to insert any part of the current time into a template.
]
[XMLRPC: use correct date format in getRecentChanges()
Michael Klier <chi@xxxxxxxxxxx>**20080125173529]
[XMLRC: refactored putPage()
Michael Klier <chi@xxxxxxxxxxx>**20080125171834]
[Italian language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080125101516]
[Italian update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080124211845]
[Probably fixes cookie loss on https/http switch FS#1174
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080124211231]
[typo fix FS#1316
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080122222402]
[mor nofollow for links to non-existant pages FS#1260
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080122203104]
[fix problems with gzip compression
Jens Wilke <jw_list@xxxxxxxxxxxxx>**20080122185828]
[Hungarian language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080122185359]
[czech language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080122185140]
[gethostsbyaddrs() must check if only one IP was supplied
Michael Klier <chi@xxxxxxxxxxx>**20080122175535]
[use <sup> to markup footnote anchors
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080119010614
Using the <sup> HTML tag ensures that footnotes are shown correctly when
displayed outside the DokuWiki stylesheet (eg. in feedreaders)
]
[correct fix for FS#1227
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080119005310]
[mediamanager style fixes for ie7
Anika Henke <a.c.henke@xxxxxxxx>**20080118235811]
[XMLRPC: added getRecentChanges()
Michael Klier <chi@xxxxxxxxxxx>**20080118230312]
[prevent error on buggy syntax plugin FS#1218
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080118234120]
[partial fix for TOC displayed on deleted pages FS#1222
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080118230442]
[Always show pageids for "matching pagenames" FS#1227
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080118225518]
[correct UTF-8 trimming of abstracts in metarenderer FS#1233
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080118224834]
[add rel=nofollow for links to non-existing pages FS#1260
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080118223507]
[try to warn about pcre.backtrack_limit errors FS#1258
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080118214138]
[bzopen does not like 'b' open mode FS#1239
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080118213300]
[add leading colon for media inserted via manager
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080118212849]
[skip invalid filenames in media directory list (related to FS#1312 FS#1306)
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080118205511
Invalid media files (like uppercase names) are no longer listed in the media
manager. Instead a warning is shown.
]
[fixed XML encoding for RSS 1.0 image title FS#1307
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080118202958]
[Show proxy path in notify mails FS#1308
Glen Harris <astfgl@xxxxxxxxxxx>**20080118201511]
[remove htmlok and phpok tests from Doku_Handler
Spring Pierre <pierre.spring@xxxxxxx>**20080117222648
there is no necessity for the "htmlok"
and "phpok" testing in the Doku_Handler, taken the fact that the page
renderer does it too. and it gives the possibility to the renderer to
choose, what to do with such blocks.
]
[Add revert plugin to protected plugins list
Chris Smith <chris@xxxxxxxxxxxxx>**20080116152844]
[Arabic update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080114173625]
[Kurdish translation
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080108202749]
[Hungarian update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080107204755]
[Dutch update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080107201607]
[Dutch update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080106201511]
[transparent_gif
s_wienecke@xxxxxx**20071221181419]
[parenthesis_escaper_fix
stephane.chazelas@xxxxxxxxxxx**20080104145301]
[French update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080104143832]
[Dutch update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080104141457]
[Polish update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080104140951]
[Brazilian Portuguese update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080104140733]
[TAG develsnap 2008-01-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20080101000001]
[Trigger IO_WIKIPAGE_WRITE on page delete
Gabriel Birke <Gabriel.Birke@xxxxxxxxx>**20071221150130
DokuWiki will fire two IO_WIKIPAGE_WRITE events
instead of one when a page is deleted. The first event has no revision and
empty text in the data. Now the code conforms with the documentation at
http://wiki.splitbrain.org/wiki:events_list#io_wikipage_write
Now action plugins can act on page delete.
]
[make hashs escapable in configfile #1282
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071218141030
If a hash is needed in config files (parsed by confToHash) it can be escaped
as \# (backslash hash) to avoid having it treated as comment start
]
[Romanian language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071214105324]
[read a file from a ZIP without diskwrite
Danjer <Danjer@xxxxxxxxxxxx>**20071210191826]
[Italian language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071210190648]
[added info on control macros on syntax page
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071204222503]
[romanian language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071204202246]
[removed debug statement from ACL manager script code
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071203204115]
[no write check for users.auth.php when non-plain backend is used FS#1271
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071203202342]
[getUserData should really be implemented always... (FS#1272)
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071203201532
... but with this patch DokuWiki will not break completely when left out for
trustExternal() auth backends
]
[construct toolbar signature from $INFO (FS#1274)
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071203191945]
[romanian language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071203183011]
[TAG develsnap 2007-12-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071201000001]
[removed obsolete language strings
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071130234249]
[Swedish language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071130233509]
[Spanish language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071130233302]
[Spellchecker removed
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071123125840
With spell checkers available in all modern browsers, having a spell checker in
DokuWiki's core code is no longer necessary. This patch removes the spell
checking feature. It will be made available as optional plugin.
]
[make toolbar JS functions accept absolute image paths
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071123102814]
[Catalan language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071121203902]
[Catalan language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>*-20071118103614]
[german language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071118105953]
[Catalan language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071118103614]
[added missing pix folder for acl plugin
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071117214220]
[ACL Manager rewritten
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071117155740
This patch replaces the old ACL manager plugin with a new, completely
rewritten one.
The ACL manager is now independent of the page from which it was called,
instead all pages and namespaces are selectable from an AJAX enhanced
list similar to the one used in the media manager. This should take care
of a major complain by new users.
Another major confusion was that the old manager only showed relevant
rules. This new manager always shows *all* defined ACL rules.
]
[added XMLRPC linkList()
Michael Klier <chi@xxxxxxxxxxx>**20071109112720]
[fix problems if $USERINFO['grps'] is not set
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071102181850]
[russian language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071102181710]
[utf8_trim bugfix
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071102181430
Fixes the utf8_trim() function when a charlist is given
]
[TAG develsnap 2007-11-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071101000001]
[added makeFileField method to form class
Michael Klier <chi@xxxxxxxxxxx>**20071029141013]
[CSS update for media form
Michael Klier <chi@xxxxxxxxxxx>**20071029135607]
[refactored media upload form
Michael Klier <chi@xxxxxxxxxxx>**20071029134739]
[allow enctype setting in form class
Michael Klier <chi@xxxxxxxxxxx>**20071029134359]
[Revert change to DOKU_INC introduced by xmlrpc_putpage patch
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20071027202616]
[Add the Universal Wiki Edit Button to the deafault template
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071026213115
The "Universal Wiki Edit Button" is a movement to make Wikis easily
recognizable to users regardless of the used engine or template. The
aim is to create an icon which is as easy to recognize as the now well
known RSS icon. The hope is to spread the Wiki idea and make more people
aware of the use of Wikis outside the scope of Wikipedia.
The logo is added through a background CSS defined in UWEB.css
More info about the Universal Wiki Edit Button can be found at
http://www.aboutus.org/uweb - you may also add your thoughts about it
there.
]
[adds a second class to action buttons
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071026210930]
[Galician language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071026205405]
[Turkish update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071026185916]
[Translatable JavaScript strings for plugins
Gabriel Birke <Gabriel.Birke@xxxxxxxxx>**20071026131130
Strings to be used in plugin provided JavaScript can now be put into the
plugin's
lang.php files. It has to be stored as subkeys of $lang['js']. Eg the
following in
lib/plugins/blah/lang/en/lang.php
$lang['js']['foo'] = "bar";
will be available from JavaScript code as
LANG['plugins']['blah']['foo']
]
[Brasilian Portuguese Update
Frederico Goncalves Guimaraes <frederico@xxxxxxxxxxx>**20071026110711]
[Malagasy translation added
infogasy.net <contact@xxxxxxxxxxxx>**20071026105801]
[Latvian language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071019063310]
[Allow HTML from inline RSS (typo fix)
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20071015225606]
[Fix border condition on recent change update
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20071015225711]
[header support for renderer plugins
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071016185626
Renderer plugins now can store HTTP header information in 'format <mode>' which
will be used to send their output. Also fixes a problem with loading cache
files.
]
[fixed Thai romanization
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071015170603]
[tiny compatibility fix for FeedParser
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071015121248
This should make older plugins working with a SimplePie Beta wor with
Dokuwiki's
current SimplePie version
]
[Reduce memory requirement for indexer
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20071012000327]
[fixed URLs in plugin and user manager
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071013191842
For the new plugin repository, plugins should use a page named after their
class at wiki.splitbrain.org
]
[xmlrpc_putpage
Dennis Ploeger <develop@xxxxxxxxxxxxxx>**20071012135930
Adds the putpage-method to the xmlrpc-server-code
]
[X-Sendfile support for fetch.php
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071008185019
This patch enables the use of the X-Sendfile extension offered by certain
webservers to deliver static files after running a dynamic script. This
combines the flexibility of a PHP file to check for authorization, caching
and resizing with the low memory footprint and high performance of static
file delivery of the webserver.
See http://blog.lighttpd.net/articles/2006/07/02/x-sendfile for details
]
[esperanto update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20071007191109]
[corrections for earlier MAIL_MESSAGE_SEND patch :)
Chris Smith <chris@xxxxxxxxxxxxx>**20070930124603]
[fixes for p_get_metadata() & p_set_metadata (incl. resolution of FS#1254)
Chris Smith <chris@xxxxxxxxxxxxx>**20070930022739
- add page existence check to prevent attempts to render metadata for
non-existent pages (FS#1254)
- add key & subkey existence checks to avoid PHP warnings
]
[add page_exists function (inc/pageutils.php)
Chris Smith <chris@xxxxxxxxxxxxx>**20070930021040
bool page_exists($id, $rev='', $clean=true)
checks wiki page existence, returns true if page exists, false if it doesn't.
Parameters are the same as for wikiFN()
$id -- page id
$rev -- page revision
$clean -- flag indicating whether or not $id requires cleaning
]
[ptln parameter spelling correction
Chris Smith <chris@xxxxxxxxxxxxx>**20070930020815]
[Add MAIL_MESSAGE_SEND event (resolution of FS#1007)
Chris Smith <chris@xxxxxxxxxxxxx>**20070930014728
Wrapper around DokuWiki's mail_send() function.
For full details refer
http://wiki.splitbrain.org/wiki:events_list#mail_message_send
Also see discussion at
http://www.freelists.org/archives/dokuwiki/09-2007/msg00077.html
]
[Avoid duplicate attributes in forms
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20071006195720]
[Remove extraneous print statement
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20071001192639]
[TAG develsnap 2007-10-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070930230001]
[fullpath fix for Windows
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070930214958]
[don't use fullpath() before initialized
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070930201133]
[don't use realpath() anymore (FS#1261 and others)
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070930184250
The use of realpath() to clean up relative file names caused some
trouble in certain setups relying on symlinks or having restricitve
file structure setups.
This patch replaces all realpath() calls with a PHP only replacement
which should solve those problems.
]
[media meta chmod fix
Otto Vainio <oiv@xxxxxx>**20070926190419
Media metadata update changes file permissions to default.
Should call chmod if needed.
]
[Fix not checking capture in metadata renderer
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070925201030]
[Don't create bogus blank entries in metadata
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070919194756]
[Remove obsolete words from search index
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070919194244
Creates another index file 'pagewords.idx' for the words in each page.
Words that are deleted from a page can then be removed from the word index.
The indexer version is incremented to force rebuilding of the index.
Also, a minor flaw in the regexp for asian words is fixed.
]
[New event MEDIA_UPLOAD_FINISH
Michael Klier <chi@xxxxxxxxxxx>**20070909003843
This adds a new event MEDIA_UPLOAD_FINISH which is triggered
when a media file is uploaded via the mediamanager.
(The event is preventable)
Event data:
data[0] temporary file name (read from $_FILES)
data[1] file name of the file being uploaded
data[2] future directory id of the file being uploaded
data[3] the mime type of the file being uploaded
]
[Variable typo fix in inc/media.php
Michael Klier <chi@xxxxxxxxxxx>**20070914202618]
[typo fix and quiet option for bin/indexer.php FS#1249
Gabriel Birke <Gabriel.Birke@xxxxxxxxx>**20070912182759]
[Fix for Basic HTTP authentication
Michael Klier <chi@xxxxxxxxxxx>**20070908222540]
[Indonesian update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070908192004]
[CSRF SecurityToken added to the media manager
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070908143307]
[Small fix for CSRF check in config and ACL plugins
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070908142300]
[Use Content-Length in HTTP client
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070906194435
If a Server supplies a Content-Length header we stop reading when the specified
number of bytes was read. This fixes problems with Servers not closing the
connection after sending the body.
]
[send security token on login/logout
Michael Klier <chi@xxxxxxxxxxx>**20070904185355]
[Esperanto update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070906183038]
[respect DOKU_BASE in CSS cache file name
Michael Klier <chi@xxxxxxxxxxx>**20070906125503]
[TAG develsnap 2007-09-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070831230001]
[Part 2 of the SecurityToken patch to avaoid CSRF attacks
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070830191429
This patch adds a security token to all forms generated through the new
form class. However it is only checked for possible dangerous actions like
editing or profile changes.
]
[CSRF prevention for admin plugins
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070829201538
This patch adds a session based token to all form in the default action
plugins.
The validity of the token is checked before any administrative function is
executed aiming to protect DokuWiki's admin functions from Cross-site request
forgery (CSRF) attacks.
Another patch will follow to add the same functionality on other, less critical
functions.
More details on CSRF attacks can be found at
http://en.wikipedia.org/wiki/Cross-site_request_forgery
]
[moved lockfile check out of search() to callback functions
Michael Klier <chi@xxxxxxxxxxx>**20070828194406]
[Revert plugin die if DOKU_INC undefined
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070826201745]
[Arbitrary Button types in JS toolbar
Gabriel Birke <Gabriel.Birke@xxxxxxxxx>**20070826192206
This is my patch for creating toolbar buttons with arbitrary button types,
tested with Firefox, Opera and IE7. If you want to create a new type of
button, you must have a function in the script.js file of your plugin. The
function name must begin with "addBtnAction", followed by the type name, for
example for the type "myType" the function must be called
"addBtnActionMyType" (bear in mind that the first char of the type must be
uppercased in the function name).
The function has four parameters:
"btn" is the HTML element for the button where you attach the onclick
handler
"props" is an associative array of the array properties that come from the
toolbar array that was created by toolbar.php
"edid" (optional) is the id of the editor textarea
"id" (optional) is a "unique" number for each button: the index variable of
the for loop where the buttons get created.
]
[removed unused file from french translation
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070821174710]
[german update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070821174336]
[alter p_get_first_heading() default $render value to true
Chris Smith <chris@xxxxxxxxxxxxx>**20070821021008
Calls to p_get_first_heading() are most likely to expect to get the first
heading even if it needs to be
generated, that is a $render value of true. Only the metadata renderer itself
needs a value of false in
order to prevent mutual dependency probelms.
This fix should finally complete FS#1010 & problems breadcrumbs have with
use_first_headings when metadata
doesn't exist. Also see,
http://www.freelists.org/archives/dokuwiki/08-2007/msg00018.html &
http://www.freelists.org/archives/dokuwiki/08-2007/msg00132.html
]
[Fix $conf['compression'] setting values (was using 'bzip' instead of 'bz2');
FS#1185
Chris Smith <chris@xxxxxxxxxxxxx>**20070821120916]
[french update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070821173805]
[typo fix in action plugin prototype class
Michael Klier <chi@xxxxxxxxxxx>**20070820175842]
[fix for magic quote fixing inside array keys
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070819211952]
[quote fix in auth_nameencode
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070819211829]
[typo fix FS#1229
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070818222239]
[esperanto update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070818222029]
[finish language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070816182508]
[greek language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070813220053]
[added nothing found message to backlinks output
Michael Klier <chi@xxxxxxxxxxx>**20070813160452]
[span added to breadcrumbs label
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070813190912]
[correctly URL encode idx parameter in index view
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070810082232]
[Optimize loading the index with AJAX
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20070810040430
Improves the perceptual latency of the AJAX based index view.
- Only show the throbber for AJAX calls that are slow.
Currently this applies to calls that take more than 500 ms.
- Reuse the results of AJAX calls.
This makes a namespace open, close, open, cycle much faster.
Also reduces the number of AJAX calls to the server.
(To reload the index, just reload the page as usual.)
]
[Fix for not working iconv call in SimplePie
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070809234320
See http://simplepie.org/support/viewtopic.php?pid=3819#p3819
Patch sent to upstream
]
[typo fix for plugin manager which caused blank error message FS#1216
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070809221830]
[show correct megabyte size for image details FS#1217
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070809213753]
[don't allow export formats in Google index FS#1219
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070809212728]
[spelling fix FS#1220
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070809212154]
[stripped comments from el lang file
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070809212044]
[dutch language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070808214818]
[Portuguese language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070808180825]
[german language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070807221400]
[TOC fixed
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070807171844
This fixes some small bugs which were introduced with recent TOC changes
]
[Protect auth_ismanager() from auth modules that don't always provide group
data in array (FS#1196)
Chris Smith <chris@xxxxxxxxxxxxx>**20070805203312]
[fixed function check in install.php FS#1215
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070806185341]
[Add checks for supported attic compression methods to config plugin (FSâ#1185)
Chris Smith <chris@xxxxxxxxxxxxx>**20070805193638]
[minor fixes for recent tpl_toc() patch
chris@xxxxxxxxxxxxx**20070805163833]
[separated TOC from page
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070805132405
This patch introduces a tpl_toc() function which can be used to freely place
the Table of Contents in a template. When used, tpl_content should be called
with a parameter of false to supress the automatic TOC placement.
Note: if tpl_toc() us run *before* tpl_content(), TOCs will not work in the
preview. A work around is to run tpl_content() in a output buffer first.
This patch also adds a getTOC() function for admin plugins which allows plugin
authors to put create their own TOC which will be placed correctly in the
template. A convenience function html_mktocitem() is available.
The config manager was adjusted to make ue of this new feature, but some bugs
might remain.
]
[generic search engines result highlighting
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070804125124]
[test case adjustments for recent spacing fix in forms
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070804081605]
[fulltext search fixes FS#1191 FS#1192
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070804081226]
[Support for $inner param in tpl_actionlink
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070804071934
This allows template authors to use their own HTML content as link body. Eg. to
use images. Defaults to the appropriate language string.
]
[Space between label and input element for new form handler
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070804071840]
[Skip only empty strings not 0 in buildAttributes
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070804071749]
[New structured forms and action events
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070730215007
Replaces a number of *FORM_INJECTION events with a more flexible way of
modifying forms. Forms are created with a Doku_Form class (inc/form.php)
that can be manipulated by plugins prior to output. Plugins register a
HTML_{$name}FORM_OUTPUT event which can modify the form object prior to
output. Available forms are:
LOGIN DRAFT CONFLICT REGISTER UPDATEPROFILE EDIT RESENDPWD
Documentation for the Doku_Form class is in inc/form.php.
]
[update breadcrumbs to generate metadata when necessary for use_first_heading
Chris Smith <chris@xxxxxxxxxxxxx>**20070802174401]
[TAG develsnap 2007-08-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070731230001]
[PGSQL auth backend - connect via socket FS#1198
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070730171227
If the server field is empty in configuration the postgres backend will
try to connect via a local socket to the server
]
[Galician translation
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070730164939]
[skipempty parameter for buildAttributes
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070725211324]
[use file_get_contents to read files
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070725190021]
[JavaScript fix
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070725184035]
[SimplePie update to 1.0.1
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070725182527]
[fix for multiple categories in feeds
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070723220336]
[removed unnessary UTF-8 replacement functions
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070719130041]
[fix for XSS in spellchecker FS#1195
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070719122538]
[several speed improvements in UTF-8 lib
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070719110142]
[SimplePie upgrade to 1.0
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070719080638]
[better name for previously added action event
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070718122311]
[Action plugin hook for manipulating feed items
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070718122011]
[update plugin component file search to ignore hidden files (files beginning
with '.')
Chris Smith <chris@xxxxxxxxxxxxx>**20070627184840]
[update email address validation to support 'museum' & 'travel' tlds
Chris Smith <chris@xxxxxxxxxxxxx>**20070627184603]
[use UTF-8 chars instead of HTML entities
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070718110715]
[fix for phrase search FS#1189
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070718104839]
[show diff between arbitrary revisions FS#14
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070718102204
You can now compare any choosen revision of a page to any other.
Todo: add some JavaScript to avoid choosing more than two revisions
]
[fix asian word search FS#1188
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070718073121]
[RSS feeds for search results
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070718071053
Lets you subscribe to the result of a full text search
]
[some feed fixes
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070717152000]
[fix for rare wordblock fail FS#1179
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070716201347]
[small javascript fix
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070716185356]
[AJAX for the index view
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070716184605
This makes the index view much more responsive by loading sub namespaces
through AJAX
if JavaScript is available.
The used throbber image probably looks bad on dark backgrounds. If someone
could provide
a better one it would be greatly appreciated.
]
[another language file fix FS#1186
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070715091847]
[fixed unclean language files FS#1186
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070715090528]
[slightly modfied donation button
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070711213825
See http://www.splitbrain.org/blog/2007-07/10-paypal_oddities
]
[improved feed creation
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070711213624
The feed now can export diff views (unified and HTML) as well as full HTML
page content.
Some things might be broken. Everybody please test it!
]
[correct hilighting of empty summary on preview
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070705215447]
[fix ID resolving with useslash FS#1176
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070709183346]
[check data/index permissions in installer FS#1181
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070709182725]
[GeSHi update to 1.0.7.20
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070702200715]
[Norwegian language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070702195324]
[TAG develsnap 2007-07-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070630230001]
[Slovak language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070630110132]
[More Portuguese language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070629212340]
[Show config option names in config manager
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070629210648
This patch outputs the config name in the config manager (instead of using a
title
tag) which makes it easier to search (ctrl-f) for a specific option.
]
[adjusted wiki:syntax to additional <HTML>+<PHP> syntax
Anika Henke <a.c.henke@xxxxxxxx>**20070518095536]
[deleted unnecessary htmlok+phpok checks
Anika Henke <a.c.henke@xxxxxxxx>**20070517234228]
[added block mode for embedded html+php (FS#541) -- same syntax but in capital
letters (<HTML>+<PHP>)
Anika Henke <a.c.henke@xxxxxxxx>**20070517233213]
[Portuguese language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070629192938]
[Slovak language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070629192559]
[Czech language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070629134741]
[japanese language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070628191802]
[check for auth object at certain functions
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070627194910
This is a follow up on the previous patch to disable authtentication without
disabling ACL on backend problems. It fixes a few errors that might occour
in this rare situation.
]
[TAG release 2007-06-26
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070626182639]
[final release preps
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070626182517]
[some more tweaks to the smart quote parser
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070626181735
Now all test cases succeed, but there is probably still trouble with certain
conditions.
]
[some cleanups / release preps
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070626173537]
[Spanish language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070626162556]
[Bulgarian language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070626162303]
[fix for recent auth change
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070625210929]
[degrade to unauthed user when auth backen unavailable FS#1168
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070625205228
Instead of disabling the whole ACL feature when the auth backend is unavailable
just degrade the user to an anonymous user.
]
[fixed problem with #section added to all links
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070625204256]
[German language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070625182759]
[phpdoc comments added for TarLib
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070625181003
Added documentation from http://docs.maxg.info/index.php?script=5 to the
comments of the class.
]
[Chinese language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070625172017]
[workaround for PHP bug in config manager FS#1152
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070624174903
Workaround for PHP bug 41773:
http://bugs.php.net/bug.php?id=41773
]
[Esperanto language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070624174148]
[Galician translation updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070624174021]
[Polish language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070624105948]
[fix for colons in fragment identifiers FS#1062
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070623142008]
[greek language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070622215242]
[check for empty group array in LDAP backend FS#1004
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070621194636]
[Misc string fixes and fr update
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070619173914]
[Code corrections in inc/auth/plain.class.php deleteUser() method
Chris Smith <chris@xxxxxxxxxxxxx>**20070620163148]
[Verbose errors for failed feed fetching
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070618172904
When the allowdebug option is set, the error message generated by the feed
parser
will be put in an HTML comment.
]
[RTL stylsheet fix
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070616214657]
[regex fix for JavaScript includes
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070616214530]
[two minor style fixes in GeSHi - sent to upstream
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070615000611]
[update on the GeSHi default styles
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070614232042]
[correct javascript escape for languagestring in windows share links FS#1147
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070613193351
This piece of code should be replaced by some unobstrusive code in the future
]
[fixed URL in file upload notify mail FS#1160
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070613191542]
[make typography option three staged FS#1142
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070613184015
Because correct smart quote parsing with regular expressions is nearly
impossible, especially when dealing with quote usage in languages different
from english, the typography configuration option was changed.
0 means to completely disable any typography replacements
1 will only handle the multiply entitity and double quotes, this should
nearly always work without problems and is the new default
2 will add singlequote parsing. This might break because single quotes and
apostrophes are not always easily distinguishable. Especially in languages
where single quote openings and apostrophes are different characters you
might experience problems. For english it should nearly always work.
]
[some small improvement for smart quote parsing FS#1142
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070613173817]
[fix for encoding email addresses
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070613153201
There was a problem in the mail header builder which left out a space between
real names and the email address, which broke certain mailers.
]
[no ampersand encoding in URLs for emails FS#1157
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070613152712]
[typo fix in syntax page FS#1158
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070613152342]
[Japanese language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070604174939]
[russian language updates
Denis Simakov <akinoame1@xxxxxxxxx>**20070604122134]
[never use full URL in cookie paths FS#1146
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070603191451
Introduces a DOKU_REL constant always pointing to the DokuWiki directory
regardless
of the used canonical setting.
]
[Swedish language updates
Per Foreby <per@xxxxxxxxx>**20070603152100]
[TAG develsnap 2007-06-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070531230001]
[Partial Fix FS#1085
Chris Smith <chris@xxxxxxxxxxxxx>**20070528194747
This fix adds a new configuration setting, 'auth_security_timeout', which
controls the duration (seconds) before authentication
information is rechecked. The default value is set to 900 seconds (15
minutes). Wiki installations particularly concerned
about security should set this value to 0.
DokuWiki maintains a copy of the most recent authentication details in both a
browser cookie and server session. Normally these
values are compared on each page visit. If the comparison passes the user is
accepted. The same data will be used over and
over until either the cookie or the session expires. FS#1085 is concerned
with updates to the original authentication data not
being able to affect this comparison. The new 'auth_security_timeout' setting
will force expiration of the saved data after the
specified period has elapsed.
Re-authentication may affect page response, especially on systems which use
remote authentication systems.
This fix is considered partial and should be reviewed after the next release
with a view to extending the authentication class
to allow those mechanisms which are able to control when DW should revoke
authentication.
]
[send 404 only for show or export action FS#1141
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070528193451]
[added RSS/ATOM Aggreation section to syntax page
Michael Klier <chi@xxxxxxxxxxx>**20070524235338]
[Fix infinite page redirects in getID
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20070526094501
Fix infinite page redirects in getID
Loading "start:" was causing a loop of page redirects.
Page IDs like "start:" now resolve correctly
to an ID like "start".
]
[TAG release candidate 2007-05-24
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070524173115]
[release preparations
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070524172905]
[russian updates
Kae <kaens@xxxxxxxxx>**20070523211728]
[typographically correct minus sign in toc toggle (yet even bigger)
Anika Henke <a.c.henke@xxxxxxxx>**20070515223140]
[Redirect after login and populate breadcrumbs (FS#1063)
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070516091909]
[TOC toggle usability fix
wingedfox@xxxxxxxxxxx**20070515045800
Changes:
1. click event handler moved to the toc__header, because plus and minus signs
are too small and not usable because of this
2. minus sign replaced with the bigger one, see
http://debugger.ru/temp/cross-plus-9x9.html testcases
3. added the pointer cursor to the toc header
]
[test fixes for FS#744 changes
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070514225347]
[fix for former patch (FS#744)
Anika Henke <a.c.henke@xxxxxxxx>**20070514224419]
[FS#744 (template developers, heed the changes)
Anika Henke <a.c.henke@xxxxxxxx>**20070514222527]
[fixed double http in config manager language files
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070514222947]
[some more fixes for the toc toggle js
Anika Henke <a.c.henke@xxxxxxxx>**20070514205803]
[fix for stupid JS bug in TOC toggle
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070514203709]
[replaced TOC toggle images by CSS magic
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070514180903
Instead of relying on images to show the toggle button for hiding the table
of contents, now some CSS is used to simulate an arrow.
]
[typo fix in compression method check FS#919
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070514165529]
[disable any possibly configured global zlib compression FS#1132
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070514164557]
[tiny url fix in toc image js
Anika Henke <a.c.henke@xxxxxxxx>**20070513223948]
[include_once support for javascript
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070513222421
The include syntax was changed and enhanced by a include_once statement.
Syntax:
/* DOKUWIKI:include somefile.js */
/* DOKUWIKI:include_once someotherfile.js */
Note: include_once uses the basename of the inlcuded file to determine if
it was previously loaded. You need to use something unique for it to
make sure it is correctly loaded.
Note: included files are not checked for updates by the cache logic. You
need to touch the master file for updating the cache
Note: includes are *not* supported inside included files to avoid any
circular references
]
[fix of js fix of xhtml fix of mediamanager *g*
Anika Henke <a.c.henke@xxxxxxxx>**20070513220816]
[javascript fix for recent mediamanager xhtml fix
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070513213350]
[fixed xhtml validity issues in media manager
Anika Henke <a.c.henke@xxxxxxxx>**20070513212129]
[fixed link in config descriptions for new bugtracker URLs
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070513193524]
[variable button width in plugins plugin (FS#1131)
Anika Henke <a.c.henke@xxxxxxxx>**20070513183158]
[fixed some xhtml validity issues in config manager
Anika Henke <a.c.henke@xxxxxxxx>**20070513174719]
[rebuild $_REQUEST manually to avoid cookie interference FS#1104
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070513181524]
[deleted obsolete backtomedia functions
Anika Henke <a.c.henke@xxxxxxxx>**20070513124655]
[same behaviour for do=recent actionlink as for button
Anika Henke <a.c.henke@xxxxxxxx>**20070513122005]
[include support for JavaScript files
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070513123230
This patch adds support for include calls in JavaScript files as discussed in
[1]
The syntax looks like this:
/* !!include script.js */
All whitespaces are optional (except between !!include and script of course)
[1] http://www.freelists.org/archives/dokuwiki/01-2007/msg00121.html
]
[fixed copy'n'paste error for previous apostrophe fix
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070513114356]
[make sure all needed data is given when creating users from backend FS#1096
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070513101600]
[properly escape values used in LDAP filters FS#1048
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070513094851]
[Fix for non removable proxy settings in config manager FS#1123
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070513090309]
[distinction between apostrophes and single quotes FS#1127
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070513084024
This patch adds another parser mode for apostrophes. Now single quote closing
markers are handled different from apostrophes for better local typograpy
support.
Needs testing and languages updates.
]
[spelling fix FS#1130
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070513072712]
[disable alternative links for disabled actions
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070513072127
When export_raw or export_xhtml is disabled no rel="alternative" links for
these export formats are generated anymore.
]
[don't show page metadata for non accessible pages
Andreas Gohr <andi@xxxxxxxxxxxxxx>*-20070511200426]
[remove deprecated ACL option from installer
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070511200912]
[don't show page metadata for non accessible pages
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070511200426]
[add sneaky_index option
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070511200235
This disables the last patch and adds an option to enable it on demand.
]
[hide namespaces from index when no read permissions are available FS#427
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070511192116
Note this wil also hide all namespaces below even if they have more relaxed
permissions.
]
[Bulgarian Translations
Nikolay Vladimirov <nikolay@xxxxxxxxxxxxxxx>**20070511180244]
[fix for missing alt attribute for captionless JPEGs FS#1126
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070504184441]
[fix spellchecker/list problems with Safari FS#1129
Bruno De Fraine <bruno@xxxxxxxxxxxx>**20070504183227]
[TAG develsnap 2007-05-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070430230001]
[Typo in default nice_die message
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070424211611]
[Use RLM character for breadcrumbs in RTL mode FS#1124
Katriel Traum <katriel@xxxxxxxxxxxxxx>**20070425181727]
[Misc french strings fixes
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070422163049]
[support for setting the MySQL charset for auth backend
Thomas Koenig <thomas.k@xxxxxxxxxxxx>**20070423155220]
[revert manager now reverts back to the last non-spammy revision
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070422141519]
[Fix backlinks - See FS#1040
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070330215042]
[rel="nofollow" for all action links FS#1111
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070422105629]
[RTL stylesheet fixes FS#1118
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070422104650]
[don't capture blocked words in spam check
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070422100519
In the checkwordblock check, the blocked word isn't used, so there is no need
to capture it. This might improve the spam check speed (untested).
See http://forum.dokuwiki.org/thread/752
]
[removed ACTION_REGISTER event
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070422095013
This event was undocumented and only used in the CAPTCHA plugin. The event is
not needed as the same action can be carried out in ACTION_ACT_PREPROCESS.
Users of the CAPTCHA plugin need to update it.
]
[polish language update
Grzegorz Zur <grzegorz.zur@xxxxxxxxx>**20070417175616]
[english language correction
Grzegorz Zur <grzegorz.zur@xxxxxxxxx>**20070417175818]
[fix dbg_backtrace when arguments are an array or object
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070418174151]
[fixed dokubug interwiki link
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070411194508]
[fix for old revisions showing "external edit" without reason FS#1092
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070411193230]
[Hebrew fixes for config manager FS#1115
Katriel Traum <katriel@xxxxxxxxxxxxxx>**20070411180459
1. Typo Fix in lang/he
2. add rtl.css for correct display of config tables
]
[FS#1079 - made TOC images part of template
Michael Klier <chi@xxxxxxxxxxx>**20070408144321]
[support rtl.css for plugins FS#1114
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070407165027
A rtl.css file is loaded for plugins when the language direction is right to
left.
]
[opensearch uses correct path to templates
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070402043249]
[better RTL support
Katriel Traum <katriel@xxxxxxxxxxxxxx>**20070407164409
Attached is a patch I worked on with Dotan Kamber for better RTL support
in Dokuwiki.
]
[Rechtschreibkorrektur
helmut@xxxxxxxxx**20070327135044
Rechtschreibung und Zeichensetzung ueberarbeitet (wenige Aenderungen)
]
[GeSHi update to 1.0.7.19
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070401192149]
[TAG develsnap 2007-04-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070331230002]
[fix for breadcrumbs and "namespace:start" pages (FS#927) by Nathan Fritz
<fritzn@xxxxxxxxx>
Anika Henke <a.c.henke@xxxxxxxx>**20070331213401]
[Namespace autolinking from URL (FS#991 fix)
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070330212802
You can now request doku.php?id=ns: or doku.php?id=ns/ if you have the
useslash option activated and have DokuWiki return the $conf['start']
page from that namespace. See issue #991.
]
[some additional chars for the picker
Anika Henke <a.c.henke@xxxxxxxx>**20070331195443]
[added ellipsis to entities.conf
Anika Henke <a.c.henke@xxxxxxxx>**20070330225252]
[fix for FS#1071 (underline nested within italics)
Anika Henke <a.c.henke@xxxxxxxx>**20070330172031]
[some test cleanups
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070326185533]
[set scope for session cookies FS#1109
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070326180948]
[Escape Ctrl-Z so darcs stops treating utf8.php as binary.
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070323030243]
[Typo in plugin.php (FS#1094)
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070323075309]
[fix for the new SimplePie
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070312203419
SimplePie changed the method to fetch the feed, this patch restores the usage
of DokuWiki's own HTTP client.
]
[SimplePie update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070311215020]
[always have a trailing newline in JavaScript output
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070308224331
This may fix https://bugzilla.mozilla.org/show_bug.cgi?id=316033
]
[js_compress updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070308223644
This ports the fixes from the original python code to DokuWiki's js_compress
functions. The unit tests now pass.
]
[Latvian language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070307211110]
[FS#1011-fix
bernd@xxxxxxx**20070306005940]
[dbg_backtrace() function added
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070305223458
This adds a useful debugging function for printing function call backtraces.
]
[added JsStrip unit test files
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070305223025
This patch adds unit test files from the new release of JsStrip [1]. Some of
the tests
currently fail pointing to bugs which are fixed in the new JsStrip release.
The fixes
need to be ported to DokuWiki's js_compress function.
This patch also adds a way to output additional info when a test fails. It
misuses
SimpleTest's signalling which is probably a bad idea but works for now.
http://code.google.com/p/jsstrip/
]
[Several small french language corrections
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070305165211]
[French lang for revert plugin
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070305163850]
[French language update
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070305140920]
[unit test for auth_aclcheck
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070303225338]
[fixed warning whith no search results FS#1088
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070303220143]
[added getFormat() function to renderer
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070303214102
Each renderer has to supply a getFormat() function returning the format it
produces. Usually this is the same as the classname of the renderer (or Plugin)
says but it does not need to be necessarily.
Fixes a problem with the wrong format being reported to plugins when a
render plugin was used.
]
[never build instructions twice in the same run FS#1090
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070303202232
When a page was called with purge=1 the instructions were built multiple
times for the multiple renderers. This is not only an unnessary ressource hog
it could also make certain plugins fail which. This patch makes sure that
instructions for a source file are not built more than once per run.
]
[only debug when in xhtml mode in parserutils.php
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070303195008]
[improved writability check for sitemap FS#1093
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070303192836]
[bulgarian translation
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070302180103]
[skip images in links for metadata renderer
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070302102035]
[Fix broken if in previous patch
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070302100506]
[Allow @USER@ variable in ACLs
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070301230309
This saves a lot of ACL lines for users namespaces for example:
users:* @ALL 1
users:@USER@ @USER@ 8
]
[fix pass by reference problem in indexer.php
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070301211751]
[TAG develsnap 2007-03-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070301000001]
[INDEXER_PAGE_ADD event
Esther Brunner <wikidesign@Âgmail.com>**20070227124424]
[TOOLBAR_DEFINE event
Esther Brunner <wikidesign@Âgmail.com>**20070227124005]
[HTML_PROFILEFORM_INJECTION event
Esther Brunner <wikidesign@Âgmail.com>**20070227123428]
[additions for the info plugin
Esther Brunner <wikidesign@Âgmail.com>**20070227123123]
[helper plugin patch
Esther Brunner <wikidesign@Âgmail.com>**20070227122635]
[page updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070226182110]
[polish language update
Grzegorz Zur <grzegorz.zur@xxxxxxxxx>**20070225133620]
[Korean language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070226181011]
[GeSHi update to 1.0.7.18
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070226180035]
[soted indexer is now default
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070226175529]
[danish update
David Lorentsen <zyberdog@xxxxxxxxxxxx>**20070224200424
Missing danish translation strings and files
]
[Correction of German language in config plugin
'eModul <emodul@xxxxxxx>'**20070226112359]
[use dokubug as default interwiki tag for DokuWiki bugs #1045
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070224144211]
[pt-br translation fix (debian-bug #409064)
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070224133931]
[German language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070224133512]
[added some comments about new XSS protection to mime.conf
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070224131623]
[Test uploaded files for HTML tags FS#1077
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070224124458
Following the problem with IE's mimetype handling described at
http://www.splitbrain.org/blog/2007-02/12-internet_explorer_facilitates_cross_site_scripting
this patch adds a new option (on by default) to check the first 256
bytes of uploaded files against a list of a few HTML tags and denies
the upload of such a file. In rare occasions this may block harmless
and valid files, but that's price we have to pay for Microsoft's
stupidity.
Users who need HTML uploads should disable this check. (Don't do that on
open Wikis!)
]
[return time in GMT for conditional requests #1081
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070224122418]
[zh-tw language fix
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070224120324]
[wiki:dokuwiki licence FAQ link
David Lorentsen <zyberdog@xxxxxxxxxxxx>**20070224113223]
[css fix for tpl_actionlink login
David Lorentsen <zyberdog@xxxxxxxxxxxx>**20070224112634]
[hide pageinfo if no access
David Lorentsen <zyberdog@xxxxxxxxxxxx>**20070221133007]
[fix rendered metadata detection problem
chris@xxxxxxxxxxxxx**20070222162434
see http://www.freelists.org/archives/dokuwiki/02-2007/msg00207.html from Todd
Augsburger
]
[added missing files for patch by wingedfox
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070219210653]
[JS checks for .hasOwnProperty
wingedfox@xxxxxxxxxxx**20070111114236
This patch includes
- several helper functions - is* checks
- hasOwnProperty method emulator
- checks for .hasOwnProperty in all for..in loops
]
[Rar mime type added
wingedfox@xxxxxxxxxxx**20070111113557]
[better red-green blindness compatibility FS#1065
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070218142625
This adds a dashed border for non-existing links to make it easier to
distinguish between existing and non existing links for users with
color-blindness.
]
[minor spelling fix in German language
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070218135700]
[Fix namespace links and titles (FS 1005, 1006)
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070217220746]
[Swedish update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070218134846]
[config plugin TOC refactoring
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20070215015318
Now uses the new toc_additem function in the Doku_Renderer_xhtml class.
]
[RFC2047 fix for mail subjects (FS #1080)
Guy Brand <gb@xxxxxxxxxxxxxxxxx>**20070215184609
Patch by Per Foreby
]
[Avoid missing file error if no changes
David Lorentsen <zyberdog@xxxxxxxxxxxx>**20070216070704]
[all style sheet addition
martin.tschofen@xxxxxxxxx**20070211024110]
[removed obsolite id #sidebar form print.css
Michael Klier <chi@xxxxxxxxxxx>**20070212153312]
[send notify mails for uploaded files
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070212190216]
[check if uploaded content matches the given mime type
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070211223230
A first attempt at fixing FS#1077
currently checks images and spam
]
[disable text uploads by default
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070211201920
Spammers suck - see http://forum.dokuwiki.org/post/2213
]
[language-specific quotation marks (FS#438)
Anika Henke <a.c.henke@xxxxxxxx>**20070211172015]
[Korean update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070210201116]
[compatibility fix for the recent render_TOC change
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070208195457
render_TOC now behaves like before when called non-statically without an
argument
Fixes a problem in the config manager and probably other plugins using the
function
as well
]
[workaround config for FS#852
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070208195145
On certain platforms the ignore_user_abort function does not work as expected,
resulting
in a non working indexer webbug. Users with such a broken system (IIS+PHP as
CGI) can
enable this option to work around the problem (resulting in longer load times
for the
webbug).
]
[polish language update
Grzegorz Zur <grzegorz.zur@xxxxxxxxx>**20070208120717]
[do preconnects only once #1067
Stephane Chazelas <stephane@xxxxxxxxxxxxx>**20070206191629]
[give xhtml renderer method _xmlEntities standard parameter values
chris@xxxxxxxxxxxxx**20070206021203]
[refactor xhtml TOC creation into a class function, FS#1058
chris@xxxxxxxxxxxxx**20070206015454
- changed inc/parser/xhtml.php, render_TOC() function
it now takes a toc array as a parameter
- refactor render_TOC() and _tocitem() into static class functions
The xhtml renderer can build its TOC using $this->render_TOC($this->toc)
Templates can create a separate TOC using
echo Doku_Renderer_xhtml::render_TOC(p_get_metadata($ID, 'description
tableofcontents'));
]
[refactor renderer header() to separate out adding toc items
chris@xxxxxxxxxxxxx**20070206014821
adds a new render method toc_additem($id, $text, $level)
This allows toc items to be added separately from the header() function,
allowing
plugins to generate their own table of content items without having to copy dw
core code (which may in the future change).
]
[alter search callback to use call_user_func()
chris@xxxxxxxxxxxxx**20070206014428]
[fix for slashes in phrase search #1066
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070205191848]
[Fix userewrite note in htaccess (FS#1013)
'Guy Brand <gb@xxxxxxxxxxxxxxxxx>'**20070128215856]
[Encode/Decode numeric HTML entities correctly.
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070202070509
utf8_tohtml handles all codepoints, and the inverse
function, utf8_unhtml, is added.
]
[Return true/false from all template output functions.
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070202064949
Any tpl_* function that doesn't otherwise return a value
will return true if something was printed.
]
[Show file name in debug comment when creating new cache.
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070202063800]
[Use new index format in bin/indexer.php
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20070202063511]
[TAG develsnap 2007-02-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070201000001]
[esperanto update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070131182641]
[fixed test cases for recent renderer to handler function moves
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070128115556]
[small fix for metadata rendering if instructions aren't available
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070128113952]
[fix FS#1010
chris@xxxxxxxxxxxxx**20070126204145]
[added missing with/height attributes to opensearch image tag
Michael Klier <chi@xxxxxxxxxxx>**20070124232113]
[create an addPluginCall() method for the handler
chris@xxxxxxxxxxxxx**20070125144103
refactor plugin() method to use new function
this provides an interface for plugins to write their own instructions
directly when returning a single instruction is not sufficient and saves
plugin authors from hacking the handler's calls stack
]
[additional unit tests for email addresses
chris@xxxxxxxxxxxxx**20070125143848]
[improve and centralise email regexp, fixes FS#1049
chris@xxxxxxxxxxxxx**20070125143421]
[GeSHi update to 1.0.7.17
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070124202520]
[fixed broken table alignment
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070124201255]
[moved interwiki resolve logic to base renderer class
Andreas Gohr <gohr@xxxxxxxxxxxx>**20070124111438]
[moved simple URL handling from renderer to handler
Andreas Gohr <gohr@xxxxxxxxxxxx>**20070124101306]
[move title function to base renderer
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070123083854]
[Some renderer plugin updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070120002731
The namingscheme for renderer plugins now matches the other types, the plugin
manager now returns info on renderer plugins, too
]
[Renderer now inherits from Doku_Plugin
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070119234945
This makes typical plugin functions available to render plugins.
]
[moved plugin base class to inc
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070119233350]
[added missing functions to renderer base class
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070115201107]
[delete empty dir
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070115192509]
[move tar and zip libs to inc
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070115192414
Move the compression libs of the plugin manager toa mre common place to
make them available to plugin authors.
]
[HTML_LOGINFORM_INJECTION event
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070109213258
Another injection event similar to the existing ones to insert custom HTML into
the login form.
]
[Check cookie auth data silently
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070109213155]
[show lastmod datetime in mediamanager FS#964
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070106125603]
[make sure cachekey is a string in auth_nameencode FS#1000
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070106122851]
[Galician translation
medulio@xxxxxxxxxxxxxxxxxx**20070106112310]
[readded two changes from recent rollback
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070106111209]
[language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070106111111]
[regex_simpler.patch
henning.noren@xxxxxxxxx*-20070104194953
Replaces some simple regular expressions with standard (faster) string
functions
]
[fixed a forgotten space in install.php
Samuele Tognini <samuele@xxxxxxxxxxxxxxx>**20070104201822]
[faster_indent.patch
henning.noren@xxxxxxxxx**20070104195358
Replaces a print-loop with str_repeat concatenated with the final output
]
[regex_simpler.patch
henning.noren@xxxxxxxxx**20070104194953
Replaces some simple regular expressions with standard (faster) string
functions
]
[tf_rename_lower.patch
henning.noren@xxxxxxxxx**20070103205700
Name the TRUE/FALSE-constants consistently as lowercase everywhere.
This might also be an tiny optimization in some environments.
]
[check for preg_replace in install.php
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070102204857
to avoid problems like in http://forum.dokuwiki.org/thread/521
]
[TAG develsnap 2007-01-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20070101000001]
[[config plugin] add support for multi-line setting string values
chris@xxxxxxxxxxxxx**20061224005004]
[fix for feed whith Apache auth and no ACL #981
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061213192616]
[fix rss refresh to take into account other refresh settings on the same page
chris@xxxxxxxxxxxxx**20061212200847]
[fix feed links and cache
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061208065933
Fixed a double escaping error with & when no url rewriting was done.
Also made the feeds more responsive to changes in the wiki preferences.
]
[make setup error a little more verbose
Mike Frysinger <vapier@xxxxxxxxxx>**20061211194244
if a subdir is not setup properly, then init_paths() in inc/init.php will use
the pretty name ("datadir" instead of "pages"; "olddir" instead of "attic").
attached patch simply includes the actual directory name in the output so
people dont have to look it up in the source
code.
]
[fix opensearch icon search
Mike Frysinger <vapier@xxxxxxxxxx>**20061207165258]
[delivering template print CSS was broken
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20061206231114]
[string for constant fix
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061207075815]
[changelog type strings replaced with constants
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061207074906
Using more verbose constant names in the place of single character strings
should make the code much more readable. This does not change the behavior
of the changelog.
]
[identify external edits in UI
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061207032825
Some changes to clearly identify when wiki pages have been edited outside
Dokuwiki. Also correctly attributes external changes from an unknown
author. Avoids sending extra emails when recording old external edits.
Adds a new language string:
$lang['external_edit'] = 'external edit';
]
[recache and uncache the last_change from metadata
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061207011005
The most recent changelog entry is already cached in the metadata as
'last_change' to avoid reading the page changelog on every request.
- Recache the last change if it is missing and still valid. This is
needed for when the metadata has been rerendered.
- Uncaches the last change when it has been invalidated by an external
edit. Ensures that external edits are not credited to the wrong
author.
]
[rerender and save metadata fix
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061207003216]
[allow dynamic e-mail "from" addresses when doing notification
Mike Frysinger <vapier@xxxxxxxxxx>**20061205201957
this patch allows you to use @USER@ / @NAME@ / @MAIL@ in the "from" address
when sending a mail notification e-mail
]
[add some helpful user/group information to ?do=check
Mike Frysinger <vapier@xxxxxxxxxx>**20061205201753
this simple patch adds user/group output when viewing a page
with ?do=check ... i find it pretty useful when doing dokuwiki
updates/installs to make sure my database settings are all OK
]
[fix for diff links in feed
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061205200144]
[pluggable renderers
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061203190138
Plugins can now provide their own renderer in lib/plugins/<name>/renderer.php
The class inside this file needs to inherit from Doku_Renderer and has to be
called Doku_Renderer_<name>
To access the renderer the export action can be used eg: ?do=export_<name>
]
[manager user/group
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061203134104
This patch adds support for a manager option as suggested in
http://www.freelists.org/archives/dokuwiki/11-2006/msg00314.html
]
[minor fixes for W3C CSS validator
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061202185945]
[fixed display for file links with empty title #996
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061202164826]
[norwegian language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061201210155]
[TAG develsnap 2006-12-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061201000001]
[special char encoding fix for breadcrumbs #993
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061130202541]
[conflict resolve for RSS title config option
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061127223356]
[rss_summary_config
Marc Mayfield <celf@xxxxxxxxxx>**20061101023313
Add a configuration option to control whether or not the edit/revision summary
is
displayed with the title of RSS feeds. The default is to show the summary, the
same as
DokuWiki did prior to this addition.
]
[GeSHi 1.0.7.16 update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061127222845]
[updateAccessKeyTooltip update
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061126211257
Fix to DOMLib removal patch. All Mac browsers default to CTRL for tooltips
except Opera. This includes Mozilla, so test for OS not browser.
]
[metadata update to support both persistent and non-persistent metadata
chris@xxxxxxxxxxxxx**20061126152144
Key changes:
- metadata stored on disk in two arrays, 'current' & 'persistent'
- p_set_metadata has an additional parameter, $persistent, which defaults to
true
- metadata set within the renderer defaults to non-persistent
- new event hook, PARSER_METADATA_RENDER, which wraps around metadata
rendering process. For
full details of this event refer to the event list documentation at
splitbrain.
The patch includes automatic conversion of metadata in current form to the new
format
For more details also see
http://www.freelists.org/archives/dokuwiki/11-2006/msg00221.html
and any follow-up messages.
]
[catalan language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061125161230]
[experimental XMLRPC support
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061124232744
This adds experimental XMLRPC support to DokuWiki. A subset of the
Wiki XMLRPC API v2 [1] is implemented.
You need to remove the die() call in lib/exe/xmlrpc.php to use it.
[1] http://www.jspwiki.org/wiki/WikiRPCInterface2
]
[trim pagename returned by ft_pageLookup
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061124215413]
[fixed paths in getVersion
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061124202533]
[added missing .htaccess to inc directory #989
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061123152828]
[german language fixes
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061122194628]
[use generated CSS for RSS feeds
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20061115101549
plugins can include styles with feed.css,
templates can use the media type feed in style.ini
]
[renamed tar and zip libraries in plugin manager #974
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061118161242
The zip class was renamed to avoid name clashes with a certain PHP extension
the tar lib was renamed to make it match the zip naming ;-)
]
[don't print messages #980
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061118160114]
[fix for date display when diffing a deleted revision #983
David Lorentsen <zyberdog@xxxxxxxxxxxx>**20061118155255]
[hide inline scripts from XML parsers
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061118154333
This patch addes some comment magic to inline scripts to hide them from
XML parsers (like the W3C CSS validator).
]
[Indexer asian language fixes and speed-ups
Tom N Harris <tnharris@xxxxxxxxxxxxx>**20061117123032
Make Chinese and Japanese work better with the new indexer.
Some missing punctuation added to utf8_stripspecials.
Misc. other changes to make indexing faster. The indexes will expire on
backend upgrades, so you don't have to delete *.indexed
]
[sitemapper update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061117150030
The Google sitemap protocol was recently adopted by Yahoo and Microsoft and
made a common standard. This patch changes the XML namespace URL to the new
sitmaps.org site and ups the version to 0.9
Pinging of Yahoo and Microsoft was added to the existing Google ping. The
microsoft ping currently fails with a "Bad format" error for unknown reason.
This will hopefully change when either Microsoft fixes their URL or releases
some documentation.
]
[two more event hooks
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061116212937]
[HTML_EDITFORM_INJECTION event added
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061114220825
A simple event to inject additional HTML into the editform. This probably
needs to be improved.
]
[bracket fix in inc/indexer.php
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061114210440]
[obfuscate email address when it is used in mailto links (bug#977)
chris@xxxxxxxxxxxxx**20061113124108
This patch applies when no alternate link text is supplied and the actual
email address would be
used as the link text.
]
[fixes for stricter php5 typing (bug#978)
chris@xxxxxxxxxxxxx**20061113122645]
[Word-Length Indexer
TNHarris <telliamed@xxxxxxxxxxx>**20061112194900
A modification to the indexer that sorts words based on length. This should
make
searching a little bit more efficient. After the patch is applied, your old
index
will be automatically converted to the new format (when you visit a page). The
new index format is:
1. Index files are stored in savedir/index
2. Word lists are stored as wlen.idx. This used to be word.idx.
3. Word indexes are stored as ilen.idx. This used to be index.idx.
4. The page list, page.idx, is simply copied to the new location.
Any plugins you have, such as the blog plugin, that read the index files need
to
be updated.
]
[czech stopword update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061112184437]
[dutch language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061112184102]
[lv language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061112183810]
[purge option support for js.php and css.php
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061112143440
adding ?purge=1 to the calls of css.php and js.php will cause a
new build without using the cache. As suggested by Gabriel Birke.
]
[DOMlib removed
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061110201541
The DOMlib javascript library was removed. It was only used for
footnote tooltips and access key fixup.
Removing the library creates a much smaller JavaScript footprint. The
size of the compacted non-edit Javascript output was reduces from 56110
bytes down to 29296 bytes.
The footnote tooltip was completely rewritten and tested in FireFox
2.0, IE 6 and Opera 9.02. Please test other browsers as well.
The acces key fixup might beahve different now on Mac platforms.
]
[OpenSearch support
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061110151453
This adds support for the OpenSearch specification to autodetect
DokuWiki's search engine. The patch was submitted by Mike Frysinger
some time ago.
Some changes were made to the original patch. Only tested in FireFox 2.0
]
[revert manager GUI updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061110134118]
[revert plugin added
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061109204743
This plugin allows an admin to mass revert a lot of edits at once.
It's in a very rough state and needs to be improved.
]
[TAG release 2006-11-06
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061106193135]
[release preparations
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061106192948]
[language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061106175239]
[russian translation (i_phpver)
Denis Simakov <akinoame1@xxxxxxxxx>**20061105230459]
[fr lang sync
Guy Brand gb@xxxxxxxxxxxxxxxxx**20061105215024]
[Spanish i_phpver translation
miguel.pagano@xxxxxxxxx**20061105212008]
[PHP version check in the installer
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061105204420]
[backlinks fixes (bugs #795 & #937)
chris@xxxxxxxxxxxxx**20061105195453
- add deaccented and romanised page names to index word list
- remove stop words from tokens used in backlink search
]
[use encodeURIComponent instead of encodeURI for variable values
chris@xxxxxxxxxxxxx**20061105135805]
[fix email setting pattern for config plugin
chris@xxxxxxxxxxxxx**20061104213543
in addition to a single valid email it will now accept:
- no email
- multiple comma separate email addresses
]
[add standard username cleaning to resend password (fixes bug#961)
chris@xxxxxxxxxxxxx**20061104174349]
[no forcing of ASCII in section IDs for metadata (#882)
chris@xxxxxxxxxxxxx**20061104153643]
[fix xhtml_links test case
chris@xxxxxxxxxxxxx**20061104142639]
[don't allow commas in full name registration FS#960
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061103160700]
[don't show .txt files as medianamespaces #963
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061103150850]
[russian update
Denis Simakov <akinoame1@xxxxxxxxx>**20061102000617]
[accessible colors for admin form elements
Anika Henke <a.c.henke@xxxxxxxx>**20061101221737]
[disable search form if search action is disabled, bug#955
chris@xxxxxxxxxxxxx**20061101171656]
[Lithuanian language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061101162618]
[$REV checking now works correctly with synced attic
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061031224158]
[disable HTML upload by default
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061101161813
Spammers use unprotected wikis to upload spammy HTML pages. This disables
HTML upload by default
]
[fix for cookie handling problem in HTTPClient and PHP5
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061101161558]
[TAG develsnap 2006-11-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061101000001]
[Hebrew language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061031211100]
[Spanish translations
miguel.pagano@xxxxxxxxx**20061030194506
Added recent_days to lib/plugins/config/lang/es/lang.php
]
[make importoldchangelog plugin more user friendly
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061030023710
The plugin places all the changelog lines into the recent changes cache.
Truncating this cache is left to the code that normally trims the recent
changes cache. $conf['recent_days'] defines the maximum age of changes to
be considered "recent". If no changes are "recent" the changelog cache
trimmer will leave some stale changes in the cache to avoid emptying it
completely.
]
[fixed parse error in spanish lang file
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061030185024]
[spanish translations
miguel.pagano@xxxxxxxxx**20061030151008]
[Hebrew language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061030184642]
[do not transliterate cyrillic soft sign #958
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061028113426]
[fix conflicting edit cancel button
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061027185046]
[fix Old Revisions more and less buttons
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061027174549]
[synchronize changelog, attic, and external edits - update 1
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061027000043
Removed a minor error that could be caused by a page back-dated
into the past. Also, added some more code comments.
]
[synchronize changelog, attic, and external edits
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061023052133
The changelog list and the attic now are kept in sync.
This allows a changelog entry to be automatically constructed
for a page that was manually edited from outside dokuwiki.
]
[fix bug#956 (also sp. in pluginutils)
chris@xxxxxxxxxxxxx**20061027004117]
[plugin manager updates
chris@xxxxxxxxxxxxx**20061027013208
- add $conf['fmode'] support, fixes bug #939
- fix problem with plugin list not being updated after download
]
[code highlighting fragment cache update
chris@xxxxxxxxxxxxx**20061027015051
expire the cache if GeSHi (inc/geshi.php) has been updated since cache creation
]
[Traditional Chinese update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061026205002]
[GeSHi 1.0.7.15 update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061026203942]
[ignore line endings when checking the config file hash for the installer
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061023192008]
[parse changelog date as int
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20061023051106]
[do not auto escape the body of meta headers
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061022134224]
[used named submitbuttons instead of localized labels
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061020164148]
[fix for post support in HTTPClient
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061020163625]
[TAG release candidate 2006-10-19
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061019165908]
[release preparations
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061019165805]
[fix diff view for new pages
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061019104917]
[fix for actionlink back #914
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061019103310]
[language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061019101317]
[French localization update
'Guy Brand <gb@xxxxxxxxxxxxxxxxx>'**20061019083731]
[unlock files if write failed
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061018181931]
[fix getRecents for multiple edits per second
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061018181837
This fixes the getRecent function when multiple edits occured during the same
second.
]
[better check for images in fetch.php
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061018124942
This patch is an enhancement to yesterday's changes. The ability to download
external content could be used for XSS attacks, when faking the sent MIME
type. This patch adds a check on the received data for valid images.
]
[restrict fetch.php's download abilities
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061017175329
This patch changes fetch.php ability to download external files. It now checks
for the returned MIME type and will only download images. For all other
MIME types a redirect is sent back to the browser. This reduces the risc of
being misused as open proxy.
Additionally the download facility is disabled completly by default by setting
the fetchsize option to 0. Users who want the feature need to overwrite the
option
in their local.php.
Background: The ability to download external files is needed to resize external
images on the server side. When disabled, a redirect is sent to the browser
which
will download the fullsize image and rescale it on the client side which is
more
bandwidth and CPU intensive.
]
[read old revisons from the attic additionally to the changelog infos
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061017091036]
[russian update
Denis Simakov <akinoame1@xxxxxxxxx>**20061009103112]
[docs update for tpl_button and tpl_actionlink
Denis Simakov <akinoame1@xxxxxxxxx>**20061011141043]
[a bit of strictness for mediamgr + login form
Anika Henke <a.c.henke@xxxxxxxx>**20061015222040]
[typo in do=check
Anika Henke <a.c.henke@xxxxxxxx>**20061015222615]
[multiple language updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061013113521]
[IT-20060829-patch
polinnia@xxxxxx**20060829170241
- translated new strings in registermail.txt, config e usermanager plugins
- fixed changed parameter in config plugin
]
[fix user group name in install.php
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061010111646]
[lower chunksize in wordblock #938
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061009165557
There were recent reports of exceeded patternsize in the wordblock function
when used with PHP5
]
[TAG release candidate 2006-10-08
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061008103720]
[release candidate preparation
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061008103152]
[strip controlchars in fetch.php #935
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061008100523
Fixes a header injection/XSS vulnerability
]
[remove unused code
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061008090624
This patch removes some commented code fragments and alternative
snippet generators
]
[fixed images in email links
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061008074029]
[update p_get/set_metadata to use $INFO['meta']
chris@xxxxxxxxxxxxx**20061004210030
This patch updates p_get_metadata() to utilise the in memory copy
copy of the current page's metadata ($INFO['meta']) when appropriate.
The patch also updates p_set_metadata() to synchronise any changes
to the current page's metadata with $INFO['meta'].
$INFO hash is updated with two new elements:
'id' => the current page id
'rev' => the current page rev
This isn't redundant (nominally $ID and $REV also hold this
information), as some functions (e.g. p_wiki_xhtml) temporarily
alter these values (should this behaviour be changed?)
Note: I analysed normal DokuWiki behaviour and found that
metadata for any given page was only accessed once, making
a general metadata cache unnecessary.
]
[added draft-feature to tpl_actionlink
Michael Klier <chi@xxxxxxxxxxx>**20061006113409]
[update config settings for dmode & fmode
chris@xxxxxxxxxxxxx**20061005223141
- change validation pattern to allow 3 or 4 octal digits and hence
setting of SUID, SGID and sticky bit on systems which support them
]
[better datachecking in install.php
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061004183516
This patch automatically lowercases the superuser name like DokuWiki will
do itself later on. It also fixes the email check and requires it to have
at least an @ character.
]
[always bind as superuser for getting userinfo (LDAP) #751
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061003153018
Rebind as superuser even on a previous successful bind as normal user, when
superuser credentials are available. LDAP access restrictions may need it.
]
[use DOKU_URL as key for sessions and auth cookie #896 #581 #884
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061003121546
This patch changes the DOKU_COOKIE define to be based on the DOKU_URL define.
DOKU_COOKIE is now used as session key as well, making sessions no longer
dependend on the title option. This should fix problems with multiple
wikis on the same host (using the same title) and wikis accessed through
different URLs.
]
[force rebind after opening new LDAP connection #751
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20061003104320
This patch sets the private bound variable back to false if a new connection
is opened.
]
[add comment to tpl_indexerWebBug() call in default template main.php
chris@xxxxxxxxxxxxx**20061002203925]
[TAG develsnap 2006-10-01
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060930230001]
[install.php updates
chris@xxxxxxxxxxxxx**20060930170121
- add retry button (as suggested by Diego Georgini)
- correct error color, from green to red (spotted by Diego Georgini)
- add utf8_decode and utf8_encode to required function list, when
mb_string functions are not available.
- remove extra backslash from reported file names.
]
[fix rel=start header
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20060930143719]
[TAG release candidate 2006-09-28
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060928200926]
[release candidate preparations
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060928200451
updated wwordblock.conf
updated installer checksum
increased msg num
]
[more utf8_substr improvements (re FS#891 and yesterday's patch)
chris@xxxxxxxxxxxxx**20060928165122
- rework utf8_substr() NOMBSTRING code to always use pcre
- remove work around for utf8_substr() and large strings from ft_snippet()
]
[unit_test fixes/changes
chris@xxxxxxxxxxxxx**20060927101118
- auth_nameencode.test, add teardown code to clear new
$cache_authname memory cache
- utf8_substr.test, correct expected result for last test
]
[Fix link in french translation
'Guy Brand <gb@xxxxxxxxxxxxxxxxx>'**20060927091545]
[utf8_substr fix for FS#891
chris@xxxxxxxxxxxxx**20060927033713
]
[security fixes for fetch.php #924 #962
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060926200551
Fixes a shell injection and a DOS vulnerability
]
[wordblock enhancement
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060926192420
The default wordblock.conf provided by the guys at chonqed.org matches agaist
URLS beginning with http. But DokuWiki also links simple www.example.com links.
Spammers used this method to place blacklisted URLs in the Wiki.
This patch constructs full URLs from these shortcut-URLs before applying the
blacklist regexp.
The patch also fixes a problem with the toolbar not appearing when the
blacklist
hit and denied saving.
]
[amendments to previous patch updating rss & cache
chris@xxxxxxxxxxxxx**20060925201222
rss syntax extended to include a refresh parameter
<digits><period> period can be d,h,m for days, hours, minutes respectively
if not specified will default to 4 hours
dokuwiki imposes a minimum of 10 minutes
metadata now used "date valid age" (seconds) rather than "date valid end"
]
[cache, metadata & purgefile updates
chris@xxxxxxxxxxxxx**20060924202157
Cache
- add dependency for metadata renderer file
- check metadata for end of page life, "date valid end".
Metadata Renderer
- RSS syntax mode now sets rendered page expiry, "date valid end"
and includes the feed URL in "relation haspart".
Purgefile
For all wiki installations the purgefile records the earliest
time before which no cache purge (based on data consistency)
is required. Cache files older than this time MAY need to be
purged.
- remove purgeonadd configuration setting
]
[remove metadebug again, improve do=debug instead
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060925201052
This adds the complete $INFO array (contains the metadata) to the usual
debug output and removes the metadebug parameter again.
]
[metadebug parameter added
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060925193202
With DokuWiki's reliance on certain page metadata, it is sometimes necessary to
view the metadata of a page. This patch allows developers to append the
parameter
?metadebug=1 to the URL to get a dump of the metadata array. This only
available
when the allowdebug option is enabled.
]
[don't link non-existing revisions
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060925185434
The new changelog mechanism shows all revisions of a document, even if the
old revisions are deleted (eg. by a maintenence script). This patch removes
the links for non existing revisions.
]
[japanes language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060925182128]
[fix problem with timezone in feed #424
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060924195618]
[fixed script error introduced in last patch
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060924175824]
[doc updates
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060924171423]
[progressbar script change
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060924170354
The progressbar script used in the search accessed parts of the DOM before
it was completely parsed which caused problems in IE. This patch moves back
to document.write for outputting the image.
]
[update to previous changes cache patch
chris@xxxxxxxxxxxxx**20060924162105
- fix potential array key collisions
- restore ability to keep a minimum number ($conf['recent']) of recent changes
irregardless of date of change
]
[fix for reversed RSS feeds #918
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060924101329]
[fix for sitemap creation with new compression option #919
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060924100606]
[fix recent changes cache ordering
chris@xxxxxxxxxxxxx**20060923235109
This patch fixes a bug in indexer.php which resulted in the order
of the recent changes cache being reversed each time it was trimmed.
It also adds sorting to both getRecents() and runTrimRecentChanges()
as a defensive measure against the order of the file being corrupted.
]
[p_get_first_heading simplification
chris@xxxxxxxxxxxxx**20060923204905]
[minor bugfix and boring error removal
chris@xxxxxxxxxxxxx**20060923203609]
[add authname memory cache
chris@xxxxxxxxxxxxx**20060923161206
actions which concern multiple pages (e.g. search, backlinks, recents)
end up repeatedly encoding the current user's name and groups. This
change caches the results of the encoding allowing them to be reused.
]
[utf8_stripspecials optimization
chris@xxxxxxxxxxxxx**20060923151937
Add preconverted utf-8 string of special characters.
The (once only) conversion of the special character unicode
array into utf-8 occurs on every DokuWiki page view,
irrespective of action or caching, and takes about one third
of the time involved in delivering a wiki page straight from
cache.
The original unicode array has been left in place in the file
to make any future amendments easier.
]
[fixed md5 sum for installer
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060923110047]
[corrected typo
Tom Hoover <tom@xxxxxxxxxxx>**20060923034943]
[GeSHi upgrade to 1.0.7.14
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060923105545]
[croatian language files
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060921175655]
[Store cache hits only while debugging
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20060917230403
Reduce overhead by only storing cache hit stats while
the allowdebug option is enabled.
]
[parser update, add 'rss' to block mode lists, see FS#888.
chris@xxxxxxxxxxxxx**20060917211445]
[cache.php fixes
chris@xxxxxxxxxxxxx**20060917193934
- add code to ensure page metadata is refreshed along with cache
- bug fix for missing global $conf
]
[disable debugging by default
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060917183150]
[install script update II
chris@xxxxxxxxxxxxx**20060917154659
- alter acl configuration to use @admin group as superuser
]
[install script update I
chris@xxxxxxxxxxxxx**20060917154208
- update hash for devel dokuwiki.php
- remove changes.log creation, its no longer required
- add allowdebug=0 setting
]
[infoutils update
chris@xxxxxxxxxxxxx**20060917153009
minor modifications to avoid php warnings if msg file is missing.
]
[update for updatecheck function
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060917145025
Messages are now displayed to all users if ACL is not enabled. The update-URL
changed to http://update.dokuwiki.org/check/
]
[no gzipping in indexer.php
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060917140718]
[Update french translation
'Guy Brand <gb@xxxxxxxxxxxxxxxxx>'**20060917075103]
[event names renamed
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060917103450
HTML_EDIT_PAGETEMPLATE becomes HTML_PAGE_FROMTEMPLATE
TPL_METAHEADER_PRINT becomes TPL_METAHEADER_OUTPUT
]
[updatecheck feature
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060916210229
This patch adds a feature to let DokuWiki automatically check if updates are
available or any other important messages (like security warnings) and then
display this info to the admin user.
DokuWiki will contact the URL http://www.splitbrain.org/lib/exe/msg.php
with a parameter telling it which messages it already know (read from
conf/msg) - the server side script then will return all new messages.
The messages will be displayed until DokuWiki was upgraded or conf/msg
was updated manually. Messages are cached and only checked once a day.
The messenger URL will probably change before the next release.
]
[cleanID on passforgot action #861
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060916194626]
[minor update to cache.php
chris@xxxxxxxxxxxxx**20060915144735
this update changes the processing sequence slightly
to make the cache item's dependencies ($this->depends)
available before _useCache is called.
ie. the dependencies will be available to and modifiable
by handlers of the PARSER_USE_CACHE event.
]
[better getVersion when working on a darcs tree
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060916182955
getVersion tries to find the date of the latest applied patch from
_darcs/inventory - this patch makes it only read the last 2000 byte
of the file instead of loading the whole file.
]
[TPL_METAHEADER_PRINT event hook added
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060916154722
This patch changes the tpl_metaheaders function to emit an event to intercept
the creation of HTML metadata.
The usually generated meta headers are passed in an array structure for easy
modification and enhancement.
]
[permission setting in io_rename fixed #912
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060916145350]
[japanese language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060916145219]
[fix for previous pagetemplate event patch
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060916000515
Sorry, did mess up in testing the last patch.
]
[HTML_EDIT_PAGETEMPLATE event added
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060915202321]
[script fix for IE
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060915150152]
[TAG develsnap 2006-09-13
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060913191619]
[fix for missing quotation mark in tpl_metaheaders
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060913185921]
[slovak language update
Ondrej vegh <ovegh@xxxxxxxxx>**20060913185616]
[reorganize changelog code
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20060911023822
Moves changelog code to 'inc/changelog.php'
and includes it from 'inc/common.php'.
]
[changelog redesign update
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20060911014738
- Improves handling of deleted revisions.
- Import plugin disables after import.
- Check act reports if plugin is still enabled after the import.
- Import correctly handles summaries without the minor prefix.
- Newlines and tabs are now striped out of type, sum,
and extra in the changelog.
]
[suppress boring errors
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20060908193433
Suppress any errors from set_time_limit,
unlink, and file_exists functions.
see: http://www.freelists.org/archives/dokuwiki/09-2006/msg00004.html
]
[parser caching update
chris@xxxxxxxxxxxxx**20060911021418
This patch primarily updates p_cached_xhtml() and p_cached_instructions() to
allow their caching logic to be surrounded by an event trigger.
p_cached_xhtml() has been rewritten as the more general p_cached_output() to
support other render output formats besides 'xhtml'. All calls to
p_cached_xhtml() have been changed to refer to the new function.
New event:
name: PARSER_CACHE_USE
data: cache object (see below)
action: determine if cache file can be used
preventable: yes
result: bool, true to use cache file, false otherwise
Cache operations have been generalised in a new class, cache, extended to
cache_parser, cache_renderer & cache_instructions. Details can be found in
inc/cache.php
For handling of above event, key properties are:
- page, if present the wiki page id,
may not always be present, e.g. when called for locale xhtml files
- file, source file
- mode, renderer mode (e.g. 'xhtml') or 'i' for instructions
Other changes:
- cache class counts cache hits against attempts, results are stored in
{cache_dir}/cache_stats.txt
- adds metadata dependency to renderer page cache
- replaces purgefile dependency for renderer cache with metadata
'relation references' (internal link) dependency for wiki pages only
]
[minor update to default template
chris@xxxxxxxxxxxxx**20060909093603
- main.php & detail.php
add check for being run by DokuWiki, die() if not.
]
[add sapi check to scripts in bin directory
chris@xxxxxxxxxxxxx**20060909093314]
[clientIP() update + additional unit test
chris@xxxxxxxxxxxxx**20060908124315]
[clientIP() update, data cleaning improvements
chris@xxxxxxxxxxxxx**20060908122744
as per recent security warning, clientIP() could
return other arbitrary data along with an IP
address. This fix ensures only IP addresses can
be returned by this function.
]
[.htaccess added to bin directory
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060908071356]
[change non-breaking space encoding to utf-8
chris@xxxxxxxxxxxxx**20060906191207]
[move AUTH defines higher up
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060906184814
This moves the defines for the different AUTH levels higher up in inc/auth.php
to set them before including any auth modules. This fixes a problem with the
phpBB auth module posted at
http://wiki.splitbrain.org/wiki:tips:integrate_with_phpbb#another_phpbb.class.php
]
[another update for the IE+HTTPS init event problem
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060904182033]
[removed superfluous <br /> after inline tables
Anika Henke <a.c.henke@xxxxxxxx>**20060903193759]
[https fix for window.onload
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060903162438
This should fix an issue with IE6 and https where the window.onload magic
would raise a security warning. See
http://dean.edwards.name/weblog/2006/06/again/#comment5776
http://dean.edwards.name/weblog/2006/06/again/#comment5788
needs testing
]
[keyword meta header
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060903161204
The <meta name="keywords"> header is now set using either the namespace
hierarchy
or the metadata saved by the blog plugins tagging component.
]
[other languages for FS#876 (only languages are missing that miss registermail
anyway)
Anika Henke <a.c.henke@xxxxxxxx>**20060903101323]
[german language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060903081832]
[update backlink search to use metadata
chris@xxxxxxxxxxxxx**20060901002016]
[add unittests for bug#891
chris@xxxxxxxxxxxxx**20060831092146]
[search improvements
chris@xxxxxxxxxxxxx**20060831003413
ft_snippet()
- make utf8 algorithm default
- add workaround for utf8_substr() limitations, bug #891
- fix some indexes which missed out on conversion to utf8
character counts
- minor improvements
idx_lookup()
- minor changes to wildcard matching code to improve performance
(changes based on profiling results)
utf8
- specifically set mb_internal_coding to utf-8 when mb_string
functions will be used.
]
[conflict resolution for memory cache init
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060830210459]
[scalable changelog redesign
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20060830182753
This patch provides a rewritten changelog system that is designed to run
efficiently on both small and large wikis. The patch includes a plugin to
convert changelogs from the current format. The conversion is
non-destructive and happens automatically. For more information on the new
changelog format see "http://wiki.splitbrain.org/wiki:changelog".
Structure
In short the changelog is now stored in per-page changelog files, with a
recent changes cache. The recent changes cache is kept in
"/data/meta/_dokuwiki.changes" and trimmed daily. The per-page changelogs
are kept in "/data/meta/<ns>/<page_id>.changes" files. To preserve
revision information for revisions stored in the attic, the "*.changes"
files are not removed when their page is deleted. This allows the full
life-cycle of page creation, deletion, and reversion to be tracked.
Format
The changelog line format now uses a general "line type" field in place of
the special "minor" change syntax. There is also an extra field that can
be used to store arbitrary data associated with special line types. The
reverted line type (R) is a good example. There the extra field holds the
revision date used as the source for reverting the page. See the wiki for
the complete syntax description.
Code Notes
The changelog functions have been rewritten to load the whole file only if
it is small. For larger files, the function loads only the relevant
chunk(s). Parsed changelog lines are cached in memory to speed future
function calls.
getRevisionInfo
A binary search is used to locate the chunk expected to contain the
requested revision. The whole chunk is parsed, and adjacent lines are
optimistically cached to speed consecutive calls.
getRevisions
Reads the changelog file backwards (newest first) in chunks until the
requested number of lines have been read. Parsed changelog lines are
cached for subsequent calls to getRevisionInfo. Because revisions are read
from the changelog they are no longer guaranteed to exist in the attic.
(Note: Even with lines of arbitrary length getRevisionInfo and
getRevisions never split changelog lines while reading. This is done by
sliding the "file pointer" forward to the end of a line after each blind
seek.)
isMinor
Removed. To detect a minor edit check the type as follows:
$parsed_logline['type']==='e';
(The old method signature is incompatible with the new changelog format
that stores an explicit logline type.)
parseChangelogLine
Added. Parses a line in the new changelog format into an associative
array. See the wiki for changelog syntax details.
array_dichotomic_search and hasTimeStamp
Removed because the new changelog system does not require them.
saveMetadata
Refactored and removed. This code was rolled into addLogEntry because the
meta data now caches the current log line, and because it was only being
called from saveWikiText (which calls addLogEntry).
html_revisions
Now paginates revisions with the same "page size" as recent changes.
INFO (global var)
The page metadata is now stored in the $INFO global as $INFO['meta']. The
parsed changelog line for the current page revision is stored in the
metadata as 'last_change', so to get the current revision
use $INFO['meta']['last_change'].
runTrimRecentChanges
Used in the indexer to limit the size of the recent changes changelog
cache. The cache is trimmed to the latest $conf['changes_days'] days, or
one "page" of changes on inactive wikis. The 'changes_days' setting is a
new configuration parameter added for this purpose. It takes an integer
value of days because the changelog cache is trimmed (at most) once every
24 hours. This function also triggers a private action event to import the
old changelog as needed.
importoldchangelog (plugin)
Used to import and convert the old changelog. Per-page changelog files are
created for all page-ids in the changelog. Recent changes are added to the
recent changes cache. The changelog importer also reconstructs changelog
information for revisions in the attic that are missing changelog lines.
These reconstructed changes use the default "reverted" summary string
surrounded with parentheses as their summary. For example "(old revision
restored)". Changes reconstructed from the attic will also be missing the
author's IP address, user name, and summary which were lost with the
missing changelog line. The importoldchangelog plugin will run
automatically without any need for user intervention. (Note: Very large
wikis running on servers with php in "safe mode" may run out of time
because the execution time limit can not be increased by the code.)
do=check (dokuwiki act)
The "check" action will now report if an old changelog exists and is being
or has been imported. If the import ran out of time, "check" should issue
a warning that the import did not finish. To try the import again remove
the "/data/meta/_dokuwiki.changes" and "/data/meta/_dokuwiki.changes_*"
files. (It is also possible to do the import on another server that is not
in "safe mode" and copy the "/data/meta" directory to the "safe mode"
server.)
NOTE TO WIKI USERS: Do not delete the "/data/meta" directory. It now
contains changelog information that can not be regenerated from the
other wiki data.
]
[further update to global memory cache arrays
chris@xxxxxxxxxxxxx**20060829134806
- remove initialisation of caches in inc/pageutils.php
- add global declaration to init.php to support init.php
being included from within a function, e.g. unit testing
;-)
- minor change to utf8_substr, remove non-essential brackets
added as part of an earlier patch
]
[bug #876, additional data for new user notification email
chris@xxxxxxxxxxxxx**20060822072444
This patch updates only the english version of the localised
"registermail.txt" file. Other versions need to be updated also.
]
[GeSHi update to 1.0.7.13
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060828190614]
[init global memory cache arrays
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20060828071205
Update to 'add function result caching for cleanID and wikiFN'.
Makes certain that arrays exist for the caches, without checking on each
function call.
Properly create multidimensional arrays in wikiFN().
]
[utf8_substr() fix, it wasn't using mb_substr results when available
chris@xxxxxxxxxxxxx**20060828092029]
[update cleanID and wikiFN result caches to support unit testing
chris@xxxxxxxxxxxxx**20060827183327
- move caches into global scope (they were static in function scope)
- add teardown() method to clean_id unit test - to clear its cache
]
[add function result caching for cleanID and wikiFN
chris@xxxxxxxxxxxxx**20060827153352]
[utf8_correctIdx bounds checking and more unittests
chris@xxxxxxxxxxxxx**20060827153254]
[ft_snippet() update
chris@xxxxxxxxxxxxx**20060826234333
- correct "opt1" algorithm for multibyte utf8
- minor improvement to "opt2" for short pages
- add "utf8" algorithm, this algorithm endeavours
to work with whole utf8 character as much as
possible. The resulting snippet will tend to
100 characters, rather than the 100 bytes of
"opt1" and "opt2".
]
[strip tags from title #883
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060826180943
This patch no longer uses htmlspecialchars on $conf['title'] when
used in the page title - instead strip_tags is applied. This streamlines
the use of $conf['title']
]
[ft_snippet() update, fix utf8 problems
chris@xxxxxxxxxxxxx**20060826095311]
[code to remove bad UTF-8 bytes added
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060826082919
This adds code to remove or replace invalid UTF-8 bytes and uses it
in the ft_snippets function.
]
[update config plugin
chris@xxxxxxxxxxxxx**20060825223047
- add $conf['compression'] meta data and en lang strings
- remove $conf['usegzip'] meta data and en lang strings
Other language strings will need to be updated.
]
[typo fix for compression check
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060825174755]
[no forcing of ASCII in section IDs
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060825173653
XHTML allows non-ASCII chars in ids and names, so there is no need
to forcibly romanize section header ids
]
[update wikiFN with third paramter, $clean
chris@xxxxxxxxxxxxx**20060825144112
value defaults to true
patch also includes an update to idx_parseIndexLine to make use of the
new parameter - the index file (if built by DokuWiki's methods) will
contain already "clean" IDs.
]
[compression fallback
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060825144739
This updates the availability check of the choosen compression method. If bzip2
is configured but not available it falls back to gzip if available.
]
[Added bz2 compression support for Attic
marcel@xxxxxxxxxxxxxxxxxxxx**20060823211149]
[update to previous ft_snippet() patch, improve snippet text selection
chris@xxxxxxxxxxxxx**20060825134730]
[ft_snippet optimisations
chris@xxxxxxxxxxxxx**20060825104046
This patch includes two alternative algorithms for ft_snippet(), the code
which prepares the snippets seen on the search page - and the most time
consuming part of the production of that page.
If you have $conf['allowdebug'] on, you can specify the search algorithm to
use by adding &_search=<algorithm> to the search page url. Possible values
are:
orig : current dokuwiki algorithm
opt1 : first cut at improvement, reasonably similar to orig
opt2 : more optimisation, more different from orig process
]
[finnish translation of install.php (thanks Roope Järvinen)
chris@xxxxxxxxxxxxx**20060823225137]
[user manager update
chris@xxxxxxxxxxxxx**20060823115626
- add capability to send notification emails to users on
creation and password modification (bug#640)
- add success and fail messages for new user addition
- fix bug when modification of username wasn't allowed,
'Edit user' fields weren't populated
- fix (php5 only?) bug where default group wasn't given to
a new user if no groups were specified
- added explanatory notes concerning default group and
password notification emails
This patch adds several new strings to the plugin's lang.php
]
[minor en lang string fix
chris@xxxxxxxxxxxxx**20060823115006]
[Estonian language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060818143213]
[slovak language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060818142400]
[typo fixes in german language #878
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060811090311]
[Add AJAX_CALL_UNKNOWN event
Ben Coburn <btcoburn@xxxxxxxxxxxxx>**20060809194501
Allows action plugins to support custom ajax calls.
The event data is the call name from $_POST['call'].
When handling a custom ajax call, remember to use
$event->preventDefault();
to avoid having the
'AJAX call <call> unknown!'
message appended to the output.
]
[more unit test fixes
chris@xxxxxxxxxxxxx**20060809192115
- move parser.test.php => parser.inc.php. The file no longer holds any tests
and its naming style was
confusing simpletest, leading to multiple inclusion errors
- explicitly declare $conf as a global in auth.php to overcome issue when
auth.php is included from
within a function during unit testing
- replace static declaration in earlier footnote fix with a private property
on the handler class to
overcome preservation of static variable values across object destruction
and recreation,
particularly during unit testing.
- comment out notoc test (parser_headers.test.php), if still valid, the test
needs to be reworked to
match current parser/handler behaviour.
]
[cleanID unit tests
chris@xxxxxxxxxxxxx**20060809160209
+ fix missing utf8 deaccent character mapping
+ set utf-8 charset for HTMLReporter (unit tests)
]
[update footnote unittests
chris@xxxxxxxxxxxxx**20060809155755]
[fix for footnote nesting
chris@xxxxxxxxxxxxx**20060809155417]
[plugin manager update - another fix for php5
chris@xxxxxxxxxxxxx**20060808131143]
[make image details indexable
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060807205738]
[japanese language update
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060807200813]
[plugin manager update
chris@xxxxxxxxxxxxx**20060807132242
fix ordering of plugins for php5
]
[GeSHi fixes
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060806204258
This fixes a bug in GeSHi which adds an addtional newline (patch sent to
upstream) and makes sure the code highlighting cache honors the purge
request variable.
]
[few minor fixes in wiki:syntax
Anika Henke <a.c.henke@xxxxxxxx>**20060806175611]
[various language fixes
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060806143836
This patch makes sure all languages files have UNIX style line endings
and use correct UTF-8 encoding
]
[IT-20060806-patch
polinnia@xxxxxx**20060806102829
fixed type mismatch
]
[IT-20060806-patch
polinnia@xxxxxx**20060806094947
completed IT translation for new release of Dokuwiki
]
[semantic css placeholders - part 2
Anika Henke <a.c.henke@xxxxxxxx>**20060805150015]
[semantic css placeholders - part 1
Anika Henke <a.c.henke@xxxxxxxx>**20060805141743]
[fixed auth problem introduced in last unittest fix
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060805163147]
[more unittest updates
chris@xxxxxxxxxxxxx**20060805082442]
[fix for bug #701, lists in footnotes in lists
chris@xxxxxxxxxxxxx**20060804220100
added Doku_Handler_Nest class & "nest" render instruction
These allows render instructions to be nested within the "nest" render
instruction,
isolating them from the outer list of render instructions.
Not being able to do this is a particular problem for the current
Doku_Handler_* classes
as they process the list of intructions generated during their life without
any recognition
that some of the instructions may not belong to them being nested within
another syntax
mode.
This also makes it easier for plugins to generate cacheable nested
instructions rather than
using the expensive p_render() function which has to create a new renderer.
]
[unittest fixes
chris@xxxxxxxxxxxxx**20060804142243]
[fix for E_NOTICE in _test/lib/testmanager.php
chris@xxxxxxxxxxxxx**20060804000126
(possibly due to more stringent checking in PHP5 ???)
]
[fix for php5's more stringent type checking in foreach (auth/mysql.class.php)
chris@xxxxxxxxxxxxx**20060803231253
as described at http://wiki.splitbrain.org/wiki:auth:mysql#using_mysql_5
]
[Missing Spanish translations
miguel.pagano@xxxxxxxxx**20060731224944]
[http_conditionalRequest clean-up
oliver@xxxxxxxxxxxxx**20060801041118]
[use translation for pag title in install.php
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060802180443]
[polish lang update
Grzegorz Zur <grzegorz.zur@xxxxxxxxx>**20060802132121]
[ukrainian translation additions and corrections
Oleksiy Voronin <raven@xxxxxxxxxxxx>**20060801083018
Added missing files and strings for ukrainian translation.
]
[fix in JS compressor
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060731223008
This fixes a problem with escaped backslashes in single and double quote
strings.
]
[spellchecker CSS changes #539 #824
Andreas Gohr <andi@xxxxxxxxxxxxxx>**20060731192807
This patch now assigns the needed proprietary CSS attributes for the
spellchecker
through J |