Skip to content
Snippets Groups Projects
  1. May 13, 2007
  2. Feb 27, 2007
  3. Feb 05, 2007
  4. Jan 09, 2007
    • Andreas Gohr's avatar
      HTML_LOGINFORM_INJECTION event · 5b62573a
      Andreas Gohr authored
      Another injection event similar to the existing ones to insert custom HTML into
      the login form.
      
      darcs-hash:20070109213258-7ad00-2d8b59c6a83b42231cdba845263b09821e2b0400.gz
      5b62573a
  5. 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
  6. 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
  7. Dec 03, 2006
  8. Nov 18, 2006
  9. Nov 16, 2006
  10. Nov 14, 2006
    • Andreas Gohr's avatar
      HTML_EDITFORM_INJECTION event added · 88e6a4f2
      Andreas Gohr authored
      A simple event to inject additional HTML into the editform. This probably
      needs to be improved.
      
      darcs-hash:20061114220825-7ad00-ce868b8d8a25f5120c49dc018b8fd1024aff6e12.gz
      88e6a4f2
  11. Oct 27, 2006
  12. Oct 20, 2006
  13. Oct 19, 2006
  14. Oct 15, 2006
  15. Sep 25, 2006
    • Andreas Gohr's avatar
      remove metadebug again, improve doÞbug instead · 100a97e3
      Andreas Gohr authored
      This adds the complete $INFO array (contains the metadata) to the usual
      debug output and removes the metadebug parameter again.
      
      darcs-hash:20060925201052-7ad00-c9a15b921466803b3f2bd50b0d72211cf68658c5.gz
      100a97e3
    • Andreas Gohr's avatar
      don't link non-existing revisions · 41396b71
      Andreas Gohr authored
      The new changelog mechanism shows all revisions of a document, even if the
      old revisions are deleted (eg. by a maintenence script). This patch removes
      the links for non existing revisions.
      
      darcs-hash:20060925185434-7ad00-14a558ce69c4116e14d7fdfbaad052c6a7b0a4db.gz
      41396b71
  16. Sep 24, 2006
    • Andreas Gohr's avatar
      progressbar script change · 121d5fa6
      Andreas Gohr authored
      The progressbar script used in the search accessed parts of the DOM before
      it was completely parsed which caused problems in IE. This patch moves back
      to document.write for outputting the image.
      
      darcs-hash:20060924170354-7ad00-1e0247b00fc4da4dd30301f4b9389ef727496c4a.gz
      121d5fa6
  17. Sep 23, 2006
  18. Sep 17, 2006
    • Andreas Gohr's avatar
      event names renamed · 016b6153
      Andreas Gohr authored
      HTML_EDIT_PAGETEMPLATE becomes HTML_PAGE_FROMTEMPLATE
      TPL_METAHEADER_PRINT becomes TPL_METAHEADER_OUTPUT
      
      darcs-hash:20060917103450-7ad00-405f3533915b54ee4d4050cfccbf27d43ff7435f.gz
      016b6153
  19. Sep 15, 2006
  20. Aug 30, 2006
    • Ben Coburn's avatar
      scalable changelog redesign · 71726d78
      Ben Coburn authored
      This patch provides a rewritten changelog system that is designed to run
      efficiently on both small and large wikis. The patch includes a plugin to
      convert changelogs from the current format. The conversion is
      non-destructive and happens automatically. For more information on the new
      changelog format see "http://wiki.splitbrain.org/wiki:changelog".
      
      Structure
      In short the changelog is now stored in per-page changelog files, with a
      recent changes cache. The recent changes cache is kept in
      "/data/meta/_dokuwiki.changes" and trimmed daily. The per-page changelogs
      are kept in "/data/meta/<ns>/<page_id>.changes" files. To preserve
      revision information for revisions stored in the attic, the "*.changes"
      files are not removed when their page is deleted. This allows the full
      life-cycle of page creation, deletion, and reversion to be tracked.
      
      Format
      The changelog line format now uses a general "line type" field in place of
      the special "minor" change syntax. There is also an extra field that can
      be used to store arbitrary data associated with special line types. The
      reverted line type (R) is a good example. There the extra field holds the
      revision date used as the source for reverting the page. See the wiki for
      the complete syntax description.
      
      Code Notes
      The changelog functions have been rewritten to load the whole file only if
      it is small. For larger files, the function loads only the relevant
      chunk(s). Parsed changelog lines are cached in memory to speed future
      function calls.
      
      getRevisionInfo
      A binary search is used to locate the chunk expected to contain the
      requested revision. The whole chunk is parsed, and adjacent lines are
      optimistically cached to speed consecutive calls.
      
      getRevisions
      Reads the changelog file backwards (newest first) in chunks until the
      requested number of lines have been read. Parsed changelog lines are
      cached for subsequent calls to getRevisionInfo. Because revisions are read
      from the changelog they are no longer guaranteed to exist in the attic.
      
      (Note: Even with lines of arbitrary length getRevisionInfo and
      getRevisions never split changelog lines while reading. This is done by
      sliding the "file pointer" forward to the end of a line after each blind
      seek.)
      
      isMinor
      Removed. To detect a minor edit check the type as follows:
      $parsed_logline['type']
      
      darcs-hash:20060830182753-05dcb-1c5ea17f581197a33732a8d11da223d809c03506.gz
      71726d78
  21. Jul 24, 2006
    • Andreas Gohr's avatar
      add button lables to title attribute #862 · 11ea018f
      Andreas Gohr authored
      Instead of only showing the accesskey in button's title tooltips now the button
      label is shown additionally. This helps blind users with screenreaders.
      
      darcs-hash:20060724165158-7ad00-056481f9120c383cac03b1b2c6c397e829b7d103.gz
      11ea018f
  22. Jul 14, 2006
    • Andreas Gohr's avatar
      two-stage password reset · 1d5856cf
      Andreas Gohr authored
      This patch changes the password reset function to a two-stage process.
      After requesting a new password a confirmation email is sent first, only
      if the link contained in this mail is used the password is changed for real.
      
      This makes sure malicious people can't reset passwords for other users.
      
      darcs-hash:20060714110548-7ad00-c1e23fd51cc2d2f16473914421ebe0f9c3b2ba8c.gz
      1d5856cf
  23. Jul 10, 2006
  24. Jul 04, 2006
    • Ben Coburn's avatar
      refactor wiki page edit locking · c9b4bd1e
      Ben Coburn authored
        - Adds a new function in 'inc/pageutils.php',  wikiLockFN($id)
        - All page edit locks should now be created with the file name
          generated by wikiLockFN($id).
        - wikiLockFN
          - Generates wiki page editing locks in the 'data/locks'
            directory where they belong.
          - This avoids polluting the 'data/pages' directory with lock files,
            which were causing namespaces to be created before they logically
            should exist.
      
      darcs-hash:20060705033135-05dcb-8eac316587cd54c6ebd861fe7b15975d90b0e4dc.gz
      c9b4bd1e
  25. Jul 02, 2006
    • Andreas Gohr's avatar
      disableactions support · 409d7af7
      Andreas Gohr authored
      This patch adds a config option to disable certain internal action commands of
      DokuWiki's main dispatcher.
      
      The options resendpasswd and openregister were removed because they can now set
      through this new option.
      
      The config plugin needs to be adjusted.
      
      darcs-hash:20060702121622-7ad00-1e80e77bcfb0ae561fe7abd79cfbe1bb158be720.gz
      409d7af7
  26. May 27, 2006
  27. May 26, 2006
  28. May 22, 2006
    • Ben Coburn's avatar
      decouple section edit from header in renderer · 35dae8b0
      Ben Coburn authored
      This patch achieves a partial decoupling of the section edit buttons
      from the header syntax. A new 'section_edit' instruction is added to the
      instruction list. The default set of these instructions is generated from
      the header handler and the _finalize function. A generic 'section_edit'
      renderer is now part of the renderer.
      
      To rewrite the section semantics, add, or remove section edit buttons the
      header handler and renderer no longer need to be modified. Changes can be
      dynamically made to the section edit buttons through the 'PARSER_HANDLER_DONE'
      action event. An action plugin that registers this event can then modify
      the calls list of the handler object before it is rendered.
      
      In short, this patch makes it possible to change the behavior of the section
      edit buttons without having to change unrelated code. This patch should be
      entirely transparent to DokuWiki users and cleanly written plugins.
      
      darcs-hash:20060522060004-05dcb-8e6b5215e1b610877f126ca0b9e1e5bc21cc6469.gz
      35dae8b0
  29. May 25, 2006
    • Ben Coburn's avatar
      getRevisionInfo much faster (cached) · fb53bfe2
      Ben Coburn authored
      Makes getRevisionInfo much faster when loading all the revisions of a page.
      This is done by efficiently parsing the 'changes.log' data and caching the
      results (in memory) so that future calls to getRevisionInfo return
      immediately without reloading the 'changes.log' file.
      
      (Note: the changelog system in DokuWiki should still be rewritten so
      that changes are not logged into one huge file!)
      
      darcs-hash:20060525083202-05dcb-8c0eea695055b51a218a0e311169cda0bb0d4363.gz
      fb53bfe2
  30. May 22, 2006
    • Denis Simakov's avatar
      fix: wrong secedit when page changes · 306b2c85
      Denis Simakov authored
      Binds secedit buttons to file modification stamp ('lastmod'), so that if the page changes in between, editing of the old revision starts.
      
      darcs-hash:20060522182043-3c565-17e6ac5d018300dd009c24218f4b1b8c8ae80363.gz
      306b2c85
  31. May 21, 2006
  32. May 19, 2006
    • Andreas Gohr's avatar
      link to media manager · 72f0e11f
      Andreas Gohr authored
      This patch add a link to the media manager when no JavaScript is available.
      Users can upload and browse for pictures now without the need for JavaScript
      only inserting has to be done manually then.
      
      darcs-hash:20060519175959-7ad00-5ee77fd00d20bef9a36eee632a1c5897097ba4a8.gz
      72f0e11f
    • Andreas Gohr's avatar
      new mediamanager · 3df72098
      Andreas Gohr authored
      This patch adds a completely rewritten media popup. The following noteworthy
      changes were made:
      
      - media manager uses a collapsible namespace tree
      - media manager uses AJAX if available
      - media manager popup can be kept open when selecting a media file
      - only one template is used for the media manager :!: Template
      - Editable image metadata is configured in conf/mediameta.php now
      - The JS cookie mechanism was enhanced to store key/value pairs
      - Language strings can be exported to JS in js.php
      
      darcs-hash:20060519165023-7ad00-4932b4553fc919aa4a8b8187958b823acf4f8cee.gz
      3df72098
  33. May 18, 2006
  34. 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
  35. Mar 31, 2006
    • Andreas Gohr's avatar
      moved toolbar out of form scope #757 · 42c7abd6
      Andreas Gohr authored
      This ensures that the save button stays the default button of the
      form again.
      
      darcs-hash:20060331085543-7ad00-8db519b51a7bc65479ebc6b303f3cf016f8088be.gz
      42c7abd6
Loading