Repository: qpid-dispatch
Updated Branches:
  refs/heads/master 4c35796c4 -> 06c2538af


removed 3rd party libraries


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/58143c84
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/58143c84
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/58143c84

Branch: refs/heads/master
Commit: 58143c84e340eca3ea67ea97a4a74b9d6418fc2c
Parents: 4c35796
Author: Ernest Allen <[email protected]>
Authored: Thu Feb 18 12:58:40 2016 -0500
Committer: Ernest Allen <[email protected]>
Committed: Thu Feb 18 12:58:40 2016 -0500

----------------------------------------------------------------------
 console/stand-alone/index.html | 125 ++++++++++++++++++++++++++++++++++++
 1 file changed, 125 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/58143c84/console/stand-alone/index.html
----------------------------------------------------------------------
diff --git a/console/stand-alone/index.html b/console/stand-alone/index.html
new file mode 100644
index 0000000..63bf162
--- /dev/null
+++ b/console/stand-alone/index.html
@@ -0,0 +1,125 @@
+<!DOCTYPE html>
+<!--
+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.
+-->
+<html>
+
+<head>
+
+    <meta charset="utf-8"/>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+    <title>Qpid Dispatch Console</title>
+
+    <link rel="stylesheet" 
href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css";>
+    <link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/jquery.tipsy/1.0.2/jquery.tipsy.css";
 type="text/css"/>
+    <link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-grid/3.0.7/ui-grid.css"; 
type="text/css"/>
+    <link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/jquery.fancytree/2.15.0/skin-win8/ui.fancytree.css";
 type="text/css">
+
+    <link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"; 
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
 crossorigin="anonymous">
+    <link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css";
 
integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r"
 crossorigin="anonymous">
+
+    <link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css";>
+
+
+    <link rel="stylesheet" href="plugin/css/site-base.css" type="text/css"/>
+    <link rel="stylesheet" href="plugin/css/plugin.css" type="text/css"/>
+    <link rel="stylesheet" href="plugin/css/qdrTopology.css" type="text/css"/>
+    <link rel="stylesheet" 
href="https://cdn.rawgit.com/mohsen1/json-formatter/master/dist/json-formatter.min.css";
 type="text/css"/>
+
+</head>
+
+<body ng-app="QDR">
+
+<div id="core" ng-controller="QDR.Core">
+    <div id="alerts">
+        <uib-alert ng-repeat="alert in alerts" 
type="{{alert.type}}">{{alert.msg}}</uib-alert>
+    </div>
+    <div id="main-nav" class="navbar navbar-fixed-top" 
ng-controller="QDR.MainController">
+        <div class="navbar-inner main-nav-lower">
+            <div class="container">
+                <div class="pull-left">
+                    <ul class="nav">
+                        <li ng-repeat="nav in topLevelTabs track by $index"
+                            ng-class="{active : !nav.isActive()}"
+                            ng-show="nav.isValid()">
+                            <a ng-href="{{nav.href}}" title="{{nav.title}}" 
data-placement="bottom" ng-bind="nav.content">
+                            </a>
+                        </li>
+                    </ul>
+                </div>
+            </div>
+        </div>
+    </div>
+
+    <div id="main-body" >
+        <div id="main" class="container-fluid ng-cloak qdr">
+            <div>
+                <ul class="nav nav-tabs connected" 
ng-controller="QDR.NavBarController">
+                    <li ng-repeat="link in breadcrumbs" 
ng-show="isValid(link)" ng-class='{active : isActive(link.href), "pull-right" : 
isRight(link), haschart: hasChart(link)}'>
+                        <a ng-href="{{link.href}}{{hash}}" 
ng-bind-html="link.content | to_trusted"></a>
+                    </li>
+                </ul>
+                <div class="row-fluid">
+                    <div ng-view></div>
+                </div>
+            </div>
+        </div>
+    </div>
+</div>
+
+    <script src="http://d3js.org/d3.v3.min.js";></script>
+    <script src="http://d3js.org/queue.v1.min.js";></script>
+    <script src="http://d3js.org/topojson.v0.min.js";></script>
+
+    <script src="http://code.jquery.com/jquery-1.12.0.min.js";></script>
+
+    <script 
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"; 
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
 crossorigin="anonymous"></script>
+
+    <script src="https://code.angularjs.org/1.4.8/angular.js";></script>
+    <script 
src="https://code.angularjs.org/1.4.8/angular-resource.js";></script>
+    <script src="https://code.angularjs.org/1.4.8/angular-route.js";></script>
+    <script src="https://code.angularjs.org/1.4.8/angular-animate.js";></script>
+    <script 
src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/1.1.0/ui-bootstrap-tpls.min.js";></script>
+    <script 
src="https://cdn.rawgit.com/jaz303/tipsy/master/src/javascripts/jquery.tipsy.js";></script>
+    <script 
src="https://cdn.rawgit.com/angular-ui/ui-slider/master/src/slider.js";></script>
+    <script 
src="https://cdn.rawgit.com/mohsen1/json-formatter/master/dist/json-formatter.min.js";></script>
+
+    <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js";></script>
+    <script 
src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-grid/3.0.7/ui-grid.js";></script>
+
+    <script type="text/javascript" src="plugin/js/qdrPlugin.js"></script>
+    <script type="text/javascript" src="plugin/js/qdrOverview.js"></script>
+    <script type="text/javascript" src="plugin/js/navbar.js"></script>
+    <script type="text/javascript" src="plugin/js/qdrList.js"></script>
+    <script type="text/javascript" src="plugin/js/qdrCharts.js"></script>
+    <script type="text/javascript" src="plugin/js/qdrSchema.js"></script>
+    <script type="text/javascript" src="plugin/js/qdrService.js"></script>
+    <script type="text/javascript" src="plugin/js/qdrChartService.js"></script>
+    <script type="text/javascript" src="plugin/js/qdrTopology.js"></script>
+    <script type="text/javascript" src="plugin/js/qdrSettings.js"></script>
+
+    <script type="text/javascript" src="plugin/lib/rhea.js"></script>
+
+    <script 
src="https://cdnjs.cloudflare.com/ajax/libs/jquery.fancytree/2.15.0/jquery.fancytree.js";
 type="text/javascript"></script>
+
+    <script type="text/javascript">
+        
angular.element(document.getElementsByTagName('head')).append(angular.element('<base
 href="' + window.location.pathname + '" />'));
+  </script>
+</body>
+</html>
+


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to