Skip to content
Snippets Groups Projects
  1. Sep 17, 2006
    • Ben Coburn's avatar
      Store cache hits only while debugging · 33c1bd61
      Ben Coburn authored
      Reduce overhead by only storing cache hit stats while
      the allowdebug option is enabled.
      
      darcs-hash:20060917230403-05dcb-92afea926b5a3fc302327f964e482787aec2d982.gz
      33c1bd61
    • chris's avatar
      parser update, add 'rss' to block mode lists, see FS#888. · 76aa94b7
      chris authored
      darcs-hash:20060917211445-9b6ab-ae454dbf55ef50d664a80afd32fd42667f438ba5.gz
      76aa94b7
    • chris's avatar
      cache.php fixes · b9991f57
      chris authored
      - add code to ensure page metadata is refreshed along with cache
      - bug fix for missing global $conf
      
      darcs-hash:20060917193934-9b6ab-c53c8b6e4764d4c63014ecbaadf0797eb959224f.gz
      b9991f57
    • Andreas Gohr's avatar
      disable debugging by default · f6e0e340
      Andreas Gohr authored
      darcs-hash:20060917183150-7ad00-1672f8ef23dc49b6cdfd43d29338dab6a14a928c.gz
      f6e0e340
    • chris's avatar
      install script update II · 523d7ea6
      chris authored
      - alter acl configuration to use @admin group as superuser
      
      darcs-hash:20060917154659-9b6ab-37145ebda1f04ad29ae430b463f7305eaccad9fd.gz
      523d7ea6
    • chris's avatar
      install script update I · 4c39371e
      chris authored
      - update hash for devel dokuwiki.php
      - remove changes.log creation, its no longer required
      - add allowdebug
      
      darcs-hash:20060917154208-9b6ab-612815c241dbff1c2c1c99f0ca1da8bce6c9538e.gz
      4c39371e
    • chris's avatar
      infoutils update · 587afae5
      chris authored
      minor modifications to avoid php warnings if msg file is missing.
      
      darcs-hash:20060917153009-9b6ab-4b6ee49d728e89c3427130c617b532cd23c680bb.gz
      587afae5
    • Andreas Gohr's avatar
      update for updatecheck function · 3d7760aa
      Andreas Gohr authored
      Messages are now displayed to all users if ACL is not enabled. The update-URL
      changed to http://update.dokuwiki.org/check/
      
      darcs-hash:20060917145025-7ad00-1d64b90e51c1a49567a28b132caf79ae0f124c8e.gz
      3d7760aa
    • Andreas Gohr's avatar
      no gzipping in indexer.php · 847c2f3b
      Andreas Gohr authored
      darcs-hash:20060917140718-7ad00-ab1b95974ad63966c770f787112bc7c2e285c394.gz
      847c2f3b
    • Guy Brand gb@isis.u-strasbg.fr's avatar
      Update french translation · 08fa6680
      Guy Brand gb@isis.u-strasbg.fr authored
      darcs-hash:20060917075103-c47a2-de10540e0be698e3aeeab00f085bd212891cd750.gz
      08fa6680
    • 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
  2. Sep 16, 2006
    • Andreas Gohr's avatar
      updatecheck feature · c29dc6e4
      Andreas Gohr authored
      This patch adds a feature to let DokuWiki automatically check if updates are
      available or any other important messages (like security warnings) and then
      display this info to the admin user.
      
      DokuWiki will contact the URL http://www.splitbrain.org/lib/exe/msg.php
      with a parameter telling it which messages it already know (read from
      conf/msg) - the server side script then will return all new messages.
      
      The messages will be displayed until DokuWiki was upgraded or conf/msg
      was updated manually. Messages are cached and only checked once a day.
      
      The messenger URL will probably change before the next release.
      
      darcs-hash:20060916210229-7ad00-7ac592650e171ae4144b0eb47a751a4ca480f031.gz
      c29dc6e4
    • Andreas Gohr's avatar
      cleanID on passforgot action #861 · 036b9e65
      Andreas Gohr authored
      darcs-hash:20060916194626-7ad00-2eeb07a509c95359a9bd1b164db4af7279b7f330.gz
      036b9e65
  3. Sep 15, 2006
    • chris's avatar
      minor update to cache.php · 0abe1d3e
      chris authored
      this update changes the processing sequence slightly
      to make the cache item's dependencies ($this->depends)
      available before _useCache is called.
      
      ie. the dependencies will be available to and modifiable
          by handlers of the PARSER_USE_CACHE event.
      
      darcs-hash:20060915144735-9b6ab-b0db479f9ef305aed21ca291ea909002baae4e21.gz
      0abe1d3e
  4. Sep 16, 2006
  5. Sep 15, 2006
  6. Sep 13, 2006
  7. Sep 10, 2006
    • Ben Coburn's avatar
      reorganize changelog code · 7d559c7f
      Ben Coburn authored
      Moves changelog code to 'inc/changelog.php'
      and includes it from 'inc/common.php'.
      
      darcs-hash:20060911023822-05dcb-e727737011163cbf04f0a4c682cb9fd8a985e597.gz
      7d559c7f
    • Ben Coburn's avatar
      changelog redesign update · e45b34cd
      Ben Coburn authored
      - Improves handling of deleted revisions.
      - Import plugin disables after import.
      - Check act reports if plugin is still enabled after the import.
      - Import correctly handles summaries without the minor prefix.
      - Newlines and tabs are now striped out of type, sum,
        and extra in the changelog.
      
      darcs-hash:20060911014738-05dcb-2f6c9fdffb6346f7d3190610a72b290090b28097.gz
      e45b34cd
  8. Sep 08, 2006
  9. Sep 10, 2006
    • chris's avatar
      parser caching update · 4b5f4f4e
      chris authored
      This patch primarily updates p_cached_xhtml() and p_cached_instructions() to
      allow their caching logic to be surrounded by an event trigger.
      
      p_cached_xhtml() has been rewritten as the more general p_cached_output() to
      support other render output formats besides 'xhtml'. All calls to
      p_cached_xhtml() have been changed to refer to the new function.
      
      New event:
      
      name:        PARSER_CACHE_USE
      data:        cache object (see below)
      action:      determine if cache file can be used
      preventable: yes
      result:      bool, true to use cache file, false otherwise
      
      Cache operations have been generalised in a new class, cache, extended to
      cache_parser, cache_renderer & cache_instructions. Details can be found in
      inc/cache.php
      
      For handling of above event, key properties are:
      - page, if present the wiki page id,
              may not always be present, e.g. when called for locale xhtml files
      - file, source file
      - mode, renderer mode (e.g. 'xhtml') or 'i' for instructions
      
      Other changes:
      - cache class counts cache hits against attempts, results are stored in
        {cache_dir}/cache_stats.txt
      - adds metadata dependency to renderer page cache
      - replaces purgefile dependency for renderer cache with metadata
        'relation references' (internal link) dependency for wiki pages only
      
      darcs-hash:20060911021418-9b6ab-19601ed194b8c8e45236ab72c3e23d78bf777e6c.gz
      4b5f4f4e
  10. Sep 09, 2006
  11. Sep 08, 2006
  12. Sep 06, 2006
  13. Sep 04, 2006
  14. Sep 03, 2006
Loading