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 @@
|
|
1
|
+
<div ng-bind-html="modal.body()"></div>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<div ng-bind-html="modal.body()"></div>
|
2
|
+
|
3
|
+
<div class='align-center'>
|
4
|
+
<div class='spacer2'></div>
|
5
|
+
<img ng-src="{{assetPath['jobs/bulb.png']}}">
|
6
|
+
<div class='spacer2'></div>
|
7
|
+
<a class='btn btn-success' ng-click="modal.goBackToDashboard()">Go to the Dashboard</a>
|
8
|
+
</div>
|
@@ -0,0 +1,31 @@
|
|
1
|
+
<div class="notification-widget">
|
2
|
+
<!-- Popup notifications -->
|
3
|
+
<div>
|
4
|
+
<script type="text/ng-template" id="internal-notif-popup-modal.html">
|
5
|
+
<!-- Modal Header -->
|
6
|
+
<div class="modal-header">
|
7
|
+
<div class="close" type="button" ng-click="notifPopup.close()" >×</div>
|
8
|
+
|
9
|
+
<h3>
|
10
|
+
{{notifPopup.model.title}}
|
11
|
+
</h3>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
<!-- Modal Body -->
|
15
|
+
<div class="modal-body scrollable-frame" ng-style="{ maxHeight: windowHeight-200 + 'px' }">
|
16
|
+
<div ng-bind-html="notifPopup.model.content"></div>
|
17
|
+
</div>
|
18
|
+
|
19
|
+
<!-- Modal Footer -->
|
20
|
+
<div class="modal-footer">
|
21
|
+
<button ng-click="notifPopup.close()" class="fbtn fbtn-large fbtn-grey">{{notifPopup.model.dismissText}}</button>
|
22
|
+
</div>
|
23
|
+
</script>
|
24
|
+
</div>
|
25
|
+
|
26
|
+
<!-- Flash Notifications-->
|
27
|
+
<div ng-class="notifWidget.classFor(msgObject)" ng-repeat="msgObject in notifWidget.outboundQueue" id="notification{{$index}}">
|
28
|
+
<button type="button" class="close" ng-click="notifWidget.closeMsg(msgObject)">×</button>
|
29
|
+
<div ng-bind-html="msgObject.msg"></div>
|
30
|
+
</div>
|
31
|
+
</div>
|
@@ -0,0 +1,55 @@
|
|
1
|
+
<div class="row" style="margin:0px;">
|
2
|
+
|
3
|
+
<div class="col-md-9" style="padding: 0px 2px;">
|
4
|
+
<div class="input-group text-left" style="width: 100%;">
|
5
|
+
<label>Password</label>
|
6
|
+
<br />
|
7
|
+
|
8
|
+
<input mno-password-strength password-score="baseObject.$pwdScore" type="{{isShown ? 'text' : 'password'}}", name="{{fieldName}}", ng-model="baseObject.password" ng-change="check()" class="input-group-addon" style="width: 70%;" placeholder="*Choose Password" required/>
|
9
|
+
<span class="input-group-addon pw-strength-indicator" ng-class='baseObject.$pwdScore.class' style="display: inline;">
|
10
|
+
{{ baseObject.$pwdScore.value }}
|
11
|
+
</span>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
<div class="col-md-3 text-center" style="padding: 0px 2px;">
|
16
|
+
<label>Show</label>
|
17
|
+
<br />
|
18
|
+
<input type="checkbox" ng-model="isShown" />
|
19
|
+
</div>
|
20
|
+
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<div class="spacer1" />
|
24
|
+
|
25
|
+
<div class="row text-left" style="margin:0px;">
|
26
|
+
<div class="col-sm-6" style="padding: 0px 2px;">
|
27
|
+
<ul style="list-style: none; padding-left: 20px;">
|
28
|
+
<li ng-class="hasEightChars ? 'checked' : 'unchecked'">
|
29
|
+
<i class="fa fa-check-circle" ng-show="hasEightChars" />
|
30
|
+
<i class="fa fa-times-circle" ng-hide="hasEightChars" />
|
31
|
+
Eight characters minimum
|
32
|
+
</li>
|
33
|
+
<li ng-class="hasOneNumber ? 'checked' : 'unchecked'">
|
34
|
+
<i class="fa fa-check-circle" ng-show="hasOneNumber" />
|
35
|
+
<i class="fa fa-times-circle" ng-hide="hasOneNumber" />
|
36
|
+
One number
|
37
|
+
</li>
|
38
|
+
</ul>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div class="col-sm-6 text-left" style="padding: 0px 2px;">
|
42
|
+
<ul style="list-style: none; padding-left: 20px;">
|
43
|
+
<li ng-class="hasOneUpper ? 'checked' : 'unchecked'">
|
44
|
+
<i class="fa fa-check-circle" ng-show="hasOneUpper" />
|
45
|
+
<i class="fa fa-times-circle" ng-hide="hasOneUpper" />
|
46
|
+
One uppercase character
|
47
|
+
</li>
|
48
|
+
<li ng-class="hasOneLower ? 'checked' : 'unchecked'">
|
49
|
+
<i class="fa fa-check-circle" ng-show="hasOneLower" />
|
50
|
+
<i class="fa fa-times-circle" ng-hide="hasOneLower" />
|
51
|
+
One lowercase character
|
52
|
+
</li>
|
53
|
+
</ul>
|
54
|
+
</div>
|
55
|
+
</div>
|
@@ -0,0 +1,254 @@
|
|
1
|
+
<div>
|
2
|
+
<script type="text/ng-template" id="internal-star-wizard.html">
|
3
|
+
<!-- Modal Header -->
|
4
|
+
<div class="modal-header">
|
5
|
+
<span>Data Upload Wizard</span>
|
6
|
+
<div class="close" type="button" ng-click="modal.close()" >×</div>
|
7
|
+
</div>
|
8
|
+
<!-- Modal Body -->
|
9
|
+
<div class="modal-body">
|
10
|
+
<div class="star-wizard">
|
11
|
+
<div class='row'>
|
12
|
+
<div class='col-md-12'>
|
13
|
+
<div class='steps'>
|
14
|
+
<div class='step light-color left' ng-class="step == 0 && 'active'">
|
15
|
+
<div class='wrapper'>
|
16
|
+
<div class='arrow'></div>
|
17
|
+
</div>
|
18
|
+
1
|
19
|
+
<span class='hidden-xs hidden-sm'>- Welcome</span>
|
20
|
+
</div>
|
21
|
+
<div class='step light-color' ng-class="step == 1 && 'active'">
|
22
|
+
<div class='wrapper'>
|
23
|
+
<div class='arrow'></div>
|
24
|
+
</div>
|
25
|
+
2
|
26
|
+
<span class='hidden-xs hidden-sm'>- Company</span>
|
27
|
+
</div>
|
28
|
+
<div class='step light-color' ng-class="step == 2 && 'active'">
|
29
|
+
<div class='wrapper'>
|
30
|
+
<div class='arrow'></div>
|
31
|
+
</div>
|
32
|
+
3
|
33
|
+
<span class='hidden-xs hidden-sm'>- Organizations</span>
|
34
|
+
</div>
|
35
|
+
<div class='step light-color' ng-class="step == 3 && 'active'">
|
36
|
+
<div class='wrapper'>
|
37
|
+
<div class='arrow'></div>
|
38
|
+
</div>
|
39
|
+
4
|
40
|
+
<span class='hidden-xs hidden-sm'>- People</span>
|
41
|
+
</div>
|
42
|
+
<div class='step light-color' ng-class="step == 4 && 'active'">
|
43
|
+
<div class='wrapper'>
|
44
|
+
<div class='arrow'></div>
|
45
|
+
</div>
|
46
|
+
5
|
47
|
+
<span class='hidden-xs hidden-sm'>- Items</span>
|
48
|
+
</div>
|
49
|
+
<div class='step right light-color' ng-class="step == 5 && 'active'">
|
50
|
+
6
|
51
|
+
<span class='hidden-xs hidden-sm'>- Conclusion</span>
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
</div>
|
56
|
+
|
57
|
+
<div ng-switch="step">
|
58
|
+
<!-------------------------------------->
|
59
|
+
<!-- CHOOSE ORGANIZATION -->
|
60
|
+
<!-------------------------------------->
|
61
|
+
<div ng-switch-when="0">
|
62
|
+
<div class='row'>
|
63
|
+
<div class='col-md-12'>
|
64
|
+
<h2>Organization choice</h2>
|
65
|
+
<p>Welcome to the Maestrano Data Upload Wizard. In just a few simple steps, all your data will be securely uploaded. When you launch your organizations applications, all your data will have seamlessly been uploaded for you through Connec!™</p>
|
66
|
+
<p>Select the organization you'd like to upload data to.<p>
|
67
|
+
<p>Please note, you must be either a Super Admin or Admin in your organization to upload data. If you don't have access, please contact your organizations Super Admin or Admin.</p>
|
68
|
+
|
69
|
+
<div class='col-md-6 col-md-offset-3'>
|
70
|
+
<select class="form-control" ng-model="orgaChoosen.uid" ng-options="orga.uid as orga.name for orga in orgaList">
|
71
|
+
<option ng-repeat="orga in orgaList">{{orga}}</option>
|
72
|
+
</select>
|
73
|
+
</div>
|
74
|
+
|
75
|
+
<br><br><br>
|
76
|
+
<div class='align-center'>
|
77
|
+
<div class='remark'>(If you don't want to upload your data now, click on "Cancel")</div>
|
78
|
+
<button class='btn btn-success btn-promo arrow-right' ng-click="goToStep(1)" ng-disabled="!orgaChoosen.uid">Next</button>
|
79
|
+
<button class='btn cancel btn-grey btn-promo' ng-click="modal.close()">Cancel</button>
|
80
|
+
</div>
|
81
|
+
<br>
|
82
|
+
<div class='clearfix'></div>
|
83
|
+
</div>
|
84
|
+
</div>
|
85
|
+
</div>
|
86
|
+
|
87
|
+
<!-------------------------------------->
|
88
|
+
<!-- COMPANY DETAILS -->
|
89
|
+
<!-------------------------------------->
|
90
|
+
<div ng-switch-when="1">
|
91
|
+
<div class="alert alert-error" ng-show="errors.uploadCompanyDetails">
|
92
|
+
<button class="close" ng-click="errors.uploadCompanyDetails=''">×</button>
|
93
|
+
<ul>
|
94
|
+
<li ng-repeat="error in errors.uploadCompanyDetails">{{error}}</li>
|
95
|
+
</ul>
|
96
|
+
</div>
|
97
|
+
<h2>Your company details</h2>
|
98
|
+
<p>Enter your company details where applicable</p>
|
99
|
+
<form>
|
100
|
+
<div class='row'>
|
101
|
+
<div class='col-md-6'>
|
102
|
+
<div class='input-group'>
|
103
|
+
<div class='input-group-addon'>Name</div>
|
104
|
+
<input class="form-control" type="text" ng-model="company.name">
|
105
|
+
</div>
|
106
|
+
<br>
|
107
|
+
</div>
|
108
|
+
|
109
|
+
<div class='col-md-6'>
|
110
|
+
<div class='input-group'>
|
111
|
+
<div class='input-group-addon'>Email</div>
|
112
|
+
<input class="form-control" type="text" ng-model="company.contacts.email.emailAddress">
|
113
|
+
</div>
|
114
|
+
<br>
|
115
|
+
</div>
|
116
|
+
</div>
|
117
|
+
|
118
|
+
<div class='row'>
|
119
|
+
<div class='col-md-6'>
|
120
|
+
<div class='input-group'>
|
121
|
+
<div class='input-group-addon'>Currency</div>
|
122
|
+
<!--TODO-->
|
123
|
+
<select class="form-control" ng-options="currency for currency in miscellaneous.currencies" ng-model="company.currency"></select>
|
124
|
+
</div>
|
125
|
+
<br>
|
126
|
+
</div>
|
127
|
+
|
128
|
+
<div class='col-md-6'>
|
129
|
+
<div class='input-group'>
|
130
|
+
<div class='input-group-addon'>Address</div>
|
131
|
+
<input class="form-control" type="text" ng-model="company.contacts.address.streetAddress.streetAddress">
|
132
|
+
</div>
|
133
|
+
<br>
|
134
|
+
</div>
|
135
|
+
</div>
|
136
|
+
|
137
|
+
<div class='row'>
|
138
|
+
<div class='col-md-6'>
|
139
|
+
<div class='input-group'>
|
140
|
+
<div class='input-group-addon'>City</div>
|
141
|
+
<!--TODO-->
|
142
|
+
<input type="text" class="form-control" ng-model="company.contacts.address.streetAddress.locality">
|
143
|
+
</div>
|
144
|
+
<br>
|
145
|
+
</div>
|
146
|
+
|
147
|
+
<div class='col-md-6'>
|
148
|
+
<div class='input-group'>
|
149
|
+
<div class='input-group-addon'>Country</div>
|
150
|
+
<select class="form-control" ng-options="country for country in miscellaneous.countries" ng-model="company.contacts.address.streetAddress.country"></select>
|
151
|
+
</div>
|
152
|
+
<br>
|
153
|
+
</div>
|
154
|
+
</div>
|
155
|
+
|
156
|
+
<div class='row'>
|
157
|
+
<div class='col-md-6'>
|
158
|
+
<div class='input-group'>
|
159
|
+
<div class='input-group-addon'>Website</div>
|
160
|
+
<input type="text" class="form-control" ng-model="company.contacts.website.url">
|
161
|
+
</div>
|
162
|
+
<br>
|
163
|
+
</div>
|
164
|
+
|
165
|
+
<div class='col-md-6'>
|
166
|
+
<div class='input-group'>
|
167
|
+
<div class='input-group-addon'>Phone</div>
|
168
|
+
<input class="form-control" type="text" ng-model="company.contacts.telephone.voice">
|
169
|
+
</div>
|
170
|
+
<br>
|
171
|
+
</div>
|
172
|
+
</div>
|
173
|
+
|
174
|
+
<div class='row'>
|
175
|
+
<div class='col-md-12'>
|
176
|
+
<div class='input-group'>
|
177
|
+
<div class='input-group-addon large'>Business Registration Number</div>
|
178
|
+
<input type="text" class="form-control" ng-model="company.vat_number">
|
179
|
+
</div>
|
180
|
+
<br>
|
181
|
+
</div>
|
182
|
+
</div>
|
183
|
+
|
184
|
+
<div class='row'>
|
185
|
+
<div class='col-md-12'>
|
186
|
+
<div class='input-group'>
|
187
|
+
<div class='input-group-addon large'>Fiscal Year First Month</div>
|
188
|
+
<!--TODO-->
|
189
|
+
<select class="form-control" ng-options="month for month in ['January','February','March','April','May','June','July','August','September','October','November','December']" ng-model="company.fiscal_year_first_month"></select>
|
190
|
+
</div>
|
191
|
+
<br>
|
192
|
+
</div>
|
193
|
+
</div>
|
194
|
+
|
195
|
+
<div class='row'>
|
196
|
+
<div class='col-md-12'>
|
197
|
+
<div class='input-group'>
|
198
|
+
<div class='input-group-addon large'>Your Company Logo</div>
|
199
|
+
<input type="file" class="form-control" file-model="companyLogo.file">
|
200
|
+
</div>
|
201
|
+
<br>
|
202
|
+
</div>
|
203
|
+
</div>
|
204
|
+
<button ng-style="uploadCompanyDetails.loading && {backgroundColor:'white'}" ng-disabled="uploadCompanyDetails.loading"class='btn btn-success btn-promo arrow-right' ng-click="uploadCompanyDetails.perform()" style="width:102px;">
|
205
|
+
<span ng-hide="uploadCompanyDetails.loading">Next</span>
|
206
|
+
<img ng-src="{{assetPath['mno_enterprise/loader-32x32-bg-inverse.gif']}}" ng-show="uploadCompanyDetails.loading">
|
207
|
+
</button>
|
208
|
+
<button class='btn btn-whited btn-promo arrow-left previous' ng-click="goToStep(0)">Back</button>
|
209
|
+
<div class='clearfix'></div>
|
210
|
+
</form>
|
211
|
+
</div>
|
212
|
+
|
213
|
+
<!-------------------------------------->
|
214
|
+
<!-- ORGA SPREADSHEET -->
|
215
|
+
<!-------------------------------------->
|
216
|
+
<div ng-switch-when="2">
|
217
|
+
<div mno-upload-spreadsheet=true category="organization" channel-id="orgaChoosen.uid" deferred="deferred['organization']"></div>
|
218
|
+
</div>
|
219
|
+
|
220
|
+
<!-------------------------------------->
|
221
|
+
<!-- PERSON SPREADSHEET -->
|
222
|
+
<!-------------------------------------->
|
223
|
+
<div ng-switch-when="3">
|
224
|
+
<div mno-upload-spreadsheet=true category="person" channel-id="orgaChoosen.uid" deferred="deferred['person']"></div>
|
225
|
+
</div>
|
226
|
+
|
227
|
+
<!-------------------------------------->
|
228
|
+
<!-- ITEM SPREADSHEET -->
|
229
|
+
<!-------------------------------------->
|
230
|
+
<div ng-switch-when="4">
|
231
|
+
<div mno-upload-spreadsheet=true category="item" channel-id="orgaChoosen.uid" deferred="deferred['item']"></div>
|
232
|
+
</div>
|
233
|
+
|
234
|
+
<!-------------------------------------->
|
235
|
+
<!-- CONCLUSION -->
|
236
|
+
<!-------------------------------------->
|
237
|
+
<div ng-switch-when="5">
|
238
|
+
<div class='align-center'>
|
239
|
+
<h2>{{conclusionTitle}}</h2>
|
240
|
+
<p>{{conclusionMessage}}</p>
|
241
|
+
<br><br><br>
|
242
|
+
<a href="" ng-click="modal.close()" class='btn btn-warning btn-promo'>Close</a>
|
243
|
+
|
244
|
+
</div>
|
245
|
+
</div>
|
246
|
+
|
247
|
+
</div>
|
248
|
+
</div>
|
249
|
+
</div>
|
250
|
+
<!-- Modal Footer -->
|
251
|
+
<div class="modal-footer">
|
252
|
+
</div>
|
253
|
+
</script>
|
254
|
+
</div>
|
@@ -0,0 +1,191 @@
|
|
1
|
+
<div ng-switch="step.title">
|
2
|
+
<!------------------------------------------------------------------------------------>
|
3
|
+
<!------------------------------------------------------------------------------------>
|
4
|
+
<!------------------------------------------------------------------------------------>
|
5
|
+
<div ng-switch-when="upload">
|
6
|
+
<div class="alert alert-error" ng-show="errors.mappingSpreadsheet" style="margin-top:10px;">
|
7
|
+
<button class="close" ng-click="errors.mappingSpreadsheet=null">×</button>
|
8
|
+
<p>{{errors.mappingSpreadsheet}}</p>
|
9
|
+
</div>
|
10
|
+
|
11
|
+
<div ng-switch="category">
|
12
|
+
|
13
|
+
<!------------------>
|
14
|
+
<!-- ORGANIZATION -->
|
15
|
+
<!------------------>
|
16
|
+
<div ng-switch-when="organization">
|
17
|
+
<h2>Upload your contacts that are organizations</h2>
|
18
|
+
<p>In your applications, you can manage organizations. These can be supplier companies, vendor companies, customer companies. The data for organizations typically includes; name, address, number of employees - you can view an example below.</p>
|
19
|
+
<p>You can use our template to upload your data, or simply select your file in .csv format.</p>
|
20
|
+
|
21
|
+
<br>
|
22
|
+
|
23
|
+
<div class='col-md-6 col-md-offset-3'>
|
24
|
+
<input class='form-control' type="file" file-model="spreadsheet.file">
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<br><br><br>
|
28
|
+
<a href="https://s3-ap-southeast-1.amazonaws.com/cdn-prd-maestrano/docs/public/website/Sample+wizard+files+-+organizations_template.csv">Download a template spreadsheet</a>
|
29
|
+
<br>
|
30
|
+
<img ng-src="{{assetPath['star_wizard/organization.png']}}">
|
31
|
+
|
32
|
+
<br><br>
|
33
|
+
|
34
|
+
<button class='btn btn-success btn-promo arrow-right' ng-disabled="!spreadsheet.file" ng-click="uploadSpreadsheet()">Upload</button>
|
35
|
+
<button class='btn btn-whited btn-promo skip' ng-click="skipThisStep()">Skip</button>
|
36
|
+
<button class='btn btn-whited btn-promo arrow-left previous' ng-click="goToPreviousStep()">Back</button>
|
37
|
+
|
38
|
+
<div class='clearfix'></div>
|
39
|
+
|
40
|
+
|
41
|
+
</div>
|
42
|
+
|
43
|
+
<!------------------>
|
44
|
+
<!-- PERSON -->
|
45
|
+
<!------------------>
|
46
|
+
<div ng-switch-when="person">
|
47
|
+
<h2>Upload your contacts that are persons</h2>
|
48
|
+
<p>In your applications, you can manage contacts that are persons. These are real people which belong to organizations, usually your main point of contacts. The data for people typically includes; first name, last name, email - you can view an example below.</p>
|
49
|
+
<p>You can use our template to upload your data, or simply select your file in .csv format.</p>
|
50
|
+
|
51
|
+
<br>
|
52
|
+
|
53
|
+
<div class='col-md-6 col-md-offset-3'>
|
54
|
+
<input class='form-control' type="file" file-model="spreadsheet.file">
|
55
|
+
</div>
|
56
|
+
|
57
|
+
<br><br><br>
|
58
|
+
|
59
|
+
<a href="https://s3-ap-southeast-1.amazonaws.com/cdn-prd-maestrano/docs/public/website/Sample+wizard+files+-+people_template.csv">Download a template spreadsheet</a>
|
60
|
+
<br>
|
61
|
+
<img ng-src="{{assetPath['star_wizard/person.png']}}">
|
62
|
+
|
63
|
+
<br><br>
|
64
|
+
|
65
|
+
<button class='btn btn-success btn-promo arrow-right' ng-disabled="!spreadsheet.file" ng-click="uploadSpreadsheet()">Upload</button>
|
66
|
+
<button class='btn btn-whited btn-promo skip' ng-click="skipThisStep()">Skip</button>
|
67
|
+
<button class='btn btn-whited btn-promo arrow-left previous' ng-click="goToPreviousStep()">Back</button>
|
68
|
+
|
69
|
+
<div class='clearfix'></div>
|
70
|
+
|
71
|
+
|
72
|
+
</div>
|
73
|
+
|
74
|
+
<!------------------>
|
75
|
+
<!-- ITEM -->
|
76
|
+
<!------------------>
|
77
|
+
<div ng-switch-when="item">
|
78
|
+
<h2>Upload your products and services</h2>
|
79
|
+
<p>In your applications, you can manage products and services. These are the physical products or services your company provides. The data for products and services typically includes; product name, service description, price, stock level - you can view an example below.</p>
|
80
|
+
|
81
|
+
<br>
|
82
|
+
|
83
|
+
<div class='col-md-6 col-md-offset-3'>
|
84
|
+
<input class='form-control' type="file" file-model="spreadsheet.file">
|
85
|
+
</div>
|
86
|
+
|
87
|
+
<br><br><br>
|
88
|
+
<a href="https://s3-ap-southeast-1.amazonaws.com/cdn-prd-maestrano/docs/public/website/Sample+wizard+files+-+products_and_services_template.csv">Download a template spreadsheet</a>
|
89
|
+
<br>
|
90
|
+
<img ng-src="{{assetPath['star_wizard/item.png']}}">
|
91
|
+
|
92
|
+
<br><br>
|
93
|
+
|
94
|
+
<button class='btn btn-success btn-promo arrow-right' ng-disabled="!spreadsheet.file" ng-click="uploadSpreadsheet()">Upload</button>
|
95
|
+
<button class='btn btn-whited btn-promo skip' ng-click="skipThisStep()">Skip</button>
|
96
|
+
<button class='btn btn-whited btn-promo arrow-left previous' ng-click="goToPreviousStep()">Back</button>
|
97
|
+
|
98
|
+
<div class='clearfix'></div>
|
99
|
+
|
100
|
+
|
101
|
+
</div>
|
102
|
+
|
103
|
+
</div>
|
104
|
+
|
105
|
+
</div>
|
106
|
+
|
107
|
+
<!------------------------------------------------------------------------------------>
|
108
|
+
<!------------------------------------------------------------------------------------>
|
109
|
+
<!------------------------------------------------------------------------------------>
|
110
|
+
|
111
|
+
<div ng-switch-when="mapping">
|
112
|
+
|
113
|
+
|
114
|
+
<div ng-switch="mappingStep.title">
|
115
|
+
|
116
|
+
<!------------------>
|
117
|
+
<!-- MAPPING -->
|
118
|
+
<!------------------>
|
119
|
+
<div ng-switch-when="mapping">
|
120
|
+
<br>
|
121
|
+
<h2>Review your data upload</h2>
|
122
|
+
<p>Before proceeding, make sure that our wizard has correctly matched your spreadsheet headings with Connec! You can modify the matches below before proceeding with your upload.</p>
|
123
|
+
<hr>
|
124
|
+
<form name='form' novalidate>
|
125
|
+
<div class='row'>
|
126
|
+
<div class='col-md-8'>
|
127
|
+
<div class='align-center'><h3>Fields</h3></div>
|
128
|
+
</div>
|
129
|
+
<div class='col-md-4'>
|
130
|
+
<div class='align-center'><h3>First row</h3></div>
|
131
|
+
</div>
|
132
|
+
</div>
|
133
|
+
<br>
|
134
|
+
<div ng-repeat="toMap in spreadsheetData.to_map">
|
135
|
+
<div class='row'>
|
136
|
+
<div class='col-md-8'>
|
137
|
+
<div class='input-group'>
|
138
|
+
<div class='input-group-addon large'>
|
139
|
+
{{toMap['name'] | replaceUnderscoreWithSpace | titleize}}
|
140
|
+
<span ng-show="toMap['required']">(*)</span>
|
141
|
+
</div>
|
142
|
+
<select class='form-control' ng-required="{{toMap['required']}}" ng-model="mapping[toMap['path']]" ng-options="header[1] as header[0] for header in spreadsheetData.header"></select>
|
143
|
+
</div>
|
144
|
+
</div>
|
145
|
+
<div class='col-md-4'><div class='align-center'>{{spreadsheetData.field_examples[mapping[toMap['path']]] || 'empty'}}</div></div>
|
146
|
+
</div>
|
147
|
+
<br>
|
148
|
+
</div>
|
149
|
+
|
150
|
+
<button ng-disabled="form.$invalid" class="btn btn-success btn-promo arrow-right" ng-click="mapSpreadsheet()">Ok</button>
|
151
|
+
|
152
|
+
<div class='clearfix'></div>
|
153
|
+
</form>
|
154
|
+
</div>
|
155
|
+
|
156
|
+
<!------------------>
|
157
|
+
<!-- WAITING -->
|
158
|
+
<!------------------>
|
159
|
+
<div ng-switch-when="waiting">
|
160
|
+
<div class='align-center'>
|
161
|
+
<h2>Loading</h2>
|
162
|
+
<p>Connec! is uploading your data in your applications!</p>
|
163
|
+
<br>
|
164
|
+
<img ng-src="{{assetPath['mno_enterprise/loader-32x32-bg-inverse.gif']}}">
|
165
|
+
</div>
|
166
|
+
</div>
|
167
|
+
|
168
|
+
<!------------------>
|
169
|
+
<!-- ERROR -->
|
170
|
+
<!------------------>
|
171
|
+
<div ng-switch-when="error">
|
172
|
+
<h2>Error</h2>
|
173
|
+
<div class="alert alert-error" ng-show="errors.upload">
|
174
|
+
<button class="close" ng-click="errors.upload=null">×</button>
|
175
|
+
<ul>
|
176
|
+
<li ng-repeat="error in errors.upload">#{{error._row_id}} - {{error.message}}</li>
|
177
|
+
</ul>
|
178
|
+
</div>
|
179
|
+
<p>You can continue your upload with the above error(s) or go back and try again.</p>
|
180
|
+
<p>Do you want to force the upload?</p>
|
181
|
+
<button ng-click="mapSpreadsheet(true);" class='btn btn-warning btn-promo'>Upload anyway</button>
|
182
|
+
<button ng-click="step.title = 'upload'; mappingStep.title = 'mapping'" class='btn btn-success btn-promo skip'>Review and Try Again</button>
|
183
|
+
<div class='clearfix'></div>
|
184
|
+
|
185
|
+
</div>
|
186
|
+
|
187
|
+
</div>
|
188
|
+
|
189
|
+
</div>
|
190
|
+
|
191
|
+
</div>
|