├── .coveragerc ├── .dockerignore ├── .editorconfig ├── .github ├── issue_template.md └── workflows │ └── test.yml ├── .gitignore ├── .landscape.yaml ├── .python-version ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── Dockerfile ├── Dockerfile.dev ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── codecov.yml ├── docker-compose.yml ├── docs ├── assets │ ├── basket-link.png │ ├── dashboard.png │ ├── default_shipping.png │ ├── dropdown-select.png │ ├── longclaw-bakery-add-product.png │ ├── longclaw-bakery-create-product-index.png │ ├── longclaw-bakery-product-index.png │ ├── longclaw-bakery-root.png │ ├── longclaw-select-root-page.png │ ├── order_detail.png │ ├── order_list.png │ └── shipping.png ├── guide │ ├── api.md │ ├── basket.md │ ├── checkout.md │ ├── checkout_api.md │ ├── contrib.md │ ├── install.rst │ ├── orders.rst │ ├── payments.md │ ├── products.rst │ └── shipping.rst └── tutorial │ ├── checkout.md │ ├── frontend.md │ ├── install.md │ ├── integrate.md │ ├── introduction.md │ ├── products.md │ └── shipping.md ├── longclaw ├── __init__.py ├── basket │ ├── __init__.py │ ├── api.py │ ├── apps.py │ ├── context_processors.py │ ├── forms.py │ ├── jinja2 │ │ └── basket │ │ │ └── add_to_basket.html │ ├── jinja2tags.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── remove_stale_baskets.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── signals.py │ ├── templates │ │ └── basket │ │ │ └── add_to_basket.html │ ├── templatetags │ │ ├── __init__.py │ │ └── basket_tags.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── bin │ ├── __init__.py │ └── longclaw.py ├── checkout │ ├── __init__.py │ ├── api.py │ ├── apps.py │ ├── errors.py │ ├── forms.py │ ├── gateways │ │ ├── __init__.py │ │ ├── base.py │ │ ├── braintree.py │ │ └── stripe.py │ ├── jinja2tags.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── checkout.js │ ├── templatetags │ │ ├── __init__.py │ │ └── longclawcheckout_tags.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── client │ ├── .eslintrc │ ├── .nvmrc │ ├── README.md │ ├── package.json │ ├── src │ │ ├── api │ │ │ ├── api.js │ │ │ └── helpers.js │ │ └── orders │ │ │ ├── OrderDetail.jsx │ │ │ ├── OrderItems.jsx │ │ │ ├── OrderSummary.jsx │ │ │ └── index.jsx │ ├── webpack.config.js │ └── webpack.dev.config.js ├── configuration │ ├── __init__.py │ ├── apps.py │ ├── context_processors.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_configuration_shipping_origin.py │ │ └── __init__.py │ └── models.py ├── contrib │ ├── __init__.py │ └── productrequests │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── api.py │ │ ├── apps.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── templates │ │ └── productrequests │ │ │ ├── make_request.html │ │ │ └── requests_admin.html │ │ ├── templatetags │ │ ├── __init__.py │ │ └── productrequests_tags.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── views.py │ │ └── wagtail_hooks.py ├── core │ ├── __init__.py │ ├── apps.py │ ├── jinja2 │ │ └── core │ │ │ └── longclaw_script.html │ ├── jinja2tags.py │ ├── models.py │ ├── templates │ │ └── core │ │ │ └── script.html │ ├── templatetags │ │ ├── __init__.py │ │ └── longclawcore_tags.py │ └── tests.py ├── orders │ ├── __init__.py │ ├── api.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── templates │ │ └── orders_detail.html │ ├── tests.py │ ├── urls.py │ └── wagtail_hooks.py ├── products │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ └── tests.py ├── project_template │ ├── catalog │ │ ├── __init__.py │ │ ├── models.py │ │ └── templates │ │ │ └── catalog │ │ │ ├── product.html │ │ │ └── product_index.html │ ├── home │ │ ├── __init__.py │ │ ├── models.py │ │ └── templates │ │ │ └── home │ │ │ └── home_page.html │ ├── manage.py │ ├── project_name │ │ ├── __init__.py │ │ ├── settings │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ └── production.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── project_name.css │ │ │ └── js │ │ │ │ └── project_name.js │ │ ├── templates │ │ │ ├── 404.html │ │ │ ├── 500.html │ │ │ ├── base.html │ │ │ └── checkout │ │ │ │ ├── checkout.html │ │ │ │ └── success.html │ │ ├── urls.py │ │ └── wsgi.py │ ├── requirements.txt │ └── search │ │ ├── __init__.py │ │ ├── templates │ │ └── search │ │ │ └── search.html │ │ └── views.py ├── settings.py ├── shipping │ ├── __init__.py │ ├── api.py │ ├── apps.py │ ├── fixtures │ │ └── shipping_initial.json │ ├── forms.py │ ├── management │ │ └── commands │ │ │ └── loadcountries.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20190318_1237.py │ │ ├── 0003_auto_20190322_1429.py │ │ └── __init__.py │ ├── models │ │ ├── __init__.py │ │ ├── locations.py │ │ ├── processors.py │ │ └── rates.py │ ├── serializers │ │ ├── __init__.py │ │ ├── locations.py │ │ └── rates.py │ ├── signals.py │ ├── templatetags │ │ ├── __init__.py │ │ └── longclawshipping_tags.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── wagtail_hooks.py ├── stats │ ├── __init__.py │ ├── models.py │ ├── stats.py │ ├── templates │ │ └── stats │ │ │ ├── stats_panel.html │ │ │ └── summary_item.html │ ├── tests.py │ └── wagtail_hooks.py ├── tests │ ├── __init__.py │ ├── migrations │ │ └── __init__.py │ ├── settings.py │ ├── templates │ │ └── checkout │ │ │ └── success.html │ ├── testproducts │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ └── models.py │ ├── trivialrates │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── urls.py │ └── utils.py ├── urls.py └── utils.py ├── manage.py ├── runtests.py ├── setup.cfg ├── setup.py ├── tox.ini ├── vagrant ├── .gitignore ├── README ├── Vagrantfile ├── provision.sh └── runtox.sh └── website ├── blog ├── 2016-03-11-blog-post.md ├── 2017-04-10-blog-post-two.md ├── 2017-09-25-testing-rss.md ├── 2017-09-26-adding-rss.md └── 2017-10-24-new-version-1.0.0.md ├── core └── Footer.js ├── i18n └── en.json ├── package.json ├── pages └── en │ ├── help.js │ ├── index.js │ └── users.js ├── sidebars.json ├── siteConfig.js ├── static ├── css │ └── custom.css └── img │ ├── favicon.png │ ├── favicon │ └── favicon.ico │ ├── shop.png │ └── wagtail.png └── yarn.lock /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | */node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/.landscape.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.7 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | codecov: 2 | token: c4e276fe-1d69-49e9-bbbe-fabaf4890222 -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/assets/basket-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/assets/basket-link.png -------------------------------------------------------------------------------- /docs/assets/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/assets/dashboard.png -------------------------------------------------------------------------------- /docs/assets/default_shipping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/assets/default_shipping.png -------------------------------------------------------------------------------- /docs/assets/dropdown-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/assets/dropdown-select.png -------------------------------------------------------------------------------- /docs/assets/longclaw-bakery-add-product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/assets/longclaw-bakery-add-product.png -------------------------------------------------------------------------------- /docs/assets/longclaw-bakery-create-product-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/assets/longclaw-bakery-create-product-index.png -------------------------------------------------------------------------------- /docs/assets/longclaw-bakery-product-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/assets/longclaw-bakery-product-index.png -------------------------------------------------------------------------------- /docs/assets/longclaw-bakery-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/assets/longclaw-bakery-root.png -------------------------------------------------------------------------------- /docs/assets/longclaw-select-root-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/assets/longclaw-select-root-page.png -------------------------------------------------------------------------------- /docs/assets/order_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/assets/order_detail.png -------------------------------------------------------------------------------- /docs/assets/order_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/assets/order_list.png -------------------------------------------------------------------------------- /docs/assets/shipping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/assets/shipping.png -------------------------------------------------------------------------------- /docs/guide/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/guide/api.md -------------------------------------------------------------------------------- /docs/guide/basket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/guide/basket.md -------------------------------------------------------------------------------- /docs/guide/checkout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/guide/checkout.md -------------------------------------------------------------------------------- /docs/guide/checkout_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/guide/checkout_api.md -------------------------------------------------------------------------------- /docs/guide/contrib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/guide/contrib.md -------------------------------------------------------------------------------- /docs/guide/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/guide/install.rst -------------------------------------------------------------------------------- /docs/guide/orders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/guide/orders.rst -------------------------------------------------------------------------------- /docs/guide/payments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/guide/payments.md -------------------------------------------------------------------------------- /docs/guide/products.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/guide/products.rst -------------------------------------------------------------------------------- /docs/guide/shipping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/guide/shipping.rst -------------------------------------------------------------------------------- /docs/tutorial/checkout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/tutorial/checkout.md -------------------------------------------------------------------------------- /docs/tutorial/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/tutorial/frontend.md -------------------------------------------------------------------------------- /docs/tutorial/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/tutorial/install.md -------------------------------------------------------------------------------- /docs/tutorial/integrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/tutorial/integrate.md -------------------------------------------------------------------------------- /docs/tutorial/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/tutorial/introduction.md -------------------------------------------------------------------------------- /docs/tutorial/products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/tutorial/products.md -------------------------------------------------------------------------------- /docs/tutorial/shipping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/docs/tutorial/shipping.md -------------------------------------------------------------------------------- /longclaw/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = "1.0.2" 3 | -------------------------------------------------------------------------------- /longclaw/basket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/basket/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/api.py -------------------------------------------------------------------------------- /longclaw/basket/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/apps.py -------------------------------------------------------------------------------- /longclaw/basket/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/context_processors.py -------------------------------------------------------------------------------- /longclaw/basket/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/forms.py -------------------------------------------------------------------------------- /longclaw/basket/jinja2/basket/add_to_basket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/jinja2/basket/add_to_basket.html -------------------------------------------------------------------------------- /longclaw/basket/jinja2tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/jinja2tags.py -------------------------------------------------------------------------------- /longclaw/basket/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/basket/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/basket/management/commands/remove_stale_baskets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/management/commands/remove_stale_baskets.py -------------------------------------------------------------------------------- /longclaw/basket/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/migrations/0001_initial.py -------------------------------------------------------------------------------- /longclaw/basket/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/basket/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/models.py -------------------------------------------------------------------------------- /longclaw/basket/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/serializers.py -------------------------------------------------------------------------------- /longclaw/basket/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/signals.py -------------------------------------------------------------------------------- /longclaw/basket/templates/basket/add_to_basket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/templates/basket/add_to_basket.html -------------------------------------------------------------------------------- /longclaw/basket/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/basket/templatetags/basket_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/templatetags/basket_tags.py -------------------------------------------------------------------------------- /longclaw/basket/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/tests.py -------------------------------------------------------------------------------- /longclaw/basket/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/urls.py -------------------------------------------------------------------------------- /longclaw/basket/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/utils.py -------------------------------------------------------------------------------- /longclaw/basket/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/basket/views.py -------------------------------------------------------------------------------- /longclaw/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/bin/longclaw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/bin/longclaw.py -------------------------------------------------------------------------------- /longclaw/checkout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/checkout/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/api.py -------------------------------------------------------------------------------- /longclaw/checkout/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/apps.py -------------------------------------------------------------------------------- /longclaw/checkout/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/errors.py -------------------------------------------------------------------------------- /longclaw/checkout/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/forms.py -------------------------------------------------------------------------------- /longclaw/checkout/gateways/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/gateways/__init__.py -------------------------------------------------------------------------------- /longclaw/checkout/gateways/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/gateways/base.py -------------------------------------------------------------------------------- /longclaw/checkout/gateways/braintree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/gateways/braintree.py -------------------------------------------------------------------------------- /longclaw/checkout/gateways/stripe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/gateways/stripe.py -------------------------------------------------------------------------------- /longclaw/checkout/jinja2tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/jinja2tags.py -------------------------------------------------------------------------------- /longclaw/checkout/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/migrations/0001_initial.py -------------------------------------------------------------------------------- /longclaw/checkout/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/checkout/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/checkout/static/checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/static/checkout.js -------------------------------------------------------------------------------- /longclaw/checkout/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/checkout/templatetags/longclawcheckout_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/templatetags/longclawcheckout_tags.py -------------------------------------------------------------------------------- /longclaw/checkout/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/tests.py -------------------------------------------------------------------------------- /longclaw/checkout/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/urls.py -------------------------------------------------------------------------------- /longclaw/checkout/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/utils.py -------------------------------------------------------------------------------- /longclaw/checkout/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/checkout/views.py -------------------------------------------------------------------------------- /longclaw/client/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/client/.eslintrc -------------------------------------------------------------------------------- /longclaw/client/.nvmrc: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /longclaw/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/client/README.md -------------------------------------------------------------------------------- /longclaw/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/client/package.json -------------------------------------------------------------------------------- /longclaw/client/src/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/client/src/api/api.js -------------------------------------------------------------------------------- /longclaw/client/src/api/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/client/src/api/helpers.js -------------------------------------------------------------------------------- /longclaw/client/src/orders/OrderDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/client/src/orders/OrderDetail.jsx -------------------------------------------------------------------------------- /longclaw/client/src/orders/OrderItems.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/client/src/orders/OrderItems.jsx -------------------------------------------------------------------------------- /longclaw/client/src/orders/OrderSummary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/client/src/orders/OrderSummary.jsx -------------------------------------------------------------------------------- /longclaw/client/src/orders/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/client/src/orders/index.jsx -------------------------------------------------------------------------------- /longclaw/client/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/client/webpack.config.js -------------------------------------------------------------------------------- /longclaw/client/webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/client/webpack.dev.config.js -------------------------------------------------------------------------------- /longclaw/configuration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/configuration/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/configuration/apps.py -------------------------------------------------------------------------------- /longclaw/configuration/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/configuration/context_processors.py -------------------------------------------------------------------------------- /longclaw/configuration/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/configuration/migrations/0001_initial.py -------------------------------------------------------------------------------- /longclaw/configuration/migrations/0002_configuration_shipping_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/configuration/migrations/0002_configuration_shipping_origin.py -------------------------------------------------------------------------------- /longclaw/configuration/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/configuration/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/configuration/models.py -------------------------------------------------------------------------------- /longclaw/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/admin.py -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/api.py -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/apps.py -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/migrations/0001_initial.py -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/models.py -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/serializers.py -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/templates/productrequests/make_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/templates/productrequests/make_request.html -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/templates/productrequests/requests_admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/templates/productrequests/requests_admin.html -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/templatetags/productrequests_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/templatetags/productrequests_tags.py -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/tests.py -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/urls.py -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/views.py -------------------------------------------------------------------------------- /longclaw/contrib/productrequests/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/contrib/productrequests/wagtail_hooks.py -------------------------------------------------------------------------------- /longclaw/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/core/apps.py -------------------------------------------------------------------------------- /longclaw/core/jinja2/core/longclaw_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/core/jinja2/core/longclaw_script.html -------------------------------------------------------------------------------- /longclaw/core/jinja2tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/core/jinja2tags.py -------------------------------------------------------------------------------- /longclaw/core/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /longclaw/core/templates/core/script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/core/templates/core/script.html -------------------------------------------------------------------------------- /longclaw/core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/core/templatetags/longclawcore_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/core/templatetags/longclawcore_tags.py -------------------------------------------------------------------------------- /longclaw/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/core/tests.py -------------------------------------------------------------------------------- /longclaw/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/orders/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/orders/api.py -------------------------------------------------------------------------------- /longclaw/orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/orders/apps.py -------------------------------------------------------------------------------- /longclaw/orders/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/orders/migrations/0001_initial.py -------------------------------------------------------------------------------- /longclaw/orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/orders/models.py -------------------------------------------------------------------------------- /longclaw/orders/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/orders/serializers.py -------------------------------------------------------------------------------- /longclaw/orders/templates/orders_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/orders/templates/orders_detail.html -------------------------------------------------------------------------------- /longclaw/orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/orders/tests.py -------------------------------------------------------------------------------- /longclaw/orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/orders/urls.py -------------------------------------------------------------------------------- /longclaw/orders/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/orders/wagtail_hooks.py -------------------------------------------------------------------------------- /longclaw/products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/products/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/products/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/products/apps.py -------------------------------------------------------------------------------- /longclaw/products/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/products/migrations/0001_initial.py -------------------------------------------------------------------------------- /longclaw/products/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/products/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/products/models.py -------------------------------------------------------------------------------- /longclaw/products/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/products/serializers.py -------------------------------------------------------------------------------- /longclaw/products/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/products/tests.py -------------------------------------------------------------------------------- /longclaw/project_template/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/project_template/catalog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/catalog/models.py -------------------------------------------------------------------------------- /longclaw/project_template/catalog/templates/catalog/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/catalog/templates/catalog/product.html -------------------------------------------------------------------------------- /longclaw/project_template/catalog/templates/catalog/product_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/catalog/templates/catalog/product_index.html -------------------------------------------------------------------------------- /longclaw/project_template/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/project_template/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/home/models.py -------------------------------------------------------------------------------- /longclaw/project_template/home/templates/home/home_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/home/templates/home/home_page.html -------------------------------------------------------------------------------- /longclaw/project_template/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/manage.py -------------------------------------------------------------------------------- /longclaw/project_template/project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/project_template/project_name/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/project_template/project_name/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/project_name/settings/base.py -------------------------------------------------------------------------------- /longclaw/project_template/project_name/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/project_name/settings/dev.py -------------------------------------------------------------------------------- /longclaw/project_template/project_name/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/project_name/settings/production.py -------------------------------------------------------------------------------- /longclaw/project_template/project_name/static/css/project_name.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/project_name/static/css/project_name.css -------------------------------------------------------------------------------- /longclaw/project_template/project_name/static/js/project_name.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/project_template/project_name/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/project_name/templates/404.html -------------------------------------------------------------------------------- /longclaw/project_template/project_name/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/project_name/templates/500.html -------------------------------------------------------------------------------- /longclaw/project_template/project_name/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/project_name/templates/base.html -------------------------------------------------------------------------------- /longclaw/project_template/project_name/templates/checkout/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/project_name/templates/checkout/checkout.html -------------------------------------------------------------------------------- /longclaw/project_template/project_name/templates/checkout/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/project_name/templates/checkout/success.html -------------------------------------------------------------------------------- /longclaw/project_template/project_name/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/project_name/urls.py -------------------------------------------------------------------------------- /longclaw/project_template/project_name/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/project_name/wsgi.py -------------------------------------------------------------------------------- /longclaw/project_template/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/requirements.txt -------------------------------------------------------------------------------- /longclaw/project_template/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/project_template/search/templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/search/templates/search/search.html -------------------------------------------------------------------------------- /longclaw/project_template/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/project_template/search/views.py -------------------------------------------------------------------------------- /longclaw/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/settings.py -------------------------------------------------------------------------------- /longclaw/shipping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/shipping/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/api.py -------------------------------------------------------------------------------- /longclaw/shipping/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/apps.py -------------------------------------------------------------------------------- /longclaw/shipping/fixtures/shipping_initial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/fixtures/shipping_initial.json -------------------------------------------------------------------------------- /longclaw/shipping/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/forms.py -------------------------------------------------------------------------------- /longclaw/shipping/management/commands/loadcountries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/management/commands/loadcountries.py -------------------------------------------------------------------------------- /longclaw/shipping/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/migrations/0001_initial.py -------------------------------------------------------------------------------- /longclaw/shipping/migrations/0002_auto_20190318_1237.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/migrations/0002_auto_20190318_1237.py -------------------------------------------------------------------------------- /longclaw/shipping/migrations/0003_auto_20190322_1429.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/migrations/0003_auto_20190322_1429.py -------------------------------------------------------------------------------- /longclaw/shipping/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/shipping/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/models/__init__.py -------------------------------------------------------------------------------- /longclaw/shipping/models/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/models/locations.py -------------------------------------------------------------------------------- /longclaw/shipping/models/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/models/processors.py -------------------------------------------------------------------------------- /longclaw/shipping/models/rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/models/rates.py -------------------------------------------------------------------------------- /longclaw/shipping/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/serializers/__init__.py -------------------------------------------------------------------------------- /longclaw/shipping/serializers/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/serializers/locations.py -------------------------------------------------------------------------------- /longclaw/shipping/serializers/rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/serializers/rates.py -------------------------------------------------------------------------------- /longclaw/shipping/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/signals.py -------------------------------------------------------------------------------- /longclaw/shipping/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/shipping/templatetags/longclawshipping_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/templatetags/longclawshipping_tags.py -------------------------------------------------------------------------------- /longclaw/shipping/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/tests.py -------------------------------------------------------------------------------- /longclaw/shipping/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/urls.py -------------------------------------------------------------------------------- /longclaw/shipping/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/utils.py -------------------------------------------------------------------------------- /longclaw/shipping/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/shipping/wagtail_hooks.py -------------------------------------------------------------------------------- /longclaw/stats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/stats/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/stats/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/stats/stats.py -------------------------------------------------------------------------------- /longclaw/stats/templates/stats/stats_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/stats/templates/stats/stats_panel.html -------------------------------------------------------------------------------- /longclaw/stats/templates/stats/summary_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/stats/templates/stats/summary_item.html -------------------------------------------------------------------------------- /longclaw/stats/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/stats/tests.py -------------------------------------------------------------------------------- /longclaw/stats/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/stats/wagtail_hooks.py -------------------------------------------------------------------------------- /longclaw/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/tests/settings.py -------------------------------------------------------------------------------- /longclaw/tests/templates/checkout/success.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/tests/testproducts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/tests/testproducts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/tests/testproducts/migrations/0001_initial.py -------------------------------------------------------------------------------- /longclaw/tests/testproducts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/tests/testproducts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/tests/testproducts/models.py -------------------------------------------------------------------------------- /longclaw/tests/trivialrates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/tests/trivialrates/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/tests/trivialrates/migrations/0001_initial.py -------------------------------------------------------------------------------- /longclaw/tests/trivialrates/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longclaw/tests/trivialrates/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/tests/trivialrates/models.py -------------------------------------------------------------------------------- /longclaw/tests/trivialrates/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/tests/trivialrates/tests.py -------------------------------------------------------------------------------- /longclaw/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/tests/urls.py -------------------------------------------------------------------------------- /longclaw/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/tests/utils.py -------------------------------------------------------------------------------- /longclaw/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/urls.py -------------------------------------------------------------------------------- /longclaw/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/longclaw/utils.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/manage.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/tox.ini -------------------------------------------------------------------------------- /vagrant/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | -------------------------------------------------------------------------------- /vagrant/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/vagrant/README -------------------------------------------------------------------------------- /vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/vagrant/Vagrantfile -------------------------------------------------------------------------------- /vagrant/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/vagrant/provision.sh -------------------------------------------------------------------------------- /vagrant/runtox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/vagrant/runtox.sh -------------------------------------------------------------------------------- /website/blog/2016-03-11-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/blog/2016-03-11-blog-post.md -------------------------------------------------------------------------------- /website/blog/2017-04-10-blog-post-two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/blog/2017-04-10-blog-post-two.md -------------------------------------------------------------------------------- /website/blog/2017-09-25-testing-rss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/blog/2017-09-25-testing-rss.md -------------------------------------------------------------------------------- /website/blog/2017-09-26-adding-rss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/blog/2017-09-26-adding-rss.md -------------------------------------------------------------------------------- /website/blog/2017-10-24-new-version-1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/blog/2017-10-24-new-version-1.0.0.md -------------------------------------------------------------------------------- /website/core/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/core/Footer.js -------------------------------------------------------------------------------- /website/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/i18n/en.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pages/en/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/pages/en/help.js -------------------------------------------------------------------------------- /website/pages/en/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/pages/en/index.js -------------------------------------------------------------------------------- /website/pages/en/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/pages/en/users.js -------------------------------------------------------------------------------- /website/sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/sidebars.json -------------------------------------------------------------------------------- /website/siteConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/siteConfig.js -------------------------------------------------------------------------------- /website/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/static/css/custom.css -------------------------------------------------------------------------------- /website/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/static/img/favicon.png -------------------------------------------------------------------------------- /website/static/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/static/img/favicon/favicon.ico -------------------------------------------------------------------------------- /website/static/img/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/static/img/shop.png -------------------------------------------------------------------------------- /website/static/img/wagtail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/static/img/wagtail.png -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longclawshop/longclaw/HEAD/website/yarn.lock --------------------------------------------------------------------------------