horizon/openstack_dashboard/dashboards/router
Radomir Dopieralski b7537a8b81 Use memoized_method decorator in views
A lot of horizon's views use the pattern:

    def get_data(self):
        if not hasattr(self, "_data"):
            # Calculate data here.
            self._data = data
        return self._data

This is copy-pasted all over the codebase. It's better to handle that
with a single decorator. In the future, we might even replace it with
some better caching approach.

Closes-bug: #1248230
Change-Id: Id021fccf9032e5068993ec91a7774a5d0fbf29bb
2013-12-18 16:46:30 +01:00
..
nexus1000v Use memoized_method decorator in views 2013-12-18 16:46:30 +01:00
__init__.py Add Cisco N1K plugin support in Horizon 2013-09-04 15:27:57 -04:00
dashboard.py Add Cisco N1K plugin support in Horizon 2013-09-04 15:27:57 -04:00
models.py Add Cisco N1K plugin support in Horizon 2013-09-04 15:27:57 -04:00