mirror of
https://github.com/apache/archiva.git
synced 2025-02-23 02:56:38 +00:00
some logs
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1545118 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0edb0a75ef
commit
e027bc4a80
@ -608,6 +608,11 @@
|
|||||||
<classifier>classes</classifier>
|
<classifier>classes</classifier>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.sirona</groupId>
|
||||||
|
<artifactId>sirona-ehcache-agent</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.sirona</groupId>
|
<groupId>org.apache.sirona</groupId>
|
||||||
<artifactId>sirona-cassandra</artifactId>
|
<artifactId>sirona-cassandra</artifactId>
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
define("archiva.search",["jquery","i18n","jquery.tmpl","select2","knockout","knockout.simpleGrid","jqueryFileTree","prettify", "d3"]
|
define("archiva.search",["jquery","i18n","jquery.tmpl","select2","knockout","knockout.simpleGrid","jqueryFileTree","prettify", "d3"]
|
||||||
, function(jquery,i18n,jqueryTmpl,select2,ko,koSimpleGrid) {
|
, function(jquery,i18n,jqueryTmpl,select2,ko,koSimpleGrid,jqueryFileTree,prettify,d3) {
|
||||||
|
|
||||||
//-----------------------------------------
|
//-----------------------------------------
|
||||||
// browse part
|
// browse part
|
||||||
@ -1960,6 +1960,7 @@ define("archiva.search",["jquery","i18n","jquery.tmpl","select2","knockout","kno
|
|||||||
$( "#main-content").find("#search-filter-auto-"+property ).autocomplete({
|
$( "#main-content").find("#search-filter-auto-"+property ).autocomplete({
|
||||||
minLength: 0,
|
minLength: 0,
|
||||||
source: function(request, response){
|
source: function(request, response){
|
||||||
|
$.log("source auto filter search");
|
||||||
var founds=[];
|
var founds=[];
|
||||||
$(resultViewModel.artifacts()).each(function(idx,artifact){
|
$(resultViewModel.artifacts()).each(function(idx,artifact){
|
||||||
if(artifact[property] && artifact[property].startsWith(request.term)){
|
if(artifact[property] && artifact[property].startsWith(request.term)){
|
||||||
@ -2022,6 +2023,7 @@ define("archiva.search",["jquery","i18n","jquery.tmpl","select2","knockout","kno
|
|||||||
],
|
],
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
gridUpdateCallBack: function(){
|
gridUpdateCallBack: function(){
|
||||||
|
$.log("gridUpdateCallBack search result");
|
||||||
applyAutocompleteOnHeader('groupId',self);
|
applyAutocompleteOnHeader('groupId',self);
|
||||||
applyAutocompleteOnHeader('artifactId',self);
|
applyAutocompleteOnHeader('artifactId',self);
|
||||||
applyAutocompleteOnHeader('version',self);
|
applyAutocompleteOnHeader('version',self);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user