summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAge
* Galician translation updatesAndreas Gohr2007-06-24
| | | | darcs-hash:20070624174021-7ad00-5343b0d790bfd868469f59bdb569ffc9c056431e.gz
* Polish language updateAndreas Gohr2007-06-24
| | | | darcs-hash:20070624105948-7ad00-9b0c7bb2b718cc45302756b3e8b04cf2472d92bd.gz
* greek language updatesAndreas Gohr2007-06-22
| | | | darcs-hash:20070622215242-7ad00-c0512378d892226c79e0eae52bdf989e1aa0c5d7.gz
* Misc string fixes and fr updateGuy Brand2007-06-19
| | | | darcs-hash:20070619173914-19e2d-7cbef873f967f11ebc0090a1467a0b97d10ec395.gz
* RTL stylsheet fixTom N Harris2007-06-16
| | | | darcs-hash:20070616214657-6942e-a47a6a757a74d544354aef34863ffa46489bb465.gz
* regex fix for JavaScript includesTom N Harris2007-06-16
| | | | darcs-hash:20070616214530-6942e-5a585a29404e40a7e86bbb4de0fba124f45e61a7.gz
* update on the GeSHi default stylesAndreas Gohr2007-06-15
| | | | darcs-hash:20070614232042-7ad00-1bf338c94e11f4bf16992cd83cca232fa8e193a6.gz
* make typography option three staged FS#1142Andreas Gohr2007-06-13
| | | | | | | | | | | | | | | | 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. darcs-hash:20070613184015-7ad00-0cebc3f807f54467d54458075c5c9f651355c5ba.gz
* Japanese language updateAndreas Gohr2007-06-04
| | | | darcs-hash:20070604174939-7ad00-73a8a54560f0b801f293ced2213a3ca1fd1a394c.gz
* russian language updatesDenis Simakov2007-06-04
| | | | darcs-hash:20070604122134-3c565-33241d7cfa7f8813e8f482e7b46c72cdfafa2a15.gz
* Swedish language updatesPer Foreby2007-06-03
| | | | darcs-hash:20070603152100-26f5f-f899eb74ba24850262b8ac64626e31a9e8c967da.gz
* Partial Fix FS#1085Chris Smith2007-05-28
| | | | | | | | | | | | | | | | | | | 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. darcs-hash:20070528194747-d26fc-f471004da604eb66f7131c470e446b98c29d801b.gz
* typographically correct minus sign in toc toggle (yet even bigger)Anika Henke2007-05-16
| | | | darcs-hash:20070515223140-d5083-240785145d88259304d4e6a0df776864e53f5dd8.gz
* TOC toggle usability fixwingedfox2007-05-15
| | | | | | | | | 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 darcs-hash:20070515045800-00f02-ed34ebd337c66e3bac731f300f2ce385f64f5e21.gz
* fix for former patch (FS#744)Anika Henke2007-05-15
| | | | darcs-hash:20070514224419-d5083-7f072fa6f2b3100adbeecc856f1babd2b9919186.gz
* FS#744 (template developers, heed the changes)Anika Henke2007-05-15
| | | | darcs-hash:20070514222527-d5083-53ed619daf07d0a84c52161465d163abf1400529.gz
* fixed double http in config manager language filesAndreas Gohr2007-05-15
| | | | darcs-hash:20070514222947-7ad00-ae9c66f81648bae00f3cadc3523f15260cc8d4b3.gz
* some more fixes for the toc toggle jsAnika Henke2007-05-14
| | | | darcs-hash:20070514205803-d5083-1b9ffb482ec2f3b948e200c6b89e8a13da1476d9.gz
* fix for stupid JS bug in TOC toggleAndreas Gohr2007-05-14
| | | | darcs-hash:20070514203709-7ad00-ba9193d94383f6a0bbaa7dbcaf4a06c0e833eade.gz
* replaced TOC toggle images by CSS magicAndreas Gohr2007-05-14
| | | | | | | 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. darcs-hash:20070514180903-7ad00-4aeef03580dfb92a5c939d3cdd569850ea31df5b.gz
* tiny url fix in toc image jsAnika Henke2007-05-14
| | | | darcs-hash:20070513223948-d5083-24db06f97ec34b1d5d1db6ae435718ecf171ba70.gz
* include_once support for javascriptAndreas Gohr2007-05-14
| | | | | | | | | | | | | | | | | | | | | 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 darcs-hash:20070513222421-7ad00-d99d717ba8a428d0af2b3f7d593897e0467cb9c9.gz
* fix of js fix of xhtml fix of mediamanager *g*Anika Henke2007-05-14
| | | | darcs-hash:20070513220816-d5083-3d1ab51294c79f48a9a88159de579b32768a3a16.gz
* javascript fix for recent mediamanager xhtml fixAndreas Gohr2007-05-13
| | | | darcs-hash:20070513213350-7ad00-ed07ed98389045714328c34aaf318fc7734665a2.gz
* fixed xhtml validity issues in media managerAnika Henke2007-05-13
| | | | darcs-hash:20070513212129-d5083-7ec1048f96fbd4588db6fa2a1d2e22355a3d4961.gz
* fixed link in config descriptions for new bugtracker URLsAndreas Gohr2007-05-13
| | | | darcs-hash:20070513193524-7ad00-2877bb35c7ff52ebd5bd29aeee872f8a6720d5f9.gz
* variable button width in plugins plugin (FS#1131)Anika Henke2007-05-13
| | | | darcs-hash:20070513183158-d5083-4620657620b8b3f69ddf885fb0474c65bb8a50f8.gz
* fixed some xhtml validity issues in config managerAnika Henke2007-05-13
| | | | darcs-hash:20070513174719-d5083-4827d529f2d30011a1bb7d3cc09cf15779629c19.gz
* include support for JavaScript filesAndreas Gohr2007-05-13
| | | | | | | | | | | | | | 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 darcs-hash:20070513123230-7ad00-71a1081aaef1e8f6bc909820927f17d0be71b74e.gz
* make sure all needed data is given when creating users from backend FS#1096Andreas Gohr2007-05-13
| | | | darcs-hash:20070513101600-7ad00-2e225a1d06706cc7591f16eb8eb17095e04ea6dc.gz
* Fix for non removable proxy settings in config manager FS#1123Andreas Gohr2007-05-13
| | | | darcs-hash:20070513090309-7ad00-d620a992ce3a014ebc956d20d6b3ee97e2b9fefc.gz
* spelling fix FS#1130Andreas Gohr2007-05-13
| | | | darcs-hash:20070513072712-7ad00-edc1e0a35393656b131972443e0836a0116090f8.gz
* add sneaky_index optionAndreas Gohr2007-05-11
| | | | | | This disables the last patch and adds an option to enable it on demand. darcs-hash:20070511200235-7ad00-a3ea769bc4965710b7fd261d31e2c9f8a3d9d7f5.gz
* Bulgarian TranslationsNikolay Vladimirov2007-05-11
| | | | darcs-hash:20070511180244-5dabd-5c414e320c1ec24ef8b09209cdf5f192018cfdbb.gz
* fix spellchecker/list problems with Safari FS#1129Bruno De Fraine2007-05-04
| | | | darcs-hash:20070504183227-8a46b-9fb829ff4b337dace67070e41afc6573c07a3312.gz
* Misc french strings fixesGuy Brand2007-04-22
| | | | darcs-hash:20070422163049-19e2d-f0b1f10635e999660866d54691e3bbdf98f670d6.gz
* revert manager now reverts back to the last non-spammy revisionAndreas Gohr2007-04-22
| | | | darcs-hash:20070422141519-7ad00-c51db646b2e7cb0f24395604c039b2ea9a576883.gz
* RTL stylesheet fixes FS#1118Andreas Gohr2007-04-22
| | | | darcs-hash:20070422104650-7ad00-101d770aff900ed9c7af94ff33b4a6b9792b0576.gz
* polish language updateGrzegorz Zur2007-04-17
| | | | darcs-hash:20070417175616-e561a-c9c5d6a74bdb371c43faab99aa56a8c4ee7ab8f7.gz
* english language correctionGrzegorz Zur2007-04-17
| | | | darcs-hash:20070417175818-e561a-a7e786b44aef2a5e1a3da512717b389af4f5ac48.gz
* Hebrew fixes for config manager FS#1115Katriel Traum2007-04-11
| | | | | | | 1. Typo Fix in lang/he 2. add rtl.css for correct display of config tables darcs-hash:20070411180459-3c7c8-0283133a19cb0adfcfcf9ed34d7ecac121e6c17d.gz
* FS#1079 - made TOC images part of templateMichael Klier2007-04-08
| | | | darcs-hash:20070408144321-23886-266b4fec7c4d292f830689cced19798cd00d1422.gz
* support rtl.css for plugins FS#1114Andreas Gohr2007-04-07
| | | | | | A rtl.css file is loaded for plugins when the language direction is right to left. darcs-hash:20070407165027-7ad00-1580a9d2af3f64f13780b4e243e53b44c7c5add2.gz
* opensearch uses correct path to templatesTom N Harris2007-04-02
| | | | darcs-hash:20070402043249-6942e-c69c700456d6feb5d275f3fab46bdba82505e30f.gz
* better RTL supportKatriel Traum2007-04-07
| | | | | | | Attached is a patch I worked on with Dotan Kamber for better RTL support in Dokuwiki. darcs-hash:20070407164409-3c7c8-43c8ae51d85386835840ea17f6a9625157faccc2.gz
* fix for FS#1071 (underline nested within italics)Anika Henke2007-03-30
| | | | darcs-hash:20070330172031-d5083-bfc089304716f91eb55135720012142da3f78df0.gz
* always have a trailing newline in JavaScript outputAndreas Gohr2007-03-08
| | | | | | This may fix https://bugzilla.mozilla.org/show_bug.cgi?id16033 darcs-hash:20070308224331-7ad00-e5ef018706062baf6bec2bd11dfb318e0fe4b1f6.gz
* js_compress updatesAndreas Gohr2007-03-08
| | | | | | | This ports the fixes from the original python code to DokuWiki's js_compress functions. The unit tests now pass. darcs-hash:20070308223644-7ad00-56ea99689a62e9752f4814b5dc7ada02eae59089.gz
* Several small french language correctionsGuy Brand2007-03-05
| | | | darcs-hash:20070305165211-19e2d-02911c52123f382270f57a9a44cce514c89c667a.gz
* French lang for revert pluginGuy Brand2007-03-05
| | | | darcs-hash:20070305163850-19e2d-38f2e618020d45e85dad50082e5dc619ca1cfa9f.gz