comparison legacy/data.py @ 581:ee87ea74d46b

For Django 1.4, rearranged project structure for new manage.py.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 May 2012 17:10:48 -0500
parents gpp/legacy/data.py@763eae227302
children
comparison
equal deleted inserted replaced
580:c525f3e0b5d0 581:ee87ea74d46b
1 """
2 Misc data for the legacy management commands.
3
4 """
5
6 # Over time various users asked me to change their username. The legacy site
7 # rarely stored foreign keys to users; instead it stored the name of the user
8 # at the time. This dictionary contains mappings from old usernames to new
9 # usernames.
10
11 KNOWN_USERNAME_CHANGES = {
12 'cavefishbutchdelux': 'butchdelux',
13 'findicator1': 'WaveOhhh',
14 'tikimania': 'Tikitena',
15 'sandyfeet': 'RickRhoades',
16 'crumb': 'crumble',
17 'allenbridgewater': 'Outerwave_Allen',
18 'reddtyde': 'Redd_Tyde',
19 'fendershowman63': 'Abe',
20 'hearteater': 'JoshHeartless',
21 'surfdaddy': 'zzero',
22 'frisbie': 'zzero',
23 'retroactivegammarays': 'Retroactive_Taj',
24 'mrrebel': 'Eddie_Bertrand',
25 'doublecoil': 'Showman',
26 'tsunami_tom': 'TomH',
27 'davidj': 'davidphantomatic',
28 'svd': 'Bilge_Rat',
29 'dave_ledude': 'DaveF',
30 }
31