Changes between Version 194 and Version 195 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Jul 21, 2008, 12:28:12 PM (16 years ago)
Author:
John Shaffer
Comment:

minor grammar changes to [8015] notes

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v194 v195  
    981981make any changes in most cases. In all other cases, some alterations will be
    982982required. This change will have different effects for different web server
    983 setups. In all cases, however, you should remove the `SCRIPT_NAME` portion of
     983setups. In all cases, you should remove the `SCRIPT_NAME` portion of
    984984the URLs from your `URLConf` file (they currently need to be included).
    985985
     
    10181018
    10191019If you configure your system using either of the Apache and fastcgi methods
    1020 described in Django's fastcgi documentation, all you need to change is to
     1020described in Django's fastcgi documentation, all you need to do is
    10211021remove the script prefix from the URL patterns in your `URLConf`.
    10221022
     
    10281028reverse URL construction. To overcome this problem, you can use the
    10291029`FORCE_SCRIPT_NAME` Django setting to force the value to whatever you want.
    1030 This is a bit of a hacky solution, since it's requires changing the project
     1030This is a bit of a hacky solution, since it requires changing the project
    10311031settings every time you change the URL prefix. However, there's nothing that
    10321032can be done about that in the general case, since Django is simply not passed
Back to Top