Changes between Initial Version and Version 1 of Ticket #25398


Ignore:
Timestamp:
Sep 13, 2015, 12:13:02 PM (9 years ago)
Author:
Maxime Lorant
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25398 – Description

    initial v1  
    1  It has come to my attention while using the django documentation that several examples and directions specify the use of paths or os.path.join use the default BASE_DIR and a path written like "directory/subDirectory". I think this confuses a number of people who develop on windows platforms because it is actually more ideal to use os.path.join like this:
     1It has come to my attention while using the django documentation that several examples and directions specify the use of paths or os.path.join use the default BASE_DIR and a path written like "directory/subDirectory". I think this confuses a number of people who develop on windows platforms because it is actually more ideal to use os.path.join like this:
    22
    3  os.path.join(BASE_DIR, "directory", "subDirectory")
     3{{{
     4os.path.join(BASE_DIR, "directory", "subDirectory")
     5}}}
    46
    5  If you change this within your documentation it might help users who are having problems configuring django with various paths in their applications while also understanding the functionality of os.path better.
     7If you change this within your documentation it might help users who are having problems configuring django with various paths in their applications while also understanding the functionality of os.path better.
Back to Top