SOLR-4352: /browse pagination now supports and preserves sort context

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1449179 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2013-02-22 19:33:18 +00:00
parent c6c03fe031
commit 0a4348c99c
2 changed files with 6 additions and 1 deletions

View File

@ -152,6 +152,9 @@ Bug Fixes
* SOLR-4484: ReplicationHandler#loadReplicationProperties still uses Files
rather than the Directory to try and read the replication properties files.
(Mark Miller)
* SOLR-4352: /browse pagination now supports and preserves sort context
(Eric Spiegelberg, Erik Hatcher)
Optimizations
----------------------

View File

@ -26,7 +26,9 @@
#macro(group)#if($request.params.getBool("group") == true)&group=true#end#if($request.params.get("group.field"))#foreach($grp in $request.params.getParams('group.field'))&group.field=$grp#end#end#end
#macro(lensNoQ)?#if($request.params.getParams('fq') and $list.size($request.params.getParams('fq')) > 0)&#fqs($request.params.getParams('fq'))#end#debug#boostPrice#annotate#spatial#qOpts#group#end
#macro(sort $p)#if($p)#foreach($s in $p)&sort=$esc.url($s)#end#end#end
#macro(lensNoQ)?#if($request.params.getParams('fq') and $list.size($request.params.getParams('fq')) > 0)&#fqs($request.params.getParams('fq'))#end#sort($request.params.getParams('sort'))#debug#boostPrice#annotate#spatial#qOpts#group#end
#macro(lens)#lensNoQ#q#end