Changeset c971895
- Timestamp:
- Nov 21, 2008 11:15:49 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:
- 3f6bc5f
- Parents:
- 51cc9df
- Location:
- fedd
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/fedd_access.py
r51cc9df rc971895 2 2 3 3 import os,sys 4 5 from BaseHTTPServer import BaseHTTPRequestHandler6 from ZSI import *7 from M2Crypto import SSL8 from M2Crypto.m2xmlrpclib import SSL_Transport9 from M2Crypto.SSL.SSLServer import SSLServer10 import M2Crypto.httpslib11 import xmlrpclib12 13 4 import re 14 5 import string 15 6 import copy 16 7 import pickle 8 import logging 17 9 18 10 from threading import * 19 11 20 from fedd_access_project import access_project21 12 from fedd_services import * 22 13 from fedd_util import * 23 14 from fedd_allocate_project import * 15 from fedd_access_project import access_project 24 16 from fedid import fedid, generate_fedid 25 17 import parse_detail 26 18 from service_error import * 27 19 from remote_service import xmlrpc_handler, soap_handler, service_caller 28 import logging29 20 30 21 -
fedd/fedd_allocate_project.py
r51cc9df rc971895 2 2 3 3 import os,sys 4 5 from BaseHTTPServer import BaseHTTPRequestHandler6 from ZSI import *7 from M2Crypto import SSL8 from M2Crypto.m2xmlrpclib import SSL_Transport9 from M2Crypto.SSL.SSLServer import SSLServer10 import M2Crypto.httpslib11 import xmlrpclib12 13 4 import re 14 5 import random -
fedd/fedd_experiment_control.py
r51cc9df rc971895 3 3 import os,sys 4 4 5 from ZSI import *6 from M2Crypto import SSL7 from M2Crypto.SSL.SSLServer import SSLServer8 import M2Crypto.httpslib9 10 import xml.parsers.expat11 5 12 6 import re … … 17 11 import copy 18 12 import pickle 13 import logging 19 14 20 15 import traceback 16 # For parsing visualization output and splitter output 17 import xml.parsers.expat 21 18 22 19 from threading import * 23 24 20 from subprocess import * 25 21 … … 30 26 from remote_service import xmlrpc_handler, soap_handler, service_caller 31 27 import parse_detail 32 from service_error import * 33 34 import logging 28 from service_error import service_error 29 35 30 36 31 class nullHandler(logging.Handler): -
fedd/fedd_split.py
r51cc9df rc971895 2 2 3 3 import os,sys 4 5 from ZSI import *6 from M2Crypto import SSL7 from M2Crypto.SSL.SSLServer import SSLServer8 import M2Crypto.httpslib9 10 import xml.parsers.expat11 12 import re13 import random14 import string15 4 import subprocess 16 5 import tempfile 17 import copy 18 import pickle 19 20 import traceback 21 22 from threading import * 23 24 from subprocess import * 6 import logging 25 7 26 8 from fedd_services import * … … 32 14 from service_error import * 33 15 34 import logging35 16 36 17 class nullHandler(logging.Handler): … … 59 40 60 41 self.log = logging.getLogger("fedd.splitter") 42 set_log_level(config, "splitter", self.log) 61 43 self.trace_file = sys.stderr 62 44 … … 134 116 tclcmd.extend([pid, gid, eid, tclfile]) 135 117 self.log.debug("Calling splitter %s" % " ".join(tclcmd)) 136 tclparser = Popen(tclcmd, stdout=PIPE)118 tclparser = subprocess.Popen(tclcmd, stdout=subprocess.PIPE) 137 119 138 120 out = ""
Note: See TracChangeset
for help on using the changeset viewer.