Skip to content
Snippets Groups Projects
  1. Sep 07, 2018
  2. Aug 28, 2018
  3. Aug 25, 2018
  4. Aug 24, 2018
  5. Aug 20, 2018
  6. Aug 17, 2018
    • Andreas Gohr's avatar
      fix #2466. Avoid caching half fetched files · 9ae1a5d1
      Andreas Gohr authored
      When a remote resource exceeds the fetchsize but the remote server does
      not return a Content-Length, we read only the fetchsize amount of bytes
      but failed to detect that this was a partial read, thus a partial
      resource got cached.
      
      This fix will read fetchsize+1, which will then be correctly determined
      as too big and thrown away.
      9ae1a5d1
    • Michael Braun's avatar
      Fix Locked-Page not showing page content · 1b0e85da
      Michael Braun authored
      
      While refactoring into inc/Action/Locked, the fall-through call
      to html_edit was missed.
      See 952acff9
      
      This removed the edit box from the locked page, which is needed
      for users to get the page source or by etherpad lite plugin.
      
      This change re-adds the call to html_edit for the locked action.
      
      Signed-off-by: default avatarMichael Braun <michael-dev@fami-braun.de>
      1b0e85da
  7. Aug 16, 2018
  8. Aug 10, 2018
  9. Aug 04, 2018
  10. Aug 01, 2018
  11. Jul 27, 2018
  12. Jul 02, 2018
  13. Jun 17, 2018
  14. Jun 14, 2018
  15. Jun 12, 2018
  16. Jun 11, 2018
  17. Jun 08, 2018
  18. Jun 07, 2018
  19. Jun 06, 2018
  20. Jun 02, 2018
  21. Jun 01, 2018
    • Andreas Gohr's avatar
      avoid creating expensive stacktrace in dbg_deprecated() · 85331086
      Andreas Gohr authored
      now the method is aborting early again unless the data is actually used
      85331086
    • Andreas Gohr's avatar
      add method to EventHandler to check if an event is actually handled · adda4e93
      Andreas Gohr authored
      Sometimes, preparing the data for an event is expensive and only needed
      if the event is actually handled. This allows for a quick check before
      actually preparing and triggering the event.
      adda4e93
    • Andreas Gohr's avatar
      introduce INFO_DEPRECATION_LOG event · 44455016
      Andreas Gohr authored
      This adds an event to dbg_deprecated(). This allows plugins to handle
      deprecation warnings. One example would be @cosmocode/dokuwiki-plugin-sentry
      
      One thing I don't like, but don't know how to avaoid is that this
      function used to abort super early when $conf['allowdebug'] wasn't set.
      
      However for the sentry plugin you probably would want logs, but still do
      not show any debugging to end users (which allow debug would do).
      
      So now the backtrace is always built, the event triggered and then
      everything is sent to dbglog() which may simply throw everything away.
      
      Suggestions on how to improve this welcome.
      44455016
  22. May 24, 2018
  23. May 18, 2018
  24. May 16, 2018
Loading