Changeset 4683 for TI12-security/trunk/python
- Timestamp:
- 19/12/08 11:11:55 (12 years ago)
- Location:
- TI12-security/trunk/python/ndg.security.server/ndg/security/server/templates
- Files:
-
- 24 added
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/python/ndg.security.server/ndg/security/server/templates/default_project/services.ini_tmpl
r4682 r4683 46 46 # user ID 47 47 attributeAuthority.userRolesModFilePath: %(here)s/siteAAttributeAuthority 48 attributeAuthority.userRolesModName: siteAUserRoles49 attributeAuthority.userRolesClassName: Test UserRoles48 attributeAuthority.userRolesModName: attributeinterface 49 attributeAuthority.userRolesClassName: TestAttributeInterface 50 50 51 51 # Config for XML signature of Attribute Certificate 52 attributeAuthority.signingPriKeyFilePath: %(here)s/siteAAttributeAuthority/ siteA-aa.key53 attributeAuthority.signingCertFilePath: %(here)s/siteAAttributeAuthority/ siteA-aa.crt52 attributeAuthority.signingPriKeyFilePath: %(here)s/siteAAttributeAuthority/aa.key 53 attributeAuthority.signingCertFilePath: %(here)s/siteAAttributeAuthority/aa.crt 54 54 attributeAuthority.caCertFilePathList: %(here)s/ca/ndg-test-ca.crt 55 55 … … 190 190 SessionMiddlewareFilter 191 191 OpenIDProviderFilter 192 testHarnessFilter193 192 mainApp 194 193 195 [filter:testHarnessFilter]196 paste.filter_app_factory =197 ndg.security.test.combinedservices.serverapp:filter_app_factory198 sessionManagerFilterID = filter:SessionManagerFilter199 attributeAuthorityFilterID = filter:AttributeAuthorityFilter200 194 201 195 #______________________________________________________________________________ -
TI12-security/trunk/python/ndg.security.server/ndg/security/server/templates/template.py
r4682 r4683 2 2 3 3 from paste.script.templates import Template, var, _skip_variables 4 import socket 4 5 5 6 vars = [ 6 var('attributeAuthorityID', 'Unique identity by which this Attribute Authority will be known by other trusted sites'), 7 var('NDGSEC_CONFIG_DIR', 'root directory location for configuration files') 7 var('attributeAuthorityID', 8 ('Unique identity by which this Attribute Authority will be known by ' 9 'other trusted sites'), 10 default=socket.gethostname()) 8 11 ] 9 12 10 13 class DefaultProjectTemplate(Template): 11 14 _template_dir = 'default_project' 12 summary = 'NERC DataGrid Security services applicationtemplate'15 summary = 'NERC DataGrid Security services deployment template' 13 16 vars = vars 17
Note: See TracChangeset
for help on using the changeset viewer.