mno-enterprise-frontend 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +1 -0
- data/Rakefile +12 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/mno_enterprise/impac/close-widget-pink.png +0 -0
- data/app/assets/images/mno_enterprise/impac/close-widget.png +0 -0
- data/app/assets/images/mno_enterprise/loader-32x32-bg-inverse.gif +0 -0
- data/app/assets/images/mno_enterprise/loader-32x32-bg-main.gif +0 -0
- data/app/assets/images/mno_enterprise/maestrano/logo-whitebg.png +0 -0
- data/app/assets/javascripts/mno_enterprise/angular/app.js.coffee.erb +173 -0
- data/app/assets/javascripts/mno_enterprise/angular/controllers/maestrano-controllers.js.coffee +4 -0
- data/app/assets/javascripts/mno_enterprise/angular/controllers/modals/modals-ctrl.js.coffee +62 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-account.js.coffee +157 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-app-deletion-request.js.coffee +62 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-apps-list.js.coffee +127 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-components.js.coffee +25 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-marketplace-app.js.coffee +77 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-marketplace.js.coffee +51 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-menu.js.coffee +174 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/arrears.js.coffee +70 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/billing.js.coffee +48 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/credit-card.js.coffee +142 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/index.js.coffee +61 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/invoices.js.coffee +42 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/members.js.coffee +280 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/settings.js.coffee +91 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/team-list.js.coffee +179 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/teams.js.coffee +268 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/file-model.js.coffee +33 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/maestrano-components.js.coffee +22 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-autostop-app.js.coffee +123 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee +18 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-currency-widget.js.coffee +43 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-current-currency.js.coffee +22 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-editable.js.coffee +68 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-flash-msg.js.coffee +40 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-helptext.js.coffee +38 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-loading-lounge.js.coffee +184 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-match.js.coffee +14 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-message-modal.js.coffee +56 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-notification-widget.js.coffee +192 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-partner-code-popup.js.coffee +74 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-partner-contact.js.coffee +59 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-password-strength.js.coffee +154 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-password.js.coffee +40 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-price-converter.js.coffee +49 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-scroll-to.js.coffee +14 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-typeahead.js.coffee +89 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/user-setup/components.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/user-setup/index.js.coffee +256 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-app-by-category.js.coffee +5 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-currency.js.coffee +30 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-filters.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-replace-underscore-with-space.js.coffee +4 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-titleize.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-truncate.js.coffee +24 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-app-instance.js.coffee +15 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-apps-document.js.coffee +83 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-user.js.coffee +27 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/organization-svc.js.coffee +318 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/team-svc.js.coffee +180 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/tickets-svc.js.coffee +109 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/impac-config.svc.js.coffee +35 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-apps-list-helper.js.coffee +337 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-assets.js.coffee.erb +21 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-current-currency.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-current-user-svc.js.coffee +99 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-exchange-rates.js.coffee +102 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-message-svc.js.coffee +71 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-miscellaneous.js.coffee.erb +46 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-modal.js.coffee +67 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-msg-bus.js.coffee +50 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-services.js.coffee +21 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-shopping-cart.js.coffee +361 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-utilities.js.coffee +61 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/marketplace-svc.js.coffee +59 -0
- data/app/assets/javascripts/mno_enterprise/application.js +17 -0
- data/app/assets/javascripts/mno_enterprise/application_lib.js +14 -0
- data/app/assets/javascripts/mno_enterprise/lib/angular-really-click.js +17 -0
- data/app/assets/javascripts/mno_enterprise/lib/sortable.js +315 -0
- data/app/assets/javascripts/mno_enterprise/lib/ui-bootstrap-tpls-0.13.4.js +5836 -0
- data/app/assets/javascripts/mno_enterprise/lib/xeditable.js +1588 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap.js +12 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/affix.js +162 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/alert.js +94 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/button.js +116 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/carousel.js +237 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/collapse.js +211 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/dropdown.js +161 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/modal.js +324 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/popover.js +113 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/scrollspy.js +175 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/tab.js +153 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/tooltip.js +472 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/transition.js +59 -0
- data/app/assets/javascripts/ng-performance/ngPerformance.html +109 -0
- data/app/assets/javascripts/ng-performance/ngPerformance.js +211 -0
- data/app/assets/stylesheets/mno_enterprise/application.css +13 -0
- data/app/assets/stylesheets/mno_enterprise/custom/accordion.less +90 -0
- data/app/assets/stylesheets/mno_enterprise/custom/alert.less +30 -0
- data/app/assets/stylesheets/mno_enterprise/custom/angular-animate.less +42 -0
- data/app/assets/stylesheets/mno_enterprise/custom/angular-material.less +56 -0
- data/app/assets/stylesheets/mno_enterprise/custom/bootstrap-on-juice.less +22 -0
- data/app/assets/stylesheets/mno_enterprise/custom/button.less +84 -0
- data/app/assets/stylesheets/mno_enterprise/custom/footer.less +44 -0
- data/app/assets/stylesheets/mno_enterprise/custom/form.less +191 -0
- data/app/assets/stylesheets/mno_enterprise/custom/header.less +281 -0
- data/app/assets/stylesheets/mno_enterprise/custom/impac-variables-override.less +65 -0
- data/app/assets/stylesheets/mno_enterprise/custom/modal.less +183 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utilities.less +729 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/app-presentation.less +77 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/banners.less +145 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/carousel.less +68 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/helptext.less +40 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/miscellaneous.less +134 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/progress-bar.less +55 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/step.less +101 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/tabset.less +87 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/testimonial.less +118 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/text.less +23 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/apps.less +243 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/myspace.less +477 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/pages/confirmation_lounge.less +31 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/pages/home.less +57 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/pages/oauth-config-page.less +6 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/registration.less +84 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/star.less +18 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/bootstrap-wizard.less +63 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-marketplace.less +187 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-organization.less +149 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-teams.less +119 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/support.less +42 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/tickets.less +80 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/mno-editable.less +60 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/notification-widget.less +49 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/password-strength.less +28 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/shopping-cart.less +333 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/star-wizard.less +49 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/user-setup.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/custom/xeditable.less +40 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome-regular.less +13 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome-sprockets.less +13 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome.less +16 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/FontAwesome.otf +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.svg +640 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.woff +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/animated.less +34 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/bordered-pulled.less +25 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/core.less +12 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/extras.less +2 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/fixed-width.less +6 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/icons.less +677 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/larger.less +13 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/list.less +19 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/mixins.less +26 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/rotated-flipped.less +20 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/stacked.less +20 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/variables.less +687 -0
- data/app/assets/stylesheets/mno_enterprise/main.less +132 -0
- data/app/assets/stylesheets/mno_enterprise/mixins.less +75 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/alerts.less +73 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/badges.less +65 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/bootstrap.less +50 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/breadcrumbs.less +26 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/button-groups.less +243 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/buttons.less +160 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/carousel.less +269 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/close.less +34 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/code.less +69 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/component-animations.less +34 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/dropdowns.less +214 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/forms.less +566 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/glyphicons.less +301 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/grid.less +84 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/input-groups.less +166 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/jumbotron.less +50 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/labels.less +64 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/list-group.less +124 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/media.less +61 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins.less +39 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/alerts.less +14 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/background-variant.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/border-radius.less +18 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less +52 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/center-block.less +7 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/clearfix.less +22 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/forms.less +85 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/gradients.less +59 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/grid-framework.less +91 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/grid.less +122 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/hide-text.less +21 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/image.less +33 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/labels.less +12 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/list-group.less +29 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/nav-divider.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/nav-vertical-align.less +9 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/opacity.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/pagination.less +23 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/panels.less +24 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/progress-bar.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/reset-filter.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/resize.less +6 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/responsive-visibility.less +15 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/size.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/tab-focus.less +9 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/table-row.less +28 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/text-emphasis.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/text-overflow.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/vendor-prefixes.less +227 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/modals.less +148 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/navbar.less +661 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/navs.less +244 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/normalize.less +427 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/pager.less +54 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/pagination.less +88 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/panels.less +265 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/popovers.less +135 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/print.less +107 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/progress-bars.less +87 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/responsive-embed.less +35 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/responsive-utilities.less +194 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/scaffolding.less +150 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/tables.less +234 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/theme.less +273 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/thumbnails.less +36 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/tooltip.less +103 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/type.less +302 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/utilities.less +56 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/variables.less +857 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/wells.less +29 -0
- data/app/assets/stylesheets/mno_enterprise/variables.less +226 -0
- data/app/assets/templates/mno_enterprise/dashboard/account.html +131 -0
- data/app/assets/templates/mno_enterprise/dashboard/app_deletion.html +36 -0
- data/app/assets/templates/mno_enterprise/dashboard/apps_list.html +103 -0
- data/app/assets/templates/mno_enterprise/dashboard/horizontal_menu.html +85 -0
- data/app/assets/templates/mno_enterprise/dashboard/marketplace/index.html +60 -0
- data/app/assets/templates/mno_enterprise/dashboard/marketplace/show.html +133 -0
- data/app/assets/templates/mno_enterprise/dashboard/menu.html +161 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/arrears.html +37 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/billing.html +37 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/credit-card.html +156 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/index.full.html +181 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/index.html +173 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/invoices.html +27 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/members.html +288 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/settings.html +55 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/index.html +175 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/member-add-modal.html +60 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/member-removal-modal.html +35 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/team-add-modal.html +35 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/team-delete-modal.html +35 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/team-list.html +107 -0
- data/app/assets/templates/mno_enterprise/default_template.html +20 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/autostop_app.html +42 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/currency_widget.html +1 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/editable.html +28 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/loading_lounge.html +63 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/modal-messages/congratulations.html +8 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/modal-messages/default.html +1 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/modal-messages/information.html +8 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/notification-widget.html +31 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/password.html +55 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/star_wizard.html +254 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/upload_spreadsheet.html +191 -0
- data/app/assets/templates/mno_enterprise/modals/new-organization-reseller-req.html +35 -0
- data/app/assets/templates/mno_enterprise/modals/new-organization.html +35 -0
- data/app/assets/templates/mno_enterprise/user-setup/index.html +312 -0
- data/app/controllers/mno_enterprise/invoices_controller.rb +22 -0
- data/app/controllers/mno_enterprise/pages_controller.rb +9 -0
- data/app/controllers/mno_enterprise/user_setup_controller.rb +11 -0
- data/app/views/layouts/mno_enterprise/_application_js.html.haml +17 -0
- data/app/views/layouts/mno_enterprise/_common_cdn_lib_js.html.haml +19 -0
- data/app/views/layouts/mno_enterprise/_footer_files.html.haml +5 -0
- data/app/views/layouts/mno_enterprise/_header_files.html.haml +31 -0
- data/app/views/layouts/mno_enterprise/_impersonate_header.html.haml +7 -0
- data/app/views/layouts/mno_enterprise/_public_page_header.html.haml +2 -0
- data/app/views/layouts/mno_enterprise/application.html.haml +18 -0
- data/app/views/layouts/mno_enterprise/application_dashboard.html.haml +22 -0
- data/app/views/layouts/mno_enterprise/third_party/_google_tag_container.html.haml +10 -0
- data/app/views/mno_enterprise/pages/app_access_unauthorized.html.haml +19 -0
- data/app/views/mno_enterprise/pages/app_logout.html.haml +18 -0
- data/app/views/mno_enterprise/pages/billing_details_required.html.haml +19 -0
- data/app/views/mno_enterprise/pages/loading.html.haml +3 -0
- data/app/views/mno_enterprise/pages/myspace.html.haml +6 -0
- data/app/views/mno_enterprise/provision/_provision_apps.html.haml +43 -0
- data/app/views/mno_enterprise/provision/_select_organization.html.haml +17 -0
- data/app/views/mno_enterprise/provision/new.html.haml +4 -0
- data/app/views/mno_enterprise/user_setup/index.html.haml +2 -0
- data/config/initializers/ng-annotate.rb +3 -0
- data/config/initializers/ng-performance.rb +3 -0
- data/config/routes.rb +19 -0
- data/lib/assets/javascripts/impac-angular.js +8719 -0
- data/lib/assets/stylesheets/impac-angular.less +2352 -0
- data/lib/mno-enterprise-frontend.rb +1 -0
- data/lib/mno_enterprise/frontend.rb +13 -0
- data/lib/mno_enterprise/frontend/assets_util.rb +47 -0
- data/lib/mno_enterprise/frontend/concerns/README.md +6 -0
- data/lib/mno_enterprise/frontend/concerns/controllers/pages_controller.rb +25 -0
- data/lib/mno_enterprise/frontend/engine.rb +13 -0
- data/spec/controllers/mno_enterprise/auth/confirmations_controller_spec.rb +84 -0
- data/spec/controllers/mno_enterprise/invoices_controller_spec.rb +34 -0
- data/spec/controllers/mno_enterprise/pages_controller_spec.rb +42 -0
- data/spec/controllers/mno_enterprise/user_setup_controller_spec.rb +33 -0
- data/spec/controllers/mno_enterprise/webhook/o_auth_controller_spec.rb +76 -0
- data/spec/rails_helper.rb +92 -0
- data/spec/routing/mno_enterprise/invoices_controller_routing_spec.rb +11 -0
- data/spec/routing/mno_enterprise/pages_controller_routing_spec.rb +18 -0
- data/spec/routing/mno_enterprise/user_setup_controller_routing_spec.rb +11 -0
- data/spec/spec_helper.rb +78 -0
- metadata +464 -0
@@ -0,0 +1,29 @@
|
|
1
|
+
//
|
2
|
+
// Wells
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Base class
|
7
|
+
.well {
|
8
|
+
min-height: 20px;
|
9
|
+
padding: 19px;
|
10
|
+
margin-bottom: 20px;
|
11
|
+
background-color: @well-bg;
|
12
|
+
border: 1px solid @well-border;
|
13
|
+
border-radius: @border-radius-base;
|
14
|
+
.box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
|
15
|
+
blockquote {
|
16
|
+
border-color: #ddd;
|
17
|
+
border-color: rgba(0,0,0,.15);
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
// Sizes
|
22
|
+
.well-lg {
|
23
|
+
padding: 24px;
|
24
|
+
border-radius: @border-radius-large;
|
25
|
+
}
|
26
|
+
.well-sm {
|
27
|
+
padding: 9px;
|
28
|
+
border-radius: @border-radius-small;
|
29
|
+
}
|
@@ -0,0 +1,226 @@
|
|
1
|
+
// Use this file to override Twitter Bootstrap variables or define own variables.
|
2
|
+
/*-----------------------------------------------------------------------*/
|
3
|
+
/*-----------------------------------------------------------------------*/
|
4
|
+
/*-----------------------------------------------------------------------*/
|
5
|
+
/* Design variables */
|
6
|
+
/*-----------------------------------------------------------------------*/
|
7
|
+
/*-----------------------------------------------------------------------*/
|
8
|
+
/*-----------------------------------------------------------------------*/
|
9
|
+
|
10
|
+
/*-----------------------------------------------------------------------*/
|
11
|
+
/* Fonts & Text */
|
12
|
+
/*-----------------------------------------------------------------------*/
|
13
|
+
@font-family-sans-serif: Arial, "Helvetica Neue", Helvetica, sans-serif;
|
14
|
+
@font-family-base: @font-family-sans-serif;
|
15
|
+
@small: 11px;
|
16
|
+
@normal: 13px;
|
17
|
+
|
18
|
+
/*-----------------------------------------------------------------------*/
|
19
|
+
/* Login Page */
|
20
|
+
/*-----------------------------------------------------------------------*/
|
21
|
+
@login-bg-color: @bg-main-color;
|
22
|
+
@login-box-grid-position: { margin-top: 80px; .make-sm-column(4); .make-sm-column-offset(4); };
|
23
|
+
|
24
|
+
@login-box-title-color: @decorator-main-color;
|
25
|
+
@login-box-title: { text-transform: uppercase; };
|
26
|
+
@login-box-title-display-box-arrow: false;
|
27
|
+
|
28
|
+
@login-box-bg-color: @bg-inverse-color;
|
29
|
+
@login-box-padding: 20px;
|
30
|
+
@login-box-brand-logo-img: "mno_enterprise/main-logo.png";
|
31
|
+
@login-box-brand-logo: { min-height: 61px; max-width: 160px; max-height: 130px; margin: 17px auto 5px auto; };
|
32
|
+
@login-box-btn-login: { width: 100%; };
|
33
|
+
|
34
|
+
/*-----------------------------------------------------------------------*/
|
35
|
+
/* Dashboard Layout */
|
36
|
+
/*-----------------------------------------------------------------------*/
|
37
|
+
@dashboard-bg-color: @bg-main-color;
|
38
|
+
|
39
|
+
@dashboard-section-title-color: @text-strong-color;
|
40
|
+
@dashboard-section-title-alignment: center;
|
41
|
+
@dashboard-section-title-display-subline: false;
|
42
|
+
|
43
|
+
// Side navbar menu
|
44
|
+
//--------------------------------------
|
45
|
+
@dashboard-side-menu-padding: 30px 0px 0px 14px;
|
46
|
+
@dashboard-side-menu-bg-color: @bg-inverse-color;
|
47
|
+
@dashboard-side-menu-horizontal: { min-width:550px; };
|
48
|
+
|
49
|
+
@dashboard-side-menu-brand-logo-img: "mno_enterprise/main-logo.png";
|
50
|
+
@dashboard-side-menu-brand-logo: { background-size: 204px; width: 51px; margin-left: 5px; };
|
51
|
+
@dashboard-side-menu-brand-logo-expanded: { width: 201px; background-size: 100%; };
|
52
|
+
|
53
|
+
@dashboard-side-menu-link-color: @text-inverse-color;
|
54
|
+
@dashboard-side-menu-link-bg-color: @dashboard-side-menu-bg-color;
|
55
|
+
|
56
|
+
@dashboard-side-menu-link-hover-color: @dashboard-side-menu-bg-color;
|
57
|
+
@dashboard-side-menu-link-hover-bg-color: lighten(@bg-main-color,15%);
|
58
|
+
|
59
|
+
@dashboard-side-menu-link-active-color: @dashboard-side-menu-bg-color;
|
60
|
+
@dashboard-side-menu-link-active-bg-color: @bg-main-color;
|
61
|
+
|
62
|
+
@_default_style: { .fa-2x; margin-top: 6px; margin-left: 2px; color: @dashboard-side-menu-link-color; };
|
63
|
+
@_default_style_active: { @_default_style(); color: @dashboard-side-menu-link-active-color; };
|
64
|
+
@dashboard-side-menu-btn-dashboard: { .icon-fa(th); @_default_style(); };
|
65
|
+
@dashboard-side-menu-btn-dashboard-active: { .icon-fa(th); @_default_style_active(); };
|
66
|
+
@dashboard-side-menu-btn-impac: { .icon-fa(pie-chart); @_default_style(); };
|
67
|
+
@dashboard-side-menu-btn-impac-active: { .icon-fa(pie-chart); @_default_style_active(); };
|
68
|
+
@dashboard-side-menu-btn-account: { .icon-fa(user); @_default_style(); margin-left: 5px; };
|
69
|
+
@dashboard-side-menu-btn-account-active: { .icon-fa(user); @_default_style_active(); margin-left: 5px; };
|
70
|
+
@dashboard-side-menu-btn-company: { .icon-fa(briefcase); @_default_style(); };
|
71
|
+
@dashboard-side-menu-btn-company-active: { .icon-fa(briefcase); @_default_style_active(); };
|
72
|
+
@dashboard-side-menu-btn-marketplace: { .icon-fa(plus-square-o); @_default_style(); margin-left: 5px; };
|
73
|
+
@dashboard-side-menu-btn-marketplace-active: { .icon-fa(plus-square-o); @_default_style_active(); margin-left: 5px; };
|
74
|
+
@dashboard-side-menu-btn-logout: { .icon-fa(lock); @_default_style(); margin-left: 6px; };
|
75
|
+
@dashboard-side-menu-btn-logout-active: { .icon-fa(lock); @_default_style_active(); margin-left: 6px; };
|
76
|
+
|
77
|
+
// Company select box (top right)
|
78
|
+
//--------------------------------------
|
79
|
+
@dashboard-cpy-select-bg-color: @bg-inverse-intense-color;
|
80
|
+
@dashboard-cpy-select-border-radius: 0px;
|
81
|
+
@dashboard-cpy-select-padding: 15px 25px;
|
82
|
+
|
83
|
+
@dashboard-cpy-select-header-text-color: @bg-inverse-color;
|
84
|
+
@dashboard-cpy-select-header-text-size: 13px;
|
85
|
+
|
86
|
+
@dashboard-cpy-select-link-color: @dashboard-cpy-select-header-text-color;
|
87
|
+
|
88
|
+
@dashboard-cpy-select-link-hover-color: @dashboard-cpy-select-link-color;
|
89
|
+
@dashboard-cpy-select-link-hover-bg-color: lighten(@dashboard-cpy-select-bg-color,10%);
|
90
|
+
|
91
|
+
@dashboard-cpy-select-link-create-color: @decorator-alt-color;
|
92
|
+
@dashboard-cpy-select-link-admin-color: @elem-positive-color;
|
93
|
+
|
94
|
+
@dashboard-cpy-select-switch-btn-color: @dashboard-cpy-select-header-text-color;
|
95
|
+
@dashboard-cpy-select-switch-btn-bg-color: @dashboard-cpy-select-bg-color;
|
96
|
+
@dashboard-cpy-select-switch-btn-icon: { .icon-fa(caret-down); }; //pass a ruleset
|
97
|
+
@dashboard-cpy-select-switch-btn-icon-active: { .icon-fa(caret-up); }; //pass a ruleset
|
98
|
+
|
99
|
+
/*-----------------------------------------------------------------------*/
|
100
|
+
/* Dashboard > Apps Section */
|
101
|
+
/*-----------------------------------------------------------------------*/
|
102
|
+
@dashboard-apps-tile-bg-color: @bg-inverse-color;
|
103
|
+
@dashboard-apps-tile-text-color: @text-inverse-color;
|
104
|
+
|
105
|
+
@dashboard-apps-tile-logo-border-size: 0px;
|
106
|
+
@dashboard-apps-tile-logo-border-color: @decorator-main-color;
|
107
|
+
|
108
|
+
@dashboard-apps-tile-settings-color: @dashboard-apps-tile-text-color;
|
109
|
+
@dashboard-apps-tile-settings-bg-color: @dashboard-apps-tile-bg-color;
|
110
|
+
|
111
|
+
@dashboard-apps-tile-settings-hover-color: @dashboard-apps-tile-bg-color;
|
112
|
+
@dashboard-apps-tile-settings-hover-bg-color: @dashboard-apps-tile-text-color;
|
113
|
+
|
114
|
+
@dashboard-apps-tile-add-color: @dashboard-apps-tile-text-color;
|
115
|
+
@dashboard-apps-tile-add-bg-color: @dashboard-apps-tile-text-color;
|
116
|
+
|
117
|
+
/*-----------------------------------------------------------------------*/
|
118
|
+
/* Dashboard > Company Section */
|
119
|
+
/*-----------------------------------------------------------------------*/
|
120
|
+
// Tab Heading
|
121
|
+
//--------------------------------------
|
122
|
+
@dashboard-cpy-tabs-bg-color: @decorator-main-color;
|
123
|
+
@dashboard-cpy-tabs-text-color: @text-inverse-color;
|
124
|
+
@dashboard-cpy-tabs-border-radius: 2px;
|
125
|
+
|
126
|
+
@dashboard-cpy-tabs-subline-size: 0px;
|
127
|
+
@dashboard-cpy-tabs-subline-color: transparent;
|
128
|
+
|
129
|
+
@dashboard-cpy-tabs-active-text-color: @decorator-alt-color;
|
130
|
+
@dashboard-cpy-tabs-active-bg-color: @bg-inverse-color;
|
131
|
+
|
132
|
+
@dashboard-cpy-tabs-hover-text-color: @bg-inverse-color;
|
133
|
+
@dashboard-cpy-tabs-hover-bg-color: @decorator-alt-color;
|
134
|
+
|
135
|
+
// Tab Content
|
136
|
+
//--------------------------------------
|
137
|
+
@dashboard-cpy-tabcontent-bg-color: @dashboard-cpy-tabs-bg-color;
|
138
|
+
|
139
|
+
// Teams section
|
140
|
+
//--------------------------------------
|
141
|
+
@dashboard-cpy-teams-matrix-bg-color: @bg-inverse-color;
|
142
|
+
@dashboard-cpy-teams-matrix-border-color: lighten(@bg-main-color,30%);
|
143
|
+
|
144
|
+
|
145
|
+
/*-----------------------------------------------------------------------*/
|
146
|
+
/* Mno Enterprise > Marketplace Section */
|
147
|
+
/*-----------------------------------------------------------------------*/
|
148
|
+
@dashboard-marketplace-search-text-color: @bg-inverse-color;
|
149
|
+
@dashboard-marketplace-search-border-color: @bg-inverse-intense-color;
|
150
|
+
|
151
|
+
@dashboard-marketplace-tile-bg-color: @bg-inverse-color;
|
152
|
+
@dashboard-marketplace-tile-text-color: @text-strong-color;
|
153
|
+
@dashboard-marketplace-tile-img-border-color: @dashboard-marketplace-tile-bg-color;
|
154
|
+
|
155
|
+
@dashboard-marketplace-tile-hover-bg-color: @decorator-main-color;
|
156
|
+
@dashboard-marketplace-tile-hover-text-color: @dashboard-marketplace-tile-text-color;
|
157
|
+
@dashboard-marketplace-tile-hover-img-border-color: darken(@decorator-main-color,10%);
|
158
|
+
@dashboard-marketplace-tile-hover-arrow-color: @text-strong-color;
|
159
|
+
|
160
|
+
@dashboard-marketplace-show-header-text-color: @bg-inverse-color;
|
161
|
+
|
162
|
+
@dashboard-marketplace-app-card: { display: block; padding: 10px; height: 120px; margin-bottom: 10px; font-weight: 300; };
|
163
|
+
|
164
|
+
/*-----------------------------------------------------------------------*/
|
165
|
+
/* Responsive Table (cell table) */
|
166
|
+
/*-----------------------------------------------------------------------*/
|
167
|
+
@table-cell-row-spacing: 10px;
|
168
|
+
@table-cell-row-padding: 3px;
|
169
|
+
|
170
|
+
@table-cell-header-text-size: 12px;
|
171
|
+
@table-cell-header-text-color: @bg-inverse-color;
|
172
|
+
@table-cell-header-bg-color: @bg-main-color;
|
173
|
+
@table-cell-header-additional-rule: { text-transform: uppercase; };
|
174
|
+
|
175
|
+
@table-cell-row-text-size: 13px;
|
176
|
+
@table-cell-row-odd-bg-color: fade(@bg-main-color,30%);
|
177
|
+
@table-cell-row-even-bg-color: fade(@bg-main-color,10%);
|
178
|
+
|
179
|
+
|
180
|
+
/*-----------------------------------------------------------------------*/
|
181
|
+
/* Twitter Bootstrap colors */
|
182
|
+
/*-----------------------------------------------------------------------*/
|
183
|
+
@brand-success: @elem-positive-color;
|
184
|
+
@brand-warning: @decorator-alt-color;
|
185
|
+
@brand-info: @text-inverse-color;
|
186
|
+
@brand-danger: @text-inverse-color;
|
187
|
+
@brand-primary: @text-inverse-color;
|
188
|
+
|
189
|
+
/*-----------------------------------------------------------------------*/
|
190
|
+
/* Navbar Customization */
|
191
|
+
/*-----------------------------------------------------------------------*/
|
192
|
+
@navbar-inverse-bg: @bg-inverse-color;
|
193
|
+
@navbar-height: 40px;
|
194
|
+
@navbar-inverse-link-color: @decorator-inverse-color;
|
195
|
+
@navbar-border-radius: 0px;
|
196
|
+
@navbar-inverse-border: @bg-inverse-color;
|
197
|
+
@navbar-desktop-height: 120px;
|
198
|
+
@navbar-inverse-link-active-bg: @navbar-inverse-bg;
|
199
|
+
|
200
|
+
/*-----------------------------------------------------------------------*/
|
201
|
+
/* Form Customization */
|
202
|
+
/*-----------------------------------------------------------------------*/
|
203
|
+
@input-bg: @bg-on-bg-inverse-color;
|
204
|
+
@input-color: @text-inverse-color;
|
205
|
+
@input-color-placeholder: @input-color;
|
206
|
+
|
207
|
+
@input-label-color: @text-inverse-color;
|
208
|
+
|
209
|
+
/*-----------------------------------------------------------------------*/
|
210
|
+
/* Buttons Customization */
|
211
|
+
/*-----------------------------------------------------------------------*/
|
212
|
+
|
213
|
+
// General
|
214
|
+
@btn-font-weight: 500;
|
215
|
+
|
216
|
+
// Warning
|
217
|
+
@btn-warning-color: #fff;
|
218
|
+
|
219
|
+
// Success
|
220
|
+
@btn-success-color: #fff;
|
221
|
+
|
222
|
+
/*-----------------------------------------------------------------------*/
|
223
|
+
/* Footer */
|
224
|
+
/*-----------------------------------------------------------------------*/
|
225
|
+
|
226
|
+
@footer-bg: @bg-main-color;
|
@@ -0,0 +1,131 @@
|
|
1
|
+
<h2 class="section-title">My Account</h2>
|
2
|
+
<div class="spacer2"></div>
|
3
|
+
<div accordion class="accordion">
|
4
|
+
<div accordion-group is-open="isPersoInfoOpen">
|
5
|
+
<div accordion-heading>
|
6
|
+
Personal Information <span class="caret pull-right" ng-class="{'caret-down': !isPersoInfoOpen, 'caret-up': isPersoInfoOpen}"></span>
|
7
|
+
</div>
|
8
|
+
|
9
|
+
<div class="alert alert-error" ng-show="errors.user">
|
10
|
+
<button class="close" ng-click="errors.user=''">×</button>
|
11
|
+
<ul>
|
12
|
+
<li ng-repeat="error in errors.user">{{error}}</li>
|
13
|
+
</ul>
|
14
|
+
</div>
|
15
|
+
<div class="alert alert-success" ng-show="success.user">
|
16
|
+
<button class="close" ng-click="success.user=''">×</button>
|
17
|
+
<p>{{success.user}}</p>
|
18
|
+
</div>
|
19
|
+
<form name='form'>
|
20
|
+
<div class='row'>
|
21
|
+
<div class='col-md-6'>
|
22
|
+
<label>Name</label>
|
23
|
+
<input type='text' ng-model='user.model.name' class='form-control'>
|
24
|
+
</div>
|
25
|
+
<div class='col-md-6'>
|
26
|
+
<label>Surname</label>
|
27
|
+
<input type='text' ng-model='user.model.surname' class='form-control'>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
<div class='row'>
|
31
|
+
<div class='col-md-6'>
|
32
|
+
<label>Email</label>
|
33
|
+
<input type='text' ng-model='user.model.email' class='form-control'>
|
34
|
+
</div>
|
35
|
+
<div class='col-md-6'>
|
36
|
+
<label>Phone</label>
|
37
|
+
<div class="input-group">
|
38
|
+
<div class="input-group-addon select">
|
39
|
+
<select ng-options="phone[0] as phone[1] for phone in countryCodes" ng-model='user.model.phone_country_code'></select>
|
40
|
+
</div>
|
41
|
+
<input type='text' ng-model='user.model.phone' class='form-control'>
|
42
|
+
</div>
|
43
|
+
</div>
|
44
|
+
</div>
|
45
|
+
<br>
|
46
|
+
<div class='row'>
|
47
|
+
<div class='col-md-12'>
|
48
|
+
<button ng-disabled="!user.hasChanged()" ng-hide="user.loading" class='btn btn-warning' ng-click="user.update()">Save</button>
|
49
|
+
<button ng-show="user.hasChanged() && !user.loading" class='btn ng-hide' ng-click="user.cancelChanges()">Cancel</button>
|
50
|
+
<img class="ng-hide" ng-src="{{assetPath['mno_enterprise/loader-32x32-bg-inverse.gif']}}" ng-show="user.loading"/>
|
51
|
+
</div>
|
52
|
+
</div>
|
53
|
+
</form>
|
54
|
+
</div>
|
55
|
+
|
56
|
+
|
57
|
+
<!--
|
58
|
+
Change Password Section
|
59
|
+
-->
|
60
|
+
<div accordion-group is-open="isChangePasswordOpen">
|
61
|
+
<div accordion-heading>
|
62
|
+
Change password <span class="caret pull-right" ng-class="{'caret-down': !isChangePasswordOpen, 'caret-up': isChangePasswordOpen}"></span>
|
63
|
+
</div>
|
64
|
+
<div class="alert alert-error" ng-show="errors.changePassword">
|
65
|
+
<button class="close" ng-click="errors.changePassword=''">×</button>
|
66
|
+
<ul>
|
67
|
+
<li ng-repeat="error in errors.changePassword">{{error}}</li>
|
68
|
+
</ul>
|
69
|
+
</div>
|
70
|
+
<div class="alert alert-success" ng-show="success.changePassword">
|
71
|
+
<button class="close" ng-click="success.changePassword=''">×</button>
|
72
|
+
<p>{{success.changePassword}}</p>
|
73
|
+
</div>
|
74
|
+
<form name='form'>
|
75
|
+
<div class='row'>
|
76
|
+
<div class='col-md-6'>
|
77
|
+
<label>Current Password</label>
|
78
|
+
<input type='password' ng-model='user.password.currentPassword' class='form-control'>
|
79
|
+
</div>
|
80
|
+
</div>
|
81
|
+
<div class='row'>
|
82
|
+
<div class='col-md-6'>
|
83
|
+
<label>New Password</label>
|
84
|
+
<input type='password' ng-model='user.password.newPassword' class='form-control'>
|
85
|
+
</div>
|
86
|
+
<div class='col-md-6'>
|
87
|
+
<label>Confirm Password</label>
|
88
|
+
<input type='password' ng-model='user.password.confirmPassword' class='form-control'>
|
89
|
+
</div>
|
90
|
+
</div>
|
91
|
+
<br>
|
92
|
+
<button ng-click="user.updatePassword()" ng-disabled="!user.updatePasswordEnabled()" ng-hide="user.loading" class='btn btn-warning'>Save</button>
|
93
|
+
<button ng-click="user.cancelPassword()" ng-show="user.cancelPasswordEnabled() && !user.loading" class='btn ng-hide'>Cancel</button>
|
94
|
+
<img class="ng-hide" ng-src="{{assetPath['mno_enterprise/loader-32x32-bg-inverse.gif']}}" ng-show="user.loading"/>
|
95
|
+
</form>
|
96
|
+
</div>
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
<!--
|
101
|
+
Account Deletion Section
|
102
|
+
-->
|
103
|
+
<!-- <div accordion-group is-open="isAccountDeletionOpen">
|
104
|
+
<div accordion-heading>
|
105
|
+
Account deletion <span class="caret pull-right" ng-class="{'caret-down': !isAccountDeletionOpen, 'caret-up': isAccountDeletionOpen}"></span>
|
106
|
+
</div>
|
107
|
+
<div class='align-center'>
|
108
|
+
<div class="alert alert-error" ng-show="errors.deletionReq">
|
109
|
+
<button class="close" ng-click="errors.deletionReq=''">×</button>
|
110
|
+
<ul>
|
111
|
+
<li ng-repeat="error in errors.deletionReq">{{error}}</li>
|
112
|
+
</ul>
|
113
|
+
</div>
|
114
|
+
<div ng-switch="user.currentDeletionRequestToken">
|
115
|
+
<div ng-switch-when="-1">
|
116
|
+
<p>Here you can delete your account. Before proceeding you will be asked for several confirmations (including email). Upon confirmation you will be redirected to a checkout page in order to pay any outstanding amount due.</p>
|
117
|
+
<p>All applications created under your account will be deleted. Do not forget to transfer any critical application to your coworkers (via organizations) before deleting your account.</p>
|
118
|
+
<button ng-click="user.createDeletionRequest()" ng-disabled="user.loading" class='btn btn-danger'>Request deletion of my account</button>
|
119
|
+
</div>
|
120
|
+
<div ng-switch-default>
|
121
|
+
<p>Instructions to delete your account have been sent to you by email. If you haven't received them you can resend the email by clicking on the button below:</p>
|
122
|
+
<button ng-click="user.resendDeletionRequest()" ng-disabled="user.loading" class='btn'>Resend instructions</button>
|
123
|
+
<p>You can cancel this request by clicking on the button below:</p>
|
124
|
+
<button ng-click="user.cancelDeletionRequest()" ng-disabled="user.loading" class='btn'>Cancel account termination request</button>
|
125
|
+
</div>
|
126
|
+
</div>
|
127
|
+
</div>
|
128
|
+
</div> -->
|
129
|
+
|
130
|
+
</div>
|
131
|
+
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<div>
|
2
|
+
<script type="text/ng-template" id="internal-deletion-modal.html">
|
3
|
+
<div class="modal-header">
|
4
|
+
<div class="close" type="button" ng-click="modal.close()" >×</div>
|
5
|
+
<h3>Confirm app deletion</h3>
|
6
|
+
</div>
|
7
|
+
<div class="modal-body">
|
8
|
+
<div class="alert alert-error" ng-show="modal.errors">
|
9
|
+
<button class="close" ng-click="modal.errors=''">×</button>
|
10
|
+
<ul>
|
11
|
+
<li ng-repeat="error in modal.errors">{{error}}</li>
|
12
|
+
</ul>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
<p class="text-center"><small>In order to delete your app, please enter the following statement in the box below.</small></p>
|
16
|
+
|
17
|
+
<div class="spacer1"></div>
|
18
|
+
|
19
|
+
<p class="text-error text-center">{{sentence}}</p>
|
20
|
+
|
21
|
+
<div class="row">
|
22
|
+
<div class="col-md-8 col-md-offset-2">
|
23
|
+
<input type="text" ng-model="sentenceCheck" class='form-control text-center' required>
|
24
|
+
</div>
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<div class="spacer1"></div>
|
28
|
+
|
29
|
+
</div>
|
30
|
+
<div class="modal-footer">
|
31
|
+
<button class="btn" ng-click="modal.close()" ng-show="!modal.loading">Cancel</button>
|
32
|
+
<button class="btn btn-danger" ng-click="proceed()" ng-disabled="sentence != sentenceCheck" ng-show="!modal.loading">Delete</button>
|
33
|
+
<img class="ng-hide" ng-src="{{assetPath['mno_enterprise/loader-32x32-bg-inverse.gif']}}" ng-show="modal.loading"/>
|
34
|
+
</div>
|
35
|
+
</script>
|
36
|
+
</div>
|
@@ -0,0 +1,103 @@
|
|
1
|
+
<!-- <div class='star-wizard-button-wrapper'>
|
2
|
+
<div mno-star-wizard=true modal-open='starWizardModal.value'></div>
|
3
|
+
<a class='star-button hidden-sm hidden-xs btn btn-promo btn-success' ng-click='openStarWizard()'>
|
4
|
+
<span class='fa fa-upload'></span>
|
5
|
+
Data Upload Wizard
|
6
|
+
</a>
|
7
|
+
</div> -->
|
8
|
+
|
9
|
+
<h2 class="section-title">
|
10
|
+
Dashboard
|
11
|
+
</h2>
|
12
|
+
|
13
|
+
<div class="spacer2"></div>
|
14
|
+
|
15
|
+
<div ng-switch="loading">
|
16
|
+
<div ng-switch-when='true'>
|
17
|
+
<div class='align-center'>
|
18
|
+
<img ng-src="{{assetPath['mno_enterprise/loader-32x32-bg-main.gif']}}">
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
|
22
|
+
<div ng-switch-default>
|
23
|
+
<div class='row'>
|
24
|
+
<div ng-repeat="app in apps" class='col-md-3'>
|
25
|
+
<div class='app-dashboard'>
|
26
|
+
|
27
|
+
<!-- Backface -->
|
28
|
+
<div ng-switch="displayOptions[app.id]">
|
29
|
+
|
30
|
+
<div ng-switch-when="true">
|
31
|
+
<div ng-init="openModal = 0" dashboard-plan-change-request=true app-id="{{app.id}}" open-modal="openModal"></div>
|
32
|
+
<div ng-init="deletionModal = 0" dashboard-app-deletion-request=true app-id="{{app.id}}" open-modal="deletionModal"></div>
|
33
|
+
<a ng-click="displayOptions[app.id] = !displayOptions[app.id]" ng-show="helper.displayCogwheel()" class="options" href=""><i class="fa fa-times"></i></a>
|
34
|
+
|
35
|
+
<!-- Data Sync Button -->
|
36
|
+
<div ng-show="appsListHelper.isDataSyncShown(app)">
|
37
|
+
<br>
|
38
|
+
<a class="btn btn-info" href="{{ appsListHelper.dataSyncPath(app) }}" mno-helptext="Trigger a manual sync between {{app.appName}} and Maestrano.">Manual Data Sync</a>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<!-- Data Disconnect Button -->
|
42
|
+
<div ng-show="appsListHelper.isDataDisconnectShown(app)">
|
43
|
+
<br>
|
44
|
+
<a class="btn btn-danger" ng-really-message="Are you sure you want to disconnect {{app.appName}} and Maestrano?" ng-really-click="appsListHelper.dataDisconnectClick(app)" href="" mno-helptext="Disconnect the link between {{app.appName}} and Maestrano.">Disconnect Link</a>
|
45
|
+
</div>
|
46
|
+
<br>
|
47
|
+
<div>
|
48
|
+
<br>
|
49
|
+
<button ng-click="restartApp.perform(app.id)" ng-show="helper.canRestartApp() && appsListHelper.isRestartShown(app)" ng-disabled="restartApp.loading" class="btn">Restart</button>
|
50
|
+
<button ng-click="deletionModal = deletionModal + 1" ng-show="helper.canDeleteApp()" class="btn btn-danger">Delete</button>
|
51
|
+
</div>
|
52
|
+
</div>
|
53
|
+
|
54
|
+
<!-- Frontface -->
|
55
|
+
<div ng-switch-default>
|
56
|
+
<a ng-click="displayOptions[app.id] = !displayOptions[app.id]" ng-show="helper.displayCogwheel()" class="options" href=""><i class="fa fa-cog"></i></a>
|
57
|
+
<br>
|
58
|
+
<a ng-href="{{appsListHelper.appActionUrl(app)}}" target="_blank">
|
59
|
+
<img class="app-logo" ng-src="{{app.logo}}">
|
60
|
+
</a>
|
61
|
+
<br>
|
62
|
+
<div editable-text="app.name" onaftersave="updateAppName(app)" class='title' style="border:0px;">{{app.name}}</div>
|
63
|
+
|
64
|
+
<!-- Connected company name -->
|
65
|
+
<div ng-show="appsListHelper.companyName(app)">
|
66
|
+
<div class='app-line' style="border:0px;" tooltip="{{appsListHelper.companyName(app)}}">
|
67
|
+
Linked to: {{ appsListHelper.companyName(app) | truncate:25 }}
|
68
|
+
</div>
|
69
|
+
</div>
|
70
|
+
|
71
|
+
<!-- Connector Version -->
|
72
|
+
<div ng-show="appsListHelper.connectorVersion(app)">
|
73
|
+
<div class='app-line' style="border:0px;">MYOB Version: {{appsListHelper.connectorVersion(app)}}</div>
|
74
|
+
</div>
|
75
|
+
|
76
|
+
<!-- OAuth Connect Button -->
|
77
|
+
<div ng-show="appsListHelper.isOauthConnectBtnShown(app)">
|
78
|
+
<a class="btn btn-warning" ng-href="{{appsListHelper.oAuthConnectPath(app)}}">
|
79
|
+
Connect
|
80
|
+
</a>
|
81
|
+
</div>
|
82
|
+
|
83
|
+
<a ng-href="{{appsListHelper.appActionUrl(app)}}" target="_blank" ng-hide="appsListHelper.isLaunchHidden(app)" class="btn btn-warning">Launch App</a>
|
84
|
+
|
85
|
+
<span ng-show="app.status == 'terminating' || app.status == 'terminated'">(deleted)</span>
|
86
|
+
<br>
|
87
|
+
<a ng-show="app.tutorial" ng-href="{{app.tutorial}}" class='tutorial' target="_blank">Tutorials</a>
|
88
|
+
</div>
|
89
|
+
</div>
|
90
|
+
</div>
|
91
|
+
</div>
|
92
|
+
<div ng-if="helper.canCreateApp()" class='col-md-3'>
|
93
|
+
<div class='app-dashboard add-app'>
|
94
|
+
<a href="#/marketplace">
|
95
|
+
<div class="fa fa-plus-circle"></div>
|
96
|
+
</a>
|
97
|
+
</div>
|
98
|
+
</div>
|
99
|
+
</div>
|
100
|
+
<div class='spacer2'></div>
|
101
|
+
<div dashboard-bootstrap-wizard='true' ng-show='helper.displayBootstrapWizard()'></div>
|
102
|
+
</div>
|
103
|
+
</div>
|