Skip to content
Snippets Groups Projects
  1. Mar 06, 2014
  2. Mar 05, 2014
  3. Mar 04, 2014
  4. Feb 28, 2014
  5. Feb 20, 2014
  6. Oct 16, 2013
  7. Aug 26, 2012
  8. Aug 24, 2012
  9. Jul 14, 2012
  10. Jun 25, 2012
  11. Jun 24, 2012
    • Andreas Gohr's avatar
      Introducing a $_REQUEST/POST/GET wrapper · 89177306
      Andreas Gohr authored
      This new wrapper ensures types are correct and accessed parameters are
      actually set (with custom default fallbacks).
      
      The wrapper is available in the global $INPUT variable. It accesses
      $_REQUEST by default. If POST or GET is required, the post and get
      members can be used:
      
      $INPUT->int('foo',false); // access $_REQUEST['foo'], default false
      $INPUT->post->int('foo'); // access $_POST['foo'], default 0
      $INPUT->get->int('foo'); // access $_GET['foo'], default 0
      
      The codebase still needs to be updated to make use of this.
      89177306
  12. May 27, 2012
  13. Jan 30, 2012
    • Andreas Gohr's avatar
      DOKU_TPL* considered harmful · c4766956
      Andreas Gohr authored
      Some plugins want to dynamically switch the template based on users,
      namspaces or the phase of the moon. Having fixed paths in a unchangable
      constant prevents this.
      
      This changes deprecates the DOKU_TPL* constants in favor of two new
      tpl_* functions that return the correct paths based on the $conf
      variables which can be changed from the DOKUWIKI_STARTED event.
      c4766956
  14. Jan 24, 2012
  15. Jan 15, 2012
    • Michael Hamann's avatar
      Disable E_STRICT error reporting · 4fcd684a
      Michael Hamann authored
      This change disables the reporting of strict standard errors in PHP 5.4,
      in PHP versions prior to 5.4 E_STRICT wasn't part of E_ALL so for
      these versions this doesn't cause any change (however E_STRICT is
      available in all versions of PHP 5 so this doesn't cause any problems).
      See also FS#2427.
      4fcd684a
  16. Jan 02, 2012
  17. Nov 19, 2011
  18. May 26, 2011
  19. Mar 21, 2011
  20. Feb 06, 2011
  21. Jan 16, 2011
  22. Jan 02, 2011
  23. Dec 29, 2010
  24. Dec 18, 2010
  25. Nov 05, 2010
  26. Oct 18, 2010
  27. Jun 27, 2010
  28. Jun 26, 2010
    • Andreas Gohr's avatar
      create title.idx with the correct length FS#1978 · 345b1674
      Andreas Gohr authored
      The title.idx file needs to have exactly the same length as the
      page.idx. This patch creates the file with the correct length if it
      doesn't exist yet.
      
      If you upgrade in between you need to delete your data/index/title.idx
      file
      345b1674
  29. Jun 16, 2010
  30. Mar 26, 2010
  31. Mar 15, 2010
  32. Feb 01, 2010
    • Andreas Gohr's avatar
      plugin related autoloading · c2a6d816
      Andreas Gohr authored
      This patch moved the place where DOKU_PLUGIN is defined. It no longer
      can be set from a normal config (only via preload)
      c2a6d816
  33. Jan 31, 2010
    • Andreas Gohr's avatar
      first attempt to centralize all include loading · 16905344
      Andreas Gohr authored
      Classes are loaded throug PHP5's class autoloader, all other
      includes are just loaded by default. This skips a lot of
      require_once calls.
      
      Parser and Plugin stuff isn't handled by the class loader yet.
      16905344
  34. Nov 04, 2009
    • Adrian Lang's avatar
      Emit less E_NOTICEs and E_STRICTs · c66972f2
      Adrian Lang authored
        Changes of behaviour are:
        * Allow the user name, title & description \e2\80\9c0\e2\80\9d
        * Default to Port 443 if using HTTPS
        * Set $INFO['isadmin'] and $INFO['ismanager'] to \e2\80\9cfalse\e2\80\9d even if no user is
          logged in
        * Do not pass empty fragment field in the event data for event
          ACTION_SHOW_REDIRECT
        * Handle chunked encoding in HTTPClient
      
      darcs-hash:20091104100115-e4919-5cf6397d4a457e3f98a8ca49fbdab03f2147721d.gz
      c66972f2
  35. Nov 03, 2009
Loading