Repository: incubator-blur Updated Branches: refs/heads/apache-blur-0.2 af000ffea -> 5fa8c6480
Fixed the license headers Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/9f225a16 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/9f225a16 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/9f225a16 Branch: refs/heads/apache-blur-0.2 Commit: 9f225a16d32ee86396333dac6f00ff2ca0911227 Parents: ef5f913 Author: Chris Rohr <[email protected]> Authored: Thu Mar 27 07:50:42 2014 -0400 Committer: Chris Rohr <[email protected]> Committed: Thu Mar 27 07:50:42 2014 -0400 ---------------------------------------------------------------------- contrib/blur-console/ui/app/index.html | 22 +++++--- .../ui/app/scripts/blurconsole.b_utils.js | 37 +++++++------ .../ui/app/scripts/blurconsole.dashboard.js | 21 +++++--- .../ui/app/scripts/blurconsole.data.js | 21 +++++--- .../ui/app/scripts/blurconsole.fake.js | 24 +++++---- .../blur-console/ui/app/scripts/blurconsole.js | 21 +++++--- .../ui/app/scripts/blurconsole.model.js | 21 +++++--- .../ui/app/scripts/blurconsole.queries.js | 57 ++++++++++++++++++++ .../ui/app/scripts/blurconsole.schema.js | 22 ++++---- .../ui/app/scripts/blurconsole.shell.js | 21 +++++--- .../ui/app/scripts/blurconsole.tables.js | 21 +++++--- .../ui/app/scripts/blurconsole.utils.js | 21 +++++--- .../ui/app/styles/blurconsole.dashboard.scss | 21 +++++--- .../ui/app/styles/blurconsole.schema.scss | 18 +++++++ .../blur-console/ui/app/styles/blurconsole.scss | 21 +++++--- .../ui/app/views/dashboard.tpl.html | 21 +++++--- .../blur-console/ui/app/views/queries.tpl.html | 20 +++++++ .../blur-console/ui/app/views/tables.tpl.html | 21 +++++--- contrib/blur-console/ui/test/index.html | 21 +++++--- contrib/blur-console/ui/test/spec/test.js | 21 +++++--- 20 files changed, 327 insertions(+), 146 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/index.html ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/index.html b/contrib/blur-console/ui/app/index.html index c9fc093..b0f8471 100644 --- a/contrib/blur-console/ui/app/index.html +++ b/contrib/blur-console/ui/app/index.html @@ -1,16 +1,21 @@ <!-- -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. --> <!doctype html> @@ -99,6 +104,7 @@ limitations under the License. <script src="scripts/blurconsole.shell.js"></script> <script src="scripts/blurconsole.dashboard.js"></script> <script src="scripts/blurconsole.tables.js"></script> + <script src="scripts/blurconsole.queries.js"></script> <script src="scripts/blurconsole.schema.js"></script> <script src="scripts/blurconsole.data.js"></script> <script src="scripts/blurconsole.fake.js"></script> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/scripts/blurconsole.b_utils.js ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/scripts/blurconsole.b_utils.js b/contrib/blur-console/ui/app/scripts/blurconsole.b_utils.js index ef65821..fc8d6ea 100644 --- a/contrib/blur-console/ui/app/scripts/blurconsole.b_utils.js +++ b/contrib/blur-console/ui/app/scripts/blurconsole.b_utils.js @@ -1,16 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. */ /*global blurconsole:false */ blurconsole.browserUtils = (function(){ @@ -56,14 +61,14 @@ blurconsole.browserUtils = (function(){ var mSize, markup, mButtons = buttons; switch(size) { - case 'large': - mSize = 'modal-lg'; - break; - case 'medium': - mSize = 'modal-md'; - break; - default: - mSize = 'modal-sm'; + case 'large': + mSize = 'modal-lg'; + break; + case 'medium': + mSize = 'modal-md'; + break; + default: + mSize = 'modal-sm'; } markup = '<div class="modal fade" id="' + id + '">'; http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/scripts/blurconsole.dashboard.js ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/scripts/blurconsole.dashboard.js b/contrib/blur-console/ui/app/scripts/blurconsole.dashboard.js index fe8c08d..cff7ced 100644 --- a/contrib/blur-console/ui/app/scripts/blurconsole.dashboard.js +++ b/contrib/blur-console/ui/app/scripts/blurconsole.dashboard.js @@ -1,16 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. */ /* http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/scripts/blurconsole.data.js ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/scripts/blurconsole.data.js b/contrib/blur-console/ui/app/scripts/blurconsole.data.js index 17ba4bb..441fb43 100644 --- a/contrib/blur-console/ui/app/scripts/blurconsole.data.js +++ b/contrib/blur-console/ui/app/scripts/blurconsole.data.js @@ -1,16 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. */ /*global blurconsole:false */ blurconsole.data = (function() { http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/scripts/blurconsole.fake.js ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/scripts/blurconsole.fake.js b/contrib/blur-console/ui/app/scripts/blurconsole.fake.js index 2719004..81708d5 100644 --- a/contrib/blur-console/ui/app/scripts/blurconsole.fake.js +++ b/contrib/blur-console/ui/app/scripts/blurconsole.fake.js @@ -1,16 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. */ /*global blurconsole:false */ blurconsole.fake = (function() { @@ -66,7 +71,8 @@ blurconsole.fake = (function() { getQueries = function() { console.log('getting fake queries'); return { - slowQueries : randomNumber(100) % 10 === 0 + slowQueries : randomNumber(100) % 10 === 0, + }; }; http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/scripts/blurconsole.js ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/scripts/blurconsole.js b/contrib/blur-console/ui/app/scripts/blurconsole.js index 3844fd9..ccbedec 100644 --- a/contrib/blur-console/ui/app/scripts/blurconsole.js +++ b/contrib/blur-console/ui/app/scripts/blurconsole.js @@ -1,16 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. */ /* http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/scripts/blurconsole.model.js ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/scripts/blurconsole.model.js b/contrib/blur-console/ui/app/scripts/blurconsole.model.js index e36266e..b6917da 100644 --- a/contrib/blur-console/ui/app/scripts/blurconsole.model.js +++ b/contrib/blur-console/ui/app/scripts/blurconsole.model.js @@ -1,16 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. */ /*global blurconsole:false */ blurconsole.model = (function() { http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/scripts/blurconsole.queries.js ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/scripts/blurconsole.queries.js b/contrib/blur-console/ui/app/scripts/blurconsole.queries.js new file mode 100644 index 0000000..eba3edf --- /dev/null +++ b/contrib/blur-console/ui/app/scripts/blurconsole.queries.js @@ -0,0 +1,57 @@ +/* +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +*/ +/*global blurconsole:false */ +blurconsole.queries = (function () { + 'use strict'; + var configMap = { + view : 'views/queries.tpl.html' + }, + stateMap = { $container : null }, + jqueryMap = {}, + setJqueryMap, initModule, unloadModule, updateQueryList, waitForData, registerPageEvents, unregisterPageEvents; + + setJqueryMap = function() { + var $container = stateMap.$container; + jqueryMap = { + $container : $container, + $queryInfoHolder : $('#queryInfoHolder') + }; + }; + + initModule = function($container) { + $container.load(configMap.view, function() { + stateMap.$container = $container; + setJqueryMap(); + $.gevent.subscribe(jqueryMap.$container, 'queries-updated', updateQueryList); + //waitForData(); + //registerPageEvents(); + }); + return true; + }; + + unloadModule = function() { + $.gevent.unsubscribe(jqueryMap.$container, 'queries-updated'); + //unregisterPageEvents(); + }; + + return { + initModule : initModule, + unloadModule : unloadModule + }; +}()); \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/scripts/blurconsole.schema.js ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/scripts/blurconsole.schema.js b/contrib/blur-console/ui/app/scripts/blurconsole.schema.js index e270cca..8a0dfe5 100644 --- a/contrib/blur-console/ui/app/scripts/blurconsole.schema.js +++ b/contrib/blur-console/ui/app/scripts/blurconsole.schema.js @@ -1,17 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. /*jshint laxbreak: true */ /*global blurconsole:false */ blurconsole.schema = (function () { http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/scripts/blurconsole.shell.js ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/scripts/blurconsole.shell.js b/contrib/blur-console/ui/app/scripts/blurconsole.shell.js index 29cf639..055018e 100644 --- a/contrib/blur-console/ui/app/scripts/blurconsole.shell.js +++ b/contrib/blur-console/ui/app/scripts/blurconsole.shell.js @@ -1,16 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. */ /** http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/scripts/blurconsole.tables.js ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/scripts/blurconsole.tables.js b/contrib/blur-console/ui/app/scripts/blurconsole.tables.js index 7d56145..2ea8323 100644 --- a/contrib/blur-console/ui/app/scripts/blurconsole.tables.js +++ b/contrib/blur-console/ui/app/scripts/blurconsole.tables.js @@ -1,16 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. */ /*global blurconsole:false */ http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/scripts/blurconsole.utils.js ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/scripts/blurconsole.utils.js b/contrib/blur-console/ui/app/scripts/blurconsole.utils.js index 726c303..0154e65 100644 --- a/contrib/blur-console/ui/app/scripts/blurconsole.utils.js +++ b/contrib/blur-console/ui/app/scripts/blurconsole.utils.js @@ -1,16 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. */ /*global blurconsole:false */ blurconsole.utils = (function(){ http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/styles/blurconsole.dashboard.scss ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/styles/blurconsole.dashboard.scss b/contrib/blur-console/ui/app/styles/blurconsole.dashboard.scss index d038b63..1b583ec 100644 --- a/contrib/blur-console/ui/app/styles/blurconsole.dashboard.scss +++ b/contrib/blur-console/ui/app/styles/blurconsole.dashboard.scss @@ -1,16 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. */ .simple-chart { min-height : 200px; http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/styles/blurconsole.schema.scss ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/styles/blurconsole.schema.scss b/contrib/blur-console/ui/app/styles/blurconsole.schema.scss index fd58790..5036569 100644 --- a/contrib/blur-console/ui/app/styles/blurconsole.schema.scss +++ b/contrib/blur-console/ui/app/styles/blurconsole.schema.scss @@ -1,3 +1,21 @@ +/* +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +*/ .modal .schemaColumnDef { display: none; &.in { http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/styles/blurconsole.scss ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/styles/blurconsole.scss b/contrib/blur-console/ui/app/styles/blurconsole.scss index 350f664..3f387a2 100644 --- a/contrib/blur-console/ui/app/styles/blurconsole.scss +++ b/contrib/blur-console/ui/app/styles/blurconsole.scss @@ -1,16 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. */ $icon-font-path: "/bower_components/twbs-bootstrap-sass/vendor/assets/fonts/bootstrap/"; http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/views/dashboard.tpl.html ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/views/dashboard.tpl.html b/contrib/blur-console/ui/app/views/dashboard.tpl.html index cce38e6..c4f8e57 100644 --- a/contrib/blur-console/ui/app/views/dashboard.tpl.html +++ b/contrib/blur-console/ui/app/views/dashboard.tpl.html @@ -1,16 +1,21 @@ <!-- -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. --> <div id="slow-query-warnings" class="alert alert-danger hidden"> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/views/queries.tpl.html ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/views/queries.tpl.html b/contrib/blur-console/ui/app/views/queries.tpl.html new file mode 100644 index 0000000..10b525c --- /dev/null +++ b/contrib/blur-console/ui/app/views/queries.tpl.html @@ -0,0 +1,20 @@ +<!-- + +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. + --> +<div id="queryInfoHolder"><img src="images/ajax-loader.gif"></div> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/app/views/tables.tpl.html ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/app/views/tables.tpl.html b/contrib/blur-console/ui/app/views/tables.tpl.html index 753c72b..b0c522f 100644 --- a/contrib/blur-console/ui/app/views/tables.tpl.html +++ b/contrib/blur-console/ui/app/views/tables.tpl.html @@ -1,15 +1,20 @@ <!-- -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. --> <div id="tableInfoHolder"><img src="images/ajax-loader.gif"></div> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/test/index.html ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/test/index.html b/contrib/blur-console/ui/test/index.html index 8d1385e..7a20c73 100644 --- a/contrib/blur-console/ui/test/index.html +++ b/contrib/blur-console/ui/test/index.html @@ -1,16 +1,21 @@ <!-- -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. --> <!doctype html> <html> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9f225a16/contrib/blur-console/ui/test/spec/test.js ---------------------------------------------------------------------- diff --git a/contrib/blur-console/ui/test/spec/test.js b/contrib/blur-console/ui/test/spec/test.js index 6a8dcd9..9ac8df8 100644 --- a/contrib/blur-console/ui/test/spec/test.js +++ b/contrib/blur-console/ui/test/spec/test.js @@ -1,16 +1,21 @@ /* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. */ /* global describe, it */
