Mercurial > public > sg101
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/legacy/data.py Sat May 05 17:10:48 2012 -0500 @@ -0,0 +1,31 @@ +""" +Misc data for the legacy management commands. + +""" + +# Over time various users asked me to change their username. The legacy site +# rarely stored foreign keys to users; instead it stored the name of the user +# at the time. This dictionary contains mappings from old usernames to new +# usernames. + +KNOWN_USERNAME_CHANGES = { + 'cavefishbutchdelux': 'butchdelux', + 'findicator1': 'WaveOhhh', + 'tikimania': 'Tikitena', + 'sandyfeet': 'RickRhoades', + 'crumb': 'crumble', + 'allenbridgewater': 'Outerwave_Allen', + 'reddtyde': 'Redd_Tyde', + 'fendershowman63': 'Abe', + 'hearteater': 'JoshHeartless', + 'surfdaddy': 'zzero', + 'frisbie': 'zzero', + 'retroactivegammarays': 'Retroactive_Taj', + 'mrrebel': 'Eddie_Bertrand', + 'doublecoil': 'Showman', + 'tsunami_tom': 'TomH', + 'davidj': 'davidphantomatic', + 'svd': 'Bilge_Rat', + 'dave_ledude': 'DaveF', +} +