Changeset 0ac1934


Ignore:
Timestamp:
Mar 2, 2010 1:43:02 PM (14 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-3.01, version-3.02
Children:
93c865a
Parents:
37f6592
Message:

Small SEER things. Compute a correct visualization and done tell an exporting tstbed to configure services

Location:
fedd/federation
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • fedd/federation/emulab_access.py

    r37f6592 r0ac1934  
    10431043                                ldomain.lower())
    10441044                    for s in services:
    1045                         if s.get('name',"") in self.imports:
     1045                        if s.get('name',"") in self.imports and \
     1046                                s.get('visibility','') == 'import':
    10461047                            client_service_out[s['name']](f, s)
    10471048                    # Does seer need this?
  • fedd/federation/experiment_control.py

    r37f6592 r0ac1934  
    692692        # These are used to parse neato output and to create the visualization
    693693        # file.
    694         vis_re = re.compile('^\s*"?([\w\-]+)"?\s+\[.*pos="(\d+),(\d+)"')
     694        vis_re = re.compile('^\s*"?([\w\-]+)"?\s+\[.*pos="([\d\.]+),([\d\.]+)"')
    695695        vis_fmt = "<node><name>%s</name><x>%s</x><y>%s</y><type>" + \
    696696                "%s</type></node>"
Note: See TracChangeset for help on using the changeset viewer.