AUTHORS.rst
CHANGELOG.rst
LICENSE
MANIFEST.in
README.rst
runtests.sh
setup.py
django_shop.egg-info/PKG-INFO
django_shop.egg-info/SOURCES.txt
django_shop.egg-info/dependency_links.txt
django_shop.egg-info/not-zip-safe
django_shop.egg-info/requires.txt
django_shop.egg-info/top_level.txt
docs/Makefile
docs/conf.py
docs/contributing.rst
docs/getting-started.rst
docs/index.rst
docs/make.bat
docs/plugins.rst
docs/settings.rst
docs/signals.rst
docs/templatetags.rst
docs/tutorial.rst
docs/OLD-out-of-date/README
docs/OLD-out-of-date/architecture.rst
docs/OLD-out-of-date/index.rst
docs/OLD-out-of-date/products.rst
docs/OLD-out-of-date/requirements.rst
docs/OLD-out-of-date/statement.rst
docs/OLD-out-of-date/taxes.rst
docs/OLD-out-of-date/diagrams/general_process.dia
docs/OLD-out-of-date/diagrams/general_process.png
docs/OLD-out-of-date/snippets/modules.py
docs/OLD-out-of-date/snippets/products.py
docs/howto/how-to-cart-mod.rst
docs/howto/how-to-extend-django-shop-models.rst
docs/howto/how-to-interact-with-the-cart.rst
docs/howto/how-to-payment.rst
docs/howto/how-to-product.rst
docs/howto/how-to-secure-your-views.rst
docs/howto/how-to-shipping.rst
docs/howto/how-to-use-your-own-addressmodel.rst
shop/__init__.py
shop/backends_pool.py
shop/forms.py
shop/order_signals.py
shop/shop_api.py
shop/addressmodel/__init__.py
shop/addressmodel/admin.py
shop/addressmodel/models.py
shop/addressmodel/migrations/0001_initial.py
shop/addressmodel/migrations/0002_auto__add_field_address_name.py
shop/addressmodel/migrations/__init__.py
shop/addressmodel/tests/__init__.py
shop/addressmodel/tests/client.py
shop/admin/__init__.py
shop/admin/mixins.py
shop/admin/orderadmin.py
shop/cart/__init__.py
shop/cart/cart_modifiers_base.py
shop/cart/modifiers_pool.py
shop/cart/modifiers/__init__.py
shop/cart/modifiers/rebate_modifiers.py
shop/cart/modifiers/tax_modifiers.py
shop/locale/da/LC_MESSAGES/django.mo
shop/locale/da/LC_MESSAGES/django.po
shop/locale/de/LC_MESSAGES/django.mo
shop/locale/de/LC_MESSAGES/django.po
shop/locale/en/LC_MESSAGES/django.mo
shop/locale/en/LC_MESSAGES/django.po
shop/locale/es/LC_MESSAGES/django.mo
shop/locale/es/LC_MESSAGES/django.po
shop/locale/fr/LC_MESSAGES/django.mo
shop/locale/fr/LC_MESSAGES/django.po
shop/locale/hr/LC_MESSAGES/django.mo
shop/locale/hr/LC_MESSAGES/django.po
shop/locale/it/LC_MESSAGES/django.mo
shop/locale/it/LC_MESSAGES/django.po
shop/locale/ja/LC_MESSAGES/django.mo
shop/locale/ja/LC_MESSAGES/django.po
shop/locale/pl/LC_MESSAGES/django.mo
shop/locale/pl/LC_MESSAGES/django.po
shop/locale/pt_BR/LC_MESSAGES/django.mo
shop/locale/pt_BR/LC_MESSAGES/django.po
shop/locale/ru/LC_MESSAGES/django.mo
shop/locale/ru/LC_MESSAGES/django.po
shop/locale/sv/LC_MESSAGES/django.mo
shop/locale/sv/LC_MESSAGES/django.po
shop/locale/zh_CN/LC_MESSAGES/django.mo
shop/locale/zh_CN/LC_MESSAGES/django.po
shop/migrations/0001_initial.py
shop/migrations/0002_auto__del_field_product_long_description__del_field_product_short_desc.py
shop/migrations/0003_auto__del_country__del_address__del_client.py
shop/migrations/0004_address_as_text.py
shop/migrations/0005_auto__add_field_orderitem_product__chg_field_orderitem_product_name.py
shop/migrations/0006_auto__del_field_order_payment_method.py
shop/migrations/0007_auto__add_unique_product_slug.py
shop/migrations/0008_auto__chg_field_order_order_total__chg_field_order_order_subtotal__chg.py
shop/migrations/0009_auto__chg_field_order_order_total__chg_field_order_order_subtotal__chg.py
shop/migrations/0010_auto__add_field_order_cart_pk.py
shop/migrations/0011_order_status_migration.py
shop/migrations/0012_auto__add_field_extraorderpricefield_data.py
shop/migrations/__init__.py
shop/models/__init__.py
shop/models/cartmodel.py
shop/models/ordermodel.py
shop/models/productmodel.py
shop/models/defaults/__init__.py
shop/models/defaults/bases.py
shop/models/defaults/cart.py
shop/models/defaults/cartitem.py
shop/models/defaults/managers.py
shop/models/defaults/order.py
shop/models/defaults/orderitem.py
shop/models/defaults/product.py
shop/models_bases/__init__.py
shop/models_bases/managers.py
shop/payment/__init__.py
shop/payment/api.py
shop/payment/urls.py
shop/payment/backends/__init__.py
shop/payment/backends/pay_on_delivery.py
shop/payment/backends/prepayment.py
shop/shipping/__init__.py
shop/shipping/api.py
shop/shipping/urls.py
shop/shipping/backends/__init__.py
shop/shipping/backends/flat_rate.py
shop/templates/shop/base.html
shop/templates/shop/cart.html
shop/templates/shop/order_detail.html
shop/templates/shop/order_list.html
shop/templates/shop/product_detail.html
shop/templates/shop/product_list.html
shop/templates/shop/welcome.html
shop/templates/shop/checkout/selection.html
shop/templates/shop/checkout/thank_you.html
shop/templates/shop/shipping/flat_rate/display_fees.html
shop/templates/shop/templatetags/_cart.html
shop/templates/shop/templatetags/_order.html
shop/templates/shop/templatetags/_products.html
shop/templatetags/__init__.py
shop/templatetags/shop_tags.py
shop/tests/__init__.py
shop/tests/api.py
shop/tests/cart.py
shop/tests/cart_modifiers.py
shop/tests/forms.py
shop/tests/order.py
shop/tests/payment.py
shop/tests/product.py
shop/tests/shipping.py
shop/tests/templatetags.py
shop/tests/util.py
shop/tests/views.py
shop/tests/views_checkout.py
shop/tests/utils/__init__.py
shop/tests/utils/context_managers.py
shop/urls/__init__.py
shop/urls/cart.py
shop/urls/catalog.py
shop/urls/checkout.py
shop/urls/order.py
shop/util/__init__.py
shop/util/address.py
shop/util/cart.py
shop/util/decorators.py
shop/util/fields.py
shop/util/loader.py
shop/util/login_mixin.py
shop/util/order.py
shop/views/__init__.py
shop/views/cart.py
shop/views/checkout.py
shop/views/order.py
shop/views/product.py
tests/testapp/.coverage
tests/testapp/.coveragerc
tests/testapp/__init__.py
tests/testapp/manage.py
tests/testapp/settings.py
tests/testapp/test.sqlite
tests/testapp/urls.py
tests/testapp/circular_import_new/__init__.py
tests/testapp/circular_import_new/models.py
tests/testapp/circular_import_old/__init__.py
tests/testapp/circular_import_old/models.py
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_addressmodel___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_addressmodel_admin.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_addressmodel_models.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_admin___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_admin_mixins.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_admin_orderadmin.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_backends_pool.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_cart___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_cart_cart_modifiers_base.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_cart_modifiers___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_cart_modifiers_pool.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_cart_modifiers_rebate_modifiers.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_cart_modifiers_tax_modifiers.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_forms.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_bases___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_bases_managers.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_cartmodel.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_defaults___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_defaults_bases.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_defaults_cart.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_defaults_cartitem.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_defaults_managers.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_defaults_order.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_defaults_orderitem.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_defaults_product.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_ordermodel.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_models_productmodel.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_order_signals.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_payment___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_payment_api.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_payment_backends___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_payment_backends_pay_on_delivery.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_payment_urls.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_shipping___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_shipping_api.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_shipping_backends___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_shipping_backends_flat_rate.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_shipping_urls.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_shop_api.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_templatetags___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_templatetags_shop_tags.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_urls___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_urls_cart.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_urls_catalog.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_urls_checkout.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_urls_order.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_util___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_util_address.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_util_cart.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_util_decorators.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_util_fields.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_util_loader.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_util_login_mixin.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_util_order.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_views___init__.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_views_cart.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_views_checkout.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_views_order.html
tests/testapp/htmlcov/_home_tribaal_workspace_django-shop_shop_views_product.html
tests/testapp/htmlcov/coverage_html.js
tests/testapp/htmlcov/index.html
tests/testapp/htmlcov/jquery-1.4.3.min.js
tests/testapp/htmlcov/jquery.hotkeys.js
tests/testapp/htmlcov/jquery.isonscreen.js
tests/testapp/htmlcov/jquery.tablesorter.min.js
tests/testapp/htmlcov/keybd_closed.png
tests/testapp/htmlcov/keybd_open.png
tests/testapp/htmlcov/status.dat
tests/testapp/htmlcov/style.css
tests/testapp/project/__init__.py
tests/testapp/project/models.py
tests/testapp/project/tests.py
tests/testapp/project/views.py
tests/testapp/project/templates/project/bookproduct_detail.html