Ignore:
Timestamp:
Mar 17, 2010 2:27:33 AM (14 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-3.01, version-3.02
Children:
1dcaff4
Parents:
76441b6
Message:

Set up the repote splitter to translate into a topdl description. It has thus
become misnamed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedd/fedd_client.py

    r76441b6 r3159f5d  
    15111511        if os.access(cert, os.R_OK):
    15121512            fid = fedid(file=cert)
    1513             if opts.use_fedid == True:
    1514                 user = fid
    15151513        else:
    15161514            sys.exit("Cannot read certificate (%s)" % cert)
     
    15561554        if opts.debug > 1: print >>sys.stderr, resp_dict
    15571555
    1558         out = resp_dict.get('output', None)
    1559 
    1560         for line in out.splitlines():
    1561             print "%s" % line
     1556        ed = resp_dict.get('experimentdescription', None)
     1557        if ed:
     1558            if ed.has_key('topdldescription'):
     1559                topo = topdl.Topology(**ed['topdldescription'])
     1560                print topdl.topology_to_xml(topo, 'experiment')
    15621561
    15631562class access(fedd_rpc):
Note: See TracChangeset for help on using the changeset viewer.