Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
See ukf/ukf-meta#359 for details
0 contributors

Users who have contributed to this file

42 lines (34 sloc) 1.44 KB
<?xml version="1.0" encoding="UTF-8"?>
<!--
check_coco_v2_support.xsl
Checking ruleset containing rules associated with the REFEDS
Data Protection Code of Conduct Entity Category category support, see:
https://refeds.org/category/code-of-conduct/v2
This ruleset reflects v2.0 published 28th March 2022
-->
<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"/>
<!--
Entity support category applies only to identity providers.
-->
<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[.='https://refeds.org/category/code-of-conduct/v2']
]
[not(md:IDPSSODescriptor)]">
<xsl:call-template name="error">
<xsl:with-param name="m">REFEDS Data Protection Code of Conduct support only applies to identity provider entities</xsl:with-param>
</xsl:call-template>
</xsl:template>
</xsl:stylesheet>