404
8 |Page not found
9 |├── .gitignore ├── .gush.yml ├── README.md ├── elcodi ├── 404.html ├── __init__.py ├── base.html ├── content.html ├── css │ ├── base.css │ ├── bootstrap-custom.min.css │ ├── elcodi.css │ ├── font-awesome-4.0.3.css │ └── highlight.css ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── img │ ├── elcodi.png │ ├── favicon.ico │ └── grid.png ├── js │ ├── base.js │ ├── bootstrap-3.0.3.min.js │ ├── highlight.pack.js │ └── jquery-1.10.2.min.js ├── license │ └── highlight.js │ │ └── LICENSE ├── nav-sub.html ├── nav.html └── toc.html ├── manuscript ├── Book.txt ├── book │ ├── cart-architecture.md │ ├── category-architecture.md │ ├── commands.md │ ├── coupon-architecture.md │ ├── dictionary.md │ ├── emails.md │ ├── events.md │ ├── features.md │ ├── images │ │ ├── category.png │ │ ├── homepage.png │ │ ├── login.png │ │ ├── model-cart-cartline.png │ │ ├── model-cart-component.png │ │ ├── model-category.png │ │ ├── model-order-orderline.png │ │ ├── model-product-component.png │ │ ├── product.png │ │ ├── register.png │ │ ├── top-bar.png │ │ └── variant.png │ ├── index.md │ ├── payments.md │ ├── philosophy.md │ ├── plugins.md │ ├── processes.md │ ├── product-architecture.md │ ├── pull-requests.md │ ├── roadmap.md │ ├── running-test-suite.md │ ├── shipping.md │ ├── standards.md │ ├── templates.md │ ├── translate-elcodi.md │ ├── vagrant-quick-start.md │ ├── what-is-elcodi.md │ └── why-elcodi.md ├── component │ ├── entity-translator.md │ ├── index.md │ ├── media.md │ ├── menu.md │ ├── metrics.md │ ├── sitemap.md │ ├── state-transition-machine.md │ └── template.md ├── cookbook │ ├── adapters │ │ ├── currency-rates-populator.md │ │ ├── image-resize.md │ │ ├── location-loader.md │ │ ├── location-populator.md │ │ ├── location-provider.md │ │ ├── metric-bucket.md │ │ └── related-purchasables-provider.md │ ├── deprecation │ │ └── deprecate-a-method.md │ ├── implementation │ │ ├── implement-a-collector.md │ │ ├── implement-a-controller-and-a-command.md │ │ ├── implement-a-factory.md │ │ ├── implement-a-form-type.md │ │ ├── implement-a-repository.md │ │ ├── implement-an-entity.md │ │ └── implement-an-event-listener.md │ ├── index.md │ ├── installation │ │ ├── install-a-plugin.md │ │ └── install-dependent-bundles.md │ ├── overwrite │ │ ├── overwrite-a-parameter.md │ │ ├── overwrite-a-service.md │ │ └── overwrite-an-entity.md │ ├── usage │ │ ├── elcodi-watermark.md │ │ └── referrer-domain.md │ └── workflow │ │ └── create-automatic-coupon.md ├── images │ ├── category.png │ ├── homepage.png │ ├── login.png │ ├── model-cart-cartline.png │ ├── model-cart-component.png │ ├── model-category.png │ ├── model-order-orderline.png │ ├── model-product-component.png │ ├── product.png │ ├── register.png │ ├── title_page.png │ ├── top-bar.png │ └── variant.png ├── index.md └── quick-start.md ├── mkdocs.yml └── yuml.md /.gitignore: -------------------------------------------------------------------------------- 1 | /site 2 | -------------------------------------------------------------------------------- /.gush.yml: -------------------------------------------------------------------------------- 1 | adapter: github 2 | issue_tracker: github 3 | base: master 4 | table-pr: 5 | place_holder: ['Notes', ':+1: :older_man:'] 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Elcodi Documentation 2 | 3 | This documentation is rendered online at 4 | [http://elcodi.io/docs](http://elcodi.io/docs) 5 | 6 | * [Quick Start](http://elcodi.io/docs/quick-start/) 7 | * [The Book](http://elcodi.io/docs/book/index.html) 8 | * [The Components](http://elcodi.io/docs/components/index.html) 9 | * [The Cookbook](http://elcodi.io/docs/cookbook/index.html) 10 | 11 | ### Support 12 | 13 | * You can ask your questions to the community in 14 | [Gitter](http://gitter.im/elcodi/elcodi) and we'll try to help you as much as 15 | possible 16 | * Look for some help on [Stackoverflow](http://stackoverflow.com) 17 | * Ping us on [Twitter](http://twitter.com/elcodi_dev) 18 | * As a last resort, look at [google](http://google.com)! -------------------------------------------------------------------------------- /elcodi/404.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block content %} 4 | 5 |
Page not found
9 |