├── admin └── src │ ├── main │ ├── webapp │ │ ├── admin.html │ │ ├── login.jsp │ │ ├── WEB-INF │ │ │ ├── templates │ │ │ │ └── admin │ │ │ │ │ ├── layout │ │ │ │ │ ├── partials │ │ │ │ │ │ ├── breadcrumb.html │ │ │ │ │ │ ├── head.html │ │ │ │ │ │ ├── leftNav.html │ │ │ │ │ │ ├── footer.html │ │ │ │ │ │ └── header.html │ │ │ │ │ ├── loginLayout.html │ │ │ │ │ ├── fullPageLayout.html │ │ │ │ │ └── fullPageNonGwtLayout.html │ │ │ │ │ ├── modules │ │ │ │ │ └── modules.html │ │ │ │ │ └── login │ │ │ │ │ ├── forgotUsername.html │ │ │ │ │ ├── forgotPassword.html │ │ │ │ │ ├── login.html │ │ │ │ │ └── changePassword.html │ │ │ ├── jetty-web.xml │ │ │ ├── log4j.xml │ │ │ ├── applicationContext-datasource.xml │ │ │ ├── applicationContext-admin-filter.xml │ │ │ └── jetty-env.xml │ │ ├── admin │ │ │ └── resources │ │ │ │ └── img │ │ │ │ ├── error.png │ │ │ │ ├── login-btn.png │ │ │ │ ├── login-foot.png │ │ │ │ ├── broadleaf_logo.png │ │ │ │ ├── login_background.png │ │ │ │ ├── broadleaf_admin_header_logo.png │ │ │ │ ├── broadleaf_logo_white_small.png │ │ │ │ └── broadleaf_logo_white_xsmall.png │ │ └── META-INF │ │ │ └── context.xml │ ├── resources │ │ ├── runtime-properties │ │ │ ├── common.properties │ │ │ ├── staging.properties │ │ │ ├── production.properties │ │ │ ├── integrationdev.properties │ │ │ ├── integrationqa.properties │ │ │ ├── local.properties │ │ │ └── development.properties │ │ ├── messages-admin.properties │ │ ├── messages-admin_es.properties │ │ ├── messages-admin_fr.properties │ │ ├── br │ │ │ └── com │ │ │ │ └── devopsnapratica │ │ │ │ └── gwt │ │ │ │ └── devopsnapraticaAdmin.gwt.xml │ │ └── bl-override-ehcache-admin.xml │ └── java │ │ └── br │ │ └── com │ │ └── devopsnapratica │ │ └── admin │ │ └── controller │ │ └── AdminModulesController.java │ └── test │ └── java │ └── br │ └── com │ └── devopsnapratica │ └── admin │ └── controller │ └── AdminLoginControllerTest.java ├── lib ├── ant-contrib-1.0b3.jar └── maven-ant-tasks-2.1.3.jar ├── site └── src │ ├── main │ ├── webapp │ │ ├── WEB-INF │ │ │ ├── templates │ │ │ │ ├── catalog │ │ │ │ │ ├── partials │ │ │ │ │ │ ├── reviewSuccessful.html │ │ │ │ │ │ ├── rightHandBannerAds.html │ │ │ │ │ │ ├── productSortOptions.html │ │ │ │ │ │ ├── productPagingOptions.html │ │ │ │ │ │ ├── productOptions.html │ │ │ │ │ │ ├── review.html │ │ │ │ │ │ └── productListItem.html │ │ │ │ │ ├── category.html │ │ │ │ │ └── search.html │ │ │ │ ├── utility │ │ │ │ │ └── blcRedirect.html │ │ │ │ ├── account │ │ │ │ │ ├── partials │ │ │ │ │ │ ├── accountMenu.html │ │ │ │ │ │ └── wishlistItemsTable.html │ │ │ │ │ ├── manageWishlist.html │ │ │ │ │ ├── orderHistory.html │ │ │ │ │ ├── account.html │ │ │ │ │ ├── updateAccount.html │ │ │ │ │ └── changePassword.html │ │ │ │ ├── authentication │ │ │ │ │ ├── forgotPasswordSuccess.html │ │ │ │ │ ├── resetPasswordError.html │ │ │ │ │ ├── forgotPassword.html │ │ │ │ │ ├── resetPassword.html │ │ │ │ │ └── login.html │ │ │ │ ├── layout │ │ │ │ │ ├── partials │ │ │ │ │ │ ├── nav.html │ │ │ │ │ │ ├── head.html │ │ │ │ │ │ ├── headerCheckout.html │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ └── footer.html │ │ │ │ │ ├── fullPageNoNavLayout.html │ │ │ │ │ ├── fullPageLayout.html │ │ │ │ │ ├── accountLayout.html │ │ │ │ │ ├── home.html │ │ │ │ │ └── checkoutLayout.html │ │ │ │ ├── content │ │ │ │ │ └── default.html │ │ │ │ ├── checkout │ │ │ │ │ └── partials │ │ │ │ │ │ ├── orderInfoForm.html │ │ │ │ │ │ └── multishipInfo.html │ │ │ │ └── cart │ │ │ │ │ ├── cart.html │ │ │ │ │ └── partials │ │ │ │ │ └── cartProductsTable.html │ │ │ ├── jetty-web.xml │ │ │ ├── log4j.xml │ │ │ ├── applicationContext-filter.xml │ │ │ ├── applicationContext-datasource.xml │ │ │ └── jetty-env.xml │ │ ├── img │ │ │ ├── star.gif │ │ │ ├── blank.gif │ │ │ ├── canvas.jpg │ │ │ ├── darker.jpg │ │ │ ├── paypal.gif │ │ │ ├── rhs-ad.jpg │ │ │ ├── badge-new.png │ │ │ ├── loading.gif │ │ │ ├── sharethis.png │ │ │ ├── sidebarbg.jpg │ │ │ ├── flags │ │ │ │ ├── Spain.png │ │ │ │ ├── France.png │ │ │ │ ├── Mexico.png │ │ │ │ ├── United-States.png │ │ │ │ └── United-Kingdom.png │ │ │ ├── nav-divider.jpg │ │ │ ├── nav-divider.png │ │ │ ├── zoomloader.gif │ │ │ ├── broadleaf-seal.png │ │ │ ├── price-slider.jpg │ │ │ ├── search-button.png │ │ │ ├── shopping_cart.png │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_sprite.png │ │ │ ├── banners │ │ │ │ ├── shirt-special.jpg │ │ │ │ ├── buy-two-get-one.jpg │ │ │ │ ├── member-special.jpg │ │ │ │ ├── shirts-speciale.jpg │ │ │ │ ├── promocion-camisas.jpg │ │ │ │ └── buy-one-get-one-home-banner.jpg │ │ │ ├── glyphicons-halflings.png │ │ │ ├── right_column_headerbg.jpg │ │ │ ├── the-heat-clinic-logo.png │ │ │ ├── the-heat-clinic-seal.png │ │ │ ├── merch │ │ │ │ ├── habanero_mens_red.jpg │ │ │ │ ├── habanero_mens_black.jpg │ │ │ │ ├── habanero_mens_silver.jpg │ │ │ │ ├── habanero_womens_red.jpg │ │ │ │ ├── habanero_womens_black.jpg │ │ │ │ ├── habanero_womens_silver.jpg │ │ │ │ ├── heat_clinic_mascot_mens_red.jpg │ │ │ │ ├── heat_clinic_handdrawn_mens_red.jpg │ │ │ │ ├── heat_clinic_mascot_mens_black.jpg │ │ │ │ ├── heat_clinic_mascot_mens_silver.jpg │ │ │ │ ├── heat_clinic_mascot_womens_red.jpg │ │ │ │ ├── heat_clinic_handdrawn_mens_black.jpg │ │ │ │ ├── heat_clinic_handdrawn_mens_silver.jpg │ │ │ │ ├── heat_clinic_handdrawn_womens_red.jpg │ │ │ │ ├── heat_clinic_mascot_womens_black.jpg │ │ │ │ ├── heat_clinic_mascot_womens_silver.jpg │ │ │ │ ├── heat_clinic_handdrawn_womens_black.jpg │ │ │ │ └── heat_clinic_handdrawn_womens_silver.jpg │ │ │ ├── payment │ │ │ │ ├── visa-curved-32px.png │ │ │ │ ├── paypal-curved-32px.png │ │ │ │ ├── discover-curved-32px.png │ │ │ │ ├── mastercard-curved-32px.png │ │ │ │ └── american-express-curved-32px.png │ │ │ ├── sauces │ │ │ │ ├── Green-Ghost-Close.jpg │ │ │ │ ├── hot_sauce_bundle.jpg │ │ │ │ ├── Green-Ghost-Bottle.jpg │ │ │ │ ├── Hoppin-Hot-Sauce-Close.jpg │ │ │ │ ├── Insanity-Sauce-Bottle.jpg │ │ │ │ ├── Insanity-Sauce-Close.jpg │ │ │ │ ├── Sweet-Death-Sauce-Logo.jpg │ │ │ │ ├── Sweet-Death-Sauce-Tile.jpg │ │ │ │ ├── zoom │ │ │ │ │ ├── Green-Ghost-Close.jpg │ │ │ │ │ ├── hot_sauce_bundle.jpg │ │ │ │ │ ├── Green-Ghost-Bottle.jpg │ │ │ │ │ ├── Hoppin-Hot-Sauce-Close.jpg │ │ │ │ │ ├── Insanity-Sauce-Bottle.jpg │ │ │ │ │ ├── Insanity-Sauce-Close.jpg │ │ │ │ │ ├── Sweet-Death-Sauce-Logo.jpg │ │ │ │ │ ├── Sweet-Death-Sauce-Tile.jpg │ │ │ │ │ ├── Hoppin-Hot-Sauce-Bottle.jpg │ │ │ │ │ ├── Sudden-Death-Sauce-Close.jpg │ │ │ │ │ ├── Sweet-Death-Sauce-Bottle.jpg │ │ │ │ │ ├── Sweet-Death-Sauce-Close.jpg │ │ │ │ │ ├── Sweet-Death-Sauce-Grass.jpg │ │ │ │ │ ├── Sweet-Death-Sauce-Skull.jpg │ │ │ │ │ ├── Sudden-Death-Sauce-Bottle.jpg │ │ │ │ │ ├── Scotch-Bonnet-Hot-Sauce-Close.jpg │ │ │ │ │ ├── Hurtin-Jalepeno-Hot-Sauce-Bottle.jpg │ │ │ │ │ ├── Hurtin-Jalepeno-Hot-Sauce-Close.jpg │ │ │ │ │ ├── Roasted-Garlic-Hot-Sauce-Bottle.jpg │ │ │ │ │ ├── Roasted-Garlic-Hot-Sauce-Close.jpg │ │ │ │ │ ├── Scotch-Bonnet-Hot-Sauce-Bottle.jpg │ │ │ │ │ ├── Cool-Cayenne-Pepper-Hot-Sauce-Bottle.jpg │ │ │ │ │ ├── Cool-Cayenne-Pepper-Hot-Sauce-Close.jpg │ │ │ │ │ ├── Armageddon-The-Hot-Sauce-To-End-All-Bottle.jpg │ │ │ │ │ ├── Armageddon-The-Hot-Sauce-To-End-All-Close.jpg │ │ │ │ │ ├── Bull-Snort-Smokin-Toncils-Hot-Sauce-Bottle.jpg │ │ │ │ │ ├── Bull-Snort-Smokin-Toncils-Hot-Sauce-Close.jpg │ │ │ │ │ ├── Day-of-the-Dead-Chipotle-Hot-Sauce-Bottle.jpg │ │ │ │ │ ├── Day-of-the-Dead-Chipotle-Hot-Sauce-Close.jpg │ │ │ │ │ ├── Day-of-the-Dead-Habanero-Hot-Sauce-Bottle.jpg │ │ │ │ │ ├── Day-of-the-Dead-Habanero-Hot-Sauce-Close.jpg │ │ │ │ │ ├── Dr.-Chilemeisters-Insane-Hot-Sauce-Bottle.jpg │ │ │ │ │ ├── Dr.-Chilemeisters-Insane-Hot-Sauce-Close.jpg │ │ │ │ │ ├── Day-of-the-Dead-Scotch-Bonnet-Hot-Sauce-Bottle.jpg │ │ │ │ │ ├── Day-of-the-Dead-Scotch-Bonnet-Hot-Sauce-Close.jpg │ │ │ │ │ ├── Roasted-Red-Pepper-and-Chipotle-Hot-Sauce-Close.jpg │ │ │ │ │ ├── Blazin-Saddle-XXX-Hot-Habanero-Pepper-Sauce-Close.jpg │ │ │ │ │ ├── Bull-Snort-Cowboy-Cayenne-Pepper-Hot-Sauce-Bottle.jpg │ │ │ │ │ ├── Bull-Snort-Cowboy-Cayenne-Pepper-Hot-Sauce-Close.jpg │ │ │ │ │ ├── Cafe-Louisiane-Sweet-Cajun-Blackening-Sauce-Close.jpg │ │ │ │ │ ├── Roasted-Red-Pepper-and-Chipotle-Hot-Sauce-Bottle.jpg │ │ │ │ │ ├── Blazin-Saddle-XXX-Hot-Habanero-Pepper-Sauce-Bottle.jpg │ │ │ │ │ └── Cafe-Louisiane-Sweet-Cajun-Blackening-Sauce-Bottle.jpg │ │ │ │ ├── Hoppin-Hot-Sauce-Bottle.jpg │ │ │ │ ├── Sudden-Death-Sauce-Close.jpg │ │ │ │ ├── Sweet-Death-Sauce-Bottle.jpg │ │ │ │ ├── Sweet-Death-Sauce-Close.jpg │ │ │ │ ├── Sweet-Death-Sauce-Grass.jpg │ │ │ │ ├── Sweet-Death-Sauce-Skull.jpg │ │ │ │ ├── Sudden-Death-Sauce-Bottle.jpg │ │ │ │ ├── Scotch-Bonnet-Hot-Sauce-Close.jpg │ │ │ │ ├── Hurtin-Jalepeno-Hot-Sauce-Bottle.jpg │ │ │ │ ├── Hurtin-Jalepeno-Hot-Sauce-Close.jpg │ │ │ │ ├── Roasted-Garlic-Hot-Sauce-Bottle.jpg │ │ │ │ ├── Roasted-Garlic-Hot-Sauce-Close.jpg │ │ │ │ ├── Scotch-Bonnet-Hot-Sauce-Bottle.jpg │ │ │ │ ├── Cool-Cayenne-Pepper-Hot-Sauce-Bottle.jpg │ │ │ │ ├── Cool-Cayenne-Pepper-Hot-Sauce-Close.jpg │ │ │ │ ├── Armageddon-The-Hot-Sauce-To-End-All-Bottle.jpg │ │ │ │ ├── Armageddon-The-Hot-Sauce-To-End-All-Close.jpg │ │ │ │ ├── Bull-Snort-Smokin-Toncils-Hot-Sauce-Bottle.jpg │ │ │ │ ├── Bull-Snort-Smokin-Toncils-Hot-Sauce-Close.jpg │ │ │ │ ├── Day-of-the-Dead-Chipotle-Hot-Sauce-Bottle.jpg │ │ │ │ ├── Day-of-the-Dead-Chipotle-Hot-Sauce-Close.jpg │ │ │ │ ├── Day-of-the-Dead-Habanero-Hot-Sauce-Bottle.jpg │ │ │ │ ├── Day-of-the-Dead-Habanero-Hot-Sauce-Close.jpg │ │ │ │ ├── Dr.-Chilemeisters-Insane-Hot-Sauce-Bottle.jpg │ │ │ │ ├── Dr.-Chilemeisters-Insane-Hot-Sauce-Close.jpg │ │ │ │ ├── Day-of-the-Dead-Scotch-Bonnet-Hot-Sauce-Bottle.jpg │ │ │ │ ├── Day-of-the-Dead-Scotch-Bonnet-Hot-Sauce-Close.jpg │ │ │ │ ├── Roasted-Red-Pepper-and-Chipotle-Hot-Sauce-Close.jpg │ │ │ │ ├── Blazin-Saddle-XXX-Hot-Habanero-Pepper-Sauce-Close.jpg │ │ │ │ ├── Bull-Snort-Cowboy-Cayenne-Pepper-Hot-Sauce-Bottle.jpg │ │ │ │ ├── Bull-Snort-Cowboy-Cayenne-Pepper-Hot-Sauce-Close.jpg │ │ │ │ ├── Cafe-Louisiane-Sweet-Cajun-Blackening-Sauce-Close.jpg │ │ │ │ ├── Roasted-Red-Pepper-and-Chipotle-Hot-Sauce-Bottle.jpg │ │ │ │ ├── Blazin-Saddle-XXX-Hot-Habanero-Pepper-Sauce-Bottle.jpg │ │ │ │ └── Cafe-Louisiane-Sweet-Cajun-Blackening-Sauce-Bottle.jpg │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── the-heat-clinic-logo-internal.png │ │ ├── fonts │ │ │ ├── oxygen400.woff │ │ │ ├── open-sans400.woff │ │ │ └── open-sans600.woff │ │ ├── js │ │ │ ├── libs │ │ │ │ └── jquery.MetaData.js │ │ │ ├── manageAccountOperations.js │ │ │ ├── reviewOperations.js │ │ │ └── BLC.js │ │ ├── css │ │ │ └── jquery.rating.css │ │ └── META-INF │ │ │ └── context.xml │ ├── resources │ │ ├── messages_fr.properties │ │ ├── runtime-properties │ │ │ ├── staging.properties │ │ │ ├── production.properties │ │ │ ├── integrationqa.properties │ │ │ ├── common.properties │ │ │ ├── development.properties │ │ │ ├── local.properties │ │ │ └── integrationdev.properties │ │ ├── emailTemplates │ │ │ ├── register-email.html │ │ │ └── resetPassword-email.html │ │ ├── test │ │ │ └── load-properties │ │ │ │ └── development.properties │ │ ├── bl-override-ehcache.xml │ │ └── solrconfig.xml │ └── java │ │ └── br │ │ └── com │ │ └── devopsnapratica │ │ └── controller │ │ ├── content │ │ └── PageController.java │ │ ├── catalog │ │ ├── ProductController.java │ │ ├── CategoryController.java │ │ ├── SearchController.java │ │ └── RatingsController.java │ │ └── account │ │ ├── RedirectController.java │ │ ├── OrderHistoryController.java │ │ ├── UpdateAccountController.java │ │ ├── ChangePasswordController.java │ │ └── RegisterController.java │ └── test │ └── java │ └── br │ └── com │ └── devopsnapratica │ └── acceptance │ └── SearchTest.java ├── README.md ├── core ├── src │ └── main │ │ └── resources │ │ ├── runtime-properties │ │ ├── production-shared.properties │ │ ├── staging-shared.properties │ │ ├── integrationqa-shared.properties │ │ ├── development-shared.properties │ │ ├── integrationdev-shared.properties │ │ └── local-shared.properties │ │ ├── META-INF │ │ └── persistence.xml │ │ ├── applicationContext.xml │ │ ├── applicationContext-entity.xml │ │ └── sql │ │ └── load_admin_users.sql └── pom.xml ├── .gitignore ├── combined ├── README.md └── src │ └── main │ └── webapp │ └── WEB-INF │ └── applicationContext-filter-combined.xml └── LICENSE /admin/src/main/webapp/admin.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/src/main/webapp/login.jsp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/templates/admin/layout/partials/breadcrumb.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/templates/admin/modules/modules.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /lib/ant-contrib-1.0b3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/lib/ant-contrib-1.0b3.jar -------------------------------------------------------------------------------- /lib/maven-ant-tasks-2.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/lib/maven-ant-tasks-2.1.3.jar -------------------------------------------------------------------------------- /site/src/main/webapp/WEB-INF/templates/catalog/partials/reviewSuccessful.html: -------------------------------------------------------------------------------- 1 |

Your review was successfully submitted!

-------------------------------------------------------------------------------- /site/src/main/webapp/img/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/star.gif -------------------------------------------------------------------------------- /site/src/main/webapp/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/blank.gif -------------------------------------------------------------------------------- /site/src/main/webapp/img/canvas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/canvas.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/darker.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/paypal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/paypal.gif -------------------------------------------------------------------------------- /site/src/main/webapp/img/rhs-ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/rhs-ad.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/badge-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/badge-new.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/loading.gif -------------------------------------------------------------------------------- /site/src/main/webapp/img/sharethis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sharethis.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/sidebarbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sidebarbg.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/flags/Spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/flags/Spain.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/nav-divider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/nav-divider.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/nav-divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/nav-divider.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/zoomloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/zoomloader.gif -------------------------------------------------------------------------------- /site/src/main/webapp/fonts/oxygen400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/fonts/oxygen400.woff -------------------------------------------------------------------------------- /site/src/main/webapp/img/broadleaf-seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/broadleaf-seal.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/flags/France.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/flags/France.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/flags/Mexico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/flags/Mexico.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/price-slider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/price-slider.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/search-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/search-button.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/shopping_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/shopping_cart.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Loja Virtual de Demonstração 2 | 3 | Fork do projeto de demonstração do [Broadleaf Commerce](http://www.broadleafcommerce.org). 4 | 5 | -------------------------------------------------------------------------------- /site/src/main/webapp/fonts/open-sans400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/fonts/open-sans400.woff -------------------------------------------------------------------------------- /site/src/main/webapp/fonts/open-sans600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/fonts/open-sans600.woff -------------------------------------------------------------------------------- /site/src/main/webapp/img/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/fancybox_loading.gif -------------------------------------------------------------------------------- /site/src/main/webapp/img/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/fancybox_sprite.png -------------------------------------------------------------------------------- /site/src/main/resources/messages_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/resources/messages_fr.properties -------------------------------------------------------------------------------- /site/src/main/webapp/img/flags/United-States.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/flags/United-States.png -------------------------------------------------------------------------------- /site/src/main/webapp/js/libs/jquery.MetaData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/js/libs/jquery.MetaData.js -------------------------------------------------------------------------------- /site/src/main/webapp/img/banners/shirt-special.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/banners/shirt-special.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/flags/United-Kingdom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/flags/United-Kingdom.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/right_column_headerbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/right_column_headerbg.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/the-heat-clinic-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/the-heat-clinic-logo.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/the-heat-clinic-seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/the-heat-clinic-seal.png -------------------------------------------------------------------------------- /admin/src/main/webapp/admin/resources/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/admin/src/main/webapp/admin/resources/img/error.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/banners/buy-two-get-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/banners/buy-two-get-one.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/banners/member-special.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/banners/member-special.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/banners/shirts-speciale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/banners/shirts-speciale.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/habanero_mens_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/habanero_mens_red.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/payment/visa-curved-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/payment/visa-curved-32px.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Green-Ghost-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Green-Ghost-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/hot_sauce_bundle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/hot_sauce_bundle.jpg -------------------------------------------------------------------------------- /admin/src/main/webapp/admin/resources/img/login-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/admin/src/main/webapp/admin/resources/img/login-btn.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/banners/promocion-camisas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/banners/promocion-camisas.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/habanero_mens_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/habanero_mens_black.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/habanero_mens_silver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/habanero_mens_silver.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/habanero_womens_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/habanero_womens_red.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/payment/paypal-curved-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/payment/paypal-curved-32px.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Green-Ghost-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Green-Ghost-Bottle.jpg -------------------------------------------------------------------------------- /admin/src/main/webapp/admin/resources/img/login-foot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/admin/src/main/webapp/admin/resources/img/login-foot.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/habanero_womens_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/habanero_womens_black.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/habanero_womens_silver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/habanero_womens_silver.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/payment/discover-curved-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/payment/discover-curved-32px.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Hoppin-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Hoppin-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Insanity-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Insanity-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Insanity-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Insanity-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Sweet-Death-Sauce-Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Sweet-Death-Sauce-Logo.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Sweet-Death-Sauce-Tile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Sweet-Death-Sauce-Tile.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Green-Ghost-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Green-Ghost-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/hot_sauce_bundle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/hot_sauce_bundle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/the-heat-clinic-logo-internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/the-heat-clinic-logo-internal.png -------------------------------------------------------------------------------- /admin/src/main/webapp/admin/resources/img/broadleaf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/admin/src/main/webapp/admin/resources/img/broadleaf_logo.png -------------------------------------------------------------------------------- /site/src/main/webapp/WEB-INF/templates/utility/blcRedirect.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/src/main/webapp/img/payment/mastercard-curved-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/payment/mastercard-curved-32px.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Hoppin-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Hoppin-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Sudden-Death-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Sudden-Death-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Sweet-Death-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Sweet-Death-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Sweet-Death-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Sweet-Death-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Sweet-Death-Sauce-Grass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Sweet-Death-Sauce-Grass.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Sweet-Death-Sauce-Skull.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Sweet-Death-Sauce-Skull.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Green-Ghost-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Green-Ghost-Bottle.jpg -------------------------------------------------------------------------------- /admin/src/main/webapp/admin/resources/img/login_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/admin/src/main/webapp/admin/resources/img/login_background.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/heat_clinic_mascot_mens_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/heat_clinic_mascot_mens_red.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Sudden-Death-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Sudden-Death-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Hoppin-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Hoppin-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Insanity-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Insanity-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Insanity-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Insanity-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Sweet-Death-Sauce-Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Sweet-Death-Sauce-Logo.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Sweet-Death-Sauce-Tile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Sweet-Death-Sauce-Tile.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/banners/buy-one-get-one-home-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/banners/buy-one-get-one-home-banner.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/heat_clinic_handdrawn_mens_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/heat_clinic_handdrawn_mens_red.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/heat_clinic_mascot_mens_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/heat_clinic_mascot_mens_black.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/heat_clinic_mascot_mens_silver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/heat_clinic_mascot_mens_silver.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/heat_clinic_mascot_womens_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/heat_clinic_mascot_womens_red.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/payment/american-express-curved-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/payment/american-express-curved-32px.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Scotch-Bonnet-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Scotch-Bonnet-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Hoppin-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Hoppin-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Sudden-Death-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Sudden-Death-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Sweet-Death-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Sweet-Death-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Sweet-Death-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Sweet-Death-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Sweet-Death-Sauce-Grass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Sweet-Death-Sauce-Grass.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Sweet-Death-Sauce-Skull.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Sweet-Death-Sauce-Skull.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/heat_clinic_handdrawn_mens_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/heat_clinic_handdrawn_mens_black.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/heat_clinic_handdrawn_mens_silver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/heat_clinic_handdrawn_mens_silver.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/heat_clinic_handdrawn_womens_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/heat_clinic_handdrawn_womens_red.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/heat_clinic_mascot_womens_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/heat_clinic_mascot_womens_black.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/heat_clinic_mascot_womens_silver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/heat_clinic_mascot_womens_silver.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Hurtin-Jalepeno-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Hurtin-Jalepeno-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Hurtin-Jalepeno-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Hurtin-Jalepeno-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Roasted-Garlic-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Roasted-Garlic-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Roasted-Garlic-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Roasted-Garlic-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Scotch-Bonnet-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Scotch-Bonnet-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Sudden-Death-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Sudden-Death-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/heat_clinic_handdrawn_womens_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/heat_clinic_handdrawn_womens_black.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/merch/heat_clinic_handdrawn_womens_silver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/merch/heat_clinic_handdrawn_womens_silver.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Scotch-Bonnet-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Scotch-Bonnet-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /admin/src/main/webapp/admin/resources/img/broadleaf_admin_header_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/admin/src/main/webapp/admin/resources/img/broadleaf_admin_header_logo.png -------------------------------------------------------------------------------- /admin/src/main/webapp/admin/resources/img/broadleaf_logo_white_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/admin/src/main/webapp/admin/resources/img/broadleaf_logo_white_small.png -------------------------------------------------------------------------------- /admin/src/main/webapp/admin/resources/img/broadleaf_logo_white_xsmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/admin/src/main/webapp/admin/resources/img/broadleaf_logo_white_xsmall.png -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Cool-Cayenne-Pepper-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Cool-Cayenne-Pepper-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Cool-Cayenne-Pepper-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Cool-Cayenne-Pepper-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Hurtin-Jalepeno-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Hurtin-Jalepeno-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Hurtin-Jalepeno-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Hurtin-Jalepeno-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Roasted-Garlic-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Roasted-Garlic-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Roasted-Garlic-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Roasted-Garlic-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Scotch-Bonnet-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Scotch-Bonnet-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Armageddon-The-Hot-Sauce-To-End-All-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Armageddon-The-Hot-Sauce-To-End-All-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Armageddon-The-Hot-Sauce-To-End-All-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Armageddon-The-Hot-Sauce-To-End-All-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Bull-Snort-Smokin-Toncils-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Bull-Snort-Smokin-Toncils-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Bull-Snort-Smokin-Toncils-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Bull-Snort-Smokin-Toncils-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Day-of-the-Dead-Chipotle-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Day-of-the-Dead-Chipotle-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Day-of-the-Dead-Chipotle-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Day-of-the-Dead-Chipotle-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Day-of-the-Dead-Habanero-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Day-of-the-Dead-Habanero-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Day-of-the-Dead-Habanero-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Day-of-the-Dead-Habanero-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Dr.-Chilemeisters-Insane-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Dr.-Chilemeisters-Insane-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Dr.-Chilemeisters-Insane-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Dr.-Chilemeisters-Insane-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Cool-Cayenne-Pepper-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Cool-Cayenne-Pepper-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Cool-Cayenne-Pepper-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Cool-Cayenne-Pepper-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Day-of-the-Dead-Scotch-Bonnet-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Day-of-the-Dead-Scotch-Bonnet-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Day-of-the-Dead-Scotch-Bonnet-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Day-of-the-Dead-Scotch-Bonnet-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Roasted-Red-Pepper-and-Chipotle-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Roasted-Red-Pepper-and-Chipotle-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Armageddon-The-Hot-Sauce-To-End-All-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Armageddon-The-Hot-Sauce-To-End-All-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Armageddon-The-Hot-Sauce-To-End-All-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Armageddon-The-Hot-Sauce-To-End-All-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Bull-Snort-Smokin-Toncils-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Bull-Snort-Smokin-Toncils-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Bull-Snort-Smokin-Toncils-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Bull-Snort-Smokin-Toncils-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Day-of-the-Dead-Chipotle-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Day-of-the-Dead-Chipotle-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Day-of-the-Dead-Chipotle-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Day-of-the-Dead-Chipotle-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Day-of-the-Dead-Habanero-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Day-of-the-Dead-Habanero-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Day-of-the-Dead-Habanero-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Day-of-the-Dead-Habanero-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Dr.-Chilemeisters-Insane-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Dr.-Chilemeisters-Insane-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Dr.-Chilemeisters-Insane-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Dr.-Chilemeisters-Insane-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Blazin-Saddle-XXX-Hot-Habanero-Pepper-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Blazin-Saddle-XXX-Hot-Habanero-Pepper-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Bull-Snort-Cowboy-Cayenne-Pepper-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Bull-Snort-Cowboy-Cayenne-Pepper-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Bull-Snort-Cowboy-Cayenne-Pepper-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Bull-Snort-Cowboy-Cayenne-Pepper-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Cafe-Louisiane-Sweet-Cajun-Blackening-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Cafe-Louisiane-Sweet-Cajun-Blackening-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Roasted-Red-Pepper-and-Chipotle-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Roasted-Red-Pepper-and-Chipotle-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Blazin-Saddle-XXX-Hot-Habanero-Pepper-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Blazin-Saddle-XXX-Hot-Habanero-Pepper-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/Cafe-Louisiane-Sweet-Cajun-Blackening-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/Cafe-Louisiane-Sweet-Cajun-Blackening-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Day-of-the-Dead-Scotch-Bonnet-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Day-of-the-Dead-Scotch-Bonnet-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Day-of-the-Dead-Scotch-Bonnet-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Day-of-the-Dead-Scotch-Bonnet-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Roasted-Red-Pepper-and-Chipotle-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Roasted-Red-Pepper-and-Chipotle-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Blazin-Saddle-XXX-Hot-Habanero-Pepper-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Blazin-Saddle-XXX-Hot-Habanero-Pepper-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Bull-Snort-Cowboy-Cayenne-Pepper-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Bull-Snort-Cowboy-Cayenne-Pepper-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Bull-Snort-Cowboy-Cayenne-Pepper-Hot-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Bull-Snort-Cowboy-Cayenne-Pepper-Hot-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Cafe-Louisiane-Sweet-Cajun-Blackening-Sauce-Close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Cafe-Louisiane-Sweet-Cajun-Blackening-Sauce-Close.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Roasted-Red-Pepper-and-Chipotle-Hot-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Roasted-Red-Pepper-and-Chipotle-Hot-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /admin/src/main/resources/runtime-properties/common.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | 5 | # Please see common-shared.properties for more information on how the properties files work -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Blazin-Saddle-XXX-Hot-Habanero-Pepper-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Blazin-Saddle-XXX-Hot-Habanero-Pepper-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /site/src/main/webapp/img/sauces/zoom/Cafe-Louisiane-Sweet-Cajun-Blackening-Sauce-Bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtsato/loja-virtual-devops/HEAD/site/src/main/webapp/img/sauces/zoom/Cafe-Louisiane-Sweet-Cajun-Blackening-Sauce-Bottle.jpg -------------------------------------------------------------------------------- /core/src/main/resources/runtime-properties/production-shared.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | 5 | # Please see common-shared.properties for more information on how the properties files work -------------------------------------------------------------------------------- /core/src/main/resources/runtime-properties/staging-shared.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | 5 | # Please see common-shared.properties for more information on how the properties files work -------------------------------------------------------------------------------- /core/src/main/resources/runtime-properties/integrationqa-shared.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | 5 | # Please see common-shared.properties for more information on how the properties files work 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build.properties 2 | target/ 3 | .classpath 4 | .project 5 | .settings 6 | *.swp 7 | test-output 8 | .idea 9 | *.iml 10 | .metadata 11 | *.ipr 12 | bin/ 13 | site/data/ 14 | .svn 15 | site/solrhome 16 | combined/data/ 17 | combined/solrhome 18 | combined/overlays 19 | data/ 20 | -------------------------------------------------------------------------------- /core/src/main/resources/runtime-properties/development-shared.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | 5 | # Please see common-shared.properties for more information on how the properties files work 6 | 7 | use.jrebel.compatibility.mode=true -------------------------------------------------------------------------------- /site/src/main/resources/runtime-properties/staging.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | # staging-shared.properties 5 | # common.properties 6 | 7 | # Please see common-shared.properties for more information on how the properties files work -------------------------------------------------------------------------------- /admin/src/main/resources/runtime-properties/staging.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | # staging-shared.properties 5 | # common.properties 6 | 7 | # Please see common-shared.properties for more information on how the properties files work -------------------------------------------------------------------------------- /site/src/main/webapp/WEB-INF/templates/catalog/partials/rightHandBannerAds.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
-------------------------------------------------------------------------------- /admin/src/main/resources/runtime-properties/production.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | # production-shared.properties 5 | # common.properties 6 | 7 | # Please see common-shared.properties for more information on how the properties files work -------------------------------------------------------------------------------- /site/src/main/resources/runtime-properties/production.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | # production-shared.properties 5 | # common.properties 6 | 7 | # Please see common-shared.properties for more information on how the properties files work -------------------------------------------------------------------------------- /site/src/main/resources/emailTemplates/register-email.html: -------------------------------------------------------------------------------- 1 | 2 | Registration Success 3 | 4 | 5 |
6 |

You have successfully registered with our site.

7 | 8 | -------------------------------------------------------------------------------- /site/src/main/resources/runtime-properties/integrationqa.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | # integrationqa-shared.properties 5 | # common.properties 6 | 7 | # Please see common-shared.properties for more information on how the properties files work -------------------------------------------------------------------------------- /site/src/main/webapp/WEB-INF/jetty-web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | / 7 | 8 | -------------------------------------------------------------------------------- /admin/src/main/resources/runtime-properties/integrationdev.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | # integrationdev-shared.properties 5 | # common.properties 6 | 7 | # Please see common-shared.properties for more information on how the properties files work 8 | -------------------------------------------------------------------------------- /admin/src/main/resources/runtime-properties/integrationqa.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | # integrationqa-shared.properties 5 | # common.properties 6 | 7 | # Please see common-shared.properties for more information on how the properties files work 8 | -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jetty-web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | /admin 7 | 8 | -------------------------------------------------------------------------------- /site/src/main/resources/emailTemplates/resetPassword-email.html: -------------------------------------------------------------------------------- 1 | 2 | Reset Password 3 | 4 |

You (or someone else) requested this reset password notification.

5 |
6 |
7 |

Click here to change your password.

8 | 9 | -------------------------------------------------------------------------------- /core/src/main/resources/runtime-properties/integrationdev-shared.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | 5 | # Please see common-shared.properties for more information on how the properties files work 6 | 7 | blPU.hibernate.hbm2ddl.auto=update 8 | blCMSStorage.hibernate.hbm2ddl.auto=update 9 | blSecurePU.hibernate.hbm2ddl.auto=update -------------------------------------------------------------------------------- /site/src/main/webapp/WEB-INF/templates/catalog/partials/productSortOptions.html: -------------------------------------------------------------------------------- 1 |
2 | Sort by: 3 | Price 4 | | 5 | Name 6 |
-------------------------------------------------------------------------------- /site/src/main/webapp/WEB-INF/templates/account/partials/accountMenu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/src/main/resources/runtime-properties/common.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | # [current-environment].properties 5 | 6 | # Please see common-shared.properties for more information on how the properties files work 7 | web.defaultPageSize=15 8 | web.maxPageSize=100 9 | 10 | solr.source=solrEmbedded 11 | solr.index.start.delay=5000 12 | solr.index.repeat.interval=3600000 13 | -------------------------------------------------------------------------------- /combined/README.md: -------------------------------------------------------------------------------- 1 | ## Combined Demo Site 2 | 3 | This Maven module is intended to represent a combined configuration that blends the admin and e-commerce site into a single 4 | application. This is useful for smaller sites whose load demands do not require load balanced environment with multiple 5 | instances of the site running. By combining the site and admin together, the overall resource requirements for the container 6 | running both the applications are cut in half. 7 | -------------------------------------------------------------------------------- /site/src/main/webapp/WEB-INF/templates/account/manageWishlist.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
5 |
6 | 7 |
8 |

You do not have any items in your wishlist

9 |
10 | 11 |
-------------------------------------------------------------------------------- /site/src/main/webapp/WEB-INF/templates/authentication/forgotPasswordSuccess.html: -------------------------------------------------------------------------------- 1 |
2 |
Forgot Password Success - Broadleaf Demo - Heat Clinic
3 | 4 |
5 |

Forgot Password

6 | 7 |

We've sent you an email with instructions to reset your password.

8 | 9 |
10 |
-------------------------------------------------------------------------------- /site/src/main/webapp/WEB-INF/templates/catalog/partials/productPagingOptions.html: -------------------------------------------------------------------------------- 1 |
2 | Page: 3 | 8 |
9 | -------------------------------------------------------------------------------- /core/src/main/resources/runtime-properties/local-shared.properties: -------------------------------------------------------------------------------- 1 | # These settings override and append settings in: 2 | 3 | # common-shared.properties 4 | 5 | # Please see common-shared.properties for more information on how the properties files work 6 | blPU.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect 7 | blSecurePU.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect 8 | blCMSStorage.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect 9 | 10 | use.jrebel.compatibility.mode=true -------------------------------------------------------------------------------- /site/src/main/webapp/WEB-INF/templates/layout/partials/nav.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/templates/admin/layout/loginLayout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 9 |
10 |
11 |
12 |
13 |