Skip to content
Snippets Groups Projects
Commit cdcf0376 authored by anonymous's avatar anonymous
Browse files

remove prints

parent 360a8b73
No related branches found
No related tags found
No related merge requests found
...@@ -72,8 +72,6 @@ class OdshFeedController(FeedController): ...@@ -72,8 +72,6 @@ class OdshFeedController(FeedController):
if param in extra_fields: if param in extra_fields:
extras[param]=value extras[param]=value
search_params['extras']=extras search_params['extras']=extras
print('EXTRAS')
print(search_params)
page = h.get_page_number(request.params) page = h.get_page_number(request.params)
...@@ -87,8 +85,6 @@ class OdshFeedController(FeedController): ...@@ -87,8 +85,6 @@ class OdshFeedController(FeedController):
'extras': extras 'extras': extras
} }
print('DATA')
print(data_dict)
item_count, results = _package_search(data_dict) item_count, results = _package_search(data_dict)
navigation_urls = self._navigation_urls(request.params, navigation_urls = self._navigation_urls(request.params,
......
...@@ -225,8 +225,6 @@ class OdshPlugin(plugins.SingletonPlugin, DefaultTranslation, DefaultDatasetForm ...@@ -225,8 +225,6 @@ class OdshPlugin(plugins.SingletonPlugin, DefaultTranslation, DefaultDatasetForm
# use several daterange queries agains temporal_start and temporal_end field # use several daterange queries agains temporal_start and temporal_end field
# TODO: use field of type date_range in solr index instead # TODO: use field of type date_range in solr index instead
def before_search(self, search_params): def before_search(self, search_params):
print('BEFORE')
print(search_params)
extras = search_params.get('extras') extras = search_params.get('extras')
if not extras: if not extras:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment