Ignore:
Timestamp:
Apr 7, 2010 1:53:58 AM (14 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-3.01, version-3.02
Children:
7fe81be
Parents:
3e3a5de
Message:

Two changes at once

Remove master and export project from the create request and rename the splitter external interface into a translation interface. The export_project pseudo service is staring.

Also start removeing some deprecated fields.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedd/federation/deter_impl.py

    r3e3a5de r5f6929a  
    55import protogeni_access
    66from experiment_control import experiment_control_local
    7 from split import split_local
     7from ns2topdl import ns2topdl_local
    88from util import read_simple_accessdb
    99from fedid import fedid
     
    101101                    self.get_handler = None
    102102
    103             if config.has_section("splitter"):
    104                 self.splitter = split_local(config, self.auth)
    105                 self.soap_services.update(self.splitter.soap_services)
    106                 self.xmlrpc_services.update(self.splitter.xmlrpc_services)
     103            if config.has_section("ns2topdl"):
     104                self.ns2topdl = ns2topdl_local(config, self.auth)
     105                self.soap_services.update(self.ns2topdl.soap_services)
     106                self.xmlrpc_services.update(self.ns2topdl.xmlrpc_services)
    107107
    108108def new_feddservice(config):
Note: See TracChangeset for help on using the changeset viewer.