Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

__init__.py 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. import os
  2. # Use 'final' as the 4th element to indicate
  3. # a full release
  4. VERSION = (0, 6, 0, 'alpha', 0)
  5. def get_short_version():
  6. return '%s.%s' % (VERSION[0], VERSION[1])
  7. def get_version():
  8. version = '%s.%s' % (VERSION[0], VERSION[1])
  9. if VERSION[2]:
  10. # Append 3rd digit if > 0
  11. version = '%s.%s' % (version, VERSION[2])
  12. if VERSION[3:] == ('alpha', 0):
  13. version = '%s pre-alpha' % version
  14. elif VERSION[3] != 'final':
  15. version = '%s %s %s' % (version, VERSION[3], VERSION[4])
  16. return version
  17. # Cheeky setting that allows each template to be accessible by two paths.
  18. # Eg: the template 'oscar/templates/oscar/base.html' can be accessed via both
  19. # 'base.html' and 'oscar/base.html'. This allows Oscar's templates to be
  20. # extended by templates with the same filename
  21. OSCAR_MAIN_TEMPLATE_DIR = os.path.join(
  22. os.path.dirname(os.path.abspath(__file__)), 'templates/oscar')
  23. OSCAR_CORE_APPS = [
  24. 'oscar',
  25. 'oscar.apps.analytics',
  26. 'oscar.apps.checkout',
  27. 'oscar.apps.address',
  28. 'oscar.apps.shipping',
  29. 'oscar.apps.catalogue',
  30. 'oscar.apps.catalogue.reviews',
  31. 'oscar.apps.partner',
  32. 'oscar.apps.basket',
  33. 'oscar.apps.payment',
  34. 'oscar.apps.offer',
  35. 'oscar.apps.order',
  36. 'oscar.apps.customer',
  37. 'oscar.apps.promotions',
  38. 'oscar.apps.search',
  39. 'oscar.apps.voucher',
  40. 'oscar.apps.wishlists',
  41. 'oscar.apps.dashboard',
  42. 'oscar.apps.dashboard.reports',
  43. 'oscar.apps.dashboard.users',
  44. 'oscar.apps.dashboard.orders',
  45. 'oscar.apps.dashboard.promotions',
  46. 'oscar.apps.dashboard.catalogue',
  47. 'oscar.apps.dashboard.offers',
  48. 'oscar.apps.dashboard.partners',
  49. 'oscar.apps.dashboard.ranges',
  50. 'oscar.apps.dashboard.vouchers',
  51. 'oscar.apps.dashboard.communications',
  52. # 3rd-party apps that oscar depends on
  53. 'haystack',
  54. 'treebeard',
  55. 'sorl.thumbnail',
  56. ]
  57. def get_core_apps(overrides=None):
  58. """
  59. Return a list of oscar's apps amended with any passed overrides
  60. """
  61. if not overrides:
  62. return OSCAR_CORE_APPS
  63. def get_app_label(app_label, overrides):
  64. pattern = app_label.replace('oscar.apps.', '')
  65. for override in overrides:
  66. if override.endswith(pattern):
  67. if 'dashboard' in override and 'dashboard' not in pattern:
  68. continue
  69. return override
  70. return app_label
  71. apps = []
  72. for app_label in OSCAR_CORE_APPS:
  73. apps.append(get_app_label(app_label, overrides))
  74. return apps