Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ================================================================================ |
| 3 | eCOMP Portal |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property |
| 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ================================================================================ |
| 19 | --> |
| 20 | <!doctype html> |
| 21 | <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> |
| 22 | <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> |
| 23 | <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> |
| 24 | <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> |
| 25 | <head> |
| 26 | <meta charset="utf-8"> |
| 27 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 28 | <title></title> |
| 29 | <meta name="description" content=""> |
| 30 | <meta name="viewport" content="width=device-width"> |
| 31 | <!--<base href="/ecompportal/">--> |
| 32 | <!--!!!!!!!!!!!!!!!!!!!!! moved base href from here to script tag in body, please change base href based on your server --> |
| 33 | <!-- nabil - add this part to gruntfile --> |
| 34 | <link rel="stylesheet" href="bower_components_external/ionicons-2.0.1/css/ionicons.css"> |
| 35 | <link rel="stylesheet" href="bower_components_external/ionicons-2.0.1/css/ecomp-ionicons.css"> |
| 36 | <link rel="stylesheet" href="bower_components_external/b2b/css/b2b-angular/b2b-angular.css"> |
| 37 | <link rel="stylesheet" href="bower_components_external/b2b/js/b2b-angular/font_icons.css"> |
| 38 | |
| 39 | |
| 40 | |
| 41 | <!-- end --> |
| 42 | |
| 43 | <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> |
| 44 | <!-- build:css(client) app/vendor.css --> |
| 45 | <!-- bower:css --> |
| 46 | <link rel="stylesheet" href="bower_components/angular-material/angular-material.css" /> |
| 47 | <link rel="stylesheet" href="bower_components/ui-select/dist/select.css" /> |
| 48 | <link rel="stylesheet" href="bower_components/ng-dialog/css/ngDialog.css" /> |
| 49 | <link rel="stylesheet" href="bower_components/ng-dialog/css/ngDialog-theme-default.css" /> |
| 50 | <link rel="stylesheet" href="bower_components/jqTree/jqtree.css" /> |
| 51 | <link rel="stylesheet" href="bower_components/angular-gridster/dist/angular-gridster.css" /> |
| 52 | <!-- endbower --> |
| 53 | <!-- endbuild --> |
| 54 | |
| 55 | <!-- kpi dashboard related styles --> |
| 56 | <!-- kpi start --> |
| 57 | <!-- kpi end --> |
| 58 | |
| 59 | |
| 60 | <!-- build:css({.tmp,client}) app/app.css --> |
| 61 | <link rel="stylesheet" href="app/app.css"> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 62 | <!-- injector:css --> |
Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [diff] [blame] | 63 | <!-- endinjector --> |
| 64 | <!-- endbuild --> |
| 65 | |
| 66 | <style> |
| 67 | |
| 68 | html, body{ |
| 69 | height: 100%; |
| 70 | overflow:hidden; |
| 71 | } |
| 72 | |
| 73 | </style> |
| 74 | |
| 75 | </head> |
| 76 | <body ng-app="ecompApp"> |
| 77 | <script> |
| 78 | if (!String.prototype.includes) { |
| 79 | String.prototype.includes = function(search, start) { |
| 80 | 'use strict'; |
| 81 | if (typeof start !== 'number') { |
| 82 | start = 0; |
| 83 | } |
| 84 | |
| 85 | if (start + search.length > this.length) { |
| 86 | return false; |
| 87 | } else { |
| 88 | return this.indexOf(search, start) !== -1; |
| 89 | } |
| 90 | }; |
| 91 | } |
| 92 | |
| 93 | function nthIndex(str, pat, n){ |
| 94 | var L= str.length, i= -1; |
| 95 | while(n-- && i++<L){ |
| 96 | i= str.indexOf(pat, i); |
| 97 | if (i < 0) break; |
| 98 | } |
| 99 | return i; |
| 100 | } |
| 101 | |
| 102 | |
| 103 | var base = window.location.pathname.substring(0, window.location.pathname.indexOf("/",2)+1); |
| 104 | document.write("<base href='" + base + "' />"); |
| 105 | |
| 106 | |
| 107 | |
| 108 | |
| 109 | </script> |
| 110 | |
| 111 | <script type="text/javascript"> |
| 112 | |
| 113 | // onLoad='isCascadeFrame(this)' |
| 114 | if (self != top && !self.window.location.pathname.includes("unKnownError")) { |
| 115 | var e = document.body; |
| 116 | var parent = e.parentNode; |
| 117 | e.parentNode.removeChild(e); |
| 118 | //var textnode = document.createTextNode("An unknown error has occured. Please contact your system administrator"); |
| 119 | //parent.appendChild(textnode); |
| 120 | window.location = "unKnownError"; |
| 121 | } |
| 122 | |
| 123 | </script> |
| 124 | |
| 125 | <!--[if lt IE 7]> |
| 126 | <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> |
| 127 | <![endif]--> |
| 128 | |
| 129 | <!-- Add your site or application content here --> |
| 130 | <div ui-view="header"></div> |
| 131 | <div ui-view="tabbar"></div> |
| 132 | <div ng-show="ContentModel.IsVisible" class="slide"> |
| 133 | <div ui-view="content"></div> |
| 134 | <div ui-view="sidebar"></div> |
| 135 | <div ui-view="userbar" style="float:right"></div> |
| 136 | </div> |
| 137 | <div ui-view="error"></div> |
| 138 | <div ui-view="footer"></div> |
| 139 | |
| 140 | <!--[if lt IE 9]> |
| 141 | <script src="../bower_components/es5-shim/es5-shim.js"></script> |
| 142 | <script src="../bower_components/json3/lib/json3.min.js"></script> |
| 143 | <![endif]--> |
| 144 | <!-- build:js({client,node_modules}) app/vendor.js --> |
| 145 | <!-- bower:js --> |
| 146 | <script src="bower_components/jquery/dist/jquery.js"></script> |
| 147 | <script src="bower_components/angular/angular.js"></script> |
| 148 | <script src="bower_components/angular-animate/angular-animate.js"></script> |
| 149 | <script src="bower_components/angular-route/angular-route.js"></script> |
| 150 | <script src="bower_components/angular-aria/angular-aria.js"></script> |
| 151 | <script src="bower_components/angular-messages/angular-messages.js"></script> |
| 152 | <script src="bower_components/angular-material/angular-material.js"></script> |
| 153 | <script src="bower_components/angular-resource/angular-resource.js"></script> |
| 154 | <script src="bower_components/angular-cookies/angular-cookies.js"></script> |
| 155 | <script src="bower_components/angular-sanitize/angular-sanitize.js"></script> |
| 156 | <script src="bower_components/lodash/lodash.js"></script> |
| 157 | <script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script> |
| 158 | <script src="bower_components/ui-select/dist/select.js"></script> |
| 159 | <script src="bower_components/angular-touch/angular-touch.js"></script> |
| 160 | <script src="bower_components/angular-smart-table/dist/smart-table.js"></script> |
| 161 | <script src="bower_components/hammerjs/hammer.js"></script> |
| 162 | <script src="bower_components/angular-gestures/gestures.min.js"></script> |
| 163 | <script src="bower_components/angular-cache/dist/angular-cache.js"></script> |
| 164 | <script src="bower_components/ng-dialog/js/ngDialog.js"></script> |
| 165 | <script src="bower_components/jqTree/tree.jquery.js"></script> |
| 166 | <script src="bower_components/angular-uuid/uuid.min.js"></script> |
| 167 | <script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script> |
| 168 | <script src="bower_components/jquery-mousewheel/jquery.mousewheel.js"></script> |
| 169 | <script src="bower_components/jquery.newstape/dist/jquery.newstape.min.js"></script> |
| 170 | <script src="bower_components/oclazyload/dist/ocLazyLoad.js"></script> |
| 171 | <script src="bower_components/d3/index-browserify.js"></script> |
| 172 | <script src="bower_components/javascript-detect-element-resize/detect-element-resize.js"></script> |
| 173 | <script src="bower_components/angular-gridster/src/angular-gridster.js"></script> |
| 174 | <!-- endbower --> |
| 175 | <!-- endbuild --> |
| 176 | |
| 177 | <!-- nabil - add this part to gruntfile --> |
| 178 | <script src="bower_components_external/angular-gridster/angular-gridster.min.js"></script> |
| 179 | <script src="bower_components_external/bowser/bowser.js"></script> |
| 180 | |
| 181 | |
| 182 | |
| 183 | |
| 184 | <script src="bower_components_external/b2b/js/b2b-angular/b2b-library.min.js"></script> |
| 185 | <!-- end--> |
| 186 | |
| 187 | <!-- Avoid ^M (control-M, i.e., carriage-return, i.e., Windows line endings here. --> |
| 188 | |
| 189 | <!-- build:js(.tmp) app/app.js --> |
| 190 | <script src="app/app.js"></script> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 191 | <!-- injector:js --> |
| 192 | <script src="app/configurations.js"></script> |
| 193 | <script src="app/directives/auto-focus/auto-focus.directive.js"></script> |
| 194 | <script src="app/directives/b2b-leftnav-ext/b2b-leftnav-ext.directive.js"></script> |
| 195 | <script src="app/directives/file-upload/file-upload.directive.js"></script> |
| 196 | <script src="app/directives/image-upload/image-upload.directive.js"></script> |
| 197 | <script src="app/directives/left-menu/left-menu.directive.js"></script> |
| 198 | <script src="app/directives/multiple-select/multiple-select.directive.js"></script> |
| 199 | <script src="app/directives/multiple-select/multiple-select2.directive.js"></script> |
| 200 | <script src="app/directives/right-click-menu/right-click-menu.directive.js"></script> |
| 201 | <script src="app/directives/right-click/ng-right-click-directive.js"></script> |
| 202 | <script src="app/directives/right-menu/right-menu.directive.js"></script> |
| 203 | <script src="app/directives/scroll-top/scroll-top.directive.js"></script> |
| 204 | <script src="app/directives/search-users/search-users.controller.js"></script> |
| 205 | <script src="app/directives/search-users/search-users.directive.js"></script> |
| 206 | <script src="app/filters/elipsis/elipsis.filter.js"></script> |
| 207 | <script src="app/filters/trusted-url/trusted-url.filter.js"></script> |
| 208 | <script src="app/router.js"></script> |
| 209 | <script src="app/services/admins/admins.service.js"></script> |
| 210 | <script src="app/services/applications/applications.service.js"></script> |
| 211 | <script src="app/services/audit-log/audit-log.service.js"></script> |
| 212 | <script src="app/services/base64/base64.service.js"></script> |
Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [diff] [blame] | 213 | <script src="app/services/basic-auth-account/basic-auth-account.service.js"></script> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 214 | <script src="app/services/be-property-reader/be-property-reader.service.js"></script> |
| 215 | <script src="app/services/catalog/catalog.service.js"></script> |
| 216 | <script src="app/services/confirm-box/confirm-box.service.js"></script> |
| 217 | <script src="app/services/contact-us/contact-us.service.js"></script> |
| 218 | <script src="app/services/dashboard/dashboard.service.js"></script> |
| 219 | <script src="app/services/error-messages/error-messages.service.js"></script> |
| 220 | <script src="app/services/external-request-access-service/external-request-access-service.js"></script> |
| 221 | <script src="app/services/functionalMenu/functionalMenu.service.js"></script> |
| 222 | <script src="app/services/global-constants/global-constants.js"></script> |
| 223 | <script src="app/services/manifest/manifest.service.js"></script> |
| 224 | <script src="app/services/menus/menus.service.js"></script> |
| 225 | <script src="app/services/microservice/microservice.service.js"></script> |
| 226 | <script src="app/services/notification/notification.service.js"></script> |
| 227 | <script src="app/services/portal-admins/portal-admins.service.js"></script> |
Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [diff] [blame] | 228 | <script src="app/services/recommendation/recommendation.service.js"></script> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 229 | <script src="app/services/role/role.service.js"></script> |
| 230 | <script src="app/services/support/getAccess/get-access.service.js"></script> |
| 231 | <script src="app/services/support/session/session.service.js"></script> |
| 232 | <script src="app/services/userProfile/userProfile.service.js"></script> |
| 233 | <script src="app/services/userbar/userbar.update.service.js"></script> |
| 234 | <script src="app/services/users/users.service.js"></script> |
| 235 | <script src="app/services/utils/utils.service.js"></script> |
| 236 | <script src="app/services/widgets-catalog/widgets-catalog.service.js"></script> |
| 237 | <script src="app/services/widgets/widgets.service.js"></script> |
Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [diff] [blame] | 238 | <script src="app/views/account-onboarding/account-add-details/account-add-details.js"></script> |
| 239 | <script src="app/views/account-onboarding/account-onboarding.controller.js"></script> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 240 | <script src="app/views/admins/add-admin-dialogs/new-admin.controller.js"></script> |
| 241 | <script src="app/views/admins/admins.controller.js"></script> |
| 242 | <script src="app/views/applications/application-details-dialog/application-details.controller.js"></script> |
| 243 | <script src="app/views/applications/applications.controller.js"></script> |
| 244 | <script src="app/views/catalog/add-catalog-dialogs/new-catalog.controller.js"></script> |
| 245 | <script src="app/views/catalog/catalog.controller.js"></script> |
| 246 | <script src="app/views/catalog/catalogconfirmation.controller.js"></script> |
| 247 | <script src="app/views/confirmation-box/confirmation-box.controller.js"></script> |
Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [diff] [blame] | 248 | <script src="app/views/dashboard/dashboard-widget-parameters.controller.js"></script> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 249 | <script src="app/views/dashboard/dashboard-widget.controller.js"></script> |
| 250 | <script src="app/views/dashboard/dashboard.controller.js"></script> |
| 251 | <script src="app/views/dashboard/newsticker.controller.js"></script> |
| 252 | <script src="app/views/footer/footer.controller.js"></script> |
| 253 | <script src="app/views/functionalMenu/functionalMenu-dialog/menu-details.controller.js"></script> |
| 254 | <script src="app/views/functionalMenu/functionalMenu.controller.js"></script> |
| 255 | <script src="app/views/functionalMenu/jqTreeContextMenu.js"></script> |
| 256 | <script src="app/views/header/header.controller.js"></script> |
Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [diff] [blame] | 257 | <script src="app/views/header/profile-edit-dialogs/profile-edit.controller.js"></script> |
st782s | b54df0d | 2017-05-04 07:48:42 -0400 | [diff] [blame] | 258 | <script src="app/views/microservice-onboarding/microservice-add-details/microservice-add-details.js"></script> |
| 259 | <script src="app/views/microservice-onboarding/microservice-onboarding.controller.js"></script> |
| 260 | <script src="app/views/notification-history/notificationhistory.controller.js"></script> |
| 261 | <script src="app/views/portal-admin/new-portal-admin/new-portal-admin.controller.js"></script> |
| 262 | <script src="app/views/portal-admin/portal-admin-controller.js"></script> |
| 263 | <script src="app/views/role/role-controller.js"></script> |
| 264 | <script src="app/views/role/role-function-list-controller.js"></script> |
| 265 | <script src="app/views/role/role-list-controller.js"></script> |
| 266 | <script src="app/views/role/rolefunctionpopupController.js"></script> |
| 267 | <script src="app/views/role/rolepopupmodelController.js"></script> |
| 268 | <script src="app/views/search/search.controller.js"></script> |
| 269 | <script src="app/views/sidebar/sidebar.controller.js"></script> |
| 270 | <script src="app/views/support/contact-us/contact-us-manage/contact-us-manage.controller.js"></script> |
| 271 | <script src="app/views/support/contact-us/contact-us.controller.js"></script> |
| 272 | <script src="app/views/support/get-access/get-access.controller.js"></script> |
| 273 | <script src="app/views/tabs/tabs.controller.js"></script> |
| 274 | <script src="app/views/user-notifications-admin/user.notifications.Json.details.controller.js"></script> |
| 275 | <script src="app/views/user-notifications-admin/user.notifications.controller.js"></script> |
| 276 | <script src="app/views/user-notifications-admin/user.notifications.modal.controller.js"></script> |
| 277 | <script src="app/views/userbar/userbar.controller.js"></script> |
| 278 | <script src="app/views/users/new-user-dialogs/bulk-user.controller.js"></script> |
| 279 | <script src="app/views/users/new-user-dialogs/new-user.controller.js"></script> |
| 280 | <script src="app/views/users/users.controller.js"></script> |
| 281 | <script src="app/views/widget-catalog/widget-catalog.controller.js"></script> |
| 282 | <script src="app/views/widget-onboarding/widget-details-dialog/widget-details.controller.js"></script> |
| 283 | <script src="app/views/widget-onboarding/widget-onboarding.controller.js"></script> |
| 284 | <script src="app/views/widgets/widget-details-dialog/widget-details.controller.js"></script> |
| 285 | <script src="app/views/widgets/widgets.controller.js"></script> |
Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [diff] [blame] | 286 | <!-- endinjector --> |
| 287 | <!-- endbuild --> |
| 288 | |
| 289 | |
| 290 | </body> |
| 291 | </html> |