Displaying 20 results from an estimated 700 matches similar to: "Pagination & Feedtools"
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 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 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 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 11
1
feedburner api xml
I''m trying to query feedburner''s api (as according to their
documentation). I''m using ''net/http'' as outlined here:
@feed_stats =
Net::HTTP.get(URI.parse("http://api.feedburner.com/awareness/1.0/GetFeedData?uri="
+ @feed_uri))
The query returns this xml:
<?xml version="1.0" encoding="UTF-8"?>
<rsp
2006 Apr 14
3
link_to_remote_with_overlay - Easy Ajax Overlays
People might be intrested in an article I wrote about using a helper and
some javascript to easily bring up ''Overlays'', a bit like Lightbox.
http://www.eribium.org/eribium/?p=32
--
Posted via http://www.ruby-forum.com/.
2006 Apr 01
15
Ruby on Rails CMS released. Web 2.0, Ajax, etc
Eribium, a content managing system built with rails has been released
completely free under the MIT License.
http://www.eribium.org/eribium/?p=21
You can find a demo here: http://alexmaccaw.no-ip.info:3000/admin
(user and pass are ''demo'').
Some of the features include:
* Completely Unobtrusive Javascript.
* Liquid View, works with pretty much any screen resolution.
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
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 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 Jun 01
5
Content Management System
I am looking for a good CMS based on Rails that has at least these
attributes:
1. Ease of use ( as it will be used by people who are not html literate)
2. Very easy/flexible to change layout.
So far I have looked at
http://rcms.oopen.de/Home/ (have not installed it yet)
http://adminpages.flowdev.de
http://demo.radiantcms.org/admin/pages
http://www.eribium.org/eribium/
MuraveyWeb does not seem
2006 Apr 24
1
Gmail style Ajax Spell Checking in Rails
I''ve written a post on my blog about ajax spell checking using ruby on
rails, that is similar to gmail''s.
Here''s the link if anyone''s interested:
http://www.eribium.org/eribium/?p=36
Feedback is always appreciated.
--
Posted via http://www.ruby-forum.com/.
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 May 13
6
Asking for help again about my thread debug
As http://www.ruby-forum.com/topic/65495 has shown,I have drawn into
trouble about my thread debugging for some days,and need help to solve
it urgently!
This thread problem comes from the design requirements that my web
application will get the rss feeds read which are generated by the web
application itself.
http://www.ruby-forum.com/topic/63984 has shown my code,and the key code
is the
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
2007 Mar 05
1
FeedTools/FeedUpdater and Rails1.2 Problem
FeedUpdater has stopped working now that I have upgrade to Rails 1.2.2
When I run script/feed_updater start I get:
/usr/local/lib/site_ruby/1.8/rubygems.rb:196:in `activate'': can''t
activate activesupport (= 1.3.1), already activated activesupport-1.4.1]
(Gem::Exception)
from /usr/local/lib/site_ruby/1.8/rubygems.rb:214:in `activate''
from
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/.
2008 Oct 26
0
Fwd: Decision Stats
Dear Lists,
Here are my latest posts on retrenching and locating facilities better. Do
you have anything in academic papers that use data mining- analytics for
1) Better Employee ROI quantitative measurement or cutting costs rationally
based on data rather across the board.
2) Locating facilities based on pure quant based approaches than local
supply demand conditions.
Specific application for
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
2005 Nov 02
1
Windows, Segmentation Faults, config.load_paths and config.cache_classes
I am doing some testing with the rails trunk, version I switched to
because of memory leaks in 0.13.1 under linux environment.
Right now the application is running fast and steady under linux, with
no memory leaks using SCGI Rails Runner 0.4.3 from Zed, BUT it has
become unusable under Windows (our main development environment) where
I am getting a lot of segmentation faults.
BUT the problem