Some javascript/style in this post has been disabled (
why?)
In a python script i 've
REQUEST=context.REQUEST
d1 = REQUEST.get('date1', '')
d2
= REQUEST.get('date2', '')
d1= d1[6:10]+'/'+d1[3:5]+'/'+d1[0:2]+' 00:00:00'
d2=
d2[6:10]+'/'+d2[3:5]+'/'+d2[0:2]+' 00:00:00'
query = {'portal_type' :
'Publication',
'review_state' :
'published',
}
query['Date'] =
{
'query': [d1,
d2],
'range': 'minmax'}
return
context.portal_catalog.searchResults(query)
But the result it's not what i
want...