Skip to content
Snippets Groups Projects
  1. Dec 07, 2006
    • Ben Coburn's avatar
      changelog type strings replaced with constants · ebf1501f
      Ben Coburn authored
      Using more verbose constant names in the place of single character strings
      should make the code much more readable. This does not change the behavior
      of the changelog.
      
      darcs-hash:20061207074906-05dcb-0bdc35e7241bf14063b2b43a6ff26d8a3c307cb9.gz
      ebf1501f
  2. Dec 06, 2006
    • Ben Coburn's avatar
      identify external edits in UI · 5aa52faf
      Ben Coburn authored
      Some changes to clearly identify when wiki pages have been edited outside
      Dokuwiki. Also correctly attributes external changes from an unknown
      author. Avoids sending extra emails when recording old external edits.
      
      Adds a new language string:
      $lang['external_edit']
      
      darcs-hash:20061207032825-05dcb-3234bee57cb165c848b33abb9251502589b0f3cb.gz
      5aa52faf
    • Ben Coburn's avatar
      recache and uncache the last_change from metadata · cd00a034
      Ben Coburn authored
      The most recent changelog entry is already cached in the metadata as
      'last_change' to avoid reading the page changelog on every request.
      
        - Recache the last change if it is missing and still valid. This is
          needed for when the metadata has been rerendered.
      
        - Uncaches the last change when it has been invalidated by an external
          edit. Ensures that external edits are not credited to the wrong
          author.
      
      darcs-hash:20061207011005-05dcb-3b1749f6626d07c4cc3de9587c45765423e2e4d9.gz
      cd00a034
    • Ben Coburn's avatar
      rerender and save metadata fix · 6102af7d
      Ben Coburn authored
      darcs-hash:20061207003216-05dcb-4d15587ec2d6f5ad132edcf60f0cba448d0c5263.gz
      6102af7d
  3. Dec 05, 2006
  4. Dec 03, 2006
    • Andreas Gohr's avatar
      pluggable renderers · 2d5ccb39
      Andreas Gohr authored
      Plugins can now provide their own renderer in lib/plugins/<name>/renderer.php
      The class inside this file needs to inherit from Doku_Renderer and has to be
      called Doku_Renderer_<name>
      
      To access the renderer the export action can be used eg: ?do
      
      darcs-hash:20061203190138-7ad00-f56b470b5dd043e1168ff2101c677eb8a9851627.gz
      2d5ccb39
    • Andreas Gohr's avatar
      manager user/group · f8cc712e
      Andreas Gohr authored
      This patch adds support for a manager option as suggested in
      http://www.freelists.org/archives/dokuwiki/11-2006/msg00314.html
      
      darcs-hash:20061203134104-7ad00-72ff6422bbb4f79be325c7e77255e1eee32d0f6b.gz
      f8cc712e
  5. Dec 02, 2006
  6. Dec 01, 2006
  7. Nov 30, 2006
  8. Nov 27, 2006
  9. Oct 31, 2006
    • Marc Mayfield's avatar
      rss_summary_config · a1716312
      Marc Mayfield authored
      Add a configuration option to control whether or not the edit/revision summary is
      displayed with the title of RSS feeds. The default is to show the summary, the same as
      DokuWiki did prior to this addition.
      
      darcs-hash:20061101023313-9039d-d067e9bcd7dc0c7cabd57674d1072c5b882ad4e7.gz
      a1716312
  10. Nov 27, 2006
  11. Nov 26, 2006
    • Ben Coburn's avatar
      updateAccessKeyTooltip update · e135fd5d
      Ben Coburn authored
      Fix to DOMLib removal patch. All Mac browsers default to CTRL for tooltips
      except Opera.  This includes Mozilla, so test for OS not browser.
      
      darcs-hash:20061126211257-05dcb-dcfec1ad0448b073c8b03b12f2628f2186ab3d57.gz
      e135fd5d
    • chris's avatar
      metadata update to support both persistent and non-persistent metadata · 0a7e3bce
      chris authored
      Key changes:
      - metadata stored on disk in two arrays, 'current' & 'persistent'
      - p_set_metadata has an additional parameter, $persistent, which defaults to true
      - metadata set within the renderer defaults to non-persistent
      - new event hook, PARSER_METADATA_RENDER, which wraps around metadata rendering process. For
        full details of this event refer to the event list documentation at splitbrain.
      
      The patch includes automatic conversion of metadata in current form to the new format
      
      For more details also see http://www.freelists.org/archives/dokuwiki/11-2006/msg00221.html
      and any follow-up messages.
      
      darcs-hash:20061126152144-9b6ab-a4e40c221e0274b13da07dc2fc1d2100f5f3a50e.gz
      0a7e3bce
  12. Nov 25, 2006
  13. Nov 24, 2006
  14. Nov 23, 2006
  15. Nov 22, 2006
  16. Nov 15, 2006
    • Tom N Harris's avatar
      use generated CSS for RSS feeds · 615960fe
      Tom N Harris authored
      plugins can include styles with feed.css,
      templates can use the media type feed in style.ini
      
      darcs-hash:20061115101549-6942e-d1de56b343ce0cc11ca6b911c444197316f4a4eb.gz
      615960fe
  17. Nov 18, 2006
  18. Nov 17, 2006
    • Tom N Harris's avatar
      Indexer asian language fixes and speed-ups · d5b23302
      Tom N Harris authored
      Make Chinese and Japanese work better with the new indexer.
      Some missing punctuation added to utf8_stripspecials.
      Misc. other changes to make indexing faster. The indexes will expire on
      backend upgrades, so you don't have to delete *.indexed
      
      darcs-hash:20061117123032-6942e-774b38e08234928c49b37e40addba375acf67ac0.gz
      d5b23302
    • Andreas Gohr's avatar
      sitemapper update · 9046bb99
      Andreas Gohr authored
      The Google sitemap protocol was recently adopted by Yahoo and Microsoft and
      made a common standard. This patch changes the XML namespace URL to the new
      sitmaps.org site and ups the version to 0.9
      
      Pinging of Yahoo and Microsoft was added to the existing Google ping. The
      microsoft ping currently fails with a "Bad format" error for unknown reason.
      This will hopefully change when either Microsoft fixes their URL or releases
      some documentation.
      
      darcs-hash:20061117150030-7ad00-0fac1cba07926c3ffe687a8cbaf465e8de3abcd7.gz
      9046bb99
  19. Nov 16, 2006
  20. Nov 14, 2006
  21. Nov 13, 2006
  22. Nov 12, 2006
    • TNHarris's avatar
      Word-Length Indexer · 579b0f7e
      TNHarris authored
      A modification to the indexer that sorts words based on length. This should make
      searching a little bit more efficient. After the patch is applied, your old index
      will be automatically converted to the new format (when you visit a page). The
      new index format is:
      
      1. Index files are stored in savedir/index
      2. Word lists are stored as wlen.idx. This used to be word.idx.
      3. Word indexes are stored as ilen.idx. This used to be index.idx.
      4. The page list, page.idx, is simply copied to the new location.
      
      Any plugins you have, such as the blog plugin, that read the index files need to
      be updated.
      
      darcs-hash:20061112194900-2b9f0-a975498ccf0a1d39c6df73b79bcd028d5e81c389.gz
      579b0f7e
    • Andreas Gohr's avatar
      czech stopword update · c64b282c
      Andreas Gohr authored
      darcs-hash:20061112184437-7ad00-0bce4a60720158c90d4f3668d73ed5303dadbe72.gz
      c64b282c
    • Andreas Gohr's avatar
      dutch language updates · a54c4b0b
      Andreas Gohr authored
      darcs-hash:20061112184102-7ad00-698188fd3915aa1937857a27245676f966815ee4.gz
      a54c4b0b
    • Andreas Gohr's avatar
      lv language update · fa3008ee
      Andreas Gohr authored
      darcs-hash:20061112183810-7ad00-32ef50e7f2d5f5c43c3ec3c536f3048646ec225e.gz
      fa3008ee
Loading