ソースを参照

Moved all templatetags, fixtures and management commands.

Now they are always available within the oscar app.
master
David Winterbottom 13年前
コミット
8bcbfbec33
35個のファイルの変更2行の追加3行の削除
  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 ファイルの表示


+ 0
- 0
oscar/apps/catalogue/management/__init__.py ファイルの表示


+ 0
- 0
oscar/apps/catalogue/management/commands/__init__.py ファイルの表示


+ 0
- 0
oscar/apps/catalogue/templatetags/__init__.py ファイルの表示


+ 0
- 0
oscar/apps/customer/management/__init__.py ファイルの表示


+ 0
- 0
oscar/apps/customer/management/commands/__init__.py ファイルの表示


+ 0
- 0
oscar/apps/customer/templatetags/__init__.py ファイルの表示


oscar/apps/dynamic_images/test_fixtures/test.jpg → oscar/apps/dynamic_images/fixtures/test.jpg ファイルの表示


+ 0
- 0
oscar/apps/dynamic_images/templatetags/__init__.py ファイルの表示


+ 0
- 0
oscar/apps/partner/management/__init__.py ファイルの表示


+ 0
- 0
oscar/apps/partner/management/commands/__init__.py ファイルの表示


+ 2
- 2
oscar/apps/partner/tests/import_catalogue.py ファイルの表示

@@ -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 ファイルの表示


+ 0
- 1
oscar/apps/search/fixtures/sample-products.json
ファイル差分が大きすぎるため省略します
ファイルの表示


oscar/apps/partner/fixtures/books-small-semicolon.csv → oscar/fixtures/books-small-semicolon.csv ファイルの表示


oscar/apps/partner/fixtures/books-small.csv → oscar/fixtures/books-small.csv ファイルの表示


oscar/apps/shipping/fixtures/example-shipping-charges.json → oscar/fixtures/example-shipping-charges.json ファイルの表示


oscar/apps/address/fixtures/initial_data.json → oscar/fixtures/initial_data.json ファイルの表示


oscar/apps/order/fixtures/sample-order.json → oscar/fixtures/sample-order.json ファイルの表示


oscar/apps/catalogue/reviews/fixtures/sample-product.json → oscar/fixtures/sample-product.json ファイルの表示


oscar/apps/catalogue/fixtures/sample-products.json → oscar/fixtures/sample-products.json ファイルの表示


oscar/apps/catalogue/reviews/fixtures/sample-reviews.json → oscar/fixtures/sample-reviews.json ファイルの表示


oscar/apps/order/fixtures/sample-shipping-and-payment-types.json → oscar/fixtures/sample-shipping-and-payment-types.json ファイルの表示


oscar/apps/analytics/management/__init__.py → oscar/management/__init__.py ファイルの表示


oscar/apps/analytics/management/commands/__init__.py → oscar/management/commands/__init__.py ファイルの表示


oscar/apps/analytics/management/commands/calculate_scores.py → oscar/management/commands/calculate_scores.py ファイルの表示


oscar/apps/customer/management/commands/generate_email.py → oscar/management/commands/generate_email.py ファイルの表示


oscar/apps/partner/management/commands/import_catalogue.py → oscar/management/commands/import_catalogue.py ファイルの表示


oscar/apps/catalogue/management/commands/import_images.py → oscar/management/commands/import_images.py ファイルの表示


oscar/apps/partner/management/commands/import_stock.py → oscar/management/commands/import_stock.py ファイルの表示


oscar/apps/basket/templatetags/basket_tags.py → oscar/templatetags/basket_tags.py ファイルの表示


oscar/apps/catalogue/templatetags/category_tags.py → oscar/templatetags/category_tags.py ファイルの表示


oscar/apps/customer/templatetags/history_tags.py → oscar/templatetags/history_tags.py ファイルの表示


oscar/apps/dynamic_images/templatetags/image.py → oscar/templatetags/image.py ファイルの表示


oscar/apps/promotions/templatetags/promotions.py → oscar/templatetags/promotions.py ファイルの表示


読み込み中…
キャンセル
保存