Skip to content
Snippets Groups Projects
  1. Jun 06, 2019
  2. Feb 03, 2019
  3. Oct 18, 2018
  4. Oct 17, 2018
  5. Aug 26, 2018
  6. Aug 22, 2018
  7. Aug 13, 2018
  8. May 31, 2018
  9. Mar 21, 2018
  10. Jan 06, 2018
  11. Jan 04, 2018
  12. Oct 19, 2017
  13. Oct 16, 2017
  14. Sep 22, 2017
  15. Jul 07, 2017
    • Patrick Radtke's avatar
      Use a base test class instead of a listener · d3512561
      Patrick Radtke authored
      To convert existing tests to use the base class use
      
       perl -p -i -e 's/PHPUnit_Framework_TestCase/SimpleSAML\\Test\\Utils\\ClearStateTestCase/g' `grep -rl PHPUnit_Framework_TestCase tests | grep -v ClearStateTestCase.php`
      d3512561
  16. Jul 05, 2017
  17. Feb 21, 2017
  18. Oct 03, 2016
    • Jaime Pérez's avatar
      Take advantage of ParseError in PHP 7. · ed76d125
      Jaime Pérez authored
      When we try to load a configuration file and there's a syntax error, PHP 7 will throw the new ParseError. We can take advantage of that to capture it and give the user a meaningful message back.
      
      This resolves #483.
      ed76d125
    • Jaime Pérez's avatar
      Remove unused variable. · ca03e7eb
      Jaime Pérez authored
      It is set later inside one of the branches of the if, but the other branches abort the execution of the method, so there's no need to define it outside the if.
      ca03e7eb
  19. Aug 10, 2016
  20. Jul 26, 2016
    • Jaime Pérez's avatar
      Bump the version of the SAML2 library. · b02c5432
      Jaime Pérez authored
      Now we are finally using the 2.x branch of the SAML2 library, which was also migrated to use namespaces. Even though the library provides an autoloader that allows loading the classes with the old names using class aliasing, we need to do the migration in one commit (at least for most part of it). This is due to the way SimpleSAMLphp checks data types, using inheritance to check objects agains abstract or more general classes. Even though class aliasing works, there's no way to replicate those relationships, and type checks that use the old class names will fail because the aliases are virtually new classes that don't inherit from others.
      b02c5432
  21. Jul 05, 2016
    • Jaime Pérez's avatar
      bugfix: Restore support for windows machines. · 93793d93
      Jaime Pérez authored
      Due to recent changes to fix the way we were building URLs (mixing what the 'baseurlpath' configuration option and the current URL, see #396), we introduced another bug by assuming file paths will always use slashes ('/'), which obviously is not true in Windows machines. This commit fixes SimpleSAML_Configuration::getBaseDir() and SimpleSAML\Utils\HTTP::getSelfURL() to take that into account.
      
      This closes #414.
      93793d93
  22. Jun 08, 2016
  23. Jun 07, 2016
  24. Apr 20, 2016
  25. Feb 02, 2016
  26. Dec 24, 2015
  27. Nov 06, 2015
  28. Aug 05, 2015
Loading