summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* make RSS contents (media/pages) configurableAndreas Gohr2012-03-02
|
* fixed media only RSS feedAndreas Gohr2012-03-02
| | | | | | when the SKIP_DELETED flag was set, no recent changes where returned for media only queries, becuase file checks where done on page files instead of media files
* simpler/more robust header parsing in HTTPClientAndreas Gohr2012-02-22
| | | | The previous regexp approach failed for empty headers.
* Korean language updateErial Krale2012-02-15
|
* Romanian language updateMarius Olar2012-02-07
|
* Russian language updatePCPA2012-02-06
|
* added div.table around non-editable content as well (FS#1980)Anika Henke2012-02-04
|
* Slovak language updateMatej Urban2012-02-02
|
* Polish language updateBegina Felicysym2012-02-02
|
* increased XMLRPC API version for 1d667b4Andreas Gohr2012-02-01
|
* Merge pull request #69 from timroes/masterAndreas Gohr2012-02-01
|\ | | | | Improbement and "bug"fixing of the xmlrpc interface
| * Fixed bug in XML-RPC search.Tim Roes2011-12-01
| | | | | | | | | | The score was randomly transfered as string or as integer. This way it will always be transfered as an integer.
| * Second part of the error codes. Forgot some :(Tim Roes2011-11-29
| | | | | | | | | | | | | | | | | | | | | | Added the new error codes and categories: --- 212 Not allowed to delete media == 230 Media edit error --- 231 Filename not given --- 232 File is still referenced --- 233 Could not delete file
| * Using sensefull error codes.Tim Roes2011-11-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since there are currently a lot of error coded returning 1, that mean completly different thing, i guess it would be very nice to change this. A client should not be forced to parse the error message, the error code should be enough to explain the error. This change suggests some error codes, that have a hierarchical structure. In the following list the categories begin with = and the error codes actually used with -. = 100 Page errors == 110 Page access errors --- 111 User is not allowed to read the requested page --- 112 User is not allowed to edit the page == 120 Page existance errors --- 121 The requested page does not exist == 130 Page edit errors --- 131 Empty page id --- 132 Empty page content --- 133 Page is locked --- 134 Positive wordblock check = 200 Media errors == 210 Media access errors --- 211 User is not allowed to read media --- 215 User is not allowed to list media == 220 Media existance errors --- 221 The requested media does not exist = 300 Search errors == 310 Argument errors --- 311 The provided value is not a valid timestamp == 320 Search result errors --- 321 No chances in specified timeframe
| * Fixed XML-RPC getAttachment method. Tim Roes2011-11-27
| | | | | | Without creating an IXR_Base64 object, the file will be encoded as base64, but send as string. The client XML-RPC parser cannot detect that it is meant to be a base64 encoded file.
* | Merge pull request #72 from dom-mel/auth_fixesAndreas Gohr2012-02-01
|\ \ | | | | | | use in_array to filter groups instead of preg_grep for acl
| * | use in_array to filter groups instead of preg_grep for aclDominik Eckelmann2011-12-20
| | | | | | | | | | | | | | | the usage of preg_grep can result in "regular expression is too large" warnings, which leads to errors in auth_aclcheck.
* | | Merge pull request #58 from splitbrain/bcryptAndreas Gohr2012-02-01
|\ \ \ | | | | | | | | Added bcrypt support for password hashes
| * \ \ Merge branch 'lmd5' into bcryptAndreas Gohr2011-11-27
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: lib/plugins/config/settings/config.metadata.php
| | * | | added test case for lsmd5 passhashingAndreas Gohr2011-11-27
| | | | |
| | * | | renamed passhash method smd6 to lsmd5Andreas Gohr2011-11-27
| | | | |
| | * | | MD5 password hash format of the LDAP RFC FS#2378Patrick Michel2011-11-27
| | | |/ | | |/| | | | | | | | | | | | | | | | | | | | | This implements the salted MD5 password hash format of the LDAP RFC. The format is quite simple the password, followed by the 8 byte hash in base64 encoding, which results in 32 characters, prepended with the string "{smd5}".
| * | | Merge branch 'master' into bcryptAndreas Gohr2011-11-27
| |\| |
| * | | Added bcrypt support for password hashesAndreas Gohr2011-10-14
| | | | | | | | | | | | | | | | This method require PHP 5.3+ it will fail otherwise!
* | | | some more DOKU_TPL removalAndreas Gohr2012-02-01
| | | |
* | | | removed some more occurances of DOKU_TPL*Andreas Gohr2012-02-01
| | | |
* | | | fixed .curid to always highlight the current ID of the main/viewed pageAnika Henke2012-01-31
| | | |
* | | | added missing global statementsAndreas Gohr2012-01-30
| | | | | | | | | | | | | | | | tss..
* | | | DOKU_TPL* considered harmfulAndreas Gohr2012-01-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some plugins want to dynamically switch the template based on users, namspaces or the phase of the moon. Having fixed paths in a unchangable constant prevents this. This changes deprecates the DOKU_TPL* constants in favor of two new tpl_* functions that return the correct paths based on the $conf variables which can be changed from the DOKUWIKI_STARTED event.
* | | | made the tpl_getMediaFile() function more flexibleAndreas Gohr2012-01-30
| | | |
* | | | added tpl_getMediaFile() to replace tpl_getFavicon()Anika Henke2012-01-29
| | | | | | | | | | | | | | | | | | | | The function tpl_getFavicon() was doing more than its name was implying. Therefore the new tpl_getMediaFile() was introduced (which is doing nearly exactly the same) and tpl_getFavicon() was deprecated. tpl_favicon() can still be used, though.
* | | | added two new config options: tagline and sidebarAnika Henke2012-01-29
| | | | | | | | | | | | | | | | Templates authors should support these to make the transition between templates easier. Templates which already have a sidebar could first check for $conf['sidebar'] and use it if it's defined, otherwise use their old own sidebar functionality to stay backwards-compatible.
* | | | added missing actions to tpl_actiondropdown()Anika Henke2012-01-29
| | | |
* | | | added 5 new language strings for action tools and skip link (needs translations)Anika Henke2012-01-29
| | | | | | | | | | | | | | | | This is in preparation for the new default template. This also updates the tpl_actiondropdown() to use most of them.
* | | | release preparationsAndreas Gohr2012-01-25
| | | |
* | | | Romanian language updateEmanuel-Emeric Andrași2012-01-25
| | | |
* | | | removed 'view original' button from new media manager again (was added in ↵Anika Henke2012-01-22
| | | | | | | | | | | | | | | | b8a84c03) and made a link around the image instead, as that is a more minor change (as it should be during the RC phase) and is what was originally planned
* | | | corrected old mediaupload introduction textAnika Henke2012-01-19
| | | |
* | | | Removed obsolete Opera fix that now causes harm FS#2429Andreas Gohr2012-01-18
| | | |
* | | | don't limit download sizes in plugin managerAndreas Gohr2012-01-17
| | | |
* | | | Disable E_STRICT error reportingMichael Hamann2012-01-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change disables the reporting of strict standard errors in PHP 5.4, in PHP versions prior to 5.4 E_STRICT wasn't part of E_ALL so for these versions this doesn't cause any change (however E_STRICT is available in all versions of PHP 5 so this doesn't cause any problems). See also FS#2427.
* | | | Make Sitemapper functions static as they were used as static functionsMichael Hamann2012-01-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | All calls to the Sitemapper were static function calls, this caused notices because they weren't static, with this commit they are marked as static. Furthermore two FIXME comments were removed as dbglog now checks if debugging is enabled.
* | | | Make this dummy file empty like all othersGuy Brand2012-01-15
| | | |
* | | | Update copyright yearGuy Brand2012-01-15
| | | |
* | | | Remove testing md5 hash from installerGuy Brand2012-01-15
| | | |
* | | | Merge pull request #75 from lupo49/masterAndreas Gohr2012-01-13
|\ \ \ \ | | | | | | | | | | localization: removed strings from old flashuploader
| * | | | localization: removed strings from old flashuploaderlupo492012-01-13
| | | | |
* | | | | Slovak language updateMartin Michalek2012-01-13
|/ / / /
* | | | Polish language updateBegina Felicysym2012-01-13
| | | |
* | | | readded missing "view original" button to the new media managerAndreas Gohr2012-01-13
| | | | | | | | | | | | | | | | Template authors need to update their _mediamanager.css