SimpleSAMLphp Release Plan
Submitted by Andreas Åkre Solberg [1] on 29 January, 2010 - 07:33
Not yet started
Work in progress
Completed
Release 1.6 (February 2010)
Remove CC noncomercial icons (257)
Introduce setAuthnRequest to new IdP core. (279)
Include japanese translation (281)
Accept multiple SAML and Shib endpoint at SP (20)
Better understanding of SAML 2.0 LogoutResponse (169)
Introduce ""dictionary format"", backward compatibility (263)
SessionIndex should be unique per SP (44)
Better support for WAYF-less URLs (262)
Session association timeout (180)
Improve error handling and error UI for iframe SLO (186)
Combine shib13-idp-remote and saml20-idp-remote. (197)
Single SPSSODescriptor in metadata for saml module (199)
Generic Identity Provider Core Module (203)
Metadata aggregator when endpoint is missing (224)
AuthnInstant from Session (225)
Export requested attributes in xml metadata (228)
Self-register module (231)
clean up flat file metadata output (233)
OpenID 2.0 Support (235)
Remove metadata validator code and config valiator code (236)
Remove ldapstatus module (237)
Upgrade translation portal and switch to JSON template format (239)
SPENTITYID in privacy policy URL. (241)
Fix or remove configuration check (243)
openid classes depended on ini_set (259)
Update documentation for authproc (287)
Release 1.7 (May 2010)
Improve Attribute Translation (185)
Merge in new version of xmlseclibs (277)
Logic for Encrypting assertion when receiving endpoint is not secured (283)
Merge MetaDataStorageHandlerXML.php and MetaDataStorageHandlerDynamicXML.php (113)
Add an option at the SP to use the FriendlyName instead of the attribute name. (157)
Reverse proxy support (189)
UI for information about modules and enabling and disabling modules (210)
Don't require consent for some attributes (220)
Fully declarative SessionHandlers (226)
Add AttributeSource API (238)
Memcache should support locking of the session (240)
Proper handling of disabled cookies (242)
Generated transient NameID sent back as persistent. (247)
HTTP proxy support for network metadata downloading (250)
Parse embedded EntitiesDescriptors (253)
New statistics format (254)
SP API must support completion handlers for login (255)
Make discopower the default SAML 2.0 identity provider discovery service (266)
Release 2.0 (Late 2010)
- Andreas Åkre Solberg [1]'s blog
- Login to post comments
SimpleSAMLphp Dictionaries and Translation
Submitted by Andreas Åkre Solberg [1] on 22 January, 2010 - 16:18
- Login to post comments
HTML Table of Contents with PHP
Submitted by Andreas Åkre Solberg [1] on 19 January, 2010 - 13:18
Just in case you need a code sniplet to extract table of contents out of HTML:
function tocr(&$s, $level = 1) {
$headersOnLevel = array();
$previous = NULL;
while(!empty($s) && $s[0][1] >= $level ) {
if ($s[0][1] == $level) {
$headersOnLevel[$s[0][2]] = NULL;
array_shift($s);
} else {
$headersOnLevel[reset(array_reverse(array_keys($headersOnLevel)))] = tocr(&$s, $level+1);
}
}
return $headersOnLevel;
}
function tocprint($toc) {
$html = '<ul>';
foreach($toc AS $header => $children) {
$html .= '<li>' . $header;
if (is_array($children)) $html .= tocprint($children);
$html .= '</li>';
}
$html .= '</ul>';
return $html;
}
function toc($html) {
preg_match_all('|<h([1-6])[^>]*>(.*)</h[1-6]>|m', $html, $matches, PREG_SET_ORDER);
$toc = tocr($matches);
return tocprint($toc);
}
- Andreas Åkre Solberg [1]'s blog
- Login to post comments
Connecting to the Feide RnD SVN Repository using Versions
Submitted by Andreas Åkre Solberg [1] on 18 January, 2010 - 12:04
Click to add a repository:

Fill in this url:
https://svn.rnd.feide.no/docs/trunk/geant
and then type in your username and password from Feide OpenIdP. Your username on the short form, like ‘andreas’.

Then click on the GÉANT bookmark in the left pane, next click on the first line on the right pane, and then click Checkout button.

Find a suitable place for your work copy, in example inside your Documents folder:

And you now have a working work copy:

Now, you may add files, edit files.
- To update others changes into your working copy: click Update.
- To provide your changes back to the repository (for others): click Commit.
- Andreas Åkre Solberg [1]'s blog
- Login to post comments
Proof of concept test report: Virtual Organizations with GMT integration
Submitted by Andreas Åkre Solberg [1] on 13 January, 2010 - 11:21
- Login to post comments
Identity Federations Meeting Minutes January 5th
Submitted by Andreas Åkre Solberg [1] on 13 January, 2010 - 10:01
- Login to post comments
Metadata Aggregation Requirements Specification
Submitted by Andreas Åkre Solberg [1] on 5 January, 2010 - 20:48
- Login to post comments
Identity Federations Agenda November 25th 10am
Submitted by Andreas Åkre Solberg [1] on 24 November, 2009 - 18:54
- Login to post comments
Anatomy of a SAML 2.0 Response
Submitted by Andreas Åkre Solberg [1] on 11 November, 2009 - 09:46
- Login to post comments
Anatomy of a SAML 2.0 AuthnRequest
Submitted by Andreas Åkre Solberg [1] on 11 November, 2009 - 08:31
- Login to post comments
Recent comments
13 weeks 2 days ago
15 weeks 2 days ago
18 weeks 6 days ago
19 weeks 6 days ago
23 weeks 12 hours ago
23 weeks 5 days ago
24 weeks 4 days ago
24 weeks 4 days ago
24 weeks 6 days ago
24 weeks 6 days ago