bgneal@292: """
bgneal@292: Misc data for the legacy management commands.
bgneal@292: 
bgneal@292: """
bgneal@292: 
bgneal@292: # Over time various users asked me to change their username. The legacy site
bgneal@292: # rarely stored foreign keys to users; instead it stored the name of the user
bgneal@292: # at the time. This dictionary contains mappings from old usernames to new
bgneal@292: # usernames.
bgneal@292: 
bgneal@292: KNOWN_USERNAME_CHANGES = {
bgneal@292:     'cavefishbutchdelux': 'butchdelux',
bgneal@292:     'Findicator1': 'WaveOhhh',
bgneal@292:     'Tikimania': 'Tikitena',
bgneal@292:     'sandyfeet': 'RickRhoades',
bgneal@292: }
bgneal@292: