Skip to content
Snippets Groups Projects
  1. Sep 23, 2014
    • Andreas Gohr's avatar
      added filter method to INPUT class · 37abef5f
      Andreas Gohr authored
      the filter() function can be chained between the accessor and the value
      function to get a filtered value. When no filter allable is given in the
      filter() function, stripctl() is used to strip all control chars (ASCII<32)
      
      Examples:
      
        $INPUT->post->filter()->str('foobar');
        $INPUT->get->filter('myfilter')->int('baz');
      37abef5f
  2. Jul 18, 2014
  3. Jul 12, 2014
  4. May 14, 2014
  5. May 13, 2014
  6. Apr 30, 2014
  7. Apr 16, 2014
  8. Apr 14, 2014
  9. Mar 20, 2014
  10. Mar 17, 2014
    • Andreas Gohr's avatar
      completely new base for CLI scripts · 496e3a6f
      Andreas Gohr authored
      This introduces an abstract base class that command line tools need to
      inherit from. It provides a simple framework for registering accepted
      command line options and provides commonly needed things like help
      output and colored text.
      
      Existing CLI scripts still need to be converted.
      496e3a6f
  11. Mar 16, 2014
  12. Mar 15, 2014
    • Andreas Gohr's avatar
      strip sourcemaps in CSS and JS #601 · f8fb2d18
      Andreas Gohr authored
      source maps are invalid for our dispatched sources and may even cause
      problems. this makes sure any sourcemap declarations are stripped from
      the output
      f8fb2d18
  13. Mar 14, 2014
  14. Mar 13, 2014
  15. Mar 12, 2014
  16. Mar 06, 2014
    • Christopher Smith's avatar
      Fix unittests broken by previous two commits · c01cdb70
      Christopher Smith authored
      Mostly this is for unit tests which use of \$_SERVER['REMOTE_USER']
      
      It ensures the reference/alias connection between \$INPUT->server
      and \$_SERVER is renewed before each test.  Tests using TestRequest
      class will replace this \$INPUT with their own.
      c01cdb70
  17. Mar 05, 2014
  18. Feb 25, 2014
  19. Feb 24, 2014
  20. Feb 23, 2014
  21. Feb 16, 2014
  22. Feb 15, 2014
  23. Feb 14, 2014
  24. Feb 11, 2014
  25. Feb 09, 2014
    • Andreas Gohr's avatar
      more robust HTTP testing · 95e6ded1
      Andreas Gohr authored
      connections are now retried after timeout and failing connections will
      be marked as skipped instead of failing. This should reduce false alarms
      on travis
      95e6ded1
Loading