<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>fatty_lists.py</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -72,6 +72,47 @@ For Django-elsewhere, the online profiles have been divided into three categorie
 You can create and edit these either in the Django admin or using Django forms.
 
 
+Using a different list of profiles:
+------------------------
+
+You can define your own list of available social networks and instant messengers by adding SOCIAL_NETWORKS
+and/or INSTANT_MESSENGERS lists to your settings:
+
+    SOCIAL_NETWORKS = [
+        {
+            'id': 'facebook',
+            'name': 'Facebook',
+            'url': 'http://www.facebook.com/profile.php?id=%s',
+            'itentifier': 'User ID',
+            'icon': 'facebook.png',
+        },
+        {
+            'id': 'myspace',
+            'name': 'MySpace',
+            'url': 'http://www.myspace.com/%s',
+            'itentifier': 'Username',
+            'icon': 'myspace.png',
+        },
+    ]
+
+    INSTANT_MESSENGERS = [
+        {
+            'id': 'aim',
+            'name': 'AIM',
+            'url': 'aim:goim?screenname=%s',
+            'icon': 'aim.png',
+        },
+        {
+            'id': 'yahoo',
+            'name': 'Y!',
+            'url': 'ymsgr:sendim?%s',
+            'icon': 'yahoo.png',
+        },
+    ]
+
+If no SOCIAL_NETWORKS or INSTANT_MESSENGERS are defined in your project settings, django-elsewhere will
+default to using the lists in fatty_lists.py.
+
 Other resources:
 ----------------
 </diff>
      <filename>README.markdown</filename>
    </modified>
    <modified>
      <diff>@@ -1,422 +1,12 @@
-SOCIAL_NETWORKS = [
-    {
-        'id': '43things',
-        'name': '43 Things',
-        'url': 'http://www.43things.com/person/%s/',
-        'itentifier': 'Username',
-        'icon': 'fortythreethings.png',
-    },
-    {
-        'id': 'bebo',
-        'name': 'Bebo',
-        'url': 'http://www.bebo.com/Profile.jsp?MemberId=%s',
-        'itentifier': 'Member ID',
-        'icon': 'bebo.png',
-    },
-    {
-        'id': 'blip',
-        'name': 'Blip.tv',
-        'url': 'http://%s.blip.tv/',
-        'itentifier': 'Username',
-        'icon': 'blip.png',
-    },
-    {
-        'id': 'catster',
-        'name': 'Catster',
-        'url': 'http://www.catster.com/cats/%s',
-        'itentifier': 'Cat ID',
-        'icon': 'catster.png',
-    },
-    {
-        'id': 'corkd',
-        'name': 'Corkd',
-        'url': 'http://corkd.com/people/%s',
-        'itentifier': 'Username',
-        'icon': 'corkd.png',
-    },
-    {
-        'id': 'delicious',
-        'name': 'Delicious',
-        'url': 'http://delicious.com/%s/',
-        'itentifier': 'Username',
-        'icon': 'delicious.png',
-    },
-    {
-        'id': 'digg',
-        'name': 'Digg',
-        'url': 'http://digg.com/users/%s/',
-        'itentifier': 'Username',
-        'icon': 'digg.png',
-    },
-    {
-        'id': 'djangopeople',
-        'name': 'Django People',
-        'url': 'http://djangopeople.net/%s/',
-        'itentifier': 'Username',
-        'icon': 'djangopeople.png',
-    },
-    {
-        'id': 'dodgeball',
-        'name': 'Dodgeball',
-        'url': 'http://www.dodgeball.com/user?uid=%s',
-        'itentifier': 'User ID',
-        'icon': 'dodgeball.png',
-    },
-    {
-        'id': 'dogster',
-        'name': 'Dogster',
-        'url': 'http://www.dogster.com/dogs/%s',
-        'itentifier': 'Dog ID',
-        'icon': 'dogster.png',
-    },
-    {
-        'id': 'dopplr',
-        'name': 'Dopplr',
-        'url': 'http://www.dopplr.com/traveller/%s/',
-        'itentifier': 'Username',
-        'icon': 'dopplr.png',
-    },
-    {
-        'id': 'facebook',
-        'name': 'Facebook',
-        'url': 'http://www.facebook.com/profile.php?id=%s',
-        'itentifier': 'User ID',
-        'icon': 'facebook.png',
-    },
-    {
-        'id': 'flickr',
-        'name': 'Flickr',
-        'url': 'http://flickr.com/photos/%s/',
-        'itentifier': 'Flickr Alias',
-        'icon': 'flickr.png',
-    },
-    {
-        'id': 'gamercard',
-        'name': 'Gamer Card',
-        'url': 'http://live.xbox.com/en-US/profile/profile.aspx?pp=0&amp;GamerTag=%s',
-        'itentifier': 'Gamertag',
-        'icon': 'gamercard.png',
-    },
-    {
-        'id': 'github',
-        'name': 'GitHub',
-        'url': 'http://github.com/%s',
-        'itentifier': 'Username',
-        'icon': 'github.png',
-    },
-    {
-        'id': 'goodreads',
-        'name': 'GoodReads',
-        'url': 'http://www.goodreads.com/user/show/%s',
-        'itentifier': 'User ID',
-        'icon': 'goodreads.png',
-    },
-    {
-        'id': 'hi5',
-        'name': 'Hi5',
-        'url': 'http://hi5.com/friend/profile/displayProfile.do?userid=%s',
-        'itentifier': 'User ID',
-        'icon': 'hi5.png',
-    },
-    {
-        'id': 'instructables',
-        'name': 'Instructables',
-        'url': 'http://www.instructables.com/member/%s',
-        'itentifier': 'Username',
-        'icon': 'instructables.png',
-    },
-    {
-        'id': 'jaiku',
-        'name': 'Jaiku',
-        'url': 'http://%s.jaiku.com/',
-        'itentifier': 'Username',
-        'icon': 'jaiku.png',
-    },
-    {
-        'id': 'lastfm',
-        'name': 'Last.fm',
-        'url': 'http://www.last.fm/user/%s/',
-        'itentifier': 'Username',
-        'icon': 'lastfm.png',
-    },
-    {
-        'id': 'librarything',
-        'name': 'LibraryThing',
-        'url': 'http://www.librarything.com/profile/%s',
-        'itentifier': 'Username',
-        'icon': 'librarything.png',
-    },
-    {
-        'id': 'linkedin',
-        'name': 'LinkedIn',
-        'url': 'http://www.linkedin.com/in/%s',
-        'itentifier': 'Full Name (without spaces)',
-        'icon': 'linkedin.png',
-    },
-    {
-        'id': 'lj',
-        'name': 'LiveJournal',
-        'url': 'http://%s.livejournal.com/',
-        'itentifier': 'Username',
-        'icon': 'lj.png',
-    },
-    {
-        'id': 'magnolia',
-        'name': 'Ma.gnolia',
-        'url': 'http://ma.gnolia.com/people/%s',
-        'itentifier': 'Username',
-        'icon': 'magnolia.png',
-    },
-    {
-        'id': 'metafilter',
-        'name': 'MetaFilter',
-        'url': 'http://www.metafilter.com/user/%s',
-        'itentifier': 'User ID',
-        'icon': 'metafilter.png',
-    },
-    {
-        'id': 'mog',
-        'name': 'MOG',
-        'url': 'http://mog.com/%s',
-        'itentifier': 'Username',
-        'icon': 'mog.png',
-    },
-    {
-        'id': 'multiply',
-        'name': 'Multiply',
-        'url': 'http://%s.multiply.com/',
-        'itentifier': 'Username',
-        'icon': 'multiply.png',
-    },
-    {
-        'id': 'myspace',
-        'name': 'MySpace',
-        'url': 'http://www.myspace.com/%s',
-        'itentifier': 'Username',
-        'icon': 'myspace.png',
-    },
-    {
-        'id': 'netvibes',
-        'name': 'Netvibes',
-        'url': 'http://www.netvibes.com/%s',
-        'itentifier': 'Username',
-        'icon': 'netvibes.png',
-    },
-    {
-        'id': 'newsvine',
-        'name': 'Newsvine',
-        'url': 'http://%s.newsvine.com/',
-        'itentifier': 'Username',
-        'icon': 'newsvine.png',
-    },
-    {
-        'id': 'ning',
-        'name': 'Ning',
-        'url': 'http://%s.ning.com/',
-        'itentifier': 'Network Name',
-        'icon': 'ning.png',
-    },
-    {
-        'id': 'orkut',
-        'name': 'Orkut',
-        'url': 'http://www.orkut.com/Profile.aspx?uid=%s',
-        'itentifier': 'User ID',
-        'icon': 'orkut.png',
-    },
-    {
-        'id': 'pandora',
-        'name': 'Pandora',
-        'url': 'http://pandora.com/people/%s',
-        'itentifier': 'Username',
-        'icon': 'pandora.png',
-    },
-    {
-        'id': 'plaxo',
-        'name': 'Plaxo',
-        'url': 'http://%s.myplaxo.com/',
-        'itentifier': 'Public Profile ID',
-        'icon': 'plaxo.png',
-    },
-    {
-        'id': 'pownce',
-        'name': 'Pownce',
-        'url': 'http://pownce.com/%s/',
-        'itentifier': 'Username',
-        'icon': 'pownce.png',
-    },
-    {
-        'id': 'rb',
-        'name': 'RedBubble',
-        'url': 'http://www.redbubble.com/people/%s/',
-        'itentifier': 'Username',
-        'icon': 'redbubble.png',
-    },
-    {
-        'id': 'reddit',
-        'name': 'Reddit',
-        'url': 'http://reddit.com/user/%s/',
-        'itentifier': 'Username',
-        'icon': 'reddit.png',
-    },
-    {
-        'id': 'seesmic',
-        'name': 'Seesmic',
-        'url': 'http://seesmic.com/%s/',
-        'itentifier': 'Username',
-        'icon': 'seesmic.png',
-    },
-    {
-        'id': 'sonicliving',
-        'name': 'SonicLiving',
-        'url': 'http://www.sonicliving.com/user/%s/',
-        'itentifier': 'User ID',
-        'icon': 'sonicliving.png',
-    },
-    {
-        'id': 'stumbleupon',
-        'name': 'StumbleUpon',
-        'url': 'http://%s.stumbleupon.com/',
-        'itentifier': 'Username',
-        'icon': 'stumbleupon.png',
-    },
-    {
-        'id': 'tabblo',
-        'name': 'Tabblo',
-        'url': 'http://www.tabblo.com/studio/person/%s/',
-        'itentifier': 'Username',
-        'icon': 'tabblo.png',
-    },
-    {
-        'id': 'tagworld',
-        'name': 'TagWorld',
-        'url': 'http://www.tagworld.com/%s',
-        'itentifier': 'Username',
-        'icon': None,
-    },
-    {
-        'id': 'technorati',
-        'name': 'Technorati',
-        'url': 'http://technorati.com/people/technorati/%s',
-        'itentifier': 'Username',
-        'icon': 'technorati.png',
-    },
-    {
-        'id': 'tribe',
-        'name': 'Tribe',
-        'url': 'http://people.tribe.net/%s',
-        'itentifier': 'Username',
-        'icon': 'tribe.png',
-    },
-    {
-        'id': 'tumblr',
-        'name': 'Tumblr',
-        'url': 'http://%s.tumblr.com/',
-        'itentifier': 'Username',
-        'icon': 'tumblr.png',
-    },
-    {
-        'id': 'twitter',
-        'name': 'Twitter',
-        'url': 'http://twitter.com/%s',
-        'itentifier': 'Username',
-        'icon': 'twitter.png',
-    },
-    {
-        'id': 'upcoming',
-        'name': 'Upcoming',
-        'url': 'http://upcoming.yahoo.com/user/%s',
-        'itentifier': 'User ID',
-        'icon': 'upcoming.png',
-    },
-    {
-        'id': 'ustream',
-        'name': 'Ustream.TV',
-        'url': 'http://www.ustream.tv/%s',
-        'itentifier': 'Username',
-        'icon': 'ustream.png',
-    },
-    {
-        'id': 'virb',
-        'name': 'Virb',
-        'url': 'http://www.virb.com/%s',
-        'itentifier': 'Username',
-        'icon': 'virb.png',
-    },
-    {
-        'id': 'vox',
-        'name': 'Vox',
-        'url': 'http://%s.vox.com/',
-        'itentifier': 'Username',
-        'icon': 'vox.png',
-    },
-    {
-        'id': 'wakoopa',
-        'name': 'Wakoopa',
-        'url': 'http://wakoopa.com/%s',
-        'itentifier': 'Username',
-        'icon': 'wakoopa.png',
-    },
-    {
-        'id': 'youtube',
-        'name': 'YouTube',
-        'url': 'http://www.youtube.com/user/%s',
-        'itentifier': 'Username',
-        'icon': 'youtube.png',
-    },
-    {
-        'id': 'zooomr',
-        'name': 'Zooomr',
-        'url': 'http://www.zooomr.com/photos/%s',
-        'itentifier': 'Username',
-        'icon': 'zooomr.png',
-    },
-    {
-        'id': 'zune',
-        'name': 'Zune',
-        'url': 'http://social.zune.net/member/%s',
-        'itentifier': 'Username',
-        'icon': 'zune.png',
-    },
-]
-
-INSTANT_MESSENGERS = [
-    {
-        'id': 'aim',
-        'name': 'AIM',
-        'url': 'aim:goim?screenname=%s',
-        'icon': 'aim.png',
-    },
-    {
-        'id': 'gtalk',
-        'name': 'GTalk',
-        'url': 'gtalk:chat?jid=%s',
-        'icon': 'gtalk.png',
-    },
-    {
-        'id': 'icq',
-        'name': 'ICQ',
-        'url': 'http://www.icq.com/people/about_me.php?to=%s',
-        'icon': 'icq.png',
-    },
-    {
-        'id': 'msn',
-        'name': 'MSN',
-        'url': 'msnim:chat?contact=%s',
-        'icon': 'msn.png',
-    },
-    {
-        'id': 'skype',
-        'name': 'Skype',
-        'url': 'skype:%s?chat',
-        'icon': 'skype.png',
-    },
-    {
-        'id': 'yahoo',
-        'name': 'Y!',
-        'url': 'ymsgr:sendim?%s',
-        'icon': 'yahoo.png',
-    },
-]
+# Profile options can be overridden by project settings
+try:
+    from settings import SOCIAL_NETWORKS
+except ImportError:
+    from fatty_lists import SOCIAL_NETWORKS
+try:
+    from settings import INSTANT_MESSENGERS
+except ImportError:
+    from fatty_lists import INSTANT_MESSENGERS
 
 
 class ProfileManager:</diff>
      <filename>__init__.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>9faec9c10a8370e7e29e0933da90a4f2aab2283b</id>
    </parent>
  </parents>
  <author>
    <name>leahculver</name>
    <login>leah</login>
    <email>leah.culver@gmail.com</email>
  </author>
  <url>http://github.com/leah/django-elsewhere/commit/b97a88ab770d4d69b899728b9f244f319cd95500</url>
  <id>b97a88ab770d4d69b899728b9f244f319cd95500</id>
  <committed-date>2009-03-18T15:51:39-07:00</committed-date>
  <authored-date>2009-03-18T15:51:39-07:00</authored-date>
  <message>override lists of social networks and instant messengers by adding params to your settings file :P</message>
  <tree>f793f105f2f43fbf48cdb8cbe824bc13600c011f</tree>
  <committer>
    <name>leahculver</name>
    <login>leah</login>
    <email>leah.culver@gmail.com</email>
  </committer>
</commit>
