chrismattmann closed pull request #157: Removing the project limit of 220 and making it unlimited URL: https://github.com/apache/drat/pull/157
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/webapps/proteus-new/src/main/webapp/resources/src/components/auditsummarycomp.vue b/webapps/proteus-new/src/main/webapp/resources/src/components/auditsummarycomp.vue index eec59a9b..4757b324 100644 --- a/webapps/proteus-new/src/main/webapp/resources/src/components/auditsummarycomp.vue +++ b/webapps/proteus-new/src/main/webapp/resources/src/components/auditsummarycomp.vue @@ -54,7 +54,7 @@ the License. var Notes = []; - axios.get(this.origin + '/solr/statistics/select?q=type:software&rows=220&fl=license_*,id&sort=id+asc&wt=json') + axios.get(this.origin + '/solr/statistics/select?q=type:software&fl=license_*,id&sort=id+asc&wt=json') .then(response=>{ diff --git a/webapps/proteus-new/src/main/webapp/resources/src/components/bublechartcomp.vue b/webapps/proteus-new/src/main/webapp/resources/src/components/bublechartcomp.vue index 752b91b0..7c3527a2 100644 --- a/webapps/proteus-new/src/main/webapp/resources/src/components/bublechartcomp.vue +++ b/webapps/proteus-new/src/main/webapp/resources/src/components/bublechartcomp.vue @@ -69,7 +69,7 @@ the License. .attr("height", diameter) .attr("class", "bubble"); - axios.get(this.origin + '/solr/statistics/select?q=type:software&rows=220&fl=mime_*&wt=json') + axios.get(this.origin + '/solr/statistics/select?q=type:software&fl=mime_*&wt=json') .then(response=>{ diff --git a/webapps/proteus-new/src/main/webapp/resources/src/components/licensepiecomp.vue b/webapps/proteus-new/src/main/webapp/resources/src/components/licensepiecomp.vue index 78b4ba85..1b42df58 100644 --- a/webapps/proteus-new/src/main/webapp/resources/src/components/licensepiecomp.vue +++ b/webapps/proteus-new/src/main/webapp/resources/src/components/licensepiecomp.vue @@ -45,7 +45,7 @@ the License. }, methods: { init(){ - axios.get(this.origin + '/solr/statistics/select?q=type:software&rows=220&fl=license_*&wt=json') + axios.get(this.origin + '/solr/statistics/select?q=type:software&fl=license_*&wt=json') .then(function(response) { console.log(response.data); diff --git a/webapps/proteus-new/src/main/webapp/resources/src/components/projectstable.vue b/webapps/proteus-new/src/main/webapp/resources/src/components/projectstable.vue index 594d6849..6f47cf24 100644 --- a/webapps/proteus-new/src/main/webapp/resources/src/components/projectstable.vue +++ b/webapps/proteus-new/src/main/webapp/resources/src/components/projectstable.vue @@ -280,7 +280,7 @@ import store from './../store/store'; }, loadData(){ - axios.get(this.origin+"/solr/statistics/select?q=type:project&rows=220&wt=json") + axios.get(this.origin+"/solr/statistics/select?q=type:project&wt=json") .then(response=>{ this.$log.info(response.data); this.docs=response.data.response.docs; diff --git a/webapps/proteus-new/src/main/webapp/resources/src/components/topmimepiecomp.vue b/webapps/proteus-new/src/main/webapp/resources/src/components/topmimepiecomp.vue index 325849c3..0aed4473 100644 --- a/webapps/proteus-new/src/main/webapp/resources/src/components/topmimepiecomp.vue +++ b/webapps/proteus-new/src/main/webapp/resources/src/components/topmimepiecomp.vue @@ -63,7 +63,7 @@ the License. }, methods: { init(rows){ - axios.get(this.origin + '/solr/statistics/select?q=type:software&rows=220&fl=mime_*&wt=json') + axios.get(this.origin + '/solr/statistics/select?q=type:software&fl=mime_*&wt=json') .then(function(response) { console.log(response.data); ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services