Example #1
0
 def get_location(self):
     location = getattr(self.context.aq_base, 'location', None)
     if not location:
         return None
     else:
         if isinstance(location, unicode):
             return get_location(self.context)
         else:
             return location.to_object
Example #2
0
 def get_location(self):
     location = getattr(self.context.aq_base, 'location', None)
     if not location:
         return None
     else:
         if isinstance(location, unicode):
             return get_location(self.context)
         else:
             return location.to_object
 def get_location(self, event_accessor):
     return get_location(event_accessor.context)
Example #4
0
 def get_location(self, event_accessor):
     return get_location(event_accessor.context)
Example #5
0
 def get_location(self, occ):
     return get_location(occ)
Example #6
0
 def get_location(self, event):
     return get_location(event)
Example #7
0
 def get_location(self, event):
     return get_location(event)
Example #8
0
 def get_location(self):
     return get_location(self.context)
Example #9
0
 def get_location(self):
     return get_location(self.context)
Example #10
0
 def get_location(self, occ):
     return get_location(occ)