├── .gitignore ├── .hgignore ├── .hgtags ├── AUTHORS ├── CHANGELOG ├── CONTRIBUTORS ├── LICENSE ├── MANIFEST.in ├── __init__.py ├── docs ├── Makefile ├── _static │ ├── satchmo-front.jpg │ └── satchmo-sliver.jpg ├── _templates │ └── layout.html ├── about.txt ├── alternate-1.css ├── alternate-2.css ├── analytics.txt ├── conf.py ├── configuration.txt ├── contact.gif ├── create-docs.py ├── custom-admin.txt ├── custom-payment.txt ├── custom-product.txt ├── customization.txt ├── deploying.txt ├── directory_structure.txt ├── discount.gif ├── discounts.txt ├── email-verification.txt ├── features.txt ├── google-base.txt ├── graph-viz-satchmo.py ├── images │ ├── add-attribute-product.png │ ├── add-options.png │ ├── admin-product-settings.png │ ├── adventurer-hat.png │ ├── adventurer_hat.png │ ├── attribute-option-list.png │ ├── book-page-attribute.png │ ├── category.png │ ├── create-config-product.png │ ├── option-group.png │ ├── options-completed.png │ ├── order-screen1.png │ ├── order-screen2.png │ ├── prod-description.png │ ├── prod-details.png │ ├── prod-price.png │ ├── product-add.png │ ├── product-select.png │ ├── robot-attack-pages.png │ ├── save.png │ ├── select-config-product.png │ └── subtypes.png ├── index.txt ├── introduction.txt ├── managing.txt ├── migration.txt ├── new_installation.txt ├── payment.gif ├── payment.txt ├── pricing.txt ├── product-attributes.txt ├── product.gif ├── product.txt ├── quickstart.txt ├── release-notes-0-7.txt ├── release-notes-0-8-1.txt ├── release-notes-0-8.txt ├── release-notes-0-9-1.txt ├── release-notes-0-9-2.txt ├── release-notes-0-9.txt ├── release-notes-1-0.txt ├── requirements.txt ├── settings.txt ├── shipping.gif ├── shipping.txt ├── shop.gif ├── signals.txt ├── supplier.gif ├── tax.gif ├── tax.txt ├── template-filters-tags.txt ├── templates.txt ├── translation.txt ├── tutorial1.txt ├── upsell.txt └── views.txt ├── ez_setup.py ├── satchmo ├── .svnignore ├── __init__.py ├── apps │ ├── l10n │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── bin │ │ │ ├── make-messages.py │ │ │ ├── posplit.py │ │ │ └── posplit.rules │ │ ├── fixtures │ │ │ └── l10n_data.xml │ │ ├── l10n_settings.py │ │ ├── locale │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ └── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── mixins.py │ │ ├── models.py │ │ ├── templates │ │ │ └── l10n │ │ │ │ └── _language_selection_form.html │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── validators │ │ │ ├── __init__.py │ │ │ ├── aupostcode.py │ │ │ ├── capostcode.py │ │ │ ├── ukpostcode.py │ │ │ └── uspostcode.py │ ├── payment │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── config.py │ │ ├── decorators.py │ │ ├── fields.py │ │ ├── fixtures │ │ │ └── config.yaml │ │ ├── forms.py │ │ ├── listeners.py │ │ ├── locale │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ └── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── satchmo_bill_recurring.py │ │ ├── models.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── authorizenet │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── models.py │ │ │ │ ├── processor.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── autosuccess │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── models.py │ │ │ │ ├── processor.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── base.py │ │ │ ├── cod │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── models.py │ │ │ │ ├── processor.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── cybersource │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── models.py │ │ │ │ ├── processor.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── dummy │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── models.py │ │ │ │ ├── processor.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── giftcertificate │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── config.py │ │ │ │ ├── fixtures │ │ │ │ │ ├── test_giftcertificate.yaml │ │ │ │ │ └── test_giftcertificate_config.yaml │ │ │ │ ├── forms.py │ │ │ │ ├── locale │ │ │ │ │ ├── da │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── de │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── en │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── es │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── fr │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── he │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── hu │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── it │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ko │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── pl │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ru │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── sv │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ └── tr │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── models.py │ │ │ │ ├── processor.py │ │ │ │ ├── templates │ │ │ │ │ ├── giftcertificate │ │ │ │ │ │ ├── _order_summary.html │ │ │ │ │ │ └── balance.html │ │ │ │ │ ├── plugins │ │ │ │ │ │ └── order_details.html │ │ │ │ │ ├── product │ │ │ │ │ │ └── detail_giftcertificateproduct.html │ │ │ │ │ └── shop │ │ │ │ │ │ └── checkout │ │ │ │ │ │ ├── confirm.html │ │ │ │ │ │ └── giftcertificate │ │ │ │ │ │ ├── confirm.html │ │ │ │ │ │ └── pay_ship.html │ │ │ │ ├── templatetags │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── satchmo_giftcertificate.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ ├── utils.py │ │ │ │ └── views.py │ │ │ ├── google │ │ │ │ ├── __init__.py │ │ │ │ ├── auth.py │ │ │ │ ├── config.py │ │ │ │ ├── models.py │ │ │ │ ├── notifications.py │ │ │ │ ├── processor.py │ │ │ │ ├── readme.txt │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── paypal │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── models.py │ │ │ │ ├── processor.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── purchaseorder │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── config.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ ├── processor.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── sagepay │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ ├── processor.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── sermepa │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── models.py │ │ │ │ ├── processor.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ └── trustcommerce │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── models.py │ │ │ │ ├── processor.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ ├── signals.py │ │ ├── templates │ │ │ ├── payment │ │ │ │ ├── _order_payment_summary.html │ │ │ │ └── admin │ │ │ │ │ └── charge_remaining_confirm.html │ │ │ └── shop │ │ │ │ └── checkout │ │ │ │ ├── authentication_required.html │ │ │ │ ├── authorizenet │ │ │ │ └── arb_create_subscription.xml │ │ │ │ ├── auto │ │ │ │ └── pay_ship.html │ │ │ │ ├── balance_remaining.html │ │ │ │ ├── base_confirm.html │ │ │ │ ├── base_pay_ship.html │ │ │ │ ├── cod │ │ │ │ ├── confirm.html │ │ │ │ └── pay_ship.html │ │ │ │ ├── confirm.html │ │ │ │ ├── cybersource │ │ │ │ └── request.xml │ │ │ │ ├── empty_cart.html │ │ │ │ ├── failure.html │ │ │ │ ├── form.html │ │ │ │ ├── google │ │ │ │ ├── cart.xml │ │ │ │ ├── confirm.html │ │ │ │ └── pay_ship.html │ │ │ │ ├── pay_ship.html │ │ │ │ ├── paypal │ │ │ │ ├── confirm.html │ │ │ │ └── pay_ship.html │ │ │ │ ├── purchaseorder │ │ │ │ ├── confirm.html │ │ │ │ └── pay_ship.html │ │ │ │ ├── sagepay │ │ │ │ ├── confirm.html │ │ │ │ ├── pay_ship.html │ │ │ │ └── secure3d_form.html │ │ │ │ ├── sermepa │ │ │ │ ├── confirm.html │ │ │ │ └── pay_ship.html │ │ │ │ └── success.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ ├── satchmo_checkout.py │ │ │ ├── satchmo_googlecheckout.py │ │ │ └── satchmo_itemlist.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── balance.py │ │ │ ├── checkout.py │ │ │ ├── confirm.py │ │ │ ├── contact.py │ │ │ ├── cron.py │ │ │ └── payship.py │ ├── product │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── config.py │ │ ├── fields.py │ │ ├── fixtures │ │ │ ├── initial_data.yaml │ │ │ └── test_discount.yaml │ │ ├── forms.py │ │ ├── jobs │ │ │ ├── __init__.py │ │ │ ├── daily │ │ │ │ ├── __init__.py │ │ │ │ └── rebuild_prices.py │ │ │ ├── hourly │ │ │ │ └── __init__.py │ │ │ ├── monthly │ │ │ │ └── __init__.py │ │ │ ├── sample.py │ │ │ └── weekly │ │ │ │ └── __init__.py │ │ ├── listeners.py │ │ ├── locale │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ └── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── satchmo_rebuild_pricing.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_add_attributeoption.py │ │ │ ├── 0003_add_productattribute_option.py │ │ │ ├── 0004_remove_productattribute_name.py │ │ │ ├── 0005_fix_attributeoption_error_default_spelling.py │ │ │ ├── 0006_custom_textfield_add_constraint.py │ │ │ ├── 0007_add_discount_valid_products_field.py │ │ │ ├── 0008_remove_discount_validproducts_field.py │ │ │ ├── 0009_add_categoryattributes.py │ │ │ ├── 0010_add_discountable_categories.py │ │ │ ├── 0011_split_products.py │ │ │ ├── 0012_update_contenttypes.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── configurable │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_split.py │ │ │ │ │ ├── 0002_update_contenttypes.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── models.py │ │ │ │ └── tests.py │ │ │ ├── custom │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_split.py │ │ │ │ │ ├── 0002_update_contenttypes.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── models.py │ │ │ │ └── tests.py │ │ │ ├── downloadable │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── config.py │ │ │ │ ├── listeners.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_split.py │ │ │ │ │ ├── 0002_update_contenttypes.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ └── subscription │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── fixtures │ │ │ │ └── sub_products.yaml │ │ │ │ ├── migrations │ │ │ │ ├── 0001_split.py │ │ │ │ ├── 0002_update_contenttypes.py │ │ │ │ └── __init__.py │ │ │ │ ├── models.py │ │ │ │ └── tests.py │ │ ├── prices.py │ │ ├── queries.py │ │ ├── signals.py │ │ ├── templates │ │ │ ├── admin │ │ │ │ ├── configurable │ │ │ │ │ ├── configurableproduct │ │ │ │ │ │ └── change_form.html │ │ │ │ │ └── productvariation │ │ │ │ │ │ └── change_form.html │ │ │ │ └── product │ │ │ │ │ ├── change_form.html │ │ │ │ │ └── product │ │ │ │ │ └── change_form.html │ │ │ └── product │ │ │ │ ├── admin │ │ │ │ ├── inventory_form.html │ │ │ │ ├── product_export_form.html │ │ │ │ ├── product_import_result.html │ │ │ │ ├── variation_manager.html │ │ │ │ └── variation_manager_list.html │ │ │ │ ├── best_ratings.html │ │ │ │ ├── best_sellers.html │ │ │ │ ├── cart_detail_customproduct.html │ │ │ │ ├── cart_detail_subscriptionproduct.html │ │ │ │ ├── category.html │ │ │ │ ├── category_index.html │ │ │ │ ├── detail_configurableproduct.html │ │ │ │ ├── detail_customproduct.html │ │ │ │ ├── detail_subscriptionproduct.html │ │ │ │ ├── minimum_order.html │ │ │ │ ├── product.html │ │ │ │ ├── product_discount_eligible.html │ │ │ │ ├── recently_added.html │ │ │ │ ├── sale_details.html │ │ │ │ └── some_discount_eligible.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ ├── satchmo_discounts.py │ │ │ ├── satchmo_product.py │ │ │ └── satchmo_product_admin.py │ │ ├── tests.py │ │ ├── urls │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── category.py │ │ │ └── products.py │ │ ├── utils.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── adminviews.py │ │ │ └── filters.py │ ├── satchmo_ext │ │ ├── __init__.py │ │ ├── brand │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── config.py │ │ │ ├── locale │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── brand │ │ │ │ │ ├── index.html │ │ │ │ │ └── view_brand.html │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── satchmo_brands.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── metrics │ │ │ ├── __init__.py │ │ │ ├── locale │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── logger.py │ │ ├── newsletter │ │ │ ├── INSTALL │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ ├── ignore.py │ │ │ ├── listeners.py │ │ │ ├── locale │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── mailman.py │ │ │ ├── models.py │ │ │ ├── signals.py │ │ │ ├── simple.py │ │ │ ├── templates │ │ │ │ └── newsletter │ │ │ │ │ ├── ajah.html │ │ │ │ │ ├── subscribe_form.html │ │ │ │ │ ├── unsubscribe_form.html │ │ │ │ │ ├── update_form.html │ │ │ │ │ └── update_results.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── product_feeds │ │ │ ├── __init__.py │ │ │ ├── locale │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── product_feeds │ │ │ │ │ ├── googlebase_atom.xml │ │ │ │ │ ├── plugins │ │ │ │ │ └── admin_tools.html │ │ │ │ │ └── product_feed.csv │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── satchmo_feed.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── productratings │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── listeners.py │ │ │ ├── locale │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ ├── queries.py │ │ │ ├── templates │ │ │ │ └── productratings │ │ │ │ │ ├── _product_ratings.html │ │ │ │ │ ├── _render_product_ratings.html │ │ │ │ │ ├── plugins │ │ │ │ │ ├── product_footer.html │ │ │ │ │ └── sidebar_links.html │ │ │ │ │ └── product_rating_form.html │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── satchmo_ratings.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── recentlist │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── context_processors.py │ │ │ ├── locale │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── middleware.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── recentlist │ │ │ │ │ ├── _recently_viewed.html │ │ │ │ │ └── plugins │ │ │ │ │ └── shop_sidebar_primary.html │ │ │ └── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── satchmo_recentlist.py │ │ ├── satchmo_toolbar │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── listeners.py │ │ │ ├── models.py │ │ │ └── templates │ │ │ │ └── satchmo_toolbar │ │ │ │ ├── plugins │ │ │ │ ├── page_head.html │ │ │ │ └── page_top.html │ │ │ │ └── toolbar.html │ │ ├── templates │ │ │ └── locale │ │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── tieredpricing │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── listeners.py │ │ │ ├── locale │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── upsell │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── locale │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── upsell │ │ │ │ │ ├── plugins │ │ │ │ │ └── product_form.html │ │ │ │ │ └── product_upsell.html │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── satchmo_upsell.py │ │ │ └── views.py │ │ └── wishlist │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── config.py │ │ │ ├── listeners.py │ │ │ ├── locale │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ └── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ ├── templates │ │ │ └── wishlist │ │ │ │ ├── index.html │ │ │ │ ├── login_required.html │ │ │ │ └── plugins │ │ │ │ ├── product_add_buttons.html │ │ │ │ └── shop_sidebar_actions.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ ├── satchmo_store │ │ ├── __init__.py │ │ ├── accounts │ │ │ ├── __init__.py │ │ │ ├── email-auth.py │ │ │ ├── forms.py │ │ │ ├── locale │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── mail.py │ │ │ ├── signals.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── contact │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── config.py │ │ │ ├── fixtures │ │ │ │ └── initial_data.yaml │ │ │ ├── forms.py │ │ │ ├── listeners.py │ │ │ ├── locale │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ ├── signals.py │ │ │ ├── supplier │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ └── models.py │ │ │ ├── templates │ │ │ │ ├── admin │ │ │ │ │ └── contact │ │ │ │ │ │ └── order │ │ │ │ │ │ └── change_form.html │ │ │ │ ├── comments │ │ │ │ │ ├── form.html │ │ │ │ │ ├── posted.html │ │ │ │ │ └── preview.html │ │ │ │ ├── contact │ │ │ │ │ ├── _addressblock.html │ │ │ │ │ ├── _contact_info_form.html │ │ │ │ │ ├── _contact_info_form_billing.html │ │ │ │ │ ├── _contact_info_form_js.html │ │ │ │ │ ├── _contact_info_form_shipping.html │ │ │ │ │ ├── _country_match_script.html │ │ │ │ │ ├── _login_form.html │ │ │ │ │ ├── _state_choices.html │ │ │ │ │ ├── _state_js.html │ │ │ │ │ ├── login_signup.html │ │ │ │ │ ├── login_signup_address.html │ │ │ │ │ ├── update_form.html │ │ │ │ │ └── view_profile.html │ │ │ │ └── registration │ │ │ │ │ ├── account_info.html │ │ │ │ │ ├── activate.html │ │ │ │ │ ├── activation_email.txt │ │ │ │ │ ├── activation_email_subject.txt │ │ │ │ │ ├── login.html │ │ │ │ │ ├── logout.html │ │ │ │ │ ├── password_change_done.html │ │ │ │ │ ├── password_change_form.html │ │ │ │ │ ├── password_reset.txt │ │ │ │ │ ├── password_reset_done.html │ │ │ │ │ ├── password_reset_form.html │ │ │ │ │ ├── registration_complete.html │ │ │ │ │ ├── registration_form.html │ │ │ │ │ ├── repeat_activation.html │ │ │ │ │ └── welcome.txt │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── satchmo_contact.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── mail.py │ │ ├── shop │ │ │ ├── SSLMiddleware.py │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── config.py │ │ │ ├── context_processors.py │ │ │ ├── exceptions.py │ │ │ ├── fixtures │ │ │ │ ├── initial_data.yaml │ │ │ │ ├── l10n-data.yaml │ │ │ │ ├── products.yaml │ │ │ │ ├── sample-store-data.yaml │ │ │ │ ├── test-config.yaml │ │ │ │ ├── test_intl_shop.yaml │ │ │ │ ├── test_multishop.yaml │ │ │ │ └── test_shop.yaml │ │ │ ├── forms.py │ │ │ ├── listeners.py │ │ │ ├── locale │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── management │ │ │ │ ├── __init__.py │ │ │ │ └── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── delete_all_dbs.py │ │ │ │ │ ├── satchmo_check.py │ │ │ │ │ ├── satchmo_copy_static.py │ │ │ │ │ ├── satchmo_copy_urls.py │ │ │ │ │ ├── satchmo_load_l10n.py │ │ │ │ │ ├── satchmo_load_store.py │ │ │ │ │ └── satchmo_load_us_tax.py │ │ │ ├── models.py │ │ │ ├── notification.py │ │ │ ├── satchmo_settings.py │ │ │ ├── signals.py │ │ │ ├── templates │ │ │ │ ├── 404.html │ │ │ │ ├── 500.html │ │ │ │ ├── admin │ │ │ │ │ ├── base_site.html │ │ │ │ │ └── index.html │ │ │ │ ├── base.html │ │ │ │ └── shop │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── _blackbird_logging.html │ │ │ │ │ ├── _jquery.html │ │ │ │ │ ├── _jquery_form.html │ │ │ │ │ ├── _messages.html │ │ │ │ │ ├── _order_details.html │ │ │ │ │ ├── _order_tracking_details.html │ │ │ │ │ ├── _search.html │ │ │ │ │ ├── admin │ │ │ │ │ ├── _customorder_management.html │ │ │ │ │ ├── _ordercount_list.html │ │ │ │ │ ├── _orderpayment_list.html │ │ │ │ │ └── order_sidebar.html │ │ │ │ │ ├── base.html │ │ │ │ │ ├── cart.html │ │ │ │ │ ├── contact_form.html │ │ │ │ │ ├── contact_thanks.html │ │ │ │ │ ├── download.html │ │ │ │ │ ├── email │ │ │ │ │ ├── _order_detail.txt │ │ │ │ │ ├── _order_detail_table.html │ │ │ │ │ ├── contact_us.txt │ │ │ │ │ ├── order_complete.html │ │ │ │ │ ├── order_complete.txt │ │ │ │ │ ├── order_placed_notice.html │ │ │ │ │ ├── order_placed_notice.txt │ │ │ │ │ └── order_shipped.txt │ │ │ │ │ ├── google-analytics │ │ │ │ │ ├── adwords_conversion.html │ │ │ │ │ ├── receipt.html │ │ │ │ │ ├── signup.html │ │ │ │ │ └── tracker.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── json.html │ │ │ │ │ ├── multiple_product_form.html │ │ │ │ │ ├── order_history.html │ │ │ │ │ ├── order_tracking.html │ │ │ │ │ ├── pdf │ │ │ │ │ ├── invoice.rml │ │ │ │ │ ├── packing-slip.rml │ │ │ │ │ └── shipping-label.rml │ │ │ │ │ └── search.html │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ ├── messaging_tags.py │ │ │ │ ├── satchmo_adminapplist.py │ │ │ │ ├── satchmo_adminorder_tags.py │ │ │ │ ├── satchmo_cart.py │ │ │ │ ├── satchmo_category.py │ │ │ │ ├── satchmo_currency.py │ │ │ │ ├── satchmo_google.py │ │ │ │ ├── satchmo_order.py │ │ │ │ ├── satchmo_price.py │ │ │ │ └── satchmo_util.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views │ │ │ │ ├── __init__.py │ │ │ │ ├── cart.py │ │ │ │ ├── comments.py │ │ │ │ ├── common.py │ │ │ │ ├── contact.py │ │ │ │ ├── home.py │ │ │ │ ├── orders.py │ │ │ │ ├── search.py │ │ │ │ ├── sitemaps.py │ │ │ │ └── smart.py │ │ └── urls │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── default.py │ ├── satchmo_utils │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── cookies.py │ │ ├── dynamic.py │ │ ├── fields.py │ │ ├── json.py │ │ ├── locale │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ └── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── models.py │ │ ├── numbers.py │ │ ├── sslurllib.py │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── normalize_decimal.py │ │ ├── tests.py │ │ ├── thumbnail │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── field.py │ │ │ ├── templates │ │ │ │ └── widget │ │ │ │ │ └── file.html │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── satchmo_thumbnail.py │ │ │ ├── text.py │ │ │ ├── utils.py │ │ │ └── widgets.py │ │ ├── unique_id.py │ │ ├── urlhelper.py │ │ ├── views.py │ │ └── widgets.py │ ├── shipping │ │ ├── __init__.py │ │ ├── config.py │ │ ├── fields.py │ │ ├── locale │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ └── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── models.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── canadapost │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── readme.txt │ │ │ │ └── shipper.py │ │ │ ├── dummy │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ └── shipper.py │ │ │ ├── fedex │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ └── shipper.py │ │ │ ├── flat │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ └── shipper.py │ │ │ ├── no │ │ │ │ ├── __init__.py │ │ │ │ └── shipper.py │ │ │ ├── per │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ └── shipper.py │ │ │ ├── productshipping │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── config.py │ │ │ │ ├── models.py │ │ │ │ ├── templatetags │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── product_shipping_tags.py │ │ │ │ └── tests.py │ │ │ ├── tiered │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── config.py │ │ │ │ ├── models.py │ │ │ │ ├── templatetags │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── tiered_tags.py │ │ │ │ └── tests.py │ │ │ ├── tieredquantity │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── config.py │ │ │ │ ├── models.py │ │ │ │ └── tests.py │ │ │ ├── tieredweight │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── config.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ └── tests.py │ │ │ ├── ups │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ └── shipper.py │ │ │ └── usps │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ └── shipper.py │ │ ├── signals.py │ │ ├── templates │ │ │ └── shipping │ │ │ │ ├── canadapost │ │ │ │ └── request.xml │ │ │ │ ├── fedex │ │ │ │ └── request.xml │ │ │ │ ├── options.html │ │ │ │ ├── ups │ │ │ │ └── request.xml │ │ │ │ └── usps │ │ │ │ ├── delivery.xml │ │ │ │ ├── request.xml │ │ │ │ ├── request_intl.xml │ │ │ │ └── request_nodes.xml │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ └── tax │ │ ├── __init__.py │ │ ├── config.py │ │ ├── data │ │ └── tax-table.csv │ │ ├── locale │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ └── tr │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── models.py │ │ ├── modules │ │ ├── __init__.py │ │ ├── area │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── config.py │ │ │ ├── fixtures │ │ │ │ ├── test_tax.yaml │ │ │ │ └── us_tax.yaml │ │ │ ├── models.py │ │ │ └── processor.py │ │ ├── no │ │ │ ├── __init__.py │ │ │ └── processor.py │ │ ├── percent │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── models.py │ │ │ └── processor.py │ │ └── us_sst │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── config.py │ │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── sst_import_boundry.py │ │ │ │ └── sst_import_rate.py │ │ │ ├── models.py │ │ │ └── processor.py │ │ ├── templatetags │ │ ├── __init__.py │ │ └── satchmo_tax.py │ │ ├── tests.py │ │ └── utils.py ├── projects │ ├── __init__.py │ ├── load_data.py │ ├── simple │ │ ├── README │ │ ├── __init__.py │ │ ├── local_settings.py │ │ ├── localsite │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── manage.py │ │ ├── settings.py │ │ ├── simple.db │ │ ├── templates │ │ │ └── localsite │ │ │ │ └── example.html │ │ └── urls.py │ └── skeleton │ │ ├── __init__.py │ │ ├── local_settings.py │ │ ├── localsite │ │ ├── __init__.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ │ ├── manage.py │ │ ├── settings.py │ │ ├── templates │ │ ├── README.txt │ │ └── shop │ │ │ ├── README.txt │ │ │ ├── email │ │ │ └── README.txt │ │ │ └── pdf │ │ │ └── README.txt │ │ └── urls.py └── static │ ├── css │ ├── blackbird.css │ ├── jquery.autocomplete.css │ └── style.css │ ├── images │ ├── blackbird_icons.png │ ├── blackbird_panel.png │ ├── indicator.gif │ ├── productimage-picture-default.jpg │ └── sample-logo.bmp │ └── js │ ├── blackbird.js │ ├── jquery-1.4.2.js │ ├── jquery.ajaxQueue.js │ ├── jquery.autocomplete.js │ ├── jquery.bgiframe.js │ ├── jquery.cookie.js │ ├── jquery.form.js │ ├── satchmo_pay_ship.js │ ├── satchmo_product.js │ └── satchmo_store.js ├── scripts ├── clonesatchmo.py └── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/.hgtags -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/satchmo-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/_static/satchmo-front.jpg -------------------------------------------------------------------------------- /docs/_static/satchmo-sliver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/_static/satchmo-sliver.jpg -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/about.txt -------------------------------------------------------------------------------- /docs/alternate-1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/alternate-1.css -------------------------------------------------------------------------------- /docs/alternate-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/alternate-2.css -------------------------------------------------------------------------------- /docs/analytics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/analytics.txt -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/configuration.txt -------------------------------------------------------------------------------- /docs/contact.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/contact.gif -------------------------------------------------------------------------------- /docs/create-docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/create-docs.py -------------------------------------------------------------------------------- /docs/custom-admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/custom-admin.txt -------------------------------------------------------------------------------- /docs/custom-payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/custom-payment.txt -------------------------------------------------------------------------------- /docs/custom-product.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/custom-product.txt -------------------------------------------------------------------------------- /docs/customization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/customization.txt -------------------------------------------------------------------------------- /docs/deploying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/deploying.txt -------------------------------------------------------------------------------- /docs/directory_structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/directory_structure.txt -------------------------------------------------------------------------------- /docs/discount.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/discount.gif -------------------------------------------------------------------------------- /docs/discounts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/discounts.txt -------------------------------------------------------------------------------- /docs/email-verification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/email-verification.txt -------------------------------------------------------------------------------- /docs/features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/features.txt -------------------------------------------------------------------------------- /docs/google-base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/google-base.txt -------------------------------------------------------------------------------- /docs/graph-viz-satchmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/graph-viz-satchmo.py -------------------------------------------------------------------------------- /docs/images/add-attribute-product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/add-attribute-product.png -------------------------------------------------------------------------------- /docs/images/add-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/add-options.png -------------------------------------------------------------------------------- /docs/images/admin-product-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/admin-product-settings.png -------------------------------------------------------------------------------- /docs/images/adventurer-hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/adventurer-hat.png -------------------------------------------------------------------------------- /docs/images/adventurer_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/adventurer_hat.png -------------------------------------------------------------------------------- /docs/images/attribute-option-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/attribute-option-list.png -------------------------------------------------------------------------------- /docs/images/book-page-attribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/book-page-attribute.png -------------------------------------------------------------------------------- /docs/images/category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/category.png -------------------------------------------------------------------------------- /docs/images/create-config-product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/create-config-product.png -------------------------------------------------------------------------------- /docs/images/option-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/option-group.png -------------------------------------------------------------------------------- /docs/images/options-completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/options-completed.png -------------------------------------------------------------------------------- /docs/images/order-screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/order-screen1.png -------------------------------------------------------------------------------- /docs/images/order-screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/order-screen2.png -------------------------------------------------------------------------------- /docs/images/prod-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/prod-description.png -------------------------------------------------------------------------------- /docs/images/prod-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/prod-details.png -------------------------------------------------------------------------------- /docs/images/prod-price.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/prod-price.png -------------------------------------------------------------------------------- /docs/images/product-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/product-add.png -------------------------------------------------------------------------------- /docs/images/product-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/product-select.png -------------------------------------------------------------------------------- /docs/images/robot-attack-pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/robot-attack-pages.png -------------------------------------------------------------------------------- /docs/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/save.png -------------------------------------------------------------------------------- /docs/images/select-config-product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/select-config-product.png -------------------------------------------------------------------------------- /docs/images/subtypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/images/subtypes.png -------------------------------------------------------------------------------- /docs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/index.txt -------------------------------------------------------------------------------- /docs/introduction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/introduction.txt -------------------------------------------------------------------------------- /docs/managing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/managing.txt -------------------------------------------------------------------------------- /docs/migration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/migration.txt -------------------------------------------------------------------------------- /docs/new_installation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/new_installation.txt -------------------------------------------------------------------------------- /docs/payment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/payment.gif -------------------------------------------------------------------------------- /docs/payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/payment.txt -------------------------------------------------------------------------------- /docs/pricing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/pricing.txt -------------------------------------------------------------------------------- /docs/product-attributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/product-attributes.txt -------------------------------------------------------------------------------- /docs/product.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/product.gif -------------------------------------------------------------------------------- /docs/product.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/product.txt -------------------------------------------------------------------------------- /docs/quickstart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/quickstart.txt -------------------------------------------------------------------------------- /docs/release-notes-0-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/release-notes-0-7.txt -------------------------------------------------------------------------------- /docs/release-notes-0-8-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/release-notes-0-8-1.txt -------------------------------------------------------------------------------- /docs/release-notes-0-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/release-notes-0-8.txt -------------------------------------------------------------------------------- /docs/release-notes-0-9-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/release-notes-0-9-1.txt -------------------------------------------------------------------------------- /docs/release-notes-0-9-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/release-notes-0-9-2.txt -------------------------------------------------------------------------------- /docs/release-notes-0-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/release-notes-0-9.txt -------------------------------------------------------------------------------- /docs/release-notes-1-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/release-notes-1-0.txt -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/settings.txt -------------------------------------------------------------------------------- /docs/shipping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/shipping.gif -------------------------------------------------------------------------------- /docs/shipping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/shipping.txt -------------------------------------------------------------------------------- /docs/shop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/shop.gif -------------------------------------------------------------------------------- /docs/signals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/signals.txt -------------------------------------------------------------------------------- /docs/supplier.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/supplier.gif -------------------------------------------------------------------------------- /docs/tax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/tax.gif -------------------------------------------------------------------------------- /docs/tax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/tax.txt -------------------------------------------------------------------------------- /docs/template-filters-tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/template-filters-tags.txt -------------------------------------------------------------------------------- /docs/templates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/templates.txt -------------------------------------------------------------------------------- /docs/translation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/translation.txt -------------------------------------------------------------------------------- /docs/tutorial1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/tutorial1.txt -------------------------------------------------------------------------------- /docs/upsell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/upsell.txt -------------------------------------------------------------------------------- /docs/views.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/docs/views.txt -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/ez_setup.py -------------------------------------------------------------------------------- /satchmo/.svnignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/.svnignore -------------------------------------------------------------------------------- /satchmo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/l10n/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /satchmo/apps/l10n/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/admin.py -------------------------------------------------------------------------------- /satchmo/apps/l10n/bin/make-messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/bin/make-messages.py -------------------------------------------------------------------------------- /satchmo/apps/l10n/bin/posplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/bin/posplit.py -------------------------------------------------------------------------------- /satchmo/apps/l10n/bin/posplit.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/bin/posplit.rules -------------------------------------------------------------------------------- /satchmo/apps/l10n/fixtures/l10n_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/fixtures/l10n_data.xml -------------------------------------------------------------------------------- /satchmo/apps/l10n/l10n_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/l10n_settings.py -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/l10n/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/l10n/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/mixins.py -------------------------------------------------------------------------------- /satchmo/apps/l10n/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/models.py -------------------------------------------------------------------------------- /satchmo/apps/l10n/templates/l10n/_language_selection_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/templates/l10n/_language_selection_form.html -------------------------------------------------------------------------------- /satchmo/apps/l10n/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/tests.py -------------------------------------------------------------------------------- /satchmo/apps/l10n/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/urls.py -------------------------------------------------------------------------------- /satchmo/apps/l10n/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/utils.py -------------------------------------------------------------------------------- /satchmo/apps/l10n/validators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/l10n/validators/aupostcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/validators/aupostcode.py -------------------------------------------------------------------------------- /satchmo/apps/l10n/validators/capostcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/validators/capostcode.py -------------------------------------------------------------------------------- /satchmo/apps/l10n/validators/ukpostcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/validators/ukpostcode.py -------------------------------------------------------------------------------- /satchmo/apps/l10n/validators/uspostcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/l10n/validators/uspostcode.py -------------------------------------------------------------------------------- /satchmo/apps/payment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/payment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/admin.py -------------------------------------------------------------------------------- /satchmo/apps/payment/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/decorators.py -------------------------------------------------------------------------------- /satchmo/apps/payment/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/fields.py -------------------------------------------------------------------------------- /satchmo/apps/payment/fixtures/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/fixtures/config.yaml -------------------------------------------------------------------------------- /satchmo/apps/payment/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/forms.py -------------------------------------------------------------------------------- /satchmo/apps/payment/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/listeners.py -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/payment/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/payment/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/models.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/authorizenet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/authorizenet/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/authorizenet/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/authorizenet/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | PAYMENT_PROCESSOR=True 3 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/authorizenet/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/authorizenet/processor.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/authorizenet/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/authorizenet/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/authorizenet/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/authorizenet/views.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/autosuccess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/autosuccess/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/autosuccess/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/autosuccess/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | PAYMENT_PROCESSOR=True -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/autosuccess/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/autosuccess/processor.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/autosuccess/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/autosuccess/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/autosuccess/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/autosuccess/views.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/base.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/cod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/cod/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/cod/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/cod/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | PAYMENT_PROCESSOR=True -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/cod/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/cod/processor.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/cod/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/cod/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/cod/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/cod/views.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/cybersource/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/cybersource/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/cybersource/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/cybersource/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | PAYMENT_PROCESSOR=True -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/cybersource/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/cybersource/processor.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/cybersource/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/cybersource/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/cybersource/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/cybersource/views.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/dummy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/dummy/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/dummy/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/dummy/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | PAYMENT_PROCESSOR=True -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/dummy/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/dummy/processor.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/dummy/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/dummy/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/dummy/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/dummy/views.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/giftcertificate/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/giftcertificate/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/giftcertificate/admin.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/giftcertificate/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/giftcertificate/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/giftcertificate/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/giftcertificate/forms.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/giftcertificate/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/giftcertificate/models.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/giftcertificate/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/giftcertificate/processor.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/giftcertificate/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/giftcertificate/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/giftcertificate/tests.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/giftcertificate/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/giftcertificate/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/giftcertificate/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/giftcertificate/utils.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/giftcertificate/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/giftcertificate/views.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/google/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/google/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/google/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/google/auth.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/google/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/google/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/google/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | PAYMENT_PROCESSOR=True -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/google/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/google/notifications.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/google/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/google/processor.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/google/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/google/readme.txt -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/google/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/google/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/google/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/google/views.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/paypal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/paypal/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/paypal/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/paypal/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | PAYMENT_PROCESSOR=True -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/paypal/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/paypal/processor.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/paypal/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/paypal/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/paypal/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/paypal/views.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/purchaseorder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/purchaseorder/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/purchaseorder/admin.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/purchaseorder/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/purchaseorder/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/purchaseorder/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/purchaseorder/forms.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/purchaseorder/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/purchaseorder/models.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/purchaseorder/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/purchaseorder/processor.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/purchaseorder/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/purchaseorder/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/purchaseorder/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/purchaseorder/views.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sagepay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sagepay/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/sagepay/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sagepay/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/sagepay/forms.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sagepay/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | PAYMENT_PROCESSOR=True -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sagepay/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/sagepay/processor.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sagepay/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/sagepay/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sagepay/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/sagepay/views.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sermepa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sermepa/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/sermepa/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sermepa/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | PAYMENT_PROCESSOR=True -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sermepa/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/sermepa/processor.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sermepa/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/sermepa/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/sermepa/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/sermepa/views.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/trustcommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/trustcommerce/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/trustcommerce/config.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/trustcommerce/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | PAYMENT_PROCESSOR=True -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/trustcommerce/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/trustcommerce/processor.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/trustcommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/trustcommerce/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/modules/trustcommerce/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/modules/trustcommerce/views.py -------------------------------------------------------------------------------- /satchmo/apps/payment/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/signals.py -------------------------------------------------------------------------------- /satchmo/apps/payment/templates/shop/checkout/base_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templates/shop/checkout/base_confirm.html -------------------------------------------------------------------------------- /satchmo/apps/payment/templates/shop/checkout/cod/confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templates/shop/checkout/cod/confirm.html -------------------------------------------------------------------------------- /satchmo/apps/payment/templates/shop/checkout/cod/pay_ship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templates/shop/checkout/cod/pay_ship.html -------------------------------------------------------------------------------- /satchmo/apps/payment/templates/shop/checkout/confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templates/shop/checkout/confirm.html -------------------------------------------------------------------------------- /satchmo/apps/payment/templates/shop/checkout/empty_cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templates/shop/checkout/empty_cart.html -------------------------------------------------------------------------------- /satchmo/apps/payment/templates/shop/checkout/failure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templates/shop/checkout/failure.html -------------------------------------------------------------------------------- /satchmo/apps/payment/templates/shop/checkout/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templates/shop/checkout/form.html -------------------------------------------------------------------------------- /satchmo/apps/payment/templates/shop/checkout/google/cart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templates/shop/checkout/google/cart.xml -------------------------------------------------------------------------------- /satchmo/apps/payment/templates/shop/checkout/pay_ship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templates/shop/checkout/pay_ship.html -------------------------------------------------------------------------------- /satchmo/apps/payment/templates/shop/checkout/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templates/shop/checkout/success.html -------------------------------------------------------------------------------- /satchmo/apps/payment/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/templatetags/satchmo_checkout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templatetags/satchmo_checkout.py -------------------------------------------------------------------------------- /satchmo/apps/payment/templatetags/satchmo_googlecheckout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templatetags/satchmo_googlecheckout.py -------------------------------------------------------------------------------- /satchmo/apps/payment/templatetags/satchmo_itemlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/templatetags/satchmo_itemlist.py -------------------------------------------------------------------------------- /satchmo/apps/payment/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/tests.py -------------------------------------------------------------------------------- /satchmo/apps/payment/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/urls.py -------------------------------------------------------------------------------- /satchmo/apps/payment/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/utils.py -------------------------------------------------------------------------------- /satchmo/apps/payment/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/payment/views/balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/views/balance.py -------------------------------------------------------------------------------- /satchmo/apps/payment/views/checkout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/views/checkout.py -------------------------------------------------------------------------------- /satchmo/apps/payment/views/confirm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/views/confirm.py -------------------------------------------------------------------------------- /satchmo/apps/payment/views/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/views/contact.py -------------------------------------------------------------------------------- /satchmo/apps/payment/views/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/views/cron.py -------------------------------------------------------------------------------- /satchmo/apps/payment/views/payship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/payment/views/payship.py -------------------------------------------------------------------------------- /satchmo/apps/product/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/product/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/admin.py -------------------------------------------------------------------------------- /satchmo/apps/product/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/config.py -------------------------------------------------------------------------------- /satchmo/apps/product/fields.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/fixtures/initial_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/fixtures/initial_data.yaml -------------------------------------------------------------------------------- /satchmo/apps/product/fixtures/test_discount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/fixtures/test_discount.yaml -------------------------------------------------------------------------------- /satchmo/apps/product/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/forms.py -------------------------------------------------------------------------------- /satchmo/apps/product/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/jobs/daily/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/jobs/daily/rebuild_prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/jobs/daily/rebuild_prices.py -------------------------------------------------------------------------------- /satchmo/apps/product/jobs/hourly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/jobs/monthly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/jobs/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/jobs/sample.py -------------------------------------------------------------------------------- /satchmo/apps/product/jobs/weekly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/listeners.py -------------------------------------------------------------------------------- /satchmo/apps/product/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/product/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/product/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/migrations/0001_initial.py -------------------------------------------------------------------------------- /satchmo/apps/product/migrations/0002_add_attributeoption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/migrations/0002_add_attributeoption.py -------------------------------------------------------------------------------- /satchmo/apps/product/migrations/0011_split_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/migrations/0011_split_products.py -------------------------------------------------------------------------------- /satchmo/apps/product/migrations/0012_update_contenttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/migrations/0012_update_contenttypes.py -------------------------------------------------------------------------------- /satchmo/apps/product/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/migrations/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/product/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/models.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/modules/configurable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/modules/configurable/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/configurable/admin.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/configurable/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/modules/configurable/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/configurable/models.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/configurable/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/configurable/tests.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/custom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/modules/custom/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/custom/admin.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/custom/migrations/0001_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/custom/migrations/0001_split.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/custom/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/modules/custom/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/custom/models.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/custom/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/custom/tests.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/downloadable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/modules/downloadable/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/downloadable/admin.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/downloadable/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/downloadable/config.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/downloadable/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/downloadable/listeners.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/downloadable/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/modules/downloadable/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/downloadable/models.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/downloadable/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/downloadable/tests.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/downloadable/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/downloadable/views.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/subscription/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/modules/subscription/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/subscription/admin.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/subscription/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/modules/subscription/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/subscription/models.py -------------------------------------------------------------------------------- /satchmo/apps/product/modules/subscription/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/modules/subscription/tests.py -------------------------------------------------------------------------------- /satchmo/apps/product/prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/prices.py -------------------------------------------------------------------------------- /satchmo/apps/product/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/queries.py -------------------------------------------------------------------------------- /satchmo/apps/product/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/signals.py -------------------------------------------------------------------------------- /satchmo/apps/product/templates/product/best_ratings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/templates/product/best_ratings.html -------------------------------------------------------------------------------- /satchmo/apps/product/templates/product/best_sellers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/templates/product/best_sellers.html -------------------------------------------------------------------------------- /satchmo/apps/product/templates/product/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/templates/product/category.html -------------------------------------------------------------------------------- /satchmo/apps/product/templates/product/category_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/templates/product/category_index.html -------------------------------------------------------------------------------- /satchmo/apps/product/templates/product/minimum_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/templates/product/minimum_order.html -------------------------------------------------------------------------------- /satchmo/apps/product/templates/product/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/templates/product/product.html -------------------------------------------------------------------------------- /satchmo/apps/product/templates/product/recently_added.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/templates/product/recently_added.html -------------------------------------------------------------------------------- /satchmo/apps/product/templates/product/sale_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/templates/product/sale_details.html -------------------------------------------------------------------------------- /satchmo/apps/product/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/product/templatetags/satchmo_discounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/templatetags/satchmo_discounts.py -------------------------------------------------------------------------------- /satchmo/apps/product/templatetags/satchmo_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/templatetags/satchmo_product.py -------------------------------------------------------------------------------- /satchmo/apps/product/templatetags/satchmo_product_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/templatetags/satchmo_product_admin.py -------------------------------------------------------------------------------- /satchmo/apps/product/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/tests.py -------------------------------------------------------------------------------- /satchmo/apps/product/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/urls/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/product/urls/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/urls/base.py -------------------------------------------------------------------------------- /satchmo/apps/product/urls/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/urls/category.py -------------------------------------------------------------------------------- /satchmo/apps/product/urls/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/urls/products.py -------------------------------------------------------------------------------- /satchmo/apps/product/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/utils.py -------------------------------------------------------------------------------- /satchmo/apps/product/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/views/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/product/views/adminviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/views/adminviews.py -------------------------------------------------------------------------------- /satchmo/apps/product/views/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/product/views/filters.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/brand/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/brand/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/brand/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/brand/admin.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/brand/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/brand/config.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/brand/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/brand/models.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/brand/templates/brand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/brand/templates/brand/index.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/brand/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/brand/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/brand/urls.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/brand/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/brand/views.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/contrib/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/contrib/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/contrib/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/contrib/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/contrib/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/contrib/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/contrib/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/contrib/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/contrib/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/contrib/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/metrics/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/metrics/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/metrics/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/metrics/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/metrics/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/metrics/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/metrics/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/metrics/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/metrics/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/metrics/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/metrics/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/metrics/logger.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/INSTALL -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/admin.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/config.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/forms.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/ignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/ignore.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/listeners.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/mailman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/mailman.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/models.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/signals.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/simple.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/templates/newsletter/ajah.html: -------------------------------------------------------------------------------- 1 | {{ result }} -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/tests.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/urls.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/newsletter/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/newsletter/views.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/product_feeds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/product_feeds/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/product_feeds/models.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/product_feeds/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/product_feeds/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/product_feeds/tests.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/product_feeds/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/product_feeds/urls.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/product_feeds/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/product_feeds/views.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/productratings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/productratings/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/productratings/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/productratings/config.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/productratings/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/productratings/listeners.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/productratings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/productratings/models.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/productratings/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/productratings/queries.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/productratings/templates/productratings/_render_product_ratings.html: -------------------------------------------------------------------------------- 1 | {{ rendered_product_ratings|safe }} 2 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/productratings/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/productratings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/productratings/urls.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/productratings/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/productratings/utils.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/productratings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/productratings/views.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/recentlist/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/recentlist/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/recentlist/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/recentlist/config.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/recentlist/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/recentlist/context_processors.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/recentlist/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/recentlist/middleware.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/recentlist/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/recentlist/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/satchmo_toolbar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/satchmo_toolbar/config.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/satchmo_toolbar/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/satchmo_toolbar/listeners.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/satchmo_toolbar/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/satchmo_toolbar/models.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/templates/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/templates/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/templates/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/templates/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/templates/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/templates/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/templates/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/templates/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/templates/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/templates/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/tieredpricing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/tieredpricing/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/tieredpricing/admin.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/tieredpricing/listeners.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/tieredpricing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/tieredpricing/models.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/tieredpricing/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/tieredpricing/tests.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/upsell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/upsell/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/upsell/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/upsell/admin.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/upsell/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/upsell/models.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/upsell/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/upsell/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/upsell/views.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/wishlist/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/wishlist/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/wishlist/admin.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/wishlist/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/wishlist/config.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/wishlist/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/wishlist/listeners.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/wishlist/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/wishlist/models.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/wishlist/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/wishlist/tests.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/wishlist/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/wishlist/urls.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_ext/wishlist/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_ext/wishlist/views.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/accounts/email-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/accounts/email-auth.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/accounts/forms.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/accounts/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/accounts/mail.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/accounts/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/accounts/signals.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/accounts/urls.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/accounts/views.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/__init__.py: -------------------------------------------------------------------------------- 1 | CUSTOMER_ID = 'custID' 2 | 3 | import listeners 4 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/contact/admin.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/contact/config.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/contact/forms.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/contact/listeners.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/contact/models.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/contact/signals.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/supplier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/supplier/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/contact/supplier/admin.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/supplier/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/contact/supplier/models.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/contact/tests.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/contact/urls.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/contact/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/contact/views.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/mail.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/SSLMiddleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/SSLMiddleware.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/admin.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/config.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/context_processors.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/exceptions.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/fixtures/initial_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/fixtures/initial_data.yaml -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/fixtures/l10n-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/fixtures/l10n-data.yaml -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/fixtures/products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/fixtures/products.yaml -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/fixtures/test-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/fixtures/test-config.yaml -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/fixtures/test_intl_shop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/fixtures/test_intl_shop.yaml -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/fixtures/test_multishop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/fixtures/test_multishop.yaml -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/fixtures/test_shop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/fixtures/test_shop.yaml -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/forms.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/listeners.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/models.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/notification.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/satchmo_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/satchmo_settings.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/signals.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templates/404.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templates/500.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templates/admin/index.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templates/base.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/shop/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templates/shop/404.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/shop/_jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templates/shop/_jquery.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/shop/_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templates/shop/_search.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/shop/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templates/shop/base.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/shop/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templates/shop/cart.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/shop/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templates/shop/download.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/shop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templates/shop/index.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/shop/json.html: -------------------------------------------------------------------------------- 1 | {{ json }} -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templates/shop/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templates/shop/search.html -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templatetags/satchmo_cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templatetags/satchmo_cart.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/templatetags/satchmo_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/templatetags/satchmo_util.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/tests.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/urls.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/utils.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/views/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/views/cart.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/views/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/views/comments.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/views/common.py: -------------------------------------------------------------------------------- 1 | """Common shop views""" 2 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/views/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/views/contact.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/views/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/views/home.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/views/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/views/orders.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/views/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/views/search.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/views/sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/views/sitemaps.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/shop/views/smart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/shop/views/smart.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/urls/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/urls/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/urls/base.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_store/urls/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_store/urls/default.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/admin.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/cookies.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/dynamic.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/fields.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/json.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/numbers.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/sslurllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/sslurllib.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/templatetags/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/templatetags/normalize_decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/templatetags/normalize_decimal.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/tests.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/thumbnail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/thumbnail/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/thumbnail/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/thumbnail/config.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/thumbnail/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/thumbnail/field.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/thumbnail/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/thumbnail/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/thumbnail/text.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/thumbnail/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/thumbnail/utils.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/thumbnail/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/thumbnail/widgets.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/unique_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/unique_id.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/urlhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/urlhelper.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/views.py -------------------------------------------------------------------------------- /satchmo/apps/satchmo_utils/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/satchmo_utils/widgets.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/shipping/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/config.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/fields.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/shipping/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/shipping/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/base.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/canadapost/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/canadapost/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/canadapost/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/canadapost/config.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/canadapost/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/canadapost/readme.txt -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/canadapost/shipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/canadapost/shipper.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/dummy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/dummy/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/dummy/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/dummy/config.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/dummy/shipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/dummy/shipper.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/fedex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/fedex/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/fedex/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/fedex/config.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/fedex/shipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/fedex/shipper.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/flat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/flat/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/flat/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/flat/config.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/flat/shipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/flat/shipper.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/no/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/no/shipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/no/shipper.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/per/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/per/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/per/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/per/config.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/per/shipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/per/shipper.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/productshipping/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/productshipping/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/productshipping/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/productshipping/admin.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/productshipping/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/productshipping/config.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/productshipping/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/productshipping/models.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/productshipping/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/productshipping/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/productshipping/tests.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tiered/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tiered/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tiered/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tiered/admin.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tiered/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tiered/config.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tiered/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tiered/models.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tiered/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tiered/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tiered/tests.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tieredquantity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tieredquantity/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tieredquantity/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tieredquantity/admin.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tieredquantity/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tieredquantity/config.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tieredquantity/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tieredquantity/models.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tieredquantity/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tieredquantity/tests.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tieredweight/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tieredweight/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tieredweight/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tieredweight/admin.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tieredweight/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tieredweight/config.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tieredweight/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tieredweight/forms.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tieredweight/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tieredweight/models.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/tieredweight/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/tieredweight/tests.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/ups/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/ups/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/ups/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/ups/config.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/ups/shipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/ups/shipper.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/usps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/usps/__init__.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/usps/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/usps/config.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/modules/usps/shipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/modules/usps/shipper.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/signals.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/templates/shipping/fedex/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/templates/shipping/fedex/request.xml -------------------------------------------------------------------------------- /satchmo/apps/shipping/templates/shipping/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/templates/shipping/options.html -------------------------------------------------------------------------------- /satchmo/apps/shipping/templates/shipping/ups/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/templates/shipping/ups/request.xml -------------------------------------------------------------------------------- /satchmo/apps/shipping/templates/shipping/usps/delivery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/templates/shipping/usps/delivery.xml -------------------------------------------------------------------------------- /satchmo/apps/shipping/templates/shipping/usps/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/templates/shipping/usps/request.xml -------------------------------------------------------------------------------- /satchmo/apps/shipping/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/tests.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/urls.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/utils.py -------------------------------------------------------------------------------- /satchmo/apps/shipping/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/shipping/views.py -------------------------------------------------------------------------------- /satchmo/apps/tax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/tax/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/config.py -------------------------------------------------------------------------------- /satchmo/apps/tax/data/tax-table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/data/tax-table.csv -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /satchmo/apps/tax/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /satchmo/apps/tax/models.py: -------------------------------------------------------------------------------- 1 | import config 2 | -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/area/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/area/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/area/admin.py -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/area/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/area/config.py -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/area/fixtures/test_tax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/area/fixtures/test_tax.yaml -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/area/fixtures/us_tax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/area/fixtures/us_tax.yaml -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/area/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/area/models.py -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/area/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/area/processor.py -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/no/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/no/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/no/processor.py -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/percent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/percent/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/percent/config.py -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/percent/models.py: -------------------------------------------------------------------------------- 1 | import config -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/percent/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/percent/processor.py -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/us_sst/__init__.py: -------------------------------------------------------------------------------- 1 | # Foo. 2 | -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/us_sst/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/us_sst/admin.py -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/us_sst/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/us_sst/config.py -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/us_sst/management/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/us_sst/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/us_sst/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/us_sst/models.py -------------------------------------------------------------------------------- /satchmo/apps/tax/modules/us_sst/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/modules/us_sst/processor.py -------------------------------------------------------------------------------- /satchmo/apps/tax/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/apps/tax/templatetags/satchmo_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/templatetags/satchmo_tax.py -------------------------------------------------------------------------------- /satchmo/apps/tax/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/tests.py -------------------------------------------------------------------------------- /satchmo/apps/tax/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/apps/tax/utils.py -------------------------------------------------------------------------------- /satchmo/projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/projects/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/load_data.py -------------------------------------------------------------------------------- /satchmo/projects/simple/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/simple/README -------------------------------------------------------------------------------- /satchmo/projects/simple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/projects/simple/local_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/simple/local_settings.py -------------------------------------------------------------------------------- /satchmo/projects/simple/localsite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/projects/simple/localsite/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/projects/simple/localsite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/simple/localsite/urls.py -------------------------------------------------------------------------------- /satchmo/projects/simple/localsite/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/simple/localsite/views.py -------------------------------------------------------------------------------- /satchmo/projects/simple/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/simple/manage.py -------------------------------------------------------------------------------- /satchmo/projects/simple/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/simple/settings.py -------------------------------------------------------------------------------- /satchmo/projects/simple/simple.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/simple/simple.db -------------------------------------------------------------------------------- /satchmo/projects/simple/templates/localsite/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/simple/templates/localsite/example.html -------------------------------------------------------------------------------- /satchmo/projects/simple/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/simple/urls.py -------------------------------------------------------------------------------- /satchmo/projects/skeleton/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/projects/skeleton/local_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/skeleton/local_settings.py -------------------------------------------------------------------------------- /satchmo/projects/skeleton/localsite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/projects/skeleton/localsite/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /satchmo/projects/skeleton/localsite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/skeleton/localsite/urls.py -------------------------------------------------------------------------------- /satchmo/projects/skeleton/localsite/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/skeleton/localsite/views.py -------------------------------------------------------------------------------- /satchmo/projects/skeleton/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/skeleton/manage.py -------------------------------------------------------------------------------- /satchmo/projects/skeleton/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/skeleton/settings.py -------------------------------------------------------------------------------- /satchmo/projects/skeleton/templates/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/skeleton/templates/README.txt -------------------------------------------------------------------------------- /satchmo/projects/skeleton/templates/shop/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/skeleton/templates/shop/README.txt -------------------------------------------------------------------------------- /satchmo/projects/skeleton/templates/shop/email/README.txt: -------------------------------------------------------------------------------- 1 | Copy the email templates here and modify for your store. 2 | -------------------------------------------------------------------------------- /satchmo/projects/skeleton/templates/shop/pdf/README.txt: -------------------------------------------------------------------------------- 1 | Put the pdf templates here. 2 | -------------------------------------------------------------------------------- /satchmo/projects/skeleton/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/projects/skeleton/urls.py -------------------------------------------------------------------------------- /satchmo/static/css/blackbird.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/css/blackbird.css -------------------------------------------------------------------------------- /satchmo/static/css/jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/css/jquery.autocomplete.css -------------------------------------------------------------------------------- /satchmo/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/css/style.css -------------------------------------------------------------------------------- /satchmo/static/images/blackbird_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/images/blackbird_icons.png -------------------------------------------------------------------------------- /satchmo/static/images/blackbird_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/images/blackbird_panel.png -------------------------------------------------------------------------------- /satchmo/static/images/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/images/indicator.gif -------------------------------------------------------------------------------- /satchmo/static/images/productimage-picture-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/images/productimage-picture-default.jpg -------------------------------------------------------------------------------- /satchmo/static/images/sample-logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/images/sample-logo.bmp -------------------------------------------------------------------------------- /satchmo/static/js/blackbird.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/js/blackbird.js -------------------------------------------------------------------------------- /satchmo/static/js/jquery-1.4.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/js/jquery-1.4.2.js -------------------------------------------------------------------------------- /satchmo/static/js/jquery.ajaxQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/js/jquery.ajaxQueue.js -------------------------------------------------------------------------------- /satchmo/static/js/jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/js/jquery.autocomplete.js -------------------------------------------------------------------------------- /satchmo/static/js/jquery.bgiframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/js/jquery.bgiframe.js -------------------------------------------------------------------------------- /satchmo/static/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/js/jquery.cookie.js -------------------------------------------------------------------------------- /satchmo/static/js/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/js/jquery.form.js -------------------------------------------------------------------------------- /satchmo/static/js/satchmo_pay_ship.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/js/satchmo_pay_ship.js -------------------------------------------------------------------------------- /satchmo/static/js/satchmo_product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/js/satchmo_product.js -------------------------------------------------------------------------------- /satchmo/static/js/satchmo_store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/satchmo/static/js/satchmo_store.js -------------------------------------------------------------------------------- /scripts/clonesatchmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/scripts/clonesatchmo.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dokterbob/satchmo/HEAD/setup.py --------------------------------------------------------------------------------