hot questions tagged highrise - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T04:05:54Z http://stackoverflow.com/feeds/tag?tagnames=highrise&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1813568/rails-finding-objects-in-complex-hashes 0 Rails, Finding objects in complex hashes jpsilvashy 2009-11-28T19:44:10Z 2009-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>[ ..., #&lt;Highrise::Person:0x1035084b8 @attributes={"contact_data"=&gt;#&lt;Highrise::Person::ContactData:0x1034f8b30 @attributes={"email_addresses"=&gt;[], "addresses"=&gt;[], "web_addresses"=&gt;[], "phone_numbers"=&gt;[], "twitter_accounts"=&gt;[], "instant_messengers"=&gt;[]}, @prefix_options={}&gt;, "created_at"=&gt;Sat Nov 28 05:38:26 UTC 2009, "title"=&gt;"president", "updated_at"=&gt;Sat Nov 28 05:38:27 UTC 2009, "background"=&gt;"asdfasdfadsfas", "id"=&gt;27569370, "owner_id"=&gt;nil, "group_id"=&gt;nil, "company_id"=&gt;27569371, "last_name"=&gt;"Doe", "author_id"=&gt;192208, "visible_to"=&gt;"Everyone", "first_name"=&gt;"John"}, @prefix_options={}&gt;, ... ] </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-parsing 0 HighRise jQuery parsing Dycey 2009-10-01T14:14:05Z 2009-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>&lt;table&gt; &lt;tbody&gt; &lt;tr&gt; &lt;th&gt;Phone&lt;/th&gt; &lt;td&gt;+44 (0)1123 1231312&lt;span&gt;Work&lt;/span&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th&gt;&lt;/th&gt; &lt;td&gt;+44 (0)777 2342342&lt;span&gt;Other&lt;/span&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; </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-app 1 Delete All Emails in a Highrise App Joseph Holsten 2008-12-11T15:43:59Z 2008-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>