Browse Source

Moved all templatetags, fixtures and management commands.

Now they are always available within the oscar app.
master
David Winterbottom 13 years ago
parent
commit
8bcbfbec33
35 changed files with 2 additions and 3 deletions
  1. 0
    0
      oscar/apps/basket/templatetags/__init__.py
  2. 0
    0
      oscar/apps/catalogue/management/__init__.py
  3. 0
    0
      oscar/apps/catalogue/management/commands/__init__.py
  4. 0
    0
      oscar/apps/catalogue/templatetags/__init__.py
  5. 0
    0
      oscar/apps/customer/management/__init__.py
  6. 0
    0
      oscar/apps/customer/management/commands/__init__.py
  7. 0
    0
      oscar/apps/customer/templatetags/__init__.py
  8. 0
    0
      oscar/apps/dynamic_images/fixtures/test.jpg
  9. 0
    0
      oscar/apps/dynamic_images/templatetags/__init__.py
  10. 0
    0
      oscar/apps/partner/management/__init__.py
  11. 0
    0
      oscar/apps/partner/management/commands/__init__.py
  12. 2
    2
      oscar/apps/partner/tests/import_catalogue.py
  13. 0
    0
      oscar/apps/promotions/templatetags/__init__.py
  14. 0
    1
      oscar/apps/search/fixtures/sample-products.json
  15. 0
    0
      oscar/fixtures/books-small-semicolon.csv
  16. 0
    0
      oscar/fixtures/books-small.csv
  17. 0
    0
      oscar/fixtures/example-shipping-charges.json
  18. 0
    0
      oscar/fixtures/initial_data.json
  19. 0
    0
      oscar/fixtures/sample-order.json
  20. 0
    0
      oscar/fixtures/sample-product.json
  21. 0
    0
      oscar/fixtures/sample-products.json
  22. 0
    0
      oscar/fixtures/sample-reviews.json
  23. 0
    0
      oscar/fixtures/sample-shipping-and-payment-types.json
  24. 0
    0
      oscar/management/__init__.py
  25. 0
    0
      oscar/management/commands/__init__.py
  26. 0
    0
      oscar/management/commands/calculate_scores.py
  27. 0
    0
      oscar/management/commands/generate_email.py
  28. 0
    0
      oscar/management/commands/import_catalogue.py
  29. 0
    0
      oscar/management/commands/import_images.py
  30. 0
    0
      oscar/management/commands/import_stock.py
  31. 0
    0
      oscar/templatetags/basket_tags.py
  32. 0
    0
      oscar/templatetags/category_tags.py
  33. 0
    0
      oscar/templatetags/history_tags.py
  34. 0
    0
      oscar/templatetags/image.py
  35. 0
    0
      oscar/templatetags/promotions.py

+ 0
- 0
oscar/apps/basket/templatetags/__init__.py View File


+ 0
- 0
oscar/apps/catalogue/management/__init__.py View File


+ 0
- 0
oscar/apps/catalogue/management/commands/__init__.py View File


+ 0
- 0
oscar/apps/catalogue/templatetags/__init__.py View File


+ 0
- 0
oscar/apps/customer/management/__init__.py View File


+ 0
- 0
oscar/apps/customer/management/commands/__init__.py View File


+ 0
- 0
oscar/apps/customer/templatetags/__init__.py View File


oscar/apps/dynamic_images/test_fixtures/test.jpg → oscar/apps/dynamic_images/fixtures/test.jpg View File


+ 0
- 0
oscar/apps/dynamic_images/templatetags/__init__.py View File


+ 0
- 0
oscar/apps/partner/management/__init__.py View File


+ 0
- 0
oscar/apps/partner/management/commands/__init__.py View File


+ 2
- 2
oscar/apps/partner/tests/import_catalogue.py View File

@@ -9,8 +9,8 @@ from oscar.apps.catalogue.models import ProductClass, Product
9 9
 from oscar.apps.partner.models import Partner, StockRecord
10 10
 from oscar.test.helpers import create_product
11 11
 
12
-TEST_BOOKS_CSV = os.path.join(os.path.dirname(__file__), '../fixtures/books-small.csv')
13
-TEST_BOOKS_SEMICOLON_CSV = os.path.join(os.path.dirname(__file__), '../fixtures/books-small-semicolon.csv')
12
+TEST_BOOKS_CSV = os.path.join(os.path.dirname(__file__), '../../../fixtures/books-small.csv')
13
+TEST_BOOKS_SEMICOLON_CSV = os.path.join(os.path.dirname(__file__), '../../../fixtures/books-small-semicolon.csv')
14 14
 
15 15
 class NullHandler(logging.Handler):
16 16
     def emit(self, record):

+ 0
- 0
oscar/apps/promotions/templatetags/__init__.py View File


+ 0
- 1
oscar/apps/search/fixtures/sample-products.json
File diff suppressed because it is too large
View File


oscar/apps/partner/fixtures/books-small-semicolon.csv → oscar/fixtures/books-small-semicolon.csv View File


oscar/apps/partner/fixtures/books-small.csv → oscar/fixtures/books-small.csv View File


oscar/apps/shipping/fixtures/example-shipping-charges.json → oscar/fixtures/example-shipping-charges.json View File


oscar/apps/address/fixtures/initial_data.json → oscar/fixtures/initial_data.json View File


oscar/apps/order/fixtures/sample-order.json → oscar/fixtures/sample-order.json View File


oscar/apps/catalogue/reviews/fixtures/sample-product.json → oscar/fixtures/sample-product.json View File


oscar/apps/catalogue/fixtures/sample-products.json → oscar/fixtures/sample-products.json View File


oscar/apps/catalogue/reviews/fixtures/sample-reviews.json → oscar/fixtures/sample-reviews.json View File


oscar/apps/order/fixtures/sample-shipping-and-payment-types.json → oscar/fixtures/sample-shipping-and-payment-types.json View File


oscar/apps/analytics/management/__init__.py → oscar/management/__init__.py View File


oscar/apps/analytics/management/commands/__init__.py → oscar/management/commands/__init__.py View File


oscar/apps/analytics/management/commands/calculate_scores.py → oscar/management/commands/calculate_scores.py View File


oscar/apps/customer/management/commands/generate_email.py → oscar/management/commands/generate_email.py View File


oscar/apps/partner/management/commands/import_catalogue.py → oscar/management/commands/import_catalogue.py View File


oscar/apps/catalogue/management/commands/import_images.py → oscar/management/commands/import_images.py View File


oscar/apps/partner/management/commands/import_stock.py → oscar/management/commands/import_stock.py View File


oscar/apps/basket/templatetags/basket_tags.py → oscar/templatetags/basket_tags.py View File


oscar/apps/catalogue/templatetags/category_tags.py → oscar/templatetags/category_tags.py View File


oscar/apps/customer/templatetags/history_tags.py → oscar/templatetags/history_tags.py View File


oscar/apps/dynamic_images/templatetags/image.py → oscar/templatetags/image.py View File


oscar/apps/promotions/templatetags/promotions.py → oscar/templatetags/promotions.py View File


Loading…
Cancel
Save