Displaying 20 results from an estimated 900 matches similar to: "RSS reader for rails application."
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 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 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 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 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 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
2006 Apr 24
7
Online banking with Ruby on Rails?
I am wondering if it would be possible (and safe) to develop online
banking or other security-related applications with Ruby on Rails,
instead of using J2EE frameworks or .NET?
Are there any particular implications needed to write e-banking apps
with Rails? Security problems?
So... is anyone developing these types of applications with RoR?
Any advantage or disadvantage? Personal experiences are
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 Jul 10
10
IE vs Firefox -- http:// matters?
I just noticed something interesting (or not) about getting to my RoR
app on the 2 browsers. I''ve tested it running Webrick or Mongrel_rails
and get the same behavior.
The app is at http://www.mydomain.com:myport#/app/list
Specifying that complete URL works fine in both browsers. However in IE
if you just specify www.mydomain.com:myport#/app/list I get page not
found. In FF the URL
2006 Jun 12
3
RailsConf Ticket
I have a RailsConf ticket available and am looking to sell it, as I won''t be
able to make it out to Chicago as something has come up.
Please email me off-list at nshb@inimit.com
2006 Mar 07
6
Can Ruby and PHP play nice together?
I''m busy trying to bang out a new version of the website for my fantasy
baseball league (www.ibl.org) and I''m torn as to what to do. I''m a PHP
coder by day (Zend Certified and everything) but like Rails too.
Now, the site is morphing into a "blog plus tools for league members"
site. A lot of those tools are already written in PHP and I don''t want
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
2007 Jan 31
6
GeoQuery with acts_as_ferret involved
So, I''m working on a search engine of sorts that restricts results to
your local area. I can successfully return all entries within 15 miles
of a particular point, and I can successfully return all entries that
match a search query, but I''m having trouble combining the two together
and doing pagination on them.
Basically, for the range query, you do a SQL query that returns all
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 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
2013 Feb 27
2
setup / configure
hi,
im new to icecast and find hard time in setting up and configuring streams.
it would be great if there is even detailed documentation along with use
cases.
the existing documentation is nice but hard for new user like me to
understand what is sampling and best bit rate and so on.
With Best
-Ashwin.
+91-9959166266
-------------- next part --------------
An HTML attachment was scrubbed...
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)
2005 Feb 24
8
web services with ActionWebService
<noobalert>
Uh, yeah. So my noob self is showing through again. I''m trying to
write a simple hello-world type web service with the ActionWebService
thingy. I didn''t get very far. I''ve only done web services stuff in
.NET, so I''m not exactly used to this sort of thing.
Anyhow, I have a file, person_api.rb in my app/apis folder. I want to
take a single
2005 Mar 22
9
am i the only one with this problem?
(clean install)
>gem install rails
Attempting local installation of ''rails''
Local gem file not found: rails*.gem
Attempting remote installation of ''rails''
Install required dependency activesupport? [Yn] y
Install required dependency activerecord? [Yn] y
Install required dependency actionpack? [Yn] y
Install required dependency actionmailer? [Yn] y
2006 Jul 04
11
Any CMS for Ruby on Rails..
Well i want to make a photography community site on the lines of
www.gfxartist.com , www.terminus1525.ca, www.phirebrush.com
Where the community votes for every subbmission from a artist and can
comment (like a forum)..
Now gfxartist has used probably SMARTY,php,and their own CMS.
terminus used Drupal,Gallery 2.Some one tells me that this combo is
heavy on resources and slows down sites.