Opened 19 years ago

Closed 19 years ago

Last modified 17 years ago

#71 closed defect (fixed)

Consider using "example.com" instead of "mysite.com"

Reported by: pb@… Owned by: Jacob
Component: Documentation Version:
Severity: minor Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Kind of a fussy detail, but in the example files it might be better to use example.(com|org|net) instead of mysite.com, especially since the URL shows up as a live link at the top of the admin.

Locations as of [181]:

> grep -rn "mysite.com" * | grep -v ".svn"
django/bin/django-admin.py:283:        cursor.execute("INSERT INTO %s (domain, name) VALUES ('mysite.com', 'My Django site')" % core.Site._meta.db_table)
django/conf/admin_templates/base_site.html:7:<h2 id="site-url"><a href="http://www.mysite.com/">mysite.com</a></h2>
docs/faq.txt:223:  example, if you're going to "http://www.mysite.com/admin/" in your browser,
docs/faq.txt:224:  set ``REGISTRATION_COOKIE_DOMAIN = 'www.mysite.com'``.
docs/tutorial02.txt:446:Clearly having "Django administration" and "mysite.com" at the top of each

Change History (1)

comment:1 by Adrian Holovaty, 19 years ago

Resolution: fixed
Status: newclosed

Fussy details are important! Thanks for reporting this. Fixed in [183].

Note: See TracTickets for help on using tickets.
Back to Top