hot questions tagged highrise - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T04:05:54Zhttp://stackoverflow.com/feeds/tag?tagnames=highrise&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1813568/rails-finding-objects-in-complex-hashes0Rails, Finding objects in complex hashesjpsilvashy2009-11-28T19:44:10Z2009-11-28T20:00:46Z
<p>I'm building an app that integrates with Highrise, and so-far-so-good, however, when trying to import a person <code>Highrise::People</code> it spits out a huge hash similar to this:</p>
<pre><code>[ ..., #<Highrise::Person:0x1035084b8 @attributes={"contact_data"=>#<Highrise::Person::ContactData:0x1034f8b30 @attributes={"email_addresses"=>[], "addresses"=>[], "web_addresses"=>[], "phone_numbers"=>[], "twitter_accounts"=>[], "instant_messengers"=>[]}, @prefix_options={}>, "created_at"=>Sat Nov 28 05:38:26 UTC 2009, "title"=>"president", "updated_at"=>Sat Nov 28 05:38:27 UTC 2009, "background"=>"asdfasdfadsfas", "id"=>27569370, "owner_id"=>nil, "group_id"=>nil, "company_id"=>27569371, "last_name"=>"Doe", "author_id"=>192208, "visible_to"=>"Everyone", "first_name"=>"John"}, @prefix_options={}>, ... ]
</code></pre>
<p>It looks like that right inside of each <code>Highrise::Person</code> is an <code>@attributes</code> which is another <code>Highrise::Person::ContactData</code>, which itself is another <code>@attributes</code> with arrays like <code>email_addresses[]</code> and <code>phone_numbers[]</code> as well as simple key/values...</p>
<p>Sorry to be so confusing, what I want to know is how would I just get the <code>first_name</code> of each person from a hash like this?</p>
<p>Probably super simple I'm just confused...</p>
<p><strong>Update</strong></p>
<p>I guess a better way to phrase it would be, given the hash above, why won't this work:</p>
<pre><code>@people = Highrise::Person.find(:all)
for person in @people do
person.attributes["first_name"]
end
</code></pre>
http://stackoverflow.com/questions/1504215/highrise-jquery-parsing0HighRise jQuery parsingDycey2009-10-01T14:14:05Z2009-10-06T12:15:24Z
<p>I want to add h323:number style links to HighRise contact numbers, so that users can click a link to dial the IP phone...</p>
<p>The html I'm looking at is:</p>
<pre><code><table>
<tbody>
<tr>
<th>Phone</th>
<td>+44 (0)1123 1231312<span>Work</span></td>
</tr>
<tr>
<th></th>
<td>+44 (0)777 2342342<span>Other</span></td>
</tr>
</tbody>
</table>
</code></pre>
<p>and basically I want to pull out the number which is in a td and which starts with +44, strip out the spaces and stick in a link inside the span that has an href like</p>
<pre><code>h323:4411231231312
</code></pre>
<p>i.e. is stripping out the 0 in brackets.</p>
<p>Any help would be greatfully received to any of the following.</p>
<p>(1) How do I match the td containing +\d\d numbers?
(2) How do I use selectors to exclude the span when I get the number from the td
(3) What regex should I use to cleanup the number for the href?</p>
http://stackoverflow.com/questions/359770/delete-all-emails-in-a-highrise-app1Delete All Emails in a Highrise AppJoseph Holsten2008-12-11T15:43:59Z2008-12-11T15:46:35Z
<p>How do I delete all the emails in my <a href="http://highrisehq.com/" rel="nofollow">highrise</a> app? I don't want to delete the entire thing and start over, I've got companies and tags and metadata. What's the easiest way?</p>
<p>This question paraphrased from <a href="http://getsatisfaction.com/people/tiborholoda" rel="nofollow">Tibor Holoda</a>'s <a href="http://getsatisfaction.com/37signals/topics/can_you_help_me_deleting_all_emails_and_start_again_please" rel="nofollow">question</a> on <a href="http://getsatisfaction.com" rel="nofollow">GetSatisfaction</a></p>