Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9248C200B35 for ; Tue, 5 Jul 2016 20:16:15 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 90FB2160A60; Tue, 5 Jul 2016 18:16:15 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id DA907160A2C for ; Tue, 5 Jul 2016 20:16:14 +0200 (CEST) Received: (qmail 47912 invoked by uid 500); 5 Jul 2016 18:16:14 -0000 Mailing-List: contact notifications-help@asterixdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@asterixdb.apache.org Delivered-To: mailing list notifications@asterixdb.apache.org Received: (qmail 47903 invoked by uid 99); 5 Jul 2016 18:16:14 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jul 2016 18:16:14 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 09301C0155 for ; Tue, 5 Jul 2016 18:16:13 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.919 X-Spam-Level: X-Spam-Status: No, score=0.919 tagged_above=-999 required=6.31 tests=[SPF_FAIL=0.919] autolearn=disabled Received: from mx2-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id q3RTi1CCazqm for ; Tue, 5 Jul 2016 18:16:11 +0000 (UTC) Received: from unhygienix.ics.uci.edu (unhygienix.ics.uci.edu [128.195.14.130]) by mx2-lw-eu.apache.org (ASF Mail Server at mx2-lw-eu.apache.org) with ESMTP id F28105F19A for ; Tue, 5 Jul 2016 18:16:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by unhygienix.ics.uci.edu (Postfix) with ESMTP id 516D9240638; Tue, 5 Jul 2016 11:16:10 -0700 (PDT) Date: Tue, 5 Jul 2016 11:16:10 -0700 From: "Kaveen Rodrigo (Code Review)" To: Ian Maxon , Jenkins CC: Michael Blow , Till Westmann Reply-To: u.k.k.rodrigo@gmail.com X-Gerrit-MessageType: newpatchset Subject: Change in asterixdb[master]: ASTERIXDB-1375 - New Query UI implementation X-Gerrit-Change-Id: Id9aa6fb0a6bebaaa58f288e621dbfe76a604c689 X-Gerrit-ChangeURL: X-Gerrit-Commit: c6ede39a01f736c0705fc6dbad08a7169451971c In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Content-Disposition: inline User-Agent: Gerrit/2.8.4 Message-Id: <20160705181610.516D9240638@unhygienix.ics.uci.edu> archived-at: Tue, 05 Jul 2016 18:16:15 -0000 Hello Ian Maxon, Jenkins, I'd like you to reexamine a change. Please visit https://asterix-gerrit.ics.uci.edu/935 to look at the new patch set (#10). Change subject: ASTERIXDB-1375 - New Query UI implementation ...................................................................... ASTERIXDB-1375 - New Query UI implementation Implemented UI using bootstrap according to specification Wrote the client side logic using Angular JS Using CodeMirror and custom mode to do syntax highlighting. Modified HTTP API to support CORS. Custom servlet to host new Web Ui on port 19006. CHANGES Changed resource folder name to "queryui" Fixed SonarQube problems Dynamic HTTP API port, instead of hardcoded value ... Jul 5 2016 Using JSONObject for Dynamic HTTP APi Port Improved Animations Added Collapsable side panal Updated LICENSE file Change-Id: Id9aa6fb0a6bebaaa58f288e621dbfe76a604c689 --- M .gitignore M asterixdb/LICENSE A asterixdb/asterix-app/src/main/java/org/apache/asterix/api/http/servlet/QueryWebInterfaceServlet.java M asterixdb/asterix-app/src/main/java/org/apache/asterix/api/http/servlet/RESTAPIServlet.java M asterixdb/asterix-app/src/main/java/org/apache/asterix/hyracks/bootstrap/CCApplicationEntryPoint.java A asterixdb/asterix-app/src/main/resources/queryui/css/bootstrap-theme.min.css A asterixdb/asterix-app/src/main/resources/queryui/css/bootstrap.min.css A asterixdb/asterix-app/src/main/resources/queryui/css/codemirror.css A asterixdb/asterix-app/src/main/resources/queryui/css/json-formatter.min.css A asterixdb/asterix-app/src/main/resources/queryui/css/master.css A asterixdb/asterix-app/src/main/resources/queryui/fonts/glyphicons-halflings-regular.eot A asterixdb/asterix-app/src/main/resources/queryui/fonts/glyphicons-halflings-regular.svg A asterixdb/asterix-app/src/main/resources/queryui/fonts/glyphicons-halflings-regular.ttf A asterixdb/asterix-app/src/main/resources/queryui/fonts/glyphicons-halflings-regular.woff A asterixdb/asterix-app/src/main/resources/queryui/fonts/glyphicons-halflings-regular.woff2 A asterixdb/asterix-app/src/main/resources/queryui/img/asterixlogo-collapsed.png A asterixdb/asterix-app/src/main/resources/queryui/img/finalasterixlogo.png A asterixdb/asterix-app/src/main/resources/queryui/js/angular.min.js A asterixdb/asterix-app/src/main/resources/queryui/js/aql-mode.js A asterixdb/asterix-app/src/main/resources/queryui/js/bootstrap.min.js A asterixdb/asterix-app/src/main/resources/queryui/js/codemirror.js A asterixdb/asterix-app/src/main/resources/queryui/js/javascript.js A asterixdb/asterix-app/src/main/resources/queryui/js/jquery-1.12.4.min.js A asterixdb/asterix-app/src/main/resources/queryui/js/json-formatter.min.js A asterixdb/asterix-app/src/main/resources/queryui/js/main.js A asterixdb/asterix-app/src/main/resources/queryui/js/ui-codemirror.js A asterixdb/asterix-app/src/main/resources/queryui/queryui.html M asterixdb/asterix-common/src/main/java/org/apache/asterix/common/config/AsterixExternalProperties.java M asterixdb/asterix-installer/src/main/resources/conf/asterix-configuration.xml 29 files changed, 11,827 insertions(+), 1 deletion(-) git pull ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb refs/changes/35/935/10 -- To view, visit https://asterix-gerrit.ics.uci.edu/935 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: newpatchset Gerrit-Change-Id: Id9aa6fb0a6bebaaa58f288e621dbfe76a604c689 Gerrit-PatchSet: 10 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: Kaveen Rodrigo Gerrit-Reviewer: Ian Maxon Gerrit-Reviewer: Jenkins Gerrit-Reviewer: Michael Blow Gerrit-Reviewer: Till Westmann