Skip to content
Snippets Groups Projects
  1. Jan 04, 2018
  2. Oct 19, 2017
  3. Oct 16, 2017
  4. Sep 22, 2017
  5. 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
  6. Jul 05, 2017
  7. 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
  8. Aug 10, 2016
  9. 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
  10. 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
  11. Jun 08, 2016
  12. Jun 07, 2016
  13. Apr 20, 2016
  14. Feb 02, 2016
  15. Dec 24, 2015
  16. Nov 06, 2015
  17. Aug 05, 2015
  18. Jul 31, 2015
  19. Jun 10, 2015
  20. May 27, 2015
    • Thijs Kinkhorst's avatar
      Remove override.host config variable. · 86b9f12f
      Thijs Kinkhorst authored
      This option made it possible to override the configuration per host, but it has never been documented, and it can be replaced with simple PHP code in the configuration.
      
      Closes #2
      86b9f12f
  21. Apr 23, 2015
  22. Apr 21, 2015
  23. Apr 20, 2015
  24. Apr 15, 2015
  25. Jul 10, 2014
  26. Jul 09, 2014
  27. Nov 26, 2013
  28. Nov 25, 2013
  29. Mar 21, 2012
  30. Jul 08, 2011
Loading