Skip to content
Snippets Groups Projects
  1. Apr 20, 2006
    • Ben Coburn's avatar
      bugfix fetch remote media (recache and nocache) · 4f3c4962
      Ben Coburn authored
      Fixes a major bug in fetching remote media with 'recache' and improves
      the efficiency of 'nocache'.
      
      Recache:
        - Used to reload the remote media on EVERY request.
        - Now it behaves as intended and only reloads the remote media
          into the Dokuwiki cache every $conf['cachetime'] time.
      
      Nocache:
        - No longer stores remote media in the Dokuwiki cache.
        - No longer loads, saves, and forwards remote media -- just redirects.
        - No longer resizes images on the server because the cached results
          can not be reused.
      Overall this is faster for Dokuwiki. The bandwidth usage for
      the 3rd party server is the same (less for Dokuwiki). Page loading
      should also be faster because data is not being forwarded through
      Dokuwiki (and the 3rd part server's cache control headers will be
      respected automatically).
      
      darcs-hash:20060421012210-05dcb-a6029baa0fad218ace28e0e3c2f442b1ca645a99.gz
      4f3c4962
  2. Apr 27, 2006
    • Ben Coburn's avatar
      accesskey tooltip rewriting · b1112787
      Ben Coburn authored
      Does client-side rewriting of accesskey tooltip text so that it will be
      more OS and browser specific. Dokuwiki should output all accesskey tooltips
      as [ALT+<key>] because this patch matches on "[ALT+".
      
      darcs-hash:20060428015158-05dcb-0102a1b2068c053e81dd21ad3927c78b6c9f349e.gz
      b1112787
  3. Apr 16, 2006
  4. Apr 09, 2006
  5. Mar 17, 2006
  6. Mar 15, 2006
  7. 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
  8. Mar 07, 2006
  9. Mar 04, 2006
    • Andreas Gohr's avatar
      simplified file permission handling · 1ca31cfe
      Andreas Gohr authored
      This patch simpliefies the configuration of the file and directory creation
      modes. There is no need to set the umask anymore. Only the wanted permissions
      for files and directories are set. An init function compares the wanted modes
      with the ones that would be choosen by the system automatically (consulting
      the system's umask) and sets the modes for chmod when needed.
      
      darcs-hash:20060304154038-7ad00-5ef1db3a87e42563a602f9d050c681d2ea74682f.gz
      1ca31cfe
  10. Mar 02, 2006
  11. Feb 26, 2006
  12. Feb 24, 2006
    • Troels Liebe Bentsen's avatar
      Fix umask bug and do a code cleanup of chmod/mkdir usage so set the correct... · 44881d27
      Troels Liebe Bentsen authored
      Fix umask bug and do a code cleanup of chmod/mkdir usage so set the correct permissions, this should also fix problems with dokuwiki making setuid files on some umasks.
      
        * Don't set the umask() anymore, this is not good form and we don't really know what is it in the old code anyway as it was not done properly.
        * Retire the dmask config option introduce 2 new ones called fmode and dmode, this is more in line with posix and should make more sense.
        * Use chmod for setting the correct permissions but only if it's needed.
        * Set changing of permissions off by default as i should work properly in most Apache setups without and it does not make sense on windows anyway.
      
      darcs-hash:20060224211655-ee6b9-68f7bb59417d6f0033cfd3764146923daa4dcf1b.gz
      44881d27
  13. Feb 18, 2006
  14. Feb 17, 2006
  15. Jan 28, 2006
    • Andreas Gohr's avatar
      Pagelocks are now refreshed in the background · 6035eb33
      Andreas Gohr authored
      An AJAX call is used to refresh the pagelock when keypresses in the textarea
      are detected (With a minimum wait of one minute between calls).
      
      darcs-hash:20060128152139-7ad00-66d64326bcf04c9b8d49285ac736137e9dd48249.gz
      6035eb33
  16. Jan 27, 2006
  17. Jan 26, 2006
    • Andreas Gohr's avatar
      scroll__here support · c632fc69
      Andreas Gohr authored
      This adds a simple JavaScript behavior. When an element with the id
      'scroll__here' is found in the document the browser will scroll this
      element into view. Useful to scroll to some output after form submitting.
      
      darcs-hash:20060126212926-7ad00-b359915a5d6a299652134d8dfa64015786283b6b.gz
      c632fc69
    • Andreas Gohr's avatar
      java script changes · 2411dd85
      Andreas Gohr authored
      This adds a javascript confirmation for the delete button in the user manager.
      It also adds the $() shortcut function known from the prototype library.
      
      darcs-hash:20060126203550-7ad00-d5690ef06432286239953a79c5dbbc25f8720204.gz
      2411dd85
  18. Jan 22, 2006
  19. Jan 21, 2006
  20. Jan 15, 2006
  21. Jan 11, 2006
  22. Dec 10, 2005
  23. Dec 07, 2005
  24. Dec 03, 2005
  25. Nov 29, 2005
  26. Nov 27, 2005
  27. Nov 26, 2005
    • Andreas Gohr's avatar
      Added Google sitemap support #371 · 8b9da5a7
      Andreas Gohr authored
      This patch addes the automatic creation of Google sitemaps. The map
      is created in the DokuWiki root dir and named sitemap.xml.gz if gzip
      compression is available - if not the gz extion is skipped.
      How often the map is recreated is defined through the $conf['sitemap']
      option. It accepts a day value.
      
      darcs-hash:20051126234709-7ad00-6ff4b0e79670cdfa39e615ec9dc40146ffcc9dd4.gz
      8b9da5a7
    • Andreas Gohr's avatar
      more fixes on spaces in spellcheck · 1e6dfe49
      Andreas Gohr authored
      darcs-hash:20051126175521-7ad00-b836b220bf1cf5f50d881e13d52494dc4c71902e.gz
      1e6dfe49
    • Andreas Gohr's avatar
      preserve spaces in spellchecker #620 · 1e96e0af
      Andreas Gohr authored
      darcs-hash:20051126134156-7ad00-8ad7d27dfa1e0e2ca672065f96bb7031c34a0056.gz
      1e96e0af
    • Andreas Gohr's avatar
      javascript fixes #641 · 92715eba
      Andreas Gohr authored
      darcs-hash:20051126124017-7ad00-7ea49b9ecdae1e7c0b7645245db6ecfc642aa89e.gz
      92715eba
Loading