Skip to content
Snippets Groups Projects
  1. Oct 15, 2007
    • Andreas Gohr's avatar
      tiny compatibility fix for FeedParser · b16139af
      Andreas Gohr authored
      This should make older plugins working with a SimplePie Beta wor with Dokuwiki's
      current SimplePie version
      
      darcs-hash:20071015121248-7ad00-08a8be1f16649626cada3135e9d18c872689eed8.gz
      b16139af
  2. Oct 11, 2007
  3. Oct 13, 2007
    • Andreas Gohr's avatar
      fixed URLs in plugin and user manager · ab567923
      Andreas Gohr authored
      For the new plugin repository, plugins should use a page named after their
      class at wiki.splitbrain.org
      
      darcs-hash:20071013191842-7ad00-0580762663329d4f21e6996748117987438c953f.gz
      ab567923
  4. Oct 12, 2007
    • Dennis Ploeger's avatar
      xmlrpc_putpage · 3a1dad2d
      Dennis Ploeger authored
      Adds the putpage-method to the xmlrpc-server-code
      
      darcs-hash:20071012135930-b8925-1d770de41b3e6aea4c612666194e915dda344647.gz
      3a1dad2d
  5. Oct 08, 2007
    • Andreas Gohr's avatar
      X-Sendfile support for fetch.php · 9a87c72a
      Andreas Gohr authored
      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
      9a87c72a
  6. Oct 07, 2007
    • Andreas Gohr's avatar
      esperanto update · 1462e3ae
      Andreas Gohr authored
      darcs-hash:20071007191109-7ad00-80a395519238428c32d20b5d8b9738908c25da05.gz
      1462e3ae
  7. Sep 30, 2007
  8. Sep 29, 2007
  9. Oct 06, 2007
  10. Oct 01, 2007
  11. Sep 30, 2007
  12. Sep 26, 2007
    • Otto Vainio's avatar
      media meta chmod fix · 0b308644
      Otto Vainio authored
      Media metadata update changes file permissions to default.
      Should call chmod if needed.
      
      darcs-hash:20070926190419-58dfb-8405fd4d62e7dc337d1257ca282ac8c05bbea30f.gz
      0b308644
  13. Sep 25, 2007
  14. Sep 19, 2007
    • Tom N Harris's avatar
      Don't create bogus blank entries in metadata · e92e7452
      Tom N Harris authored
      darcs-hash:20070919194756-6942e-0986b3711e370a91d8b42665a94c6866ba56811c.gz
      e92e7452
    • Tom N Harris's avatar
      Remove obsolete words from search index · a0c5c349
      Tom N Harris authored
      Creates another index file 'pagewords.idx' for the words in each page.
      Words that are deleted from a page can then be removed from the word index.
      The indexer version is incremented to force rebuilding of the index.
      Also, a minor flaw in the regexp for asian words is fixed.
      
      darcs-hash:20070919194244-6942e-2e08157dcf4fdf166b35b36a0faf8a3dfb415ad9.gz
      a0c5c349
  15. Sep 08, 2007
    • Michael Klier's avatar
      New event MEDIA_UPLOAD_FINISH · 11d9dfa5
      Michael Klier authored
          This adds a new event MEDIA_UPLOAD_FINISH which is triggered
          when a media file is uploaded via the mediamanager.
          (The event is preventable)
      
          Event data:
              data[0] temporary file name (read from $_FILES)
              data[1] file name of the file being uploaded
              data[2] future directory id of the file being uploaded
              data[3] the mime type of the file being uploaded
      
      darcs-hash:20070909003843-23886-182d42a34f254fd8e63486210c458c34dd953b5d.gz
      11d9dfa5
  16. Sep 14, 2007
  17. Sep 12, 2007
  18. Sep 08, 2007
  19. Sep 06, 2007
    • Andreas Gohr's avatar
      Use Content-Length in HTTP client · 32b1888b
      Andreas Gohr authored
      If a Server supplies a Content-Length header we stop reading when the specified
      number of bytes was read. This fixes problems with Servers not closing the
      connection after sending the body.
      
      darcs-hash:20070906194435-7ad00-cfb9b77ee085d28f5a643e45750b0a7be8ad7bd7.gz
      32b1888b
  20. Sep 04, 2007
  21. Sep 06, 2007
  22. Aug 30, 2007
  23. Aug 29, 2007
    • Andreas Gohr's avatar
      CSRF prevention for admin plugins · 634d7150
      Andreas Gohr authored
      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
      634d7150
  24. Aug 28, 2007
  25. Aug 26, 2007
    • Guy Brand's avatar
      Revert plugin die if DOKU_INC undefined · 1687f569
      Guy Brand authored
      darcs-hash:20070826201745-19e2d-10ac45260b4ab288ffa91c4828b82bb61ebfa625.gz
      1687f569
    • Gabriel Birke's avatar
      Arbitrary Button types in JS toolbar · b7641d9e
      Gabriel Birke authored
      This is my patch for creating toolbar buttons with arbitrary button types,
      tested with Firefox, Opera and IE7. If you want to create a new type of
      button, you must have a function in the script.js file of your plugin. The
      function name must begin with "addBtnAction", followed by the type name, for
      example for the type "myType" the function must be called
      "addBtnActionMyType" (bear in mind that the first char of the type must be
      uppercased in the function name).
      
      The function has four parameters:
      "btn" is the HTML element for the button where you attach the onclick
      handler
      "props" is an associative array of the array properties that come from the
      toolbar array that was created by toolbar.php
      "edid" (optional) is the id of the editor textarea
      "id" (optional) is a "unique" number for each button: the index variable of
      the for loop where the buttons get created.
      
      darcs-hash:20070826192206-79ce3-1fe6f49c1eb5d0c10adbadc43f7b2ee1aec1853e.gz
      b7641d9e
  26. Aug 21, 2007
  27. Aug 20, 2007
  28. Aug 21, 2007
Loading