similar to: Rails Plugin Directory - Comments

Displaying 20 results from an estimated 800 matches similar to: "Rails Plugin Directory - Comments"

2006 May 25
6
150 Rails Plugins
The Rails Plugin Directory now has over 150 plugins and RDoc support too: http://www.bencurtis.com/archives/2006/05/150-rails-plugins/ -- Benjamin Curtis http://www.bencurtis.com/ http://www.tesly.com/ -- Collaborative test case management http://www.agilewebdevelopment.com/ -- Resources for the Rails community
2006 May 15
0
Rails plugin directory: Permalinks
You can now take a stab at quickly finding a plugin based on it''s name: http://agilewebdevelopment.com/plugins/ [plugin_name_with_underscores] So, http://agilewebdevelopment.com/plugins/acts_as_authenticated will take you directly to that plugin. If you guess incorrectly (there''s no exact match), then you''ll be returned a search based on what you entered. --
2006 Aug 02
0
Update to e-commerce e-book
I have just released the first revision since the initial release of The Money Train, Building e-commerce sites using Ruby on Rails. It is available for purchase now at http://www.agilewebdevelopment.com/ book. Here''s a list of major changes since the initial release: - Added content to Gift Certificates chapter about legal and accounting details. - Added product options section.
2006 May 13
0
XML API for plugin directory
By popular demand, the XML API for the Rails plugin directory is now fully functional. Check out http://agilewebdevelopment.com/ plugins#api for more information about how to pull data out of and push data in to the directory without using a web browser. -- Benjamin Curtis http://www.tesly.com/ -- Collaborative test case management http://www.agilewebdevelopment.com/ -- Resources for the
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 May 18
0
Rails Plugin Directory: Tags
The Rails Plugin Directory now has tag support: http:// www.bencurtis.com/archives/2006/05/rails-plugins-tagged/ -- Benjamin Curtis http://www.bencurtis.com/ http://www.tesly.com/ -- Collaborative test case management http://www.agilewebdevelopment.com/ -- Resources for the Rails community
2011 Apr 06
1
Treatment of xml-stylesheet processing instructions in XML module
Hello again, Another stumble here that is defeating me. I try: a<-readLines(url("http://feeds.feedburner.com/grokin")) t<-XML::xmlTreeParse(a, ignoreBlanks=TRUE, replaceEntities=FALSE, asText=TRUE) elem<- XML::getNodeSet(XML::xmlRoot(t),"/rss/channel/item")[[1]] And I get: Start tag expected, '<' not found Error: 1: Start tag expected, '<' not
2006 Apr 13
2
Automatic finder
It looks rails automatically creates a "finder" method on models that have a "belongs_to". So I tried this in the console: c = Category.find(2) chunks = Chunk.find_by_category(c) chunks is always returned as an empty array. When I know have some chunks with a category_id of 2. Should the find_by_category do what I think it should be doing or am I completely off base?
2006 Jun 20
22
New e-book - The Money Train
While talking about my RailsConf presentation with Ben Wiseley, he suggested writing a book on the same topic... so I did! The Money Train is an e-book about building e-commerce sites using Ruby on Rails. Read my blog entry about it at http://www.bencurtis.com/archives/ 2006/06/rails-e-commerce-e-book/ or head to http:// www.agilewebdevelopment.com/book to dive right in. As always, a big
2006 Feb 22
5
[OT] Apache rewrite stuff...
Hi all, a little off topic, but was wondering what the best way is to re-write incoming requests so that they all end up at the same domain. For example, if I had: my_domain.net my_domain.com my_domain.org Whats the best way to map/redirect all of these to www.my_domain.com ? I know its possible, just not sure what to add for rules/virtual hosts in my apache config. Thanks for the help! -Nick
2006 Apr 12
2
Tracking page hits
Hello all, I am developing an online store and would like to keep track of how many times each product was viewed. While I can keep track of page hits using something like webalizer, this won''t really work (I don''t think) as the pages are not going to be static. Has anyone else implemented this and if so could you please point me in the right direction. A potential solution
2006 Jun 21
1
Adding routes via plugins
Hi, I''m attempting to add a route via a plugin. I attempted to add the following to my init.rb: myroute = ActionController::Routing::Routes.connect "boo2", :controller=>''plugin'', :action=>''index'' puts "path=#{myroute.path}" myroute.options.keys.each do |k| puts "#{k}=#{myroute.options[k]}" end The newly
2006 Jun 06
5
[OT] O''Reilly Cookbooks
Hi, Has anyone gotten the "roughcuts" of the Ruby and Rails cookbooks? If you have the Pragmattic Rails Cookbook is the O''Reilly worth it? Also can you download PDF''s of their "roughcuts". The website is kind of vague, it just mentions online access (whatever that means). Thanks in advance.
2006 Jun 24
2
using flickr.rb
Does anyone have any experience with using flickr.rb? Seems the only thing which is documented for it is searching through your photos. Anyway, all I''m trying to do is return a list of my 20 most recent photos, but nothing seems to work. doing this returns 100 photos for a given user (which takes all day to load) @flickr = Flickr.new ''API KEY'' @user =
2006 May 29
4
Time-based cache fragment expiration
Hello, I''m trying to figure out how I could implement fragment caching that expires every x amount of time. I thought of writing a runner script that would expire the cache and set it as a cron job, but that doesn''t really work because runner scripts act on models and not controllers. Does anybody have any ideas? Regards, -carl
2007 Apr 13
3
Upgrade from Centos 4.4 to Centos 5
Hi, Is there a yum way to upgrade from CentOS 4.4 to CentOS 5? Or I just need to download the installation CDs and upgrade using them, as I did many times with Fedora. best regards, -- Guillermo Garron "Linux IS user friendly... It's just selective about who its friends are." (Using FC6, CentOS4.4 and Ubuntu 6.06) http://feeds.feedburner.com/go2linux http://www.go2linux.org
2006 Aug 10
1
IMPORTANT: Rails update 1.1.6
for those who didn''t read it somewhere else: the bug being adresseb by 1.1.5was not completely fixed, so now theres another security update: http://feeds.feedburner.com/~r/RidingRails/~3/10954980/rails-1-1-6-backports-and-full-disclosure anybody using engines, dont update since this update will break the plugin, more info for fixing the bug in this case also in the blog. -- Michael
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/.
2009 Jan 02
1
zfs support in ubuntu linux...
http://translate.google.com/translate?sl=auto&tl=en&u=http%3A%2F%2Ffeeds.feedburner.com%2F~r%2FJainuxsWebLog%2F~3%2F496764318%2F Any comments? -- This message posted from opensolaris.org
2006 May 01
4
URL encoding in Rails?
Simple question: How does one do URL encoding in Ruby/Rails? Thanks, Wes -- Posted via http://www.ruby-forum.com/.