This is an automated email from the ASF dual-hosted git repository.
mattmann pushed a change to branch gsoc18
in repository https://gitbox.apache.org/repos/asf/drat.git.
from 9c159de - fix issue with starting MimePartitioner as Mapper and
correct keys
add 62ede6c Initial Commit of adding new UI designed with vue -Only works
for local paths -Only intergrated proteus UI Viz features have to intergrated
add 2a72e24 Added source files for proteus new webapp
add 6a9e5f0 Changed hard coded API requests chooce the origin dynamically
add 89420f9 Updated build script
add 0ed6993 removed all node modules from proteus new webapp
add 1163f6b Updated ProjectList Component to retrieve data from solr
add 63479ea Updated with vue config file to build with relative path
add fd3f076 Added detailed view of projects (Viz-integration-phase-1)
add 51c4ee0 Removed all comments
add b12718d removed MANIFEST file and accidental dist directory
add 2ff954a removed minified files, fixed table width in licene headers
table
add 5aa0300 Completed integrating proteus and viz Added license header
for all the source files -Some UI Tuning and updates for feedbacks have to be
done
new 257227a pin to version 1.2.3-SNAPSHOT for lucene fix.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 7 +
distribution/pom.xml | 13 +
distribution/src/main/assembly/assembly.xml | 1 +
pom.xml | 2 +-
webapps/pom.xml | 1 +
webapps/proteus-new/pom.xml | 93 +
.../src/main/webapp/META-INF/context.xml | 4 +-
.../src/main/webapp/WEB-INF/web.xml | 0
.../src/main/webapp/resources/babel.config.js | 14 +
.../src/main/webapp/resources/package-lock.json | 13925 +++++++++++++++++++
.../src/main/webapp/resources/package.json | 57 +
.../src/main/webapp/resources/public/favicon.ico | Bin 0 -> 1150 bytes
.../src/main/webapp/resources/public/index.html | 24 +
.../src/main/webapp/resources/public/logo.png | Bin 0 -> 102270 bytes
.../src/main/webapp/resources/src/App.vue | 273 +
.../resources/src/components/auditsummarycomp.vue | 258 +
.../resources/src/components/barchartcomp.vue | 170 +
.../resources/src/components/bublechartcomp.vue | 185 +
.../resources/src/components/controll_bar.vue | 123 +
.../resources/src/components/filelistcomp.vue | 104 +
.../resources/src/components/licencepiecomp.vue | 170 +
.../webapp/resources/src/components/piechart.vue | 126 +
.../resources/src/components/progresscomp.vue | 93 +
.../resources/src/components/projectstable.vue | 404 +
.../resources/src/components/statisticscomp.vue | 111 +
.../resources/src/components/topmimepiecomp.vue | 178 +
.../src/main/webapp/resources/src/logo.png | Bin 0 -> 102270 bytes
.../src/main/webapp/resources/src/main.js} | 44 +-
.../src/main/webapp/resources/src/store/store.js | 56 +
.../src/main/webapp/resources/vue.config.js | 3 +
.../src/main/webapp/resources/webpack.config.js | 47 +
31 files changed, 16470 insertions(+), 16 deletions(-)
create mode 100644 webapps/proteus-new/pom.xml
copy webapps/{viz => proteus-new}/src/main/webapp/META-INF/context.xml (50%)
mode change 100644 => 100755
copy webapps/{viz => proteus-new}/src/main/webapp/WEB-INF/web.xml (100%)
mode change 100644 => 100755
create mode 100644
webapps/proteus-new/src/main/webapp/resources/babel.config.js
create mode 100644
webapps/proteus-new/src/main/webapp/resources/package-lock.json
create mode 100644 webapps/proteus-new/src/main/webapp/resources/package.json
create mode 100644
webapps/proteus-new/src/main/webapp/resources/public/favicon.ico
create mode 100644
webapps/proteus-new/src/main/webapp/resources/public/index.html
create mode 100644
webapps/proteus-new/src/main/webapp/resources/public/logo.png
create mode 100644 webapps/proteus-new/src/main/webapp/resources/src/App.vue
create mode 100644
webapps/proteus-new/src/main/webapp/resources/src/components/auditsummarycomp.vue
create mode 100644
webapps/proteus-new/src/main/webapp/resources/src/components/barchartcomp.vue
create mode 100644
webapps/proteus-new/src/main/webapp/resources/src/components/bublechartcomp.vue
create mode 100644
webapps/proteus-new/src/main/webapp/resources/src/components/controll_bar.vue
create mode 100644
webapps/proteus-new/src/main/webapp/resources/src/components/filelistcomp.vue
create mode 100644
webapps/proteus-new/src/main/webapp/resources/src/components/licencepiecomp.vue
create mode 100644
webapps/proteus-new/src/main/webapp/resources/src/components/piechart.vue
create mode 100644
webapps/proteus-new/src/main/webapp/resources/src/components/progresscomp.vue
create mode 100644
webapps/proteus-new/src/main/webapp/resources/src/components/projectstable.vue
create mode 100644
webapps/proteus-new/src/main/webapp/resources/src/components/statisticscomp.vue
create mode 100644
webapps/proteus-new/src/main/webapp/resources/src/components/topmimepiecomp.vue
create mode 100644 webapps/proteus-new/src/main/webapp/resources/src/logo.png
copy webapps/{fmprod/src/main/webapp/META-INF/context.xml =>
proteus-new/src/main/webapp/resources/src/main.js} (53%)
create mode 100644
webapps/proteus-new/src/main/webapp/resources/src/store/store.js
create mode 100644 webapps/proteus-new/src/main/webapp/resources/vue.config.js
create mode 100644
webapps/proteus-new/src/main/webapp/resources/webpack.config.js