similar to: Asking for help again about my thread debug

Displaying 20 results from an estimated 9000 matches similar to: "Asking for help again about my thread debug"

2006 Apr 29
3
Feedtools question
I use feedtools to generate the feeds and read them,and now they can not work well: This is the code for feed generating: class FeedsController < ApplicationController def userrss @user = User.find_by_id(params[:id]) @articles = @user.articles(:all,:order => ''updated_at desc'') @headers["Content-Type"] = "application/xml; charset=utf-8"
2006 Apr 30
2
Rss feed items disappear using feedtools?
I have met a problem on Feedtools and felt very confused about it: The feed that I generated using feedtools can not be read correctedly by feedtools,while rss from other websites can be read. Still,the code for rss generating: def userrss @user = User.find_by_id(params[:id]) @articles = @user.articles(:all,:order => ''updated_at desc'',:limit => 15)
2006 Jul 10
10
Problem using Feedtools on my Rails project!
Hi I''m trying to setup my app to use Feedtools amazing RSS powers, but it fails miserably on the following line: logger.debug("Description:#{FeedTools::Feed.open("http://rss.slashdot.org/Slashdot/slashdot").items.first.description}") The stack trace says: wrong number of arguments (0 for 1)
2006 Mar 20
3
can''t get my rss to validate with feedtools
I know that I''m doing something wrong, but I can''t figure out what. I''ve looked at every wiki and tutorial I can find on feedtools but I still can''t get my rss feed working. Here''s my code. feed = FeedTools::Feed.new feed.entries << FeedTools::FeedItem.new feed.entries[0].author.name = "Charlie Bowman" feed.entries[0].title =
2006 Mar 21
4
Feedtools
Hi all, Is anyone else seeing silly amounts of segfaults with Feedtools? They''re regular enough to make it unusable, but I haven''t pinned down what''s triggering them yet. Here''s the error: > deadlock 0xb75970a8: run:-/usr/lib/ruby/1.8/timeout.rb:42: [BUG] Segmentation fault > ruby 1.8.3 (2005-06-23) [i486-linux] Naturally, that knocks over WEBrick,
2006 Mar 13
1
Pagination & Feedtools
Is it possible to paginate rss feeds with FeedTools. The following code generates an error about constants. latest_feeds = FeedTools::Feed.open(''http://feeds.feedburner.com/Eribium'') @news_pages, @pages = paginate :latest_feeds, :per_page => 5 -- Posted via http://www.ruby-forum.com/.
2006 Mar 20
7
error using feedtools
I performed a gem install feedtools, I then added these 2 lines to my environment.rb: require ''rubygems'' require ''feed_tools'' I then added this method in my controller: def rss @post = Post.most_recent feed = FeedTools::Feed.new feed.title = ''Recent Rambles'' feed.subtitle = ''random thoughts by me''
2006 Mar 13
5
Ruby on Rails Applications - To get RSS Feeds
Hi, all I am new to Ruby and also Ruby on Rails. I would like to know how we can get the RSS Feeds and display them in a Ruby on Rails applications. Thanks in Advance, sumi -- Posted via http://www.ruby-forum.com/.
2006 Jun 30
6
RSS::Parser Documentation
Hi I am trying to use the RSS classes from "rss/2.0" and everything works but I want to know what attributes and properties I can get at from each of the classes I am getting back. For example, the class has a "channel" which I can tell has a "title" attribute (because it works when I query it :) but I would really like a list of every attribute that is
2006 Jun 19
5
RSS reader for rails application.
Hi, I was wondering if there''s an RSS reader plugin of some sort available that will basically get the RSS feeds for me and then allow my Rails application to take those feeds and present them on my website. Would anybody know how I could get this to work with a rails app? Thanks. -- Posted via http://www.ruby-forum.com/.
2006 Mar 17
2
Test if remote file is actually RSS/XML
Hi all, I want my users to be able to view RSS feeds of their choice on my site. But i''d like to be able to check the files they are submitting as feeds are actually XML before attempting to parse and display them. I''ve been using feed tools to display the contents of feeds which works perfectly, but i''d like some way to check if a file is a feed/xml. Any pointers in
2006 Apr 02
3
FeedTools syntax question
http://www.mozdex.com/open.jsp?query=webhosting&start=10 in the above feed, can anyone tell me how to access the openSearch:totalResults element using feed tools? I can access the other elements, but I''m unsure what special meaning the colon carries or how to work with such items in feedtools thanks in advance al
2008 Mar 20
6
Parsing multiple RSS & Atom feed formats
I''m working on a RSS aggregator, and I''ve based the parser on a script from this post; http://www.superwick.com/archives/2007/06/09/rss-feed-parsing-in-ruby-on-rails/ But, being the complete newbie, I''ve found that this parser only works for specifically formatted feeds. For example, some feeds will throw a ''nil text'' error. I know that I could make
2008 Apr 22
2
How to convert time from rss feed to another format ?
Hi, I need to parse the rss feed and use the pubDate field to generate a field in a xml file to use as an input to simile timeline. RSS returns the pubDate as : Sun Feb 24 06:33:32 UTC 2008 But I need it as a string : "Feb 24 2008 06:33:32 PST" When I do : ... @dt=feed_item.time @dt=@dt.to_date word_date=''%b %d %Y %H:%M:%S %z'' puts @dt.strftime(word_date) ...
2006 Mar 20
7
strange charecters after redcloth usage
I''m using redcloth on my blog to transform my input into html. Alot of times if I type "I''ve" I''ll wind up with "I,ve" except that it''s not a comma but a very similar charecter. This is really killing my rss feeds. What''s causing this? How do I fix it? -- Posted via http://www.ruby-forum.com/.
2006 May 12
2
synchronize blog with Ruby on Rails site?
Hello all, I have the following problem: *) I have a WordPress blog at site x *) I have a Ruby on Rails site, y *) I want to accomplish the following thing: If i post a blog entry into my wordpress blog at x, (in category z), i want it to appear automaticaly at y (in a blog which is... let''s say just a Ruby on Rails something, or alternatively Typo or maybe WP) Suggestions to tackle
2006 Jun 07
5
How to test RSS feeds while developing it on localhost
Hi, I am developing on windows xp and am trying to create RSS feed for an app using RoR. How do I test my RSS feed while I am developing it. I don''t know of any feed reader that would accept localhost as the input. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Apr 18
11
how to release a plugin
I''ve developed a very useful (at least to me) plugin for rails. How do I go about releasing it. I have an account with rubyforge but I don''t know how to let rails know about it. Charlie Bowman www.recentrambles.com -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Jan 21
2
Help with subset
I am so happy about learning how to read in multiple Excel files, that I have to try and make another improvement. I know what I have been doing is clumsy, but it works. Hopefully, someone can suggest a more elegant solution. As a novice, I have been using MS-Word and mail merge to write my code. I start with about 2 pages of code, and end up with 2,220 merged pages that I copy and paste into R.
2006 May 08
8
RSS Feed / xml.link problem?
I''m having an odd problem. I''m trying to create an RSS feed (working off the Recipe), but "xml.link" generates error about "Can''t convert Hash to String". From the error trace, it *looks* like it''s calling the a fileutil ''link'' method (as in, filesystem symbolic link) - even xml.tag! generates this error. Er, how do I make