Changes between Version 12 and Version 13 of FeddPluginCalls
- Timestamp:
- Dec 3, 2010 11:20:53 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FeddPluginCalls
v12 v13 130 130 }}} 131 131 132 To get the topdl representation out of the (potentially large and complex) dict that describes it, the simplest mechanism is to just call the topdl.Topology constructor on the dict:133 134 {{{ 135 top = topdl. Topology(**request['segmentdescription']['topdldescription'])132 To get the topdl representation out of the (potentially large and complex) dict that describes it, the simplest mechanism is to use the {{{topdl.topology_from_startsegment}}} function: 133 134 {{{ 135 top = topdl.topology_from_startsegment(request) 136 136 }}} 137 137