mirror of https://github.com/apache/lucene.git
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/lucene-solr
This commit is contained in:
commit
92f6a39ff5
|
@ -49,6 +49,10 @@ Optimizations
|
||||||
|
|
||||||
Detailed Change List
|
Detailed Change List
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
New Features
|
||||||
|
----------------------
|
||||||
|
|
||||||
* SOLR-8782: Add asynchronous sugar methods to the SolrJ Collections API. You
|
* SOLR-8782: Add asynchronous sugar methods to the SolrJ Collections API. You
|
||||||
can now call .processAsync() to run a method asynchronously, or
|
can now call .processAsync() to run a method asynchronously, or
|
||||||
.processAndWait() to wait for a call to finish without holding HTTP
|
.processAndWait() to wait for a call to finish without holding HTTP
|
||||||
|
@ -61,9 +65,6 @@ Detailed Change List
|
||||||
* SOLR-8842: authorization APIs do not use name as an identifier for a permission
|
* SOLR-8842: authorization APIs do not use name as an identifier for a permission
|
||||||
for update, delete commands and 'before' attribute (noble)
|
for update, delete commands and 'before' attribute (noble)
|
||||||
|
|
||||||
|
|
||||||
New Features
|
|
||||||
----------------------
|
|
||||||
* SOLR-8814: Support GeoJSON response writer and general spatial formatting. Adding
|
* SOLR-8814: Support GeoJSON response writer and general spatial formatting. Adding
|
||||||
&wt=geojson&geojson.field=<your geometry field>
|
&wt=geojson&geojson.field=<your geometry field>
|
||||||
Will return a FeatureCollection for each SolrDocumentList and a Feature with the
|
Will return a FeatureCollection for each SolrDocumentList and a Feature with the
|
||||||
|
@ -136,6 +137,8 @@ Bug Fixes
|
||||||
* SOLR-8983: Cleanup clusterstate and replicas for a failed create collection request
|
* SOLR-8983: Cleanup clusterstate and replicas for a failed create collection request
|
||||||
(Varun Thacker, Anshum Gupta)
|
(Varun Thacker, Anshum Gupta)
|
||||||
|
|
||||||
|
* SOLR-8990: Fix top term links from schema browser page to use {!term} parser (hossman)
|
||||||
|
|
||||||
Optimizations
|
Optimizations
|
||||||
----------------------
|
----------------------
|
||||||
* SOLR-8722: Don't force a full ZkStateReader refresh on every Overseer operation.
|
* SOLR-8722: Don't force a full ZkStateReader refresh on every Overseer operation.
|
||||||
|
|
|
@ -143,6 +143,9 @@ solrAdminApp.config([
|
||||||
IS_COLLECTION_PAGE: 3,
|
IS_COLLECTION_PAGE: 3,
|
||||||
ROOT_URL: "/"
|
ROOT_URL: "/"
|
||||||
})
|
})
|
||||||
|
.filter('uriencode', function() {
|
||||||
|
return window.encodeURIComponent;
|
||||||
|
})
|
||||||
.filter('highlight', function($sce) {
|
.filter('highlight', function($sce) {
|
||||||
return function(input, lang) {
|
return function(input, lang) {
|
||||||
if (lang && input && lang!="text") return hljs.highlight(lang, input).value;
|
if (lang && input && lang!="text") return hljs.highlight(lang, input).value;
|
||||||
|
|
|
@ -315,7 +315,7 @@ limitations under the License.
|
||||||
<li class="clearfix" ng-repeat="countGroup in termInfo.topTerms">
|
<li class="clearfix" ng-repeat="countGroup in termInfo.topTerms">
|
||||||
<p><span>{{countGroup.count}}</span></p>
|
<p><span>{{countGroup.count}}</span></p>
|
||||||
<ul>
|
<ul>
|
||||||
<li ng-repeat="term in countGroup.terms" ng-class="{odd:$odd}"><a href="#/{{core}}/query?q={{name}}:{{term}}">{{term}}</a></li>
|
<li ng-repeat="term in countGroup.terms" ng-class="{odd:$odd}"><a ng-href="#/{{core}}/query?q=%7B!term+f%3D{{name | uriencode}}%7D{{term | uriencode}}">{{term}}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue