diff --git a/app/views/aspects/_no_contacts_message.haml b/app/views/aspects/_no_contacts_message.haml index 1581c739d..f87a6c614 100644 --- a/app/views/aspects/_no_contacts_message.haml +++ b/app/views/aspects/_no_contacts_message.haml @@ -10,6 +10,6 @@ - else %h3=t('.nobody_in_aspect', :aspect_name => aspect.name) - if defined?(options) && options - %h4= link_to t('.add_contact_to', :aspect_name => aspect.name), "#manage_aspect_contacts_pane", :class => "manage_aspect_contacts_button" + %h4= link_to t('.add_contact_to', :aspect_name => aspect.name), "#aspect_contacts_pane", :class => "aspect_contacts_button" %h4= link_to t('.invite', :aspect_name => aspect.name), "#invite_user_pane", :class => "invite_user_button", :class => "invite_user_button", :title => t('.invite') diff --git a/app/views/aspects/manage.html.haml b/app/views/aspects/manage.html.haml index d41d34c0b..5f8a2589e 100644 --- a/app/views/aspects/manage.html.haml +++ b/app/views/aspects/manage.html.haml @@ -40,7 +40,7 @@ %span.tip click to edit %ul.tools - %li= link_to t('.add_a_new_contact'), "#manage_aspect_contacts_pane_#{aspect.id}", :class => 'manage_aspect_contacts_button' + %li= link_to t('.add_a_new_contact'), "#aspect_contacts_pane_#{aspect.id}", :class => 'aspect_contacts_button' %li!= remove_link(aspect) %ul.dropzone{:data=>{:aspect_id=>aspect.id}} @@ -55,6 +55,6 @@ =t('.drag_to_add') .fancybox_content - %div{:id => "manage_aspect_contacts_pane_#{aspect.id}"} - = render "requests/manage_aspect_contacts", :aspect => aspect, :manage => true + %div{:id => "aspect_contacts_pane_#{aspect.id}"} + = render "shared/aspect_contacts", :aspect => aspect, :contacts => @contacts, :manage => true diff --git a/app/views/requests/_new_request_with_aspect_to_person.haml b/app/views/requests/_new_request_with_aspect_to_person.haml index 444205417..80c7f706a 100644 --- a/app/views/requests/_new_request_with_aspect_to_person.haml +++ b/app/views/requests/_new_request_with_aspect_to_person.haml @@ -2,7 +2,10 @@ -# licensed under the Affero General Public License version 3 or later. See -# the COPYRIGHT file. -= form_for Request.new, :remote => true do |request| - = request.hidden_field :into, :value => "changeme" - = request.hidden_field :to, :value => destination_handle - = request.submit '+', :class => 'add', :disable_with => "Sending" +%div{:id => destination_handle} + = form_for Request.new, :remote => true do |request| + = request.hidden_field :into, :value => "changeme" + = request.hidden_field :to, :value => destination_handle + = request.submit '+', :class => 'add', :disable_with => t('requests.create.sending') + .message.hidden + %i sent! diff --git a/app/views/users/getting_started/_step_2.html.haml b/app/views/users/getting_started/_step_2.html.haml index 71a5159a1..b1d75f421 100644 --- a/app/views/users/getting_started/_step_2.html.haml +++ b/app/views/users/getting_started/_step_2.html.haml @@ -22,11 +22,11 @@ - for contact in aspect.contacts = person_image_link(contact.person) - = link_to (image_tag('add_contact_button.png', :title => t('shared.aspect_contacts.add_to', :aspect => aspect))), '#manage_aspect_contacts_pane', :class => 'manage_aspect_contacts_button' + = link_to (image_tag('add_contact_button.png', :title => t('shared.aspect_contacts.add_to', :aspect => aspect))), '#aspect_contacts_pane', :class => 'aspect_contacts_button' .fancybox_content - #manage_aspect_contacts_pane - = render "requests/manage_aspect_contacts", :aspect => aspect, :getting_started => 2 + #aspect_contacts_pane + = render "shared/aspect_contacts", :aspect => aspect, :contacts => [], :getting_started => 2 = link_to "x", aspect_path(aspect), :method => :delete, :remote => true, :class => "delete right" diff --git a/config/locales/diaspora/ar.yml b/config/locales/diaspora/ar.yml index 0ca1d2b4e..2e3d98457 100644 --- a/config/locales/diaspora/ar.yml +++ b/config/locales/diaspora/ar.yml @@ -233,7 +233,7 @@ ar: error: "!الرجاء اختيار جانب" ignore: ". تجاهل طلب الصداقة" success: ".أنتم الآن أصدقاء" - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/cs.yml b/config/locales/diaspora/cs.yml index 77f51d86c..eceeb3921 100644 --- a/config/locales/diaspora/cs.yml +++ b/config/locales/diaspora/cs.yml @@ -233,7 +233,7 @@ cs: error: "Prosím vyberte aspekt!" ignore: "Ignorovat žádost o přátelství." success: "Nyní jste přáteli." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/cy.yml b/config/locales/diaspora/cy.yml index 540d92f84..3938d0b82 100644 --- a/config/locales/diaspora/cy.yml +++ b/config/locales/diaspora/cy.yml @@ -233,7 +233,7 @@ cy: error: "Please select an aspect!" ignore: "Ignored friend request." success: "You are now friends." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/da.yml b/config/locales/diaspora/da.yml index ca7a213c9..c162da160 100644 --- a/config/locales/diaspora/da.yml +++ b/config/locales/diaspora/da.yml @@ -233,7 +233,7 @@ da: error: "Please select an aspect!" ignore: "Ignored contact request." success: "You are now friends." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/de.yml b/config/locales/diaspora/de.yml index afdddc534..a80ea562a 100644 --- a/config/locales/diaspora/de.yml +++ b/config/locales/diaspora/de.yml @@ -233,7 +233,7 @@ de: error: "Bitte wähle einen Aspekt!" ignore: "Anfrage des Kontaktes ignoriert." success: "Ihr seit jetzt verbunden." - manage_aspect_contacts: + aspect_contacts: contact_username: "Diaspora Addresse des Kontaktes" create_request: "Anfrage erstellen" enter_a_diaspora_username: "Gib eine Diaspora Addresse ein:" diff --git a/config/locales/diaspora/el.yml b/config/locales/diaspora/el.yml index 5da4552a4..48fb62351 100644 --- a/config/locales/diaspora/el.yml +++ b/config/locales/diaspora/el.yml @@ -233,7 +233,7 @@ el: error: "Παρακαλώ επιλέξτε μια πτυχή!" ignore: "Αγνοήθηκε αίτηση φίλου." success: "Είστε πλέον φίλοι." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/en.yml b/config/locales/diaspora/en.yml index 66506aad5..1c83c2506 100644 --- a/config/locales/diaspora/en.yml +++ b/config/locales/diaspora/en.yml @@ -86,7 +86,7 @@ en: enter_a_diaspora_username: "Enter a Diaspora username:" your_diaspora_username_is: "Your Diaspora username is: %{diaspora_handle}" contact_username: "Contact's username" - create_request: "Create request" + create_request: "Find by Diaspora handle" invitations: invites: "Invites" invite_someone: "Invite someone" @@ -314,7 +314,7 @@ en: results_for: " results for %{params}" people_on_pod_are_aware_of: " people on pod are aware of" requests: - manage_aspect_contacts: + aspect_contacts: enter_a_diaspora_username: "Enter a Diaspora username:" your_diaspora_username_is: "Your Diaspora username is: %{diaspora_handle}" contact_username: "Contact's username" diff --git a/config/locales/diaspora/es.yml b/config/locales/diaspora/es.yml index bcc099ad5..f6e4029ab 100644 --- a/config/locales/diaspora/es.yml +++ b/config/locales/diaspora/es.yml @@ -233,7 +233,7 @@ es: error: "Seleccione un aspecto!" ignore: "Ignorar peticion de amistad" success: "Ahora son amigos." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/fi.yml b/config/locales/diaspora/fi.yml index 757200123..99ae604e3 100644 --- a/config/locales/diaspora/fi.yml +++ b/config/locales/diaspora/fi.yml @@ -233,7 +233,7 @@ fi: error: "Please select an aspect!" ignore: "Ignored friend request." success: "You are now friends." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/fr.yml b/config/locales/diaspora/fr.yml index 232198ae5..06b16fbe7 100644 --- a/config/locales/diaspora/fr.yml +++ b/config/locales/diaspora/fr.yml @@ -233,7 +233,7 @@ fr: error: "Veuillez sélectionner un aspect !" ignore: "Requête de contact ignorée." success: "Vous êtes à présent amis." - manage_aspect_contacts: + aspect_contacts: contact_username: "Nom d'utilisateur du contact" create_request: "Créer une requête" enter_a_diaspora_username: "Entrez un nom d'utilisateur Diaspora :" diff --git a/config/locales/diaspora/he.yml b/config/locales/diaspora/he.yml index 006cc2d45..a45ba0a45 100644 --- a/config/locales/diaspora/he.yml +++ b/config/locales/diaspora/he.yml @@ -233,7 +233,7 @@ he: error: "נא לבחור בהיבט!" ignore: "בקשות חברות מהן התעלמת." success: "אתם חברים כעת." - manage_aspect_contacts: + aspect_contacts: contact_username: "שם המשתמש של איש הקשר" create_request: "יצירת בקשה" enter_a_diaspora_username: "נא להזין שם משתמש בדיאספורה:" diff --git a/config/locales/diaspora/id.yml b/config/locales/diaspora/id.yml index e06afc7f2..c1fbf10b9 100644 --- a/config/locales/diaspora/id.yml +++ b/config/locales/diaspora/id.yml @@ -233,7 +233,7 @@ id: error: "Silahkan pilih sebuah aspek!" ignore: "Permintaan pertemanan yang diabaikan." success: "Anda sekarang berteman." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/it.yml b/config/locales/diaspora/it.yml index 9d283a749..479a2ef2a 100644 --- a/config/locales/diaspora/it.yml +++ b/config/locales/diaspora/it.yml @@ -233,7 +233,7 @@ it: error: "Seleziona un aspetto!" ignore: "Ignora richiesta di amicizia." success: "Adesso siete amici." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/lt.yml b/config/locales/diaspora/lt.yml index 42d307471..a66615ba0 100644 --- a/config/locales/diaspora/lt.yml +++ b/config/locales/diaspora/lt.yml @@ -233,7 +233,7 @@ lt: error: "Please select an aspect!" ignore: "Ignored friend request." success: "You are now friends." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/nb.yml b/config/locales/diaspora/nb.yml index 9eab6692f..661bcef55 100644 --- a/config/locales/diaspora/nb.yml +++ b/config/locales/diaspora/nb.yml @@ -233,7 +233,7 @@ nb: error: "Velg et aspekt først!" ignore: "Ignorerte venneforespørsel" success: "Dere er nå venner." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/nl.yml b/config/locales/diaspora/nl.yml index 620b4233b..d7288da64 100644 --- a/config/locales/diaspora/nl.yml +++ b/config/locales/diaspora/nl.yml @@ -233,7 +233,7 @@ nl: error: "Selecteer een aspect!" ignore: "Vriendenverzoek genegeerd." success: "Jullie zijn nu vrienden." - manage_aspect_contacts: + aspect_contacts: contact_username: "Gebruikersnaam van contact" create_request: "Doe verzoek" enter_a_diaspora_username: "Vul een Diaspora gebruikersnaam in:" diff --git a/config/locales/diaspora/pl.yml b/config/locales/diaspora/pl.yml index 30b0183f0..6fb869185 100644 --- a/config/locales/diaspora/pl.yml +++ b/config/locales/diaspora/pl.yml @@ -233,7 +233,7 @@ pl: error: "Please select an aspect!" ignore: "Ignored contact request." success: "You are now friends." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/pt-BR.yml b/config/locales/diaspora/pt-BR.yml index 36071ddf0..ed7dd58ab 100644 --- a/config/locales/diaspora/pt-BR.yml +++ b/config/locales/diaspora/pt-BR.yml @@ -233,7 +233,7 @@ pt-BR: error: "Favor selecionar um aspecto!" ignore: "Requisições de amigos ignoradas." success: "Vocês agora são amigos." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/pt-PT.yml b/config/locales/diaspora/pt-PT.yml index b0d1d474f..0c01f2f84 100644 --- a/config/locales/diaspora/pt-PT.yml +++ b/config/locales/diaspora/pt-PT.yml @@ -233,7 +233,7 @@ pt-PT: error: "Please select an aspect!" ignore: "Ignored friend request." success: "You are now friends." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/ro.yml b/config/locales/diaspora/ro.yml index 62268bcbc..7346df251 100644 --- a/config/locales/diaspora/ro.yml +++ b/config/locales/diaspora/ro.yml @@ -233,7 +233,7 @@ ro: error: "Please select an aspect!" ignore: "Ignored friend request." success: "You are now friends." - manage_aspect_contacts: + aspect_contacts: contact_username: "Contact's username" create_request: "Create request" enter_a_diaspora_username: "Enter a Diaspora username:" diff --git a/config/locales/diaspora/ru.yml b/config/locales/diaspora/ru.yml index 927704644..9a4b597f4 100644 --- a/config/locales/diaspora/ru.yml +++ b/config/locales/diaspora/ru.yml @@ -233,7 +233,7 @@ ru: error: "Выберите аспект!" ignore: "Игнорированные запросы на дружбу." success: "Теперь вы друзья." - manage_aspect_contacts: + aspect_contacts: contact_username: "Контакты пользователя" create_request: "Создать запрос" enter_a_diaspora_username: "Введите имя пользователя в Диаспоре:" diff --git a/config/locales/diaspora/sv.yml b/config/locales/diaspora/sv.yml index 6761daf09..c20e32d9a 100644 --- a/config/locales/diaspora/sv.yml +++ b/config/locales/diaspora/sv.yml @@ -233,7 +233,7 @@ sv: error: "Var god välj en aspekt!" ignore: "Ignorerade kontaktförfrågan." success: "Kontakten är nu tillagd." - manage_aspect_contacts: + aspect_contacts: contact_username: "Kontaktens Diaspora-adress" create_request: "Skapa förfrågan" enter_a_diaspora_username: "Ange ett användarnamn:" diff --git a/config/locales/diaspora/tr.yml b/config/locales/diaspora/tr.yml index 6e3bb3522..c906309e0 100644 --- a/config/locales/diaspora/tr.yml +++ b/config/locales/diaspora/tr.yml @@ -233,7 +233,7 @@ tr: error: "Lutfen bir yan seçiniz!" ignore: "Arkadaş isteğini reddettiniz." success: "Siz şimdi arkadaşsınız." - manage_aspect_contacts: + aspect_contacts: contact_username: "Kontak kullanıcı adı" create_request: "Yaratma isteği" enter_a_diaspora_username: "Diaspora kullanıcı adı girin:" diff --git a/public/javascripts/view.js b/public/javascripts/view.js index f67dc0d7d..7f8f23855 100644 --- a/public/javascripts/view.js +++ b/public/javascripts/view.js @@ -19,7 +19,7 @@ $(document).ready(function(){ //buttons////// $(".add_aspect_button," + - ".manage_aspect_contacts_button," + + ".aspect_contacts_button," + ".invite_user_button," + ".add_photo_button," + ".remove_person_button," + @@ -37,7 +37,7 @@ $(document).ready(function(){ } ); - $('.new_request').submit(function(){ + $('.new_request').live("submit", function(){ var foo = $(this).parent(); $(this).hide(); foo.find('.message').removeClass('hidden'); @@ -85,8 +85,8 @@ $(document).ready(function(){ $('.webfinger_form').submit(function(evt){ form = $(evt.currentTarget); - form.siblings('.spinner').show(); - $('#request_result li:first').hide(); + form.siblings('#loader').show(); + $('#request_result li:first').hide(); }); // hotkeys diff --git a/public/javascripts/web-socket-receiver.js b/public/javascripts/web-socket-receiver.js index 4fa546f93..a838ae43a 100644 --- a/public/javascripts/web-socket-receiver.js +++ b/public/javascripts/web-socket-receiver.js @@ -36,15 +36,16 @@ var WebSocketReceiver = { }, processPerson: function(response){ - form = $('.webfinger_form:visible'); - form.siblings('.spinner').hide(); - result_ul = form.siblings('.webfinger_result'); + form = $('.webfinger_form'); + form.siblings('#loader').hide(); + result_ul = form.siblings('#request_result'); if(response['status'] == 'fail'){ - result_ul.children('.error').show(); - result_ul.children('.webfinger_error').text(response['response']).show(); + result_ul.siblings('.error').show(); + result_ul.find('.error').text(response['response']).show(); }else{ $('#people_stream').prepend(response['html']).slideDown('slow', function(){}); var first_li = result_ul.find('li:first'); + first_li.hide() first_li.after(response['html']); result_ul.find("[name='request[into]']").val(result_ul.attr('aspect_id')); result_ul.children(':nth-child(2)').slideDown('fast', function(){}); diff --git a/spec/fixtures/users.yaml b/spec/fixtures/users.yaml index 1174882e4..b211c183c 100644 --- a/spec/fixtures/users.yaml +++ b/spec/fixtures/users.yaml @@ -1,908 +1,908 @@ --- :users: -- :user: !map:ActiveSupport::HashWithIndifferentAccess - encrypted_password: $2a$10$NS3bZYEXSN4/OWcwTd.hLON3YDI9imTk/9ovXHNiBwwx62KkrvEFy - serialized_private_key: &id002 | - -----BEGIN RSA PRIVATE KEY----- - MIICXAIBAAKBgQCmuNFsHNwVHKwsQMbqqnSkyXrmXd+iFDqYOMX0WxTGesPF6L2U - vZzq21omn96v6H700NRTfudvXznZa1c82i7yJuDj4WeYzKxHixVPW+vRHDbG+O9Y - QLbYqU2G2IlmWtLNYfy34MgS9ab/U4HzqsqPrh0DzFbunNVeJeBbshGAzQIDAQAB - AoGAW0v54morWqRI5DLUusx884AhfOULAYZyT8lHHXiC9+1iJ447wqfStglIZL5H - A60dWJLCsrZbpfFPjG/rZbdU3QN8squzuvJc+6MbcvQ2ENpCSAmZZ/GMtVt+lHre - ilePUMuBSl5YokQJ50dDBnSMPfDPl6j8i+mFgK/3cIpT90ECQQDTAimxz4U5oQw5 - 86hlamoBasa9jTkkhGQ74t2XBTmuuhOqDLUNNzRnDO+7bsJ96JtN/H28q6ohg74G - /vavIGI3AkEAykVJ7vL+MCXz+7Wjp824tRUHkNvGsXMebUZAwce0N/RfIktjulI0 - wEbkNxpI3GZUuYK7TNBwm5u9L3xiJUODGwJBAL2EXcp0JqZB/Wc3bvHXh+pJ6sJo - yv//YL9g3cE8Ujiaq/q5ewupn4lG1zKzIkBP4N1Ef/IrBJ0hZFWIPivAnDUCQFKf - Lu4OD8p3FkxRC8J1g+dj6a1AOM8vKNSWB8mf23untFx70wa+oZGQ45OmhvCQVDda - sUtVMUo+uW52LljuVNUCQEOyGqNT+/uEsT+MdCYXH7Fz8D3+tY9Oyu8IhgrejGVA - ETDYy2mpXC1GW/wUgB8rLlCs0ekIk+Ng72CdfJTIlnQ= - -----END RSA PRIVATE KEY----- - - pending_request_ids: [] - - last_sign_in_ip: - invites: 0 - _id: &id001 !ruby/object:BSON::ObjectId - data: - - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 - - 219 - - 0 - - 1 - - 91 - last_sign_in_at: - username: bob86aeb84c - language: en - sign_in_count: 0 - visible_person_ids: [] - - password_salt: $2a$10$NS3bZYEXSN4/OWcwTd.hLO - remember_token: - reset_password_token: - current_sign_in_ip: - remember_created_at: - current_sign_in_at: - invitation_sent_at: - email: bob87a73d17@pivotallabs.com - invitation_token: - visible_post_ids: [] - - getting_started: true - :person: !map:ActiveSupport::HashWithIndifferentAccess - created_at: 2010-11-22 03:47:14 Z +- :person: !map:ActiveSupport::HashWithIndifferentAccess + created_at: 2010-11-23 00:34:01 Z profile: !map:ActiveSupport::HashWithIndifferentAccess searchable: true image_url: _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 - - 219 - - 0 - - 1 - - 92 - gender: - diaspora_handle: - birthday: - last_name: Grimm87d433e5 - bio: - first_name: Robert8789a34a - updated_at: 2010-11-22 03:47:14 Z - _id: !ruby/object:BSON::ObjectId - data: - - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 - - 219 - - 0 - - 1 - - 93 - url: http://google-87cdcc7b.com/ - serialized_public_key: | - -----BEGIN RSA PUBLIC KEY----- - MIGJAoGBAKa40Wwc3BUcrCxAxuqqdKTJeuZd36IUOpg4xfRbFMZ6w8XovZS9nOrb - Wiaf3q/ofvTQ1FN+529fOdlrVzzaLvIm4OPhZ5jMrEeLFU9b69EcNsb471hAttip - TYbYiWZa0s1h/LfgyBL1pv9TgfOqyo+uHQPMVu6c1V4l4FuyEYDNAgMBAAE= - -----END RSA PUBLIC KEY----- - - owner_id: *id001 - diaspora_handle: bob86aeb84c@example.org -- :user: !map:ActiveSupport::HashWithIndifferentAccess - encrypted_password: $2a$10$1/YotLRUn3apShIBB/syZudCsWoHXjQRLYS2HDiVzOoEvPEzEsArO - serialized_private_key: *id002 - pending_request_ids: [] - - last_sign_in_ip: - invites: 0 - _id: &id003 !ruby/object:BSON::ObjectId - data: - - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 - - 219 - - 0 - - 1 - - 94 - last_sign_in_at: - username: bob870554a4 - language: en - sign_in_count: 0 - visible_person_ids: [] - - password_salt: $2a$10$1/YotLRUn3apShIBB/syZu - remember_token: - reset_password_token: - current_sign_in_ip: - remember_created_at: - current_sign_in_at: - invitation_sent_at: - email: bob88ed6c7c@pivotallabs.com - invitation_token: - visible_post_ids: [] - - getting_started: true - :person: !map:ActiveSupport::HashWithIndifferentAccess - created_at: 2010-11-22 03:47:14 Z - profile: !map:ActiveSupport::HashWithIndifferentAccess - searchable: true - image_url: - _id: !ruby/object:BSON::ObjectId - data: - - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 249 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 95 gender: diaspora_handle: birthday: - last_name: Grimm884c8ae2 + last_name: Grimm871a779b bio: - first_name: Robert888b781b - updated_at: 2010-11-22 03:47:14 Z + first_name: Robert87673bc8 + updated_at: 2010-11-23 00:34:01 Z _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 249 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 96 - url: http://google-88ee29d4.com/ + url: http://google-87345acc.com/ serialized_public_key: | -----BEGIN RSA PUBLIC KEY----- - MIGJAoGBAKa40Wwc3BUcrCxAxuqqdKTJeuZd36IUOpg4xfRbFMZ6w8XovZS9nOrb - Wiaf3q/ofvTQ1FN+529fOdlrVzzaLvIm4OPhZ5jMrEeLFU9b69EcNsb471hAttip - TYbYiWZa0s1h/LfgyBL1pv9TgfOqyo+uHQPMVu6c1V4l4FuyEYDNAgMBAAE= + MIGJAoGBALL/sG/gOHimM5+a9GWuKUKgeuQJ5e44emc27LoxxiGNE5M4zmpmcq4Q + I2WqDGH5RZXgt8w7pYhvqyvpD5EGePVGW6p1RLZC+QHH3Mlo2ro+Wab8jl+0c+ne + AOeMAgT8NCW6pGkpz2O45lLVyqmlM4NfzvuVEBYFOmly4MD0rN7FAgMBAAE= -----END RSA PUBLIC KEY----- - owner_id: *id003 - diaspora_handle: bob870554a4@example.org -- :user: !map:ActiveSupport::HashWithIndifferentAccess - encrypted_password: $2a$10$H8gjBBKDGYoLDGdaqLnAWuTTSjmTKS5jP8Q3HS6Qr6gN1X3/PkAvm - serialized_private_key: *id002 + owner_id: &id001 !ruby/object:BSON::ObjectId + data: + - 76 + - 235 + - 11 + - 249 + - 55 + - 219 + - 91 + - 11 + - 239 + - 0 + - 1 + - 94 + diaspora_handle: bob86b8211e@example.org + :user: !map:ActiveSupport::HashWithIndifferentAccess + encrypted_password: $2a$10$Y.Oub.y354o0mNJ/3.PksOIrro/lJC5xiNqGkSaN9qakorib9sKgO + serialized_private_key: &id002 | + -----BEGIN RSA PRIVATE KEY----- + MIICXQIBAAKBgQCy/7Bv4Dh4pjOfmvRlrilCoHrkCeXuOHpnNuy6McYhjROTOM5q + ZnKuECNlqgxh+UWV4LfMO6WIb6sr6Q+RBnj1RluqdUS2QvkBx9zJaNq6Plmm/I5f + tHPp3gDnjAIE/DQluqRpKc9juOZS1cqppTODX877lRAWBTppcuDA9KzexQIDAQAB + AoGAUMNxVmky0a0b6c2+rAoy7679A9s7dYriH6P2l+RRY14GEQ02hWeIIuWBMyPQ + xnv0W7Wy+GGJRNAtyXg039itxiwGvqcP93s52nPYDQd3/9JdombSMND4AHSHPlQa + bfdWFxW+oaZAp1m8Z8Zx6nUyM8PpFSyKXHKE8Kn0Gn8R2IECQQDfrQYsfbeBiUaz + chPOGcX92bP/k9IuSLM2huNgh23DiY6HZZjdr7aFwECuHPke09tkMPlPqUS9nDr3 + e6q30/c1AkEAzN3RncDTi3RbS/DxnzZJIEyEdq39XjL1TarI6CKG3GC0XBxhMplZ + 9sYiMtCJWV3dS1hBWjNmswKHNn4Re7brUQJABADfzGoPn8TqPAn9qsGxVoLQAvIN + YACzHHW7mh2ybD6JC4lY/BbKCIjRX4xrNQ8LrTZnL/LSpSYntAhFnPaxRQJBAMMB + 1pkyRmu1W34jIOwrcVo0W9bYcZgsK4I9sjX9P6Ag0S3oucC/ZnpXSZBTHpqZlZ81 + qCejS/vTyT9eq2e2y7ECQQDUL/ILFk89H/fPxE7WgAlVVKnDiaOev0tQI5qCRuRz + bNA15WjUb9NeUwGiA4DG6HvPHpn8OlUMFqtv3H75V51Y + -----END RSA PRIVATE KEY----- + pending_request_ids: [] last_sign_in_ip: invites: 0 - _id: &id004 !ruby/object:BSON::ObjectId - data: - - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 - - 219 - - 0 - - 1 - - 97 + _id: *id001 last_sign_in_at: - username: bob8863b67b + username: bob86b8211e language: en sign_in_count: 0 visible_person_ids: [] - password_salt: $2a$10$H8gjBBKDGYoLDGdaqLnAWu + password_salt: $2a$10$Y.Oub.y354o0mNJ/3.PksO remember_token: reset_password_token: current_sign_in_ip: remember_created_at: current_sign_in_at: invitation_sent_at: - email: bob89672902@pivotallabs.com + email: bob87a290e5@pivotallabs.com invitation_token: visible_post_ids: [] getting_started: true - :person: !map:ActiveSupport::HashWithIndifferentAccess - created_at: 2010-11-22 03:47:14 Z +- :person: !map:ActiveSupport::HashWithIndifferentAccess + created_at: 2010-11-23 00:34:01 Z profile: !map:ActiveSupport::HashWithIndifferentAccess searchable: true image_url: _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 249 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 98 gender: diaspora_handle: birthday: - last_name: Grimm89ff6e24 + last_name: Grimm88b346ed bio: - first_name: Robert89b1ee87 - updated_at: 2010-11-22 03:47:14 Z + first_name: Robert88195e98 + updated_at: 2010-11-23 00:34:01 Z _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 249 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 99 - url: http://google-89f11e95.com/ + url: http://google-886ec909.com/ serialized_public_key: | -----BEGIN RSA PUBLIC KEY----- - MIGJAoGBAKa40Wwc3BUcrCxAxuqqdKTJeuZd36IUOpg4xfRbFMZ6w8XovZS9nOrb - Wiaf3q/ofvTQ1FN+529fOdlrVzzaLvIm4OPhZ5jMrEeLFU9b69EcNsb471hAttip - TYbYiWZa0s1h/LfgyBL1pv9TgfOqyo+uHQPMVu6c1V4l4FuyEYDNAgMBAAE= + MIGJAoGBALL/sG/gOHimM5+a9GWuKUKgeuQJ5e44emc27LoxxiGNE5M4zmpmcq4Q + I2WqDGH5RZXgt8w7pYhvqyvpD5EGePVGW6p1RLZC+QHH3Mlo2ro+Wab8jl+0c+ne + AOeMAgT8NCW6pGkpz2O45lLVyqmlM4NfzvuVEBYFOmly4MD0rN7FAgMBAAE= -----END RSA PUBLIC KEY----- - owner_id: *id004 - diaspora_handle: bob8863b67b@example.org -- :user: !map:ActiveSupport::HashWithIndifferentAccess - encrypted_password: $2a$10$PYen6rAKPmEcR7Exkqcy9usoQfuTZT4kBjNra3akewDNMff59u2yG + owner_id: &id003 !ruby/object:BSON::ObjectId + data: + - 76 + - 235 + - 11 + - 249 + - 55 + - 219 + - 91 + - 11 + - 239 + - 0 + - 1 + - 97 + diaspora_handle: bob87a23248@example.org + :user: !map:ActiveSupport::HashWithIndifferentAccess + encrypted_password: $2a$10$F7VrMy62JY9CxUmWYIupROJl0OR4iW7CFrimIN/XXPDtKEXlmqKaK serialized_private_key: *id002 pending_request_ids: [] last_sign_in_ip: invites: 0 - _id: &id005 !ruby/object:BSON::ObjectId - data: - - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 - - 219 - - 0 - - 1 - - 100 + _id: *id003 last_sign_in_at: - username: bob891c6e6f + username: bob87a23248 language: en sign_in_count: 0 visible_person_ids: [] - password_salt: $2a$10$PYen6rAKPmEcR7Exkqcy9u + password_salt: $2a$10$F7VrMy62JY9CxUmWYIupRO remember_token: reset_password_token: current_sign_in_ip: remember_created_at: current_sign_in_at: invitation_sent_at: - email: bob906607dd@pivotallabs.com + email: bob88e69945@pivotallabs.com invitation_token: visible_post_ids: [] getting_started: true - :person: !map:ActiveSupport::HashWithIndifferentAccess - created_at: 2010-11-22 03:47:14 Z +- :person: !map:ActiveSupport::HashWithIndifferentAccess + created_at: 2010-11-23 00:34:01 Z profile: !map:ActiveSupport::HashWithIndifferentAccess searchable: true image_url: _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 249 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 101 gender: diaspora_handle: birthday: - last_name: Grimm9022a580 + last_name: Grimm89ba8f43 bio: - first_name: Robert90a17091 - updated_at: 2010-11-22 03:47:14 Z + first_name: Robert8982de14 + updated_at: 2010-11-23 00:34:01 Z _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 249 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 102 - url: http://google-906f1a56.com/ + url: http://google-89c5bba3.com/ serialized_public_key: | -----BEGIN RSA PUBLIC KEY----- - MIGJAoGBAKa40Wwc3BUcrCxAxuqqdKTJeuZd36IUOpg4xfRbFMZ6w8XovZS9nOrb - Wiaf3q/ofvTQ1FN+529fOdlrVzzaLvIm4OPhZ5jMrEeLFU9b69EcNsb471hAttip - TYbYiWZa0s1h/LfgyBL1pv9TgfOqyo+uHQPMVu6c1V4l4FuyEYDNAgMBAAE= + MIGJAoGBALL/sG/gOHimM5+a9GWuKUKgeuQJ5e44emc27LoxxiGNE5M4zmpmcq4Q + I2WqDGH5RZXgt8w7pYhvqyvpD5EGePVGW6p1RLZC+QHH3Mlo2ro+Wab8jl+0c+ne + AOeMAgT8NCW6pGkpz2O45lLVyqmlM4NfzvuVEBYFOmly4MD0rN7FAgMBAAE= -----END RSA PUBLIC KEY----- - owner_id: *id005 - diaspora_handle: bob891c6e6f@example.org -- :user: !map:ActiveSupport::HashWithIndifferentAccess - encrypted_password: $2a$10$pqsUJQNYI3ZQZMVjCeQxUujkEjM.SK/eycusqgldoI5Axy51.8VIO + owner_id: &id004 !ruby/object:BSON::ObjectId + data: + - 76 + - 235 + - 11 + - 249 + - 55 + - 219 + - 91 + - 11 + - 239 + - 0 + - 1 + - 100 + diaspora_handle: bob88854921@example.org + :user: !map:ActiveSupport::HashWithIndifferentAccess + encrypted_password: $2a$10$CCKi7gj2o4eQJscU6ff1jecNr.crt0HIc1IS.nPtkBGQY/B9WSKz. serialized_private_key: *id002 pending_request_ids: [] last_sign_in_ip: invites: 0 - _id: &id006 !ruby/object:BSON::ObjectId - data: - - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 - - 219 - - 0 - - 1 - - 103 + _id: *id004 last_sign_in_at: - username: bob9060af06 + username: bob88854921 language: en sign_in_count: 0 visible_person_ids: [] - password_salt: $2a$10$pqsUJQNYI3ZQZMVjCeQxUu + password_salt: $2a$10$CCKi7gj2o4eQJscU6ff1je remember_token: reset_password_token: current_sign_in_ip: remember_created_at: current_sign_in_at: invitation_sent_at: - email: bob91f066ea@pivotallabs.com + email: bob899dba5c@pivotallabs.com invitation_token: visible_post_ids: [] getting_started: true - :person: !map:ActiveSupport::HashWithIndifferentAccess - created_at: 2010-11-22 03:47:14 Z +- :person: !map:ActiveSupport::HashWithIndifferentAccess + created_at: 2010-11-23 00:34:01 Z profile: !map:ActiveSupport::HashWithIndifferentAccess searchable: true image_url: _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 249 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 104 gender: diaspora_handle: birthday: - last_name: Grimm91ba9e79 + last_name: Grimm90982e2b bio: - first_name: Robert91f609c0 - updated_at: 2010-11-22 03:47:14 Z + first_name: Robert908d4d27 + updated_at: 2010-11-23 00:34:01 Z _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 249 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 105 - url: http://google-9118f021.com/ + url: http://google-903d7dc5.com/ serialized_public_key: | -----BEGIN RSA PUBLIC KEY----- - MIGJAoGBAKa40Wwc3BUcrCxAxuqqdKTJeuZd36IUOpg4xfRbFMZ6w8XovZS9nOrb - Wiaf3q/ofvTQ1FN+529fOdlrVzzaLvIm4OPhZ5jMrEeLFU9b69EcNsb471hAttip - TYbYiWZa0s1h/LfgyBL1pv9TgfOqyo+uHQPMVu6c1V4l4FuyEYDNAgMBAAE= + MIGJAoGBALL/sG/gOHimM5+a9GWuKUKgeuQJ5e44emc27LoxxiGNE5M4zmpmcq4Q + I2WqDGH5RZXgt8w7pYhvqyvpD5EGePVGW6p1RLZC+QHH3Mlo2ro+Wab8jl+0c+ne + AOeMAgT8NCW6pGkpz2O45lLVyqmlM4NfzvuVEBYFOmly4MD0rN7FAgMBAAE= -----END RSA PUBLIC KEY----- - owner_id: *id006 - diaspora_handle: bob9060af06@example.org -- :user: !map:ActiveSupport::HashWithIndifferentAccess - encrypted_password: $2a$10$Aaxyu94Bz1tu5/cpeyirv.yzGQYvo5SBHkklFSSXSovTXRN2ewB3C + owner_id: &id005 !ruby/object:BSON::ObjectId + data: + - 76 + - 235 + - 11 + - 249 + - 55 + - 219 + - 91 + - 11 + - 239 + - 0 + - 1 + - 103 + diaspora_handle: bob89984259@example.org + :user: !map:ActiveSupport::HashWithIndifferentAccess + encrypted_password: $2a$10$iOez93dvL0a7TzAcFhd2j.0j4lpMKooXkFjpUAK539m9sQVSRkMVO serialized_private_key: *id002 pending_request_ids: [] last_sign_in_ip: invites: 0 - _id: &id007 !ruby/object:BSON::ObjectId - data: - - 76 - - 233 - - 231 - - 194 - - 35 - - 103 - - 188 - - 118 - - 219 - - 0 - - 1 - - 106 + _id: *id005 last_sign_in_at: - username: bob91a00016 + username: bob89984259 language: en sign_in_count: 0 visible_person_ids: [] - password_salt: $2a$10$Aaxyu94Bz1tu5/cpeyirv. + password_salt: $2a$10$iOez93dvL0a7TzAcFhd2j. remember_token: reset_password_token: current_sign_in_ip: remember_created_at: current_sign_in_at: invitation_sent_at: - email: bob92c96fe3@pivotallabs.com + email: bob90695271@pivotallabs.com invitation_token: visible_post_ids: [] getting_started: true - :person: !map:ActiveSupport::HashWithIndifferentAccess - created_at: 2010-11-22 03:47:15 Z +- :person: !map:ActiveSupport::HashWithIndifferentAccess + created_at: 2010-11-23 00:34:01 Z profile: !map:ActiveSupport::HashWithIndifferentAccess searchable: true image_url: _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 195 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 249 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 107 gender: diaspora_handle: birthday: - last_name: Grimm92330aa8 + last_name: Grimm917a98e5 bio: - first_name: Robert92c217df - updated_at: 2010-11-22 03:47:15 Z + first_name: Robert9118a5da + updated_at: 2010-11-23 00:34:01 Z _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 195 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 249 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 108 - url: http://google-9215faa5.com/ + url: http://google-912b0ac8.com/ serialized_public_key: | -----BEGIN RSA PUBLIC KEY----- - MIGJAoGBAKa40Wwc3BUcrCxAxuqqdKTJeuZd36IUOpg4xfRbFMZ6w8XovZS9nOrb - Wiaf3q/ofvTQ1FN+529fOdlrVzzaLvIm4OPhZ5jMrEeLFU9b69EcNsb471hAttip - TYbYiWZa0s1h/LfgyBL1pv9TgfOqyo+uHQPMVu6c1V4l4FuyEYDNAgMBAAE= + MIGJAoGBALL/sG/gOHimM5+a9GWuKUKgeuQJ5e44emc27LoxxiGNE5M4zmpmcq4Q + I2WqDGH5RZXgt8w7pYhvqyvpD5EGePVGW6p1RLZC+QHH3Mlo2ro+Wab8jl+0c+ne + AOeMAgT8NCW6pGkpz2O45lLVyqmlM4NfzvuVEBYFOmly4MD0rN7FAgMBAAE= -----END RSA PUBLIC KEY----- - owner_id: *id007 - diaspora_handle: bob91a00016@example.org -- :user: !map:ActiveSupport::HashWithIndifferentAccess - encrypted_password: $2a$10$jaU4ODzu.lOQ9toYUsfubee.PsDSc3396baQOGO8pxobA9cX4bB5K + owner_id: &id006 !ruby/object:BSON::ObjectId + data: + - 76 + - 235 + - 11 + - 249 + - 55 + - 219 + - 91 + - 11 + - 239 + - 0 + - 1 + - 106 + diaspora_handle: bob90fa1e4a@example.org + :user: !map:ActiveSupport::HashWithIndifferentAccess + encrypted_password: $2a$10$u7x22utouK9qhmHMgsPjpe2HIgopEaubivpWbttJJ5RRoVGdEkVCS serialized_private_key: *id002 pending_request_ids: [] last_sign_in_ip: invites: 0 - _id: &id008 !ruby/object:BSON::ObjectId - data: - - 76 - - 233 - - 231 - - 195 - - 35 - - 103 - - 188 - - 118 - - 219 - - 0 - - 1 - - 109 + _id: *id006 last_sign_in_at: - username: bob92c4057e + username: bob90fa1e4a language: en sign_in_count: 0 visible_person_ids: [] - password_salt: $2a$10$jaU4ODzu.lOQ9toYUsfube + password_salt: $2a$10$u7x22utouK9qhmHMgsPjpe remember_token: reset_password_token: current_sign_in_ip: remember_created_at: current_sign_in_at: invitation_sent_at: - email: bob93c26ce7@pivotallabs.com + email: bob915687ae@pivotallabs.com invitation_token: visible_post_ids: [] getting_started: true - :person: !map:ActiveSupport::HashWithIndifferentAccess - created_at: 2010-11-22 03:47:15 Z +- :person: !map:ActiveSupport::HashWithIndifferentAccess + created_at: 2010-11-23 00:34:02 Z profile: !map:ActiveSupport::HashWithIndifferentAccess searchable: true image_url: _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 195 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 250 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 110 gender: diaspora_handle: birthday: - last_name: Grimm939ae678 + last_name: Grimm925f96ca bio: - first_name: Robert93c20f26 - updated_at: 2010-11-22 03:47:15 Z + first_name: Robert92757f80 + updated_at: 2010-11-23 00:34:02 Z _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 195 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 250 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 111 - url: http://google-93028c79.com/ + url: http://google-92fa8a97.com/ serialized_public_key: | -----BEGIN RSA PUBLIC KEY----- - MIGJAoGBAKa40Wwc3BUcrCxAxuqqdKTJeuZd36IUOpg4xfRbFMZ6w8XovZS9nOrb - Wiaf3q/ofvTQ1FN+529fOdlrVzzaLvIm4OPhZ5jMrEeLFU9b69EcNsb471hAttip - TYbYiWZa0s1h/LfgyBL1pv9TgfOqyo+uHQPMVu6c1V4l4FuyEYDNAgMBAAE= + MIGJAoGBALL/sG/gOHimM5+a9GWuKUKgeuQJ5e44emc27LoxxiGNE5M4zmpmcq4Q + I2WqDGH5RZXgt8w7pYhvqyvpD5EGePVGW6p1RLZC+QHH3Mlo2ro+Wab8jl+0c+ne + AOeMAgT8NCW6pGkpz2O45lLVyqmlM4NfzvuVEBYFOmly4MD0rN7FAgMBAAE= -----END RSA PUBLIC KEY----- - owner_id: *id008 - diaspora_handle: bob92c4057e@example.org -- :user: !map:ActiveSupport::HashWithIndifferentAccess - encrypted_password: $2a$10$v7cE3lFbCnvPsLQaUaHw9OEgQl/rmQv7N1AnjRXAOASCQIb6tzBOC + owner_id: &id007 !ruby/object:BSON::ObjectId + data: + - 76 + - 235 + - 11 + - 249 + - 55 + - 219 + - 91 + - 11 + - 239 + - 0 + - 1 + - 109 + diaspora_handle: bob91ee430a@example.org + :user: !map:ActiveSupport::HashWithIndifferentAccess + encrypted_password: $2a$10$XAQu/7/J4pTxUjJYwRAIuOFH107WgQljgZd7gM9ZG0HEeG7xODdXG serialized_private_key: *id002 pending_request_ids: [] last_sign_in_ip: invites: 0 - _id: &id009 !ruby/object:BSON::ObjectId - data: - - 76 - - 233 - - 231 - - 195 - - 35 - - 103 - - 188 - - 118 - - 219 - - 0 - - 1 - - 112 + _id: *id007 last_sign_in_at: - username: bob93fc55c3 + username: bob91ee430a language: en sign_in_count: 0 visible_person_ids: [] - password_salt: $2a$10$v7cE3lFbCnvPsLQaUaHw9O + password_salt: $2a$10$XAQu/7/J4pTxUjJYwRAIuO remember_token: reset_password_token: current_sign_in_ip: remember_created_at: current_sign_in_at: invitation_sent_at: - email: bob9442a56e@pivotallabs.com + email: bob92ff9894@pivotallabs.com invitation_token: visible_post_ids: [] getting_started: true - :person: !map:ActiveSupport::HashWithIndifferentAccess - created_at: 2010-11-22 03:47:15 Z +- :person: !map:ActiveSupport::HashWithIndifferentAccess + created_at: 2010-11-23 00:34:02 Z profile: !map:ActiveSupport::HashWithIndifferentAccess searchable: true image_url: _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 195 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 250 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 113 gender: diaspora_handle: birthday: - last_name: Grimm945929b6 + last_name: Grimm93a2561d bio: - first_name: Robert94fd494d - updated_at: 2010-11-22 03:47:15 Z + first_name: Robert930c54ad + updated_at: 2010-11-23 00:34:02 Z _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 195 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 250 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 114 - url: http://google-94c55db3.com/ + url: http://google-932595ad.com/ serialized_public_key: | -----BEGIN RSA PUBLIC KEY----- - MIGJAoGBAKa40Wwc3BUcrCxAxuqqdKTJeuZd36IUOpg4xfRbFMZ6w8XovZS9nOrb - Wiaf3q/ofvTQ1FN+529fOdlrVzzaLvIm4OPhZ5jMrEeLFU9b69EcNsb471hAttip - TYbYiWZa0s1h/LfgyBL1pv9TgfOqyo+uHQPMVu6c1V4l4FuyEYDNAgMBAAE= + MIGJAoGBALL/sG/gOHimM5+a9GWuKUKgeuQJ5e44emc27LoxxiGNE5M4zmpmcq4Q + I2WqDGH5RZXgt8w7pYhvqyvpD5EGePVGW6p1RLZC+QHH3Mlo2ro+Wab8jl+0c+ne + AOeMAgT8NCW6pGkpz2O45lLVyqmlM4NfzvuVEBYFOmly4MD0rN7FAgMBAAE= -----END RSA PUBLIC KEY----- - owner_id: *id009 - diaspora_handle: bob93fc55c3@example.org -- :user: !map:ActiveSupport::HashWithIndifferentAccess - encrypted_password: $2a$10$kXrZnHd9fvJHZwXGH1t5s.iSskxa/3sObpmYbSC7r/UVl4VtPFQEi + owner_id: &id008 !ruby/object:BSON::ObjectId + data: + - 76 + - 235 + - 11 + - 250 + - 55 + - 219 + - 91 + - 11 + - 239 + - 0 + - 1 + - 112 + diaspora_handle: bob92113cd9@example.org + :user: !map:ActiveSupport::HashWithIndifferentAccess + encrypted_password: $2a$10$tNzxQa8K2i6j3Z5FanQnOusyD6LgWH8h437Lt9070Po1FtTINVkKu serialized_private_key: *id002 pending_request_ids: [] last_sign_in_ip: invites: 0 - _id: &id010 !ruby/object:BSON::ObjectId - data: - - 76 - - 233 - - 231 - - 195 - - 35 - - 103 - - 188 - - 118 - - 219 - - 0 - - 1 - - 115 + _id: *id008 last_sign_in_at: - username: bob94793fca + username: bob92113cd9 language: en sign_in_count: 0 visible_person_ids: [] - password_salt: $2a$10$kXrZnHd9fvJHZwXGH1t5s. + password_salt: $2a$10$tNzxQa8K2i6j3Z5FanQnOu remember_token: reset_password_token: current_sign_in_ip: remember_created_at: current_sign_in_at: invitation_sent_at: - email: bob95e56c75@pivotallabs.com + email: bob931ec692@pivotallabs.com invitation_token: visible_post_ids: [] getting_started: true - :person: !map:ActiveSupport::HashWithIndifferentAccess - created_at: 2010-11-22 03:47:15 Z +- :person: !map:ActiveSupport::HashWithIndifferentAccess + created_at: 2010-11-23 00:34:02 Z profile: !map:ActiveSupport::HashWithIndifferentAccess searchable: true image_url: _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 195 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 250 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 116 gender: diaspora_handle: birthday: - last_name: Grimm95ddf1a9 + last_name: Grimm9404fbea bio: - first_name: Robert95a6b8e0 - updated_at: 2010-11-22 03:47:15 Z + first_name: Robert9428dba5 + updated_at: 2010-11-23 00:34:02 Z _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 195 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 250 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 117 - url: http://google-95ee0209.com/ + url: http://google-9476ec1c.com/ serialized_public_key: | -----BEGIN RSA PUBLIC KEY----- - MIGJAoGBAKa40Wwc3BUcrCxAxuqqdKTJeuZd36IUOpg4xfRbFMZ6w8XovZS9nOrb - Wiaf3q/ofvTQ1FN+529fOdlrVzzaLvIm4OPhZ5jMrEeLFU9b69EcNsb471hAttip - TYbYiWZa0s1h/LfgyBL1pv9TgfOqyo+uHQPMVu6c1V4l4FuyEYDNAgMBAAE= + MIGJAoGBALL/sG/gOHimM5+a9GWuKUKgeuQJ5e44emc27LoxxiGNE5M4zmpmcq4Q + I2WqDGH5RZXgt8w7pYhvqyvpD5EGePVGW6p1RLZC+QHH3Mlo2ro+Wab8jl+0c+ne + AOeMAgT8NCW6pGkpz2O45lLVyqmlM4NfzvuVEBYFOmly4MD0rN7FAgMBAAE= -----END RSA PUBLIC KEY----- - owner_id: *id010 - diaspora_handle: bob94793fca@example.org -- :user: !map:ActiveSupport::HashWithIndifferentAccess - encrypted_password: $2a$10$hWug/r1Lawa3uda48rv8Recgbds9MbmJOheXReIU6uodKEx.XQGpu + owner_id: &id009 !ruby/object:BSON::ObjectId + data: + - 76 + - 235 + - 11 + - 250 + - 55 + - 219 + - 91 + - 11 + - 239 + - 0 + - 1 + - 115 + diaspora_handle: bob9381f18a@example.org + :user: !map:ActiveSupport::HashWithIndifferentAccess + encrypted_password: $2a$10$Z/dwaoXxO5izFCHLPWv1g.YqhXfzKyFNLIQe0.VaYB7evTI.DyC8O serialized_private_key: *id002 pending_request_ids: [] last_sign_in_ip: invites: 0 - _id: &id011 !ruby/object:BSON::ObjectId - data: - - 76 - - 233 - - 231 - - 195 - - 35 - - 103 - - 188 - - 118 - - 219 - - 0 - - 1 - - 118 + _id: *id009 last_sign_in_at: - username: bob95282ef6 + username: bob9381f18a language: en sign_in_count: 0 visible_person_ids: [] - password_salt: $2a$10$hWug/r1Lawa3uda48rv8Re + password_salt: $2a$10$Z/dwaoXxO5izFCHLPWv1g. remember_token: reset_password_token: current_sign_in_ip: remember_created_at: current_sign_in_at: invitation_sent_at: - email: bob968d7231@pivotallabs.com + email: bob9486c93a@pivotallabs.com invitation_token: visible_post_ids: [] getting_started: true - :person: !map:ActiveSupport::HashWithIndifferentAccess - created_at: 2010-11-22 03:47:16 Z +- :person: !map:ActiveSupport::HashWithIndifferentAccess + created_at: 2010-11-23 00:34:02 Z profile: !map:ActiveSupport::HashWithIndifferentAccess searchable: true image_url: _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 196 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 250 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 119 gender: diaspora_handle: birthday: - last_name: Grimm961816cb + last_name: Grimm95aa7665 bio: - first_name: Robert9672d3dd - updated_at: 2010-11-22 03:47:16 Z + first_name: Robert9565be22 + updated_at: 2010-11-23 00:34:02 Z _id: !ruby/object:BSON::ObjectId data: - 76 - - 233 - - 231 - - 196 - - 35 - - 103 - - 188 - - 118 + - 235 + - 11 + - 250 + - 55 - 219 + - 91 + - 11 + - 239 - 0 - 1 - 120 - url: http://google-962d56fe.com/ + url: http://google-95164cbe.com/ serialized_public_key: | -----BEGIN RSA PUBLIC KEY----- - MIGJAoGBAKa40Wwc3BUcrCxAxuqqdKTJeuZd36IUOpg4xfRbFMZ6w8XovZS9nOrb - Wiaf3q/ofvTQ1FN+529fOdlrVzzaLvIm4OPhZ5jMrEeLFU9b69EcNsb471hAttip - TYbYiWZa0s1h/LfgyBL1pv9TgfOqyo+uHQPMVu6c1V4l4FuyEYDNAgMBAAE= + MIGJAoGBALL/sG/gOHimM5+a9GWuKUKgeuQJ5e44emc27LoxxiGNE5M4zmpmcq4Q + I2WqDGH5RZXgt8w7pYhvqyvpD5EGePVGW6p1RLZC+QHH3Mlo2ro+Wab8jl+0c+ne + AOeMAgT8NCW6pGkpz2O45lLVyqmlM4NfzvuVEBYFOmly4MD0rN7FAgMBAAE= -----END RSA PUBLIC KEY----- - owner_id: *id011 - diaspora_handle: bob95282ef6@example.org + owner_id: &id010 !ruby/object:BSON::ObjectId + data: + - 76 + - 235 + - 11 + - 250 + - 55 + - 219 + - 91 + - 11 + - 239 + - 0 + - 1 + - 118 + diaspora_handle: bob943a01a3@example.org + :user: !map:ActiveSupport::HashWithIndifferentAccess + encrypted_password: $2a$10$biqu2XvEh1pAmWnm2UbCy.FKNw6JLFpNWBwCUsEoAQtGT83uCquS6 + serialized_private_key: *id002 + pending_request_ids: [] + + last_sign_in_ip: + invites: 0 + _id: *id010 + last_sign_in_at: + username: bob943a01a3 + language: en + sign_in_count: 0 + visible_person_ids: [] + + password_salt: $2a$10$biqu2XvEh1pAmWnm2UbCy. + remember_token: + reset_password_token: + current_sign_in_ip: + remember_created_at: + current_sign_in_at: + invitation_sent_at: + email: bob95d49539@pivotallabs.com + invitation_token: + visible_post_ids: [] + + getting_started: true +- :person: !map:ActiveSupport::HashWithIndifferentAccess + created_at: 2010-11-23 00:34:02 Z + profile: !map:ActiveSupport::HashWithIndifferentAccess + searchable: true + image_url: + _id: !ruby/object:BSON::ObjectId + data: + - 76 + - 235 + - 11 + - 250 + - 55 + - 219 + - 91 + - 11 + - 239 + - 0 + - 1 + - 122 + gender: + diaspora_handle: + birthday: + last_name: Grimm9613c2f6 + bio: + first_name: Robert96211295 + updated_at: 2010-11-23 00:34:02 Z + _id: !ruby/object:BSON::ObjectId + data: + - 76 + - 235 + - 11 + - 250 + - 55 + - 219 + - 91 + - 11 + - 239 + - 0 + - 1 + - 123 + url: http://google-96bc954c.com/ + serialized_public_key: | + -----BEGIN RSA PUBLIC KEY----- + MIGJAoGBALL/sG/gOHimM5+a9GWuKUKgeuQJ5e44emc27LoxxiGNE5M4zmpmcq4Q + I2WqDGH5RZXgt8w7pYhvqyvpD5EGePVGW6p1RLZC+QHH3Mlo2ro+Wab8jl+0c+ne + AOeMAgT8NCW6pGkpz2O45lLVyqmlM4NfzvuVEBYFOmly4MD0rN7FAgMBAAE= + -----END RSA PUBLIC KEY----- + + owner_id: &id011 !ruby/object:BSON::ObjectId + data: + - 76 + - 235 + - 11 + - 250 + - 55 + - 219 + - 91 + - 11 + - 239 + - 0 + - 1 + - 121 + diaspora_handle: bob9539c36f@example.org + :user: !map:ActiveSupport::HashWithIndifferentAccess + encrypted_password: $2a$10$Kjhoa8.ZURvMs7fAmitKOuTq0usHmVU3TUymOApL12100Ko/nPLYO + serialized_private_key: *id002 + pending_request_ids: [] + + last_sign_in_ip: + invites: 0 + _id: *id011 + last_sign_in_at: + username: bob9539c36f + language: en + sign_in_count: 0 + visible_person_ids: [] + + password_salt: $2a$10$Kjhoa8.ZURvMs7fAmitKOu + remember_token: + reset_password_token: + current_sign_in_ip: + remember_created_at: + current_sign_in_at: + invitation_sent_at: + email: bob96b05b64@pivotallabs.com + invitation_token: + visible_post_ids: [] + + getting_started: true