Changeset 6a0c9f4


Ignore:
Timestamp:
Nov 30, 2008 9:54:06 AM (15 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
Children:
0e41546
Parents:
f831203
Message:

More namespace cleanup

Location:
fedd
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • fedd/fedd.py

    rf831203 r6a0c9f4  
    55from optparse import OptionParser
    66
     7from fedd import config_parser
    78from fedd.server import server, xmlrpc_handler, soap_handler
    8 from fedd.config_parser import config_parser
    99from fedd.util import fedd_ssl_context
    1010from fedd.deter_impl import new_feddservice
    1111
    12 from threading import *
     12from threading import Lock, Thread
    1313from signal import signal, pause, SIGINT, SIGTERM
    1414from select import select, error
  • fedd/fedd/access.py

    rf831203 r6a0c9f4  
    1616from fedid import fedid, generate_fedid
    1717from authorizer import authorizer
    18 import parse_detail
    19 from service_error import *
     18from service_error import service_error
    2019from remote_service import xmlrpc_handler, soap_handler, service_caller
    2120
  • fedd/fedd/experiment_control.py

    rf831203 r6a0c9f4  
    2424from fedid import fedid, generate_fedid
    2525from remote_service import xmlrpc_handler, soap_handler, service_caller
    26 import parse_detail
    2726from service_error import service_error
    2827
  • fedd/fedd/remote_service.py

    rf831203 r6a0c9f4  
    66
    77import M2Crypto.httpslib
     8from M2Crypto import SSL
    89from M2Crypto.m2xmlrpclib import SSL_Transport
    910from M2Crypto.SSL import SSLError
     
    1516from util import fedd_ssl_context
    1617from fedid import fedid
    17 
     18import parse_detail
     19
     20# Turn off the matching of hostname to certificate ID
     21SSL.Connection.clientPostConnectionCheck = None
    1822
    1923# Used by the remote_service_base class.
  • fedd/fedd/split.py

    rf831203 r6a0c9f4  
    1111from fedid import fedid
    1212from remote_service import xmlrpc_handler, soap_handler
    13 import parse_detail
    1413from service_error import *
    1514
  • fedd/fedd_client.py

    rf831203 r6a0c9f4  
    88from fedd.fedd_internal_services import *
    99
    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 
     10from fedd import fedid, service_error
    2111from fedd.util import fedd_ssl_context, pack_id, unpack_id
    22 from fedd.fedid import fedid
    2312from fedd.remote_service import service_caller
    24 from fedd.service_error import *
    25 import fedd.parse_detail
    2613
    2714from optparse import OptionParser, OptionValueError
    2815
    29 
    30 # Turn off the matching of hostname to certificate ID
    31 SSL.Connection.clientPostConnectionCheck = None
    3216
    3317class IDFormatException(RuntimeError): pass
Note: See TracChangeset for help on using the changeset viewer.