| #
e656dcd4 |
| 23-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
use strftime() instead of date() FS#1335 :!:
This patch replaces the use of the date() function with the strftime() function. The latter will respect a set locale and will use localized strings for
use strftime() instead of date() FS#1335 :!:
This patch replaces the use of the date() function with the strftime() function. The latter will respect a set locale and will use localized strings for things like month names.
Because the format options for strftime differ from the ones used in date, DokuWiki will rest the value of $conf['dformat'] if it contains an old date format string (detected by missing % characters).
Plugins or templates using the $conf['dformat'] need to be updated.
darcs-hash:20080223124045-7ad00-6afb2b839afc58781463e25577e06adb675fff79.gz
show more ...
|
| #
1db218e9 |
| 15-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
do case insensitive search word highlighting in page FS#1297
darcs-hash:20080215180239-7ad00-2b9e1d5cff75f581a549bc3881a18cfffc53efb5.gz
|
| #
60c15d7d |
| 15-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
better highlighting for phrase searches FS#1193
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
darcs-hash:2
better highlighting for phrase searches FS#1193
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
darcs-hash:20080215174653-7ad00-cd2d6f7d408db7b7dd3cb9974c3eb27f3a9baeac.gz
show more ...
|
| #
39ba8890 |
| 13-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
check modMail capability correctly FS#1329
darcs-hash:20080213213322-7ad00-bd2a818080046a492447b7c1ecb0a4c1a89ea5e1.gz
|
| #
ebbb1c49 |
| 19-Jan-2008 |
Andreas Gohr <andi@splitbrain.org> |
correct fix for FS#1227
darcs-hash:20080119005310-7ad00-055e1aaf63625c0ab9bfd31f49fd9c7cba5972a8.gz
|
| #
e6b3271c |
| 18-Jan-2008 |
Andreas Gohr <andi@splitbrain.org> |
Always show pageids for "matching pagenames" FS#1227
darcs-hash:20080118225518-7ad00-772f0368e71ffe5868d1ba0a5ca2fcc1010f1bf9.gz
|
| #
b278f2de |
| 26-Oct-2007 |
Andreas Gohr <andi@splitbrain.org> |
adds a second class to action buttons
darcs-hash:20071026210930-7ad00-e8048c01f924eeaf060effee155fc5d36b997804.gz
|
| #
103c256a |
| 30-Sep-2007 |
Chris Smith <chris@jalakai.co.uk> |
add page_exists function (inc/pageutils.php)
bool page_exists($id, $rev
darcs-hash:20070930021040-d26fc-e3847bfdd20a36154685262eca94211cfd461e83.gz
|
| #
00976812 |
| 30-Sep-2007 |
Andreas Gohr <andi@splitbrain.org> |
don't use realpath() anymore (FS#1261 and others)
The use of realpath() to clean up relative file names caused some trouble in certain setups relying on symlinks or having restricitve file structure
don't use realpath() anymore (FS#1261 and others)
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.
darcs-hash:20070930184250-7ad00-512ff04c95f57fc9eaf104f80372237a3c94286f.gz
show more ...
|
| #
11df47ec |
| 13-Aug-2007 |
Michael Klier <chi@chimeric.de> |
added nothing found message to backlinks output
darcs-hash:20070813160452-23886-c40e9f3bfe259d698500a6ef01f75894801b22c5.gz
|
| #
4a119027 |
| 10-Aug-2007 |
Andreas Gohr <andi@splitbrain.org> |
correctly URL encode idx parameter in index view
darcs-hash:20070810082232-7ad00-e6abe2b952b7575454f8a2fcc5c257ec07b09e78.gz
|
| #
7d91652a |
| 07-Aug-2007 |
Andreas Gohr <andi@splitbrain.org> |
TOC fixed
This fixes some small bugs which were introduced with recent TOC changes
darcs-hash:20070807171844-7ad00-fc09dd6d09b72927e64dfa41dd8b86fc20d86ed0.gz
|
| #
2bb0d541 |
| 05-Aug-2007 |
chris <chris@jalakai.co.uk> |
minor fixes for recent tpl_toc() patch
darcs-hash:20070805163833-9b6ab-82e8cd7ec37d163ccb552e3b6aee8c1f70e75f15.gz
|
| #
b8595a66 |
| 05-Aug-2007 |
Andreas Gohr <andi@splitbrain.org> |
separated TOC from page
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
separated TOC from page
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.
darcs-hash:20070805132405-7ad00-77d2c3cdf66cc62b2d408cc6580f938636a109af.gz
show more ...
|
| #
fdb8d77b |
| 30-Jul-2007 |
Tom N Harris <tnharris@whoopdedo.org> |
New structured forms and action events
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 ma
New structured forms and action events
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.
darcs-hash:20070730215007-6942e-a0cf08197f939e224a2b28c40aec5431b118ea94.gz
show more ...
|
| #
77707b04 |
| 18-Jul-2007 |
Andreas Gohr <andi@splitbrain.org> |
show diff between arbitrary revisions FS#14
You can now compare any choosen revision of a page to any other.
Todo: add some JavaScript to avoid choosing more than two revisions
darcs-hash:2007071
show diff between arbitrary revisions FS#14
You can now compare any choosen revision of a page to any other.
Todo: add some JavaScript to avoid choosing more than two revisions
darcs-hash:20070718102204-7ad00-b66c7d82d688c05bfd86e0c7dfe6d283ad555bf8.gz
show more ...
|
| #
a06884ab |
| 16-Jul-2007 |
Andreas Gohr <andi@splitbrain.org> |
AJAX for the index view
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 backgrou
AJAX for the index view
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.
darcs-hash:20070716184605-7ad00-adf298ee3303d50f2b4b6b66e5ea3ff8d8c2bf9a.gz
show more ...
|
| #
8fe3bb00 |
| 05-Jul-2007 |
Tom N Harris <tnharris@whoopdedo.org> |
correct hilighting of empty summary on preview
darcs-hash:20070705215447-6942e-d3e1124a3cfec6661a7077bc0d9707b156bc2313.gz
|
| #
6957b2ea |
| 27-Jun-2007 |
Andreas Gohr <andi@splitbrain.org> |
check for auth object at certain functions
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
check for auth object at certain functions
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.
darcs-hash:20070627194910-7ad00-de5ac10e0d36ecf8906c080e1d3dc1b2fd85b45d.gz
show more ...
|
| #
688774a0 |
| 14-May-2007 |
Anika Henke <a.c.henke@arcor.de> |
fix for former patch (FS#744)
darcs-hash:20070514224419-d5083-7f072fa6f2b3100adbeecc856f1babd2b9919186.gz
|
| #
ed7ecb79 |
| 14-May-2007 |
Anika Henke <a.c.henke@arcor.de> |
FS#744 (template developers, heed the changes)
darcs-hash:20070514222527-d5083-53ed619daf07d0a84c52161465d163abf1400529.gz
|
| #
d21dc866 |
| 13-May-2007 |
Anika Henke <a.c.henke@arcor.de> |
deleted obsolete backtomedia functions
darcs-hash:20070513124655-d5083-7ffc212357be18a5f889c85736d7c97946b5c899.gz
|
| #
28a97b17 |
| 27-Feb-2007 |
Esther Brunner <wikidesign@gmail.com> |
HTML_PROFILEFORM_INJECTION event
darcs-hash:20070227123428-20862-cc92070d15b116d6865eab3acc0a210ab17755f8.gz
|
| #
34dbe711 |
| 06-Feb-2007 |
chris <chris@jalakai.co.uk> |
alter search callback to use call_user_func()
darcs-hash:20070206014428-9b6ab-1bcc1a005850b2048b49a7667dd25905f8a79ae2.gz
|
| #
5b62573a |
| 09-Jan-2007 |
Andreas Gohr <andi@splitbrain.org> |
HTML_LOGINFORM_INJECTION event
Another injection event similar to the existing ones to insert custom HTML into the login form.
darcs-hash:20070109213258-7ad00-2d8b59c6a83b42231cdba845263b09821e2b04
HTML_LOGINFORM_INJECTION event
Another injection event similar to the existing ones to insert custom HTML into the login form.
darcs-hash:20070109213258-7ad00-2d8b59c6a83b42231cdba845263b09821e2b0400.gz
show more ...
|