Changes between Initial Version and Version 3 of Ticket #14457


Ignore:
Timestamp:
Oct 13, 2010, 6:01:12 AM (14 years ago)
Author:
Gabriel Hurley
Comment:

As lrekucki said, the removal of "mysite" was intentional; that particular instance was removed in #14255, and the rest are set to be removed by #14426.

The bottom line is that the "mysite.myapp" convention is not what we want to be encouraging people to do. It goes against the idea of reusable apps, and obfuscates the fact that Django apps are truly just Python packages and can be imported from anywhere on the PYTHONPATH.

Thanks for the report though, zsoltbot.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14457

    • Property Keywords tutorial added
    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #14457 – Description

    initial v3  
    33
    44I'm pretty sure:
    5 
     5{{{
    66INSTALLED_APPS = (
    77    'django.contrib.auth',
     
    1111    'polls'
    1212)
    13 
     13}}}
    1414should really be
    15 
     15{{{
    1616INSTALLED_APPS = (
    1717    'django.contrib.auth',
     
    2020    'django.contrib.sites',
    2121    'mysite.polls'
    22 )
     22)}}}
Back to Top