Skip to content
Snippets Groups Projects
  1. Apr 23, 2012
  2. Apr 16, 2012
    • Andreas Gohr's avatar
      rearranged the config options · 317250bb
      Andreas Gohr authored
      We had a lot of options lumped together under "Advanced Settings". I
      introduced two more categories and move a few options to other existing
      categories.
      I also reordered the appropriate entries in the source files to make it
      easier to find stuff when extending the options.
      317250bb
  3. Apr 15, 2012
  4. Mar 10, 2012
  5. Mar 02, 2012
  6. Jan 30, 2012
  7. Jan 29, 2012
    • Anika Henke's avatar
      added two new config options: tagline and sidebar · 91e90457
      Anika Henke authored
      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.
      91e90457
  8. Jan 08, 2012
  9. Nov 27, 2011
  10. Aug 02, 2011
  11. Jun 18, 2011
  12. Jun 16, 2011
    • Andreas Gohr's avatar
      Use data uris for small image files in CSS · 809d3ba5
      Andreas Gohr authored
      This patch adds a new config option 'cssdatauri'. When enabled, the CSS
      patcher will automatically convert all occurances of small (<600 byte)
      PNG and GIF images in the CSS to embedded, base64 encoded data uris.
      
      This reduces the number of needed HTTP requests and avoids the HTTP header
      overhead.
      809d3ba5
  13. Apr 16, 2011
  14. Mar 22, 2011
  15. Dec 31, 2010
  16. Dec 08, 2010
    • Adrian Lang's avatar
      Various changes to feed.php’s parameter handling · b5a0be43
      Adrian Lang authored
        * Do not emit E_NOTICEs
        * Introduce explicit feed mode default value »recent« instead of handling
          every unknown feed mode as recent changes mode. This means:
          - FEED_MODE_UNKNOWN is only executed if the given feed mode is indeed
            unknown. This is specifically not the case if no feed mode request param
            has been specified or the requested feed mode is »recent«.
          - FEED_MODE_UNKNOWN dies with an error as default behaviour
        * opt[items] is forced to be a non-negative integer
        * opt[show_minor] is forced to be a boolean and thus has a default value of
          false instead of null
      b5a0be43
  17. Nov 16, 2010
  18. Jun 26, 2010
  19. Apr 04, 2010
    • Andreas Gohr's avatar
      new fnencode option FS#1649 · f03fd957
      Andreas Gohr authored
      This patch adds an option to choose how filenames are encoded
      when saved to the file system. You can choose between urlencoding
      (url), the new SafeFn method (safe) and storing real UTF-8 (utf-8).
      f03fd957
  20. Mar 24, 2010
    • YoBoY's avatar
      Limiting use of readdir in the idx_indexLengths function (v2). · 22952965
      YoBoY authored
      Each searches on the wiki use this function. Scanning the index directory eachtime is time consuming with a constant series of disk access.
      Switching a normal search to use file_exists 1 or more times, and not readdir all the directory.
      Switching a wildcard search to use a lengths.idx file containing all the word lengths used in the wiki, file generated if a new configuration parameter $conf[readdircache] is not 0 and fixed to a time in second. Creation of a new function idx_listIndexLengths to do this part.
      22952965
  21. Feb 08, 2010
  22. Jan 20, 2010
  23. Nov 24, 2009
  24. Oct 16, 2009
    • furun's avatar
      Whitespace cleanup FS#1709 · 47583ff0
      furun authored
      Ignore-this: 27ea52110bce929b2c61ed8faba67cfc
      
      darcs-hash:20091016205526-c0bf4-35eba4e65d37980a667ba982f7f1ea5b7b07f01c.gz
      47583ff0
  25. May 25, 2009
  26. May 16, 2009
    • Andreas Gohr's avatar
      restrict XMLRPC to configurable groups and users · 3ee5b583
      Andreas Gohr authored
      Ignore-this: 1370cee84d44bb35ae7c0c988ed8f1ff
      
      This patch adds a config option to define users or groups that may access
      the XMLRPC API. ACLs are still checked on top of this intial access control.
      
      darcs-hash:20090516114351-7ad00-155fb6c74c29f5f84e79544a534369eec0403ff0.gz
      3ee5b583
  27. May 04, 2009
  28. Jan 16, 2009
  29. Oct 12, 2008
  30. Oct 01, 2008
    • Andy Webber's avatar
      editor_info_patch · dc58b6f4
      Andy Webber authored
      At present, DW shows the username on the bottom left under "logged in as", and the login name for "last modified", "locked by" and under
      revisions/recent changes. In a corporate environment, particularly when integrated with a Single Sign-On system, the login name may be somewhat
      unfriendly. This patch makes the "logged in as" the same as the value used elsewhere and also allows an admin to decide whether it should be the
      login name, username or e-mail address that is displayed. The e-mail address may also, optionally, be a mailto: link. E-mail addresses are
      obfuscated according to the 'mailguard' setting. The default behaviour is to show the login name which is no change from previous behaviour for the
      "last modified"/"locked by"/revisions/"recent changes", but is a change for the "logged in as".
      
      darcs-hash:20081001152914-6ad63-9cd7174068ac55de381f1318a4401f8c51de5b0c.gz
      dc58b6f4
  31. Sep 12, 2008
    • Andreas Gohr's avatar
      more cookie security FS#1490 · f5c6743c
      Andreas Gohr authored
      This patch adds the httponly option to the PHP session cookies and DokuWiki's
      auth cookie when supported by the PHP version.
      
      It also adds a new config option 'securecookie' which is enabled by default.
      It makes sure the browser will not sent a cookie set via HTTPS over a
      non-secured connection. This option has to be disabled for wikis that only
      protect the login with SSL but not the whole wiki.
      
      darcs-hash:20080912224922-7ad00-d5275147ba9d17a9f6defa8a51ca720da74ba8a0.gz
      f5c6743c
  32. Aug 15, 2008
  33. Mar 11, 2008
    • Chris Smith's avatar
      Add support for plugin renderers to replace standard renderers · d968d3e5
      Chris Smith authored
      This patch is the fourth in a series aimed at making it easier for DW to allow
      plugins to modify the standard handling of line-breaks.
      
      It adds:
      - new config setting 'renderer_xhtml', default value 'xhtml'
      - new renderer method 'reset()' which is used by reusable renderers when used
        to render second and subsequent data. (*)
      
      An extra step has been added to the renderer selection process.
      - check $conf["renderer_$mode] for renderer name.  If it doesn't exist use $mode as
        the renderer name.
      
      (*) It maybe that the 'document_start()' method can be used for this.  However the
      current xhtml does not correctly reset itself for reuse.
      
      darcs-hash:20080312005647-f07c6-ff2cb960c05927f5c6f3e916a364fcad470c2ce3.gz
      d968d3e5
  34. Feb 27, 2008
Loading