Changeset 6a0c9f4
- Timestamp:
- Nov 30, 2008 9:54:06 AM (16 years ago)
- Branches:
- axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
- Children:
- 0e41546
- Parents:
- f831203
- Location:
- fedd
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/fedd.py
rf831203 r6a0c9f4 5 5 from optparse import OptionParser 6 6 7 from fedd import config_parser 7 8 from fedd.server import server, xmlrpc_handler, soap_handler 8 from fedd.config_parser import config_parser9 9 from fedd.util import fedd_ssl_context 10 10 from fedd.deter_impl import new_feddservice 11 11 12 from threading import *12 from threading import Lock, Thread 13 13 from signal import signal, pause, SIGINT, SIGTERM 14 14 from select import select, error -
fedd/fedd/access.py
rf831203 r6a0c9f4 16 16 from fedid import fedid, generate_fedid 17 17 from authorizer import authorizer 18 import parse_detail 19 from service_error import * 18 from service_error import service_error 20 19 from remote_service import xmlrpc_handler, soap_handler, service_caller 21 20 -
fedd/fedd/experiment_control.py
rf831203 r6a0c9f4 24 24 from fedid import fedid, generate_fedid 25 25 from remote_service import xmlrpc_handler, soap_handler, service_caller 26 import parse_detail27 26 from service_error import service_error 28 27 -
fedd/fedd/remote_service.py
rf831203 r6a0c9f4 6 6 7 7 import M2Crypto.httpslib 8 from M2Crypto import SSL 8 9 from M2Crypto.m2xmlrpclib import SSL_Transport 9 10 from M2Crypto.SSL import SSLError … … 15 16 from util import fedd_ssl_context 16 17 from fedid import fedid 17 18 import parse_detail 19 20 # Turn off the matching of hostname to certificate ID 21 SSL.Connection.clientPostConnectionCheck = None 18 22 19 23 # Used by the remote_service_base class. -
fedd/fedd/split.py
rf831203 r6a0c9f4 11 11 from fedid import fedid 12 12 from remote_service import xmlrpc_handler, soap_handler 13 import parse_detail14 13 from service_error import * 15 14 -
fedd/fedd_client.py
rf831203 r6a0c9f4 8 8 from fedd.fedd_internal_services import * 9 9 10 from M2Crypto import SSL, X509 11 from M2Crypto.m2xmlrpclib import SSL_Transport 12 import M2Crypto.httpslib 13 14 from xmlrpclib import ServerProxy, Error, dumps, loads 15 from ZSI.TC import QName, String, URI, AnyElement, UNBOUNDED, Any 16 from ZSI.wstools.Namespaces import SOAP 17 from ZSI.fault import FaultType, Detail 18 19 import xmlrpclib 20 10 from fedd import fedid, service_error 21 11 from fedd.util import fedd_ssl_context, pack_id, unpack_id 22 from fedd.fedid import fedid23 12 from fedd.remote_service import service_caller 24 from fedd.service_error import *25 import fedd.parse_detail26 13 27 14 from optparse import OptionParser, OptionValueError 28 15 29 30 # Turn off the matching of hostname to certificate ID31 SSL.Connection.clientPostConnectionCheck = None32 16 33 17 class IDFormatException(RuntimeError): pass
Note: See TracChangeset
for help on using the changeset viewer.