Skip to content
Snippets Groups Projects
  1. Aug 14, 2005
    • Andreas Gohr's avatar
      URL rewriting for media files · 6de3759a
      Andreas Gohr authored
      This patch adds nicer URLs for media files (for fetch.php and
      detail.php)
      
      !IMPORTANT! Users of rewrite mode 1 need to adjust their .htaccess
      See .htaccess.dist for an example
      
      darcs-hash:20050814101834-7ad00-37ef1dea00affc9d808d9ee1289fa7454199cd24.gz
      6de3759a
  2. Jul 31, 2005
    • Andreas Gohr's avatar
      Personal wordlist for spellchecker #488 · a2bd8ce7
      Andreas Gohr authored
      This patch allows you to add a file named conf/words.aspell with your own
      words you don't want the spellchecker to choke on.
      
      Thanks to Steven Danz for code idea
      
      darcs-hash:20050731172612-7ad00-60fb3f09589c4758f1093f532de9699beb048569.gz
      a2bd8ce7
    • Andreas Gohr's avatar
      image metadata editor · 36df6fa3
      Andreas Gohr authored
      This patch adds an meta data editor for JPEG files. Currently title,
      caption, artist, copyright and keywords can be saved. The data is saved
      to the apropriate IPTC fields. Additional fields can be added in the
      appropriate template.
      
      Compatibility testing with other programs is needed!
      
      darcs-hash:20050731163554-7ad00-dd936ec19549203dcf72de8774309c0b17d0b679.gz
      36df6fa3
  3. Jul 29, 2005
  4. Jul 28, 2005
  5. Jul 24, 2005
  6. Jul 05, 2005
  7. Jul 01, 2005
  8. Jun 28, 2005
  9. Jun 26, 2005
    • andi's avatar
      directory cleanup · 98407a7a
      andi authored
      This cleans up the directory structure as discussed on the mailning
      list. Users should delete their previous _cache directories to
      recover diskspace.
      
      darcs-hash:20050626100913-9977f-83c0fdc32047db2090fc52a843ffae50cbf12248.gz
      98407a7a
  10. Jun 16, 2005
    • matthiasgrimm's avatar
      media reference check part 2 · d67ca2c0
      matthiasgrimm authored
      Part 1 only checks for the existance of references.
      Part 2 will show where this references are so that the user
      could easily find them.
      
      Both parts are configurable:
      refcheck
      
      darcs-hash:20050616163425-7ef76-a7fce6cd1ef5d2cc2e4ac3b869969a65c671770a.gz
      d67ca2c0
  11. Jun 05, 2005
    • matthiasgrimm's avatar
      media reference check · b59a406b
      matthiasgrimm authored
      This patch implements the first step of a media file reference
      checker. Every time the user wanted to delete a media file
      it would be ckecked for still existing references to this media
      file. File deletion is denied if this media file is still in use.
      
      darcs-hash:20050605185038-7ef76-475e5990609587e1b8cee0e155fa6002f1c5b27c.gz
      b59a406b
  12. Jun 17, 2005
  13. Jun 14, 2005
    • andi's avatar
      Spellchecker: use UTF-8 workaround only if needed · c66822c0
      andi authored
      The spellchecker now tests the browsers UTF-8 compliance and only uses
      the entitiy encoding if needed. This hopefully fixes problems with
      Safari.
      
      darcs-hash:20050614174004-9977f-9c64abc8c31c47e89ac01784eae81f766bc54af0.gz
      c66822c0
  14. Jun 13, 2005
    • matthiasgrimm's avatar
      spellchecker should not check links · 21777a2b
      matthiasgrimm authored
      The spellchecker should not check links because this are
      mostly no real words. This patch installs some filters
      so that links won't be transfered to the spellchecker.
      
      darcs-hash:20050613215834-7ef76-444b4aa6ca9f471ae99c3f6fd3e3b9d380161f8a.gz
      21777a2b
  15. Jun 12, 2005
    • matthiasgrimm's avatar
      spellchecker fix for broken aspell · 409f26c8
      matthiasgrimm authored
      The current Aspell version has a bug that causes a corrupt output file.
      Output lines beginning with '?' weren't terminated with a newline.
      This patch fixes the broken output format.
      
      It is not possible to detect automatically if a Aspell version handles
      '?'-lines correctly. Therefore DokuWiki checks for Aspells version
      number and corrects the output format accordingly if version <
      
      darcs-hash:20050612154241-7ef76-dfa98470651d6701562ca51908e6f8c8392b28bd.gz
      409f26c8
  16. Jun 11, 2005
    • andi's avatar
      small spellchecker fix for suggestions with spaces or singlequotes · 38fd6cba
      andi authored
      darcs-hash:20050611123804-9977f-8ecc877cfdebb542e797562987322db4df7bcf49.gz
      38fd6cba
    • andi's avatar
      spellchecker: compensate for aspell error and blocking problems · a08eb37a
      andi authored
      Sometimes Aspell seems to output not enough blank lines to signal
      a line change. This patch tries to compensate for this by trying
      the next two lines as well.
      This patch also fixes a problem were reading from aspell could
      produce a deadlock on the socket and would cause the spellchecker
      to never return
      
      darcs-hash:20050611121059-9977f-c772aa52ea0e73e7b7e5537afda047fa44a22395.gz
      a08eb37a
    • andi's avatar
      spellchecker fixes for Konqeror · ea2eed85
      andi authored
      Konqeror seems to ignore the charset
      
      darcs-hash:20050611092916-9977f-311b99e63b66a83c9f9022c468ba61d0687822c2.gz
      ea2eed85
  17. Jun 09, 2005
  18. Jun 08, 2005
    • andi's avatar
      session_write_close added #364 · 8746e727
      andi authored
      I just learned that PHP does lock it's session objects. This is realy
      bad if you have multiple images in a page as each one will call fetch.php
      which locks the session, so everything can only be loaded sequentially.
      The fix for this is to close the session after using it which is after doing
      the auth and the breadcrumbs. I added the needed calls everywhere.
      
      darcs-hash:20050608213514-9977f-f2dfc467ebbd06406e10e33a386fa1db6cb32dba.gz
      8746e727
    • andi's avatar
      Spellchecker fixes · 95657bc6
      andi authored
      The spellchecker now works in IE6, Firefox and Opera 8 :-)
      SACK was updated to the latest release (plus a minor fix)
      Proper UTF-8 headers were added to the AJAX PHP backends
      
      darcs-hash:20050608182758-9977f-1eacd0ba9993a62f094433d982f668e38d17ba14.gz
      95657bc6
  19. Jun 07, 2005
    • andi's avatar
      AJAX spellchecker #29 · dc57ef04
      andi authored
      This is nearly a complete rewrite of the gmail like AJAX spellchecker
      from http://www.broken-notebook.com/spell_checker/index.php
      
      Here are the differences and features
      
        * seemless integrated into DokuWiki
        * no need for the pspell extension
        * needs GNU aspell installed (not sure about the version I guess
          0.60+ for UTF8)
        * needs PHP 4.3.0+
        * uses SACK for AJAX
        * gets errors and suggestions in one transfer
      
      So far only tested in Firefox. It should work in IE, Safari and
      Opera 8, too. Please test and report back.
      
      darcs-hash:20050607194456-9977f-f699144d1fd28359742b2ce0f28c839a1f4cefbb.gz
      dc57ef04
  20. Jun 06, 2005
    • matthiasgrimm's avatar
      cache control header · ea19fb87
      matthiasgrimm authored
      This patch adds a cache control header to fetch.php. Without
      this header media files can't be opened and viewed with third
      party programs directly from the IE browser window. For eg.
      Acrobat Reader will display an error message after clicking
      on a link to a PDF file. Firefox will work without it.
      
      darcs-hash:20050606154420-7ef76-2b46b0eb626488cec122a00cc32f86a28542b161.gz
      ea19fb87
  21. Jun 05, 2005
    • matthiasgrimm's avatar
      fetch directory structure fix · b1a72e3d
      matthiasgrimm authored
      fetch.php was not fully adapted to the new directory structure - fixed
      
      darcs-hash:20050605130154-7ef76-22d557d49733aaa8d992e767ebfed16c92fb3c76.gz
      b1a72e3d
    • matthiasgrimm's avatar
      media popup directory structure fix · 92546912
      matthiasgrimm authored
      The media popup was not fully adapted to the new directory
      structure - fixed
      
      darcs-hash:20050605125410-7ef76-79a24e1bd735cc4b89c1d7ee1f28b1a19b84f841.gz
      92546912
    • andi's avatar
      directory layout cleanup !IMPORTANT · f62ea8a1
      andi authored
      This patch changes the directory structure of dokuwiki as suggested
      in http://www.freelists.org/archives/dokuwiki/06-2005/msg00045.html
      
      As the changes.log is not managed through darcs you need to move it your
      self to the new location in data/changes.log
      
      I think I modified the code at all nessessary places, but I may have
      forgotten a few things.
      
      darcs-hash:20050605103842-9977f-af20f63c1d604888375d175d89ac6bd71566d47d.gz
      f62ea8a1
Loading