From cb69d2e1c7ced951cbf7a31ee286b0ed92cab8a8 Mon Sep 17 00:00:00 2001 From: rcoh Date: Fri, 18 Feb 2011 16:56:43 -0500 Subject: Adding Epydoc generated docs. --- html/SmootLight.behaviors.VerticalBar-pysrc.html | 134 +++++++++++++++++++++++ 1 file changed, 134 insertions(+) create mode 100644 html/SmootLight.behaviors.VerticalBar-pysrc.html (limited to 'html/SmootLight.behaviors.VerticalBar-pysrc.html') diff --git a/html/SmootLight.behaviors.VerticalBar-pysrc.html b/html/SmootLight.behaviors.VerticalBar-pysrc.html new file mode 100644 index 0000000..866cee7 --- /dev/null +++ b/html/SmootLight.behaviors.VerticalBar-pysrc.html @@ -0,0 +1,134 @@ + + + + + SmootLight.behaviors.VerticalBar + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Package SmootLight :: + Package behaviors :: + Module VerticalBar + + + + + + +
[hide private]
[frames] | no frames]
+
+

Source Code for Module SmootLight.behaviors.VerticalBar

+
+ 1  from operationscore.Behavior import * 
+
2 -class VerticalBar(Behavior): +
3 +
4 - def processResponse(self, inputs, recurs): +
5 ret = [] + 6 inputs = list(inputs) + 7 for inputset in inputs: + 8 inputset = dict(inputset) + 9 if 'xLoc' not in inputset: +10 inputset['xLoc'] = inputset['Location'][0] +11 xLoc = inputset['xLoc'] +12 +13 condition = '{x} == ' + str(xLoc) +14 +15 if self['Combine']: +16 inputset['Location'] += ',' + condition +17 else: +18 inputset['Location'] = condition +19 +20 ret.append(inputset) +21 return (ret, []) +
22 +
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+ + + + -- cgit v1.2.3