Any one know of a library to READ rtf documents in ruby? I''ve been consulting with Dr. Google, and some how just can''t find one. Lots of lib''s to WRITE them... Thanks in advance! -- Nathan Garza AshLeaf Media | Director of Technology Innovations __________________________________________________________ www.ashleafmedia.com | nathan-8gggxoBvU1PsBN0MCq728g@public.gmane.org | 832.514.5726 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
You could try this: http://homepage.ntlworld.com/peterhi/zips/rtf_tools.zip Not sure how well it works though. -- Jarod Nathan Garza wrote:> Any one know of a library to READ rtf documents in ruby? I''ve been > consulting with Dr. Google, and some how just can''t find one. Lots of > lib''s to WRITE them... Thanks in advance! > > -- > > Nathan Garza > > AshLeaf Media | Director of Technology Innovations > __________________________________________________________ > www.ashleafmedia.com <http://www.ashleafmedia.com> | > nathan-8gggxoBvU1PsBN0MCq728g@public.gmane.org <mailto:nathan-8gggxoBvU1PsBN0MCq728g@public.gmane.org> | 832.514.5726 > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
So I have run into a problem: I have a restful setup where a user clicks on an item to view it. once viewing the item, they can drag&drop characteristics onto the item. map.resources :items, :member => { :apply => :post } in the drop_receiving_element I have: url => apply_item_path(@item) The problem is when you drag&drop, it does post to the action, but the passed parameters are :id, which is @item.id, characteristic.id is nowhere to be found. I''m assuming there is an issue with the routes not passing the additional parameter. Any input to help me move along? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---