Skip to content
Snippets Groups Projects
  1. Mar 11, 2016
    • Andreas Gohr's avatar
      add support for new Django hashing methods · 924cc11c
      Andreas Gohr authored
      New Python Django application default to PBKDF2 with SHA256 as a
      password mechanism. This adds support for that mechanism in our
      password hasher class. This will be needed in the tests for the new
      PDO auth plugin.
      924cc11c
  2. Feb 19, 2016
    • Andreas Gohr's avatar
      removed isset() from blank() function · 67234204
      Andreas Gohr authored
      As discussed in #1471, an uninitialized variable will always be
      implicitly created when passed to the blank() function. Calling isset()
      is thus a no-op. A warning about this behavior has been added to the
      function comment.
      67234204
  3. Feb 18, 2016
    • Andreas Gohr's avatar
      refactor page saving and introduce COMMON_WIKIPAGE_SAVE · b24d9195
      Andreas Gohr authored
      This makes the saveWikiText() function a little easier to read and moves
      external edit handling to its own function. Behavior stays the same
      (tests are unchanged).
      
      In addition a new event COMMON_WIKIPAGE_SAVE is introduced that makes
      intercepting and acting on page saves much easier than possible before.
      
      Developers can:
      
      * prevent saves by either preventing the default action or overwriting
        the contentChanged field in a BEFORE hook
      * enforce saves even when no content changed by overwriting the
        contentChanged field in a BEFORE hook
      * Adjust the saved content by modifying the newContent field in a BEFORE
        hook
      * Adjust the stored change log information (summary, type, extras) in an
        AFTER hook
      * Easily know if a page was deleted, created or edited by inspecting the
        changeType field
      * what ever they want before or after a wiki page is saved
      b24d9195
  4. Feb 14, 2016
  5. Feb 11, 2016
  6. Feb 03, 2016
  7. Jan 29, 2016
  8. Jan 22, 2016
  9. Jan 07, 2016
  10. Dec 29, 2015
  11. Dec 27, 2015
  12. Dec 24, 2015
  13. Dec 22, 2015
  14. Dec 21, 2015
  15. Dec 19, 2015
  16. Dec 17, 2015
  17. Dec 13, 2015
  18. Dec 10, 2015
  19. Dec 07, 2015
  20. Nov 27, 2015
  21. Nov 25, 2015
  22. Nov 15, 2015
  23. Nov 13, 2015
  24. Nov 05, 2015
  25. Nov 01, 2015
  26. Oct 29, 2015
  27. Oct 28, 2015
  28. Oct 17, 2015
    • David Stone's avatar
      fix error · b20eed15
      David Stone authored
      b20eed15
    • David Stone's avatar
      Optimizations to autoloader · 8a58013e
      David Stone authored
      Autoloader should return true if it can handle the class so other registered autoloader don't execute.
      require is faster than require_once and should be safe to use since the autoloader won't run if the class already exists
      8a58013e
  29. Sep 25, 2015
  30. Sep 16, 2015
  31. Sep 11, 2015
Loading