Skip to content
Snippets Groups Projects
  1. May 06, 2015
  2. Mar 18, 2015
    • Andreas Gohr's avatar
      correct error checking for bz2 file reading · d387bf5e
      Andreas Gohr authored
      The code reading .bz2 compressed files did not correctly check for
      possible read errors. In case of a corrupted file this could have led to
      an infinite loop.
      
      Thanks to Filippo Cavallarin from www.segment.technology for dicovering
      this bug.
      d387bf5e
  3. Jan 07, 2015
    • Andreas Gohr's avatar
      Remove error supression for file_exists() · 79e79377
      Andreas Gohr authored
      In an older version of PHP a file_exists() call would issue a warning
      when the file did not exist. This was fixed in later PHP releases. Since
      we require PHP 5.3 now, there's no need to supress any error here
      anymore. This might even give a minor performance boost.
      79e79377
  4. Oct 01, 2014
  5. May 25, 2014
  6. May 21, 2014
  7. Feb 20, 2014
  8. Jan 19, 2014
  9. Jan 06, 2014
  10. Oct 16, 2013
  11. Feb 17, 2013
  12. Feb 16, 2013
  13. Sep 07, 2012
  14. Jul 28, 2012
  15. Mar 13, 2012
    • Andreas Gohr's avatar
      pass the correct clean parameter when reading wiki pages · 7651b376
      Andreas Gohr authored
      DokuWiki's page loading is intended to be filesystem agnostic. DOS line
      endings in pages are supposed to be self healing. This behaviour was
      broken in a change in 2006. As long as you edited pages through DokuWiki
      only you never noticed the bug though.
      7651b376
  16. Dec 08, 2010
  17. Nov 18, 2010
  18. Nov 16, 2010
  19. Jan 31, 2010
    • Andreas Gohr's avatar
      first attempt to centralize all include loading · 16905344
      Andreas Gohr authored
      Classes are loaded throug PHP5's class autoloader, all other
      includes are just loaded by default. This skips a lot of
      require_once calls.
      
      Parser and Plugin stuff isn't handled by the class loader yet.
      16905344
  20. Oct 20, 2009
    • Andreas Gohr's avatar
      Coding Standard Cleanup · db959ae3
      Andreas Gohr authored
      Ignore-this: 259cb5773c3144c6c706d87298dcf674
      
      darcs-hash:20091020212338-7ad00-6bf1c5c403491f136a1c02af5ecd9f84d7227107.gz
      db959ae3
  21. Jan 19, 2009
  22. Dec 13, 2008
  23. Aug 23, 2008
  24. Apr 07, 2008
  25. Feb 27, 2008
  26. Feb 15, 2008
  27. Jan 18, 2008
  28. Sep 30, 2007
    • Andreas Gohr's avatar
      don't use realpath() anymore (FS#1261 and others) · 00976812
      Andreas Gohr authored
      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
      00976812
  29. Jul 25, 2007
  30. Oct 18, 2006
  31. Sep 23, 2006
  32. Sep 16, 2006
  33. Sep 08, 2006
  34. Aug 23, 2006
  35. Jul 05, 2006
    • Ben Coburn's avatar
      IO action events · cc7d0c94
      Ben Coburn authored
      Adds page and namespace events:
        IO_WIKIPAGE_READ
        IO_WIKIPAGE_WRITE
        IO_NAMESPACE_CREATED
        IO_NAMESPACE_DELETED
      
      The namespace events are purely advisory,
      while the wikipage events allow page content
      to be modified between DokuWiki and the disk.
      
      These events are primarily intended to simplify
      keeping other tools in sync with the semantic
      structure of a DokuWiki site. As an added benefit,
      the events allow plugins to conduct automated
      processing of raw wiki page content.
      
      The namespace events cover the separate namespace
      trees for both pages and media. The "name" of the
      tree that the event belongs to is included in the
      event data.
      
      darcs-hash:20060705105652-05dcb-f44024e852a2adf1a14b8a7d69c46db067e72307.gz
      cc7d0c94
  36. Jun 15, 2006
    • Andreas Gohr's avatar
      $conf['fetchsize'] added · 847b8298
      Andreas Gohr authored
      This patch adds an option to configure the maximum size for files the fetch.php
      will ever download. Setting this to 0 completely turns of the caching of external
      media files.
      
      Disadvantages of setting a low or zero fetchsize:
      
        * fetch.php needs to download images to be able to resize them. When the used
          fetchsize prevents the downloading the images can only be resized by the
          browser which means the browser will need to download the fullsized image first.
      
        * If the linked external media files vanishes it will no longer display in the
          wiki because it is not cached.
      
      Advantages of setting a low or zero fetchsize:
      
        * fetch.php may be used for a possible denial of service attack by requesting
          many big external files.
      
        * The created cache files may take a lot of space on the server
      
      I recommend to leave the setting at 2MB for internal and private wikis and lower
      the setting to about 200 to 500 Kb for bigger public Wikis.
      
      Note: the caching of files uploaded through the media manager is not affected by
      this setting.
      
      darcs-hash:20060615184847-7ad00-04fc39928f7d72e56f5c5e271013ef265436e6c9.gz
      847b8298
  37. May 17, 2006
  38. May 11, 2006
    • Andreas Gohr's avatar
      more info is gathered on metaupdate in background indexer · 7421c3cc
      Andreas Gohr authored
      The background indexer now gathers info on contributors and modification
      dates from the changelog when adding the missing meta info.
      
      A new io_grep function was added which might be useful for other parts in
      the Wiki as well.
      
      darcs-hash:20060511191450-7ad00-baba1b48ea03b823c88a480862c612316f159b5a.gz
      7421c3cc
  39. Mar 11, 2006
    • Andreas Gohr's avatar
      Automatic draft saving · ee4c4a1b
      Andreas Gohr authored
      DokuWiki now automatically creates a draft file of the currently edited
      page. In case of an editing interuption (eg. Browsercrash) the draftfile
      can be continued later.
      
      darcs-hash:20060311200148-7ad00-919337a51e001136178d175a1755cd26122e9726.gz
      ee4c4a1b
Loading