Changeset 8235
- Timestamp:
- 26/10/12 11:37:38 (8 years ago)
- Location:
- branches/ndg_security-2.2.x
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ndg_security-2.2.x/Makefile
r7081 r8235 10 10 # @license: BSD - LICENSE file 11 11 # 12 # $Id :$12 # $Id$ 13 13 EGG_DIRS=ndg_security_common ndg_security_client ndg_security_server \ 14 14 ndg_security_test ndg_security … … 22 22 cd $$dir; \ 23 23 ${PYTHON} setup.py bdist_egg; \ 24 ${PYTHON} setup.py sdist; \ 24 25 cd ..; \ 25 26 done; … … 36 37 cd $$dir; \ 37 38 rm -f dist/*.egg; \ 39 rm -f dist/*.tar.gz; \ 38 40 rm -rf *.egg-info; \ 39 41 rm -rf build; \ … … 53 55 @echo "Installing eggs to ${NDG_EGG_DIST_HOST}:${NDG_EGG_DIST_DIR} ..." 54 56 scp ndg_security*/dist/*.egg ${NDG_EGG_DIST_USER}@${NDG_EGG_DIST_HOST}:${NDG_EGG_DIST_DIR} 57 scp ndg_security*/dist/*.tar.gz ${NDG_EGG_DIST_USER}@${NDG_EGG_DIST_HOST}:${NDG_EGG_DIST_DIR} 55 58 ssh ${NDG_EGG_DIST_USER}@${NDG_EGG_DIST_HOST} "chown ${NDG_EGG_DIST_USER}:cedadev ${NDG_EGG_DIST_DIR}/ndg_security*.egg" 59 ssh ${NDG_EGG_DIST_USER}@${NDG_EGG_DIST_HOST} "chown ${NDG_EGG_DIST_USER}:cedadev ${NDG_EGG_DIST_DIR}/ndg_security*.tar.gz" 56 60 57 61 # Make ZSI stubs from Session Manager WSDL -
branches/ndg_security-2.2.x/ndg_security_server/ndg/security/server/xacml/pip/saml_pip.py
r7822 r8235 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id :$'10 __revision__ = '$Id$' 11 11 import logging 12 12 log = logging.getLogger(__name__) … … 406 406 _line = path.expandvars(line).strip() 407 407 if _line and not _line.startswith('#'): 408 attributeId, attributeAuthorityURI = _line.split( )408 attributeId, attributeAuthorityURI = _line.split(',') 409 409 self.__attributeId2AttributeAuthorityMap[attributeId 410 410 ] = attributeAuthorityURI
Note: See TracChangeset
for help on using the changeset viewer.