| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
darcs-hash:20080217172914-7ad00-400fed6d7ca8844ef214081724cd5c280344f0e5.gz
|
|
|
|
| |
darcs-hash:20080213204325-7ad00-392f8f23f8035f0a74ac11601e64c27859a3b026.gz
|
|
|
|
| |
darcs-hash:20080209092859-7ad00-e71f7aaef6e020abfa8e66b8c1edd2014aa78e3a.gz
|
|
|
|
| |
darcs-hash:20080130222205-7ad00-76b123c78c1e3d758b1627ec09fafb25b96b4ada.gz
|
|
|
|
| |
darcs-hash:20080130220034-7ad00-aa23168b9d0bbfc384f4944633d5adbce15c296b.gz
|
|
|
|
| |
darcs-hash:20080124211845-7ad00-2e3a7ec8cdf4d682bc3ea4c625eed3aa2e929c09.gz
|
|
|
|
| |
darcs-hash:20080122185140-7ad00-0ff0feaa401db1fb01880c4b323b0019d2663fe1.gz
|
|
|
|
| |
darcs-hash:20080114173625-7ad00-e53b8ee34aff334ef95c8e1276a93893efbedc7f.gz
|
|
|
|
| |
darcs-hash:20080107204755-7ad00-9213dd89e13a706b7e764aad2065278f12552356.gz
|
|
|
|
| |
darcs-hash:20080107201607-7ad00-07d76b482d6c759ba2e5e5ad0ce2d2c9becf85ba.gz
|
|
|
|
| |
darcs-hash:20080104143832-7ad00-705fa397a4fedaf21cbff8b7fedabcadaec02ea1.gz
|
|
|
|
| |
darcs-hash:20080104141457-7ad00-f2ffae5e2d53b6d3018e9a5ad85264b557626b53.gz
|
|
|
|
| |
darcs-hash:20080104140951-7ad00-8c563cb30ca014d5ce5f373f660d88204ed70632.gz
|
|
|
|
| |
darcs-hash:20080104140733-7ad00-e60bf288ff2d3c22b010e3e509c009c3af339b65.gz
|
|
|
|
| |
darcs-hash:20071214105324-7ad00-fb59fd40d8c20f2019f3fa769bd229ba18d40903.gz
|
|
|
|
| |
darcs-hash:20071210190648-7ad00-61f6b7ce8ac35e09fc963d84ec8638a7884797ae.gz
|
|
|
|
| |
darcs-hash:20071203183011-7ad00-ac36914f25ae71842551fb49bfdadb9ebf0aaba6.gz
|
|
|
|
| |
darcs-hash:20071130234249-7ad00-176b2e8bff203f8a78aceef713ca398a316dbdfc.gz
|
|
|
|
| |
darcs-hash:20071130233509-7ad00-6c6a262533c0e49af763bd45854e34cf33ba13cb.gz
|
|
|
|
| |
darcs-hash:20071130233302-7ad00-9cbdf61a70e1a0771bb4ee1a77fc82c3b64dffa1.gz
|
|
|
|
|
|
|
|
| |
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.
darcs-hash:20071123125840-7ad00-faf7aa4673421dbb3fad904ba5b46b4927a5176d.gz
|
|
|
|
| |
darcs-hash:20071121203902-7ad00-bb88d1124d181b56152f22da892d6d3eccf1161c.gz
|
|
|
|
| |
darcs-hash:20071118105953-7ad00-a93b7707b09890fe3c184bb233238ee4df8e4ffe.gz
|
|
|
|
| |
darcs-hash:20071102181710-7ad00-3e239b6f0a9be465e33f283c1ed56958289f3dae.gz
|
|
|
|
| |
darcs-hash:20071026205405-7ad00-56ddd5adab9ae4ae37697cd82a10f5c4ea056271.gz
|
|
|
|
| |
darcs-hash:20071026110711-b9abf-3c57eaea66fb90636e51fa9aa03dc7928824fb6f.gz
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
darcs-hash:20071008185019-7ad00-1e6d4768fb60d58955e4253c7786eaf8cf13d0bb.gz
|
|
|
|
| |
darcs-hash:20071007191109-7ad00-80a395519238428c32d20b5d8b9738908c25da05.gz
|
|
|
|
| |
darcs-hash:20070908192004-7ad00-f7ed26c8afd03db706acd90d38367bf13dfc2266.gz
|
|
|
|
| |
darcs-hash:20070908142300-7ad00-ecb0aa5d77f6451b33988e6008e0297bd4425948.gz
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
darcs-hash:20070829201538-7ad00-d0770224a3351fd8e38968e3a9d8e73520482445.gz
|
|
|
|
| |
darcs-hash:20070821174336-7ad00-f17ae332851fb010f6cfc6e09e0a2f958b809a92.gz
|
|
|
|
|
|
| |
FS#1185
darcs-hash:20070821120916-d26fc-75fbdf68d2a31222b892106229ee84c12c504630.gz
|
|
|
|
| |
darcs-hash:20070821173805-7ad00-49900167ab4babede6acebb595faf005b28ce18e.gz
|
|
|
|
| |
darcs-hash:20070818222029-7ad00-490d6e1e53a9753c4951ee8a9a9882d3cbdcfdb0.gz
|
|
|
|
| |
darcs-hash:20070816182508-7ad00-a6107d7ae873a1473444c8fcfc02cf59172b0d8b.gz
|
|
|
|
| |
darcs-hash:20070813220053-7ad00-db53d44215d74c091c10e0423b8152dec302127a.gz
|
|
|
|
| |
darcs-hash:20070808214818-7ad00-48bb7ceff4e2144512bb7ad217700c63c9d4bb94.gz
|
|
|
|
| |
darcs-hash:20070808180825-7ad00-63a8a7c23769cd92cccde54c3df267e94214eaae.gz
|
|
|
|
| |
darcs-hash:20070807221400-7ad00-c67b347e0528709a4eae84f3740c34d12f9e1bba.gz
|
|
|
|
| |
darcs-hash:20070805193638-d26fc-aac3910d4dea3cd5539572cce3e73366ed39ab80.gz
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
darcs-hash:20070730164939-7ad00-43323188e904f45153062bb2e5c3550a1ea4ce4d.gz
|
|
|
|
| |
darcs-hash:20070715090528-7ad00-ffebbfcd0e4b12e839a958932afd1db2c4fb8765.gz
|
|
|
|
|
|
|
|
|
| |
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!
darcs-hash:20070711213624-7ad00-49359417127fdbd6e31374738509110271b6b351.gz
|
|
|
|
| |
darcs-hash:20070702195324-7ad00-ae4099158ec50f7345355738b2d80905ca63a543.gz
|
|
|
|
| |
darcs-hash:20070630110132-7ad00-d2e4eca72ca53ff3aa5808ae6328d798a9e8b039.gz
|
|
|
|
| |
darcs-hash:20070629212340-7ad00-ca30ab5a542bab7e1bf3b7650e3533cf57190170.gz
|
|
|
|
|
|
|
| |
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.
darcs-hash:20070629210648-7ad00-0e2a689b04c747298ee50b20bce287069393a84b.gz
|