Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

conventions.rst 620B

12345678910111213141516171819202122
  1. ===========
  2. Conventions
  3. ===========
  4. Coding conventions
  5. ------------------
  6. * Follow the Django conventions (http://docs.djangoproject.com/en/dev/internals/contributing/#coding-style)
  7. * PEP8 (http://www.python.org/dev/peps/pep-0008/)
  8. * PEP257 (http://www.python.org/dev/peps/pep-0257/)
  9. General guidelines
  10. ------------------
  11. The following are a set of design conventions that should be followed when
  12. writing apps for oscar:
  13. * When referencing managers of model classes, use ``_default_manager`` rather than
  14. ``objects``. This allows projects to override the default manager to provide
  15. domain-specific behaviour.