Changeset 5003
- Timestamp:
- 04/12/07 18:39:58 (2 years ago)
- Files:
-
- django/branches/boulder-oracle-sprint/django/contrib/localflavor/us/us_states.py (modified) (2 diffs)
- django/branches/boulder-oracle-sprint/docs/install.txt (modified) (1 diff)
- django/branches/boulder-oracle-sprint/docs/templates.txt (modified) (1 diff)
- django/branches/boulder-oracle-sprint/tests/regressiontests/forms/localflavor.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/boulder-oracle-sprint/django/contrib/localflavor/us/us_states.py
r4990 r5003 16 16 ('CO', 'Colorado'), 17 17 ('CT', 'Connecticut'), 18 ('DE', 'Del eware'),18 ('DE', 'Delaware'), 19 19 ('DC', 'District of Columbia'), 20 20 ('FM', 'Federated States of Micronesia'), … … 98 98 'del': 'DE', 99 99 'delaware': 'DE', 100 'deleware': 'DE', 100 101 'district of columbia': 'DC', 101 102 'federated states of micronesia': 'FM', django/branches/boulder-oracle-sprint/docs/install.txt
r4842 r5003 71 71 .. _pysqlite: http://initd.org/tracker/pysqlite 72 72 73 Remove any old versions of Django 74 ================================= 75 76 If you are upgrading your installation of Django from a previous version, 77 you will need to uninstall the old Django version before installing the 78 new version. 79 80 If you installed Django using ``setup.py install``, uninstalling 81 is as simple as deleting the ``django`` directory from your Python 82 ``site-packages``. 83 84 If you installed Django from a Python Egg, remove the Django ``.egg` file, 85 and remove the reference to the egg in the file named ``easy-install.pth``. 86 This file should also be located in your ``site-packages`` directory. 87 88 .. admonition:: Where are my ``site-packages`` stored? 89 90 The location of the ``site-packages`` directory depends on the operating 91 system, and the location in which Python was installed. However, the 92 following locations are common: 93 94 * If you're using Linux: ``/usr/lib/python2.X/site-packages`` 95 96 * If you're using Windows: ``C:\Python2.X\lib\site-packages`` 97 98 * If you're using MacOSX: ``/Library/Python2.X/site-packages`` 99 73 100 Install the Django code 74 101 ======================= django/branches/boulder-oracle-sprint/docs/templates.txt
r4906 r5003 703 703 "raw" value. In this example, "f" is backslash-escaped, because otherwise 704 704 "f" is a format string that displays the time. The "o" doesn't need to be 705 escaped, because it's not a format character .::705 escaped, because it's not a format character:: 706 706 707 707 It is the {% now "jS o\f F" %} 708 708 709 (Displays "It is the 4th of September" %} 709 This would display as "It is the 4th of September". 710 710 711 711 regroup django/branches/boulder-oracle-sprint/tests/regressiontests/forms/localflavor.py
r4990 r5003 194 194 <option value="CO">Colorado</option> 195 195 <option value="CT">Connecticut</option> 196 <option value="DE">Del eware</option>196 <option value="DE">Delaware</option> 197 197 <option value="DC">District of Columbia</option> 198 198 <option value="FM">Federated States of Micronesia</option>
