This repository has been archived by the owner. It is now read-only.
forked from InCommon/inc-meta
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
25 changed files
with
423 additions
and
387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!-- | ||
| check_rands_member.xsl | ||
| Checking ruleset containing rules associated with membership of the REFEDS | ||
| Research and Scholarship entity category, see: | ||
| https://refeds.org/category/research-and-scholarship/ | ||
| This ruleset reflects v1.3, 8-Sep-2016. | ||
| Author: Ian A. Young <ian@iay.org.uk> | ||
| --> | ||
| <xsl:stylesheet version="1.0" | ||
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
| xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" | ||
| xmlns:mdattr="urn:oasis:names:tc:SAML:metadata:attribute" | ||
| xmlns:mdui="urn:oasis:names:tc:SAML:metadata:ui" | ||
| xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion" | ||
| xmlns="urn:oasis:names:tc:SAML:2.0:metadata"> | ||
|
|
||
| <!-- | ||
| Common support functions. | ||
| --> | ||
| <xsl:import href="check_framework.xsl"/> | ||
|
|
||
| <!-- | ||
| Process entity category. | ||
| --> | ||
| <xsl:template match="md:EntityDescriptor | ||
| [md:Extensions/mdattr:EntityAttributes/saml:Attribute | ||
| [@NameFormat='urn:oasis:names:tc:SAML:2.0:attrname-format:uri'] | ||
| [@Name='http://macedir.org/entity-category'] | ||
| /saml:AttributeValue[.='http://refeds.org/category/research-and-scholarship'] | ||
| ]"> | ||
| <xsl:choose> | ||
| <!-- | ||
| (Implicit) applies only to service providers. | ||
| --> | ||
| <xsl:when test="not(md:SPSSODescriptor)"> | ||
| <xsl:call-template name="error"> | ||
| <xsl:with-param name="m">REFEDS R+S only applies to service provider entities</xsl:with-param> | ||
| </xsl:call-template> | ||
| </xsl:when> | ||
| <!-- | ||
| 4.3.1 | ||
| The Service Provider [...] supports SAML V2.0 HTTP-POST binding. | ||
| --> | ||
| <xsl:when test="not(md:SPSSODescriptor/md:AssertionConsumerService | ||
| [@Binding='urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST'])"> | ||
| <xsl:call-template name="error"> | ||
| <xsl:with-param name="m">REFEDS R+S requires SAML 2.0 POST support</xsl:with-param> | ||
| </xsl:call-template> | ||
| </xsl:when> | ||
| <!-- | ||
| 4.3.3 | ||
| The Service Provider provides an mdui:DisplayName and mdui:InformationURL in metadata. | ||
| --> | ||
| <xsl:when test="not(md:SPSSODescriptor/md:Extensions/mdui:UIInfo/mdui:DisplayName)"> | ||
| <xsl:call-template name="error"> | ||
| <xsl:with-param name="m">REFEDS R+S requires mdui:DisplayName</xsl:with-param> | ||
| </xsl:call-template> | ||
| </xsl:when> | ||
| <xsl:when test="not(md:SPSSODescriptor/md:Extensions/mdui:UIInfo/mdui:InformationURL)"> | ||
| <xsl:call-template name="error"> | ||
| <xsl:with-param name="m">REFEDS R+S requires mdui:InformationURL</xsl:with-param> | ||
| </xsl:call-template> | ||
| </xsl:when> | ||
| <!-- | ||
| 4.3.4 | ||
| The Service Provider provides one or more technical contacts in metadata. | ||
| --> | ||
| <xsl:when test="not(md:ContactPerson[@contactType='technical'])"> | ||
| <xsl:call-template name="error"> | ||
| <xsl:with-param name="m">REFEDS R+S requires one or more technical contacts</xsl:with-param> | ||
| </xsl:call-template> | ||
| </xsl:when> | ||
| </xsl:choose> | ||
| </xsl:template> | ||
|
|
||
| </xsl:stylesheet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!-- | ||
| check_rands_support.xsl | ||
| Checking ruleset containing rules associated with the REFEDS | ||
| Research and Scholarship entity support category, see: | ||
| https://refeds.org/category/research-and-scholarship/ | ||
| This ruleset reflects v1.3, 8-Sep-2016. | ||
| Author: Ian A. Young <ian@iay.org.uk> | ||
| --> | ||
| <xsl:stylesheet version="1.0" | ||
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
| xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" | ||
| xmlns:mdattr="urn:oasis:names:tc:SAML:metadata:attribute" | ||
| xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion" | ||
| xmlns="urn:oasis:names:tc:SAML:2.0:metadata"> | ||
|
|
||
| <!-- | ||
| Common support functions. | ||
| --> | ||
| <xsl:import href="check_framework.xsl"/> | ||
|
|
||
| <!-- | ||
| Process entity support category. | ||
| --> | ||
| <xsl:template match="md:EntityDescriptor | ||
| [md:Extensions/mdattr:EntityAttributes/saml:Attribute | ||
| [@NameFormat='urn:oasis:names:tc:SAML:2.0:attrname-format:uri'] | ||
| [@Name='http://macedir.org/entity-category-support'] | ||
| /saml:AttributeValue[.='http://refeds.org/category/research-and-scholarship'] | ||
| ]"> | ||
| <xsl:choose> | ||
| <!-- | ||
| (Implicit) applies only to identity providers. | ||
| --> | ||
| <xsl:when test="not(md:IDPSSODescriptor)"> | ||
| <xsl:call-template name="error"> | ||
| <xsl:with-param name="m">REFEDS R+S support only applies to identity provider entities</xsl:with-param> | ||
| </xsl:call-template> | ||
| </xsl:when> | ||
| </xsl:choose> | ||
| </xsl:template> | ||
|
|
||
| </xsl:stylesheet> |
Oops, something went wrong.