pagesize and orderby were undefined causing an error to be thrown when
browsing to the all machines page
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
# define here what parameters the view needs in the GET portion in order to
# be able to display something. 'count' and 'page' are mandatory for all views
# that use paginators.
+ (pagesize, orderby) = _get_parameters_values(request, 10, 'updated:+')
mandatory_parameters = { 'count': 10, 'page' : 1, 'orderby' : 'name:+' };
retval = _verify_parameters( request.GET, mandatory_parameters )
if retval: