Changeset 7298
- Timestamp:
- 06/08/10 16:41:04 (11 years ago)
- Location:
- TI12-security/trunk/NDGSecurity/python
- Files:
-
- 6 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/NDGSecurity/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/renderinginterface/genshi/templates/yadis.xml
r7292 r7298 23 23 </Service> 24 24 </XRD> 25 <XRD> 26 <Service priority="30"> 27 <Type>urn:esg:security:attribute-service</Type> 28 <URI>https://attributeservice.somewheredifferent.ac.uk</URI> 29 <LocalID>$user_url</LocalID> 30 </Service> 31 </XRD> 32 <XRD> 33 <Service priority="19"> 34 <Type>urn:esg:security:attribute-service</Type> 35 <URI>https://attributeservice.somewhere.ac.uk</URI> 36 <LocalID>$user_url</LocalID> 37 </Service> 38 </XRD> 25 39 </xrds:XRDS> -
TI12-security/trunk/NDGSecurity/python/ndg_security_server/ndg/security/server/xacml/ctx_handler/saml_ctx_handler.py
r7257 r7298 23 23 XacmlAttributeValueClassFactory 24 24 from ndg.xacml.parsers.etree.factory import ReaderFactory 25 26 from ndg.security.server.xacml.pip.saml_pip import PIP 25 27 26 28 … … 79 81 self.__issuerProxy = _saml.Issuer() 80 82 self.__assertionLifetime = 0. 83 84 # Policy Information Point 85 self.pip = PIP() 81 86 82 87 def _getIssuerFormat(self): … … 181 186 Matching attributes values are returned 182 187 """ 183 return []188 return self.pip.query(request, designator) 184 189 185 190 def _createXacmlRequestCtx(self, samlAuthzDecisionQuery):
Note: See TracChangeset
for help on using the changeset viewer.