search for: maccman

Displaying 20 results from an estimated 28 matches for "maccman".

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 19
3
Flex or OpenLaszlo
I''m just wondering if anybody has got any experience in integrating Flex or OpenLaszlo with Rails and which people prefer. I''ve seen some of the tutorials but am pondering which one, if any, I should turn to: http://coenraets.com/tutorials/flexonrails/flexonrails.html http://www.liverail.net/articles/2006/04/16/rubyonrails-1-1-and-flex-2-0-pt-1
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 Mar 24
4
Newbie Question: How can I access the referer
Just wondering if and how I can access the referer from the controller. Thanks in advance -- Posted via http://www.ruby-forum.com/.
2006 Jul 05
2
How do I access the session in a rails plugin?
I''m trying to access the session in a rails plugin, so as to set it as below. 1. module Juggernaut 2. 3. def self.set_channels(chan) 4. session[:juggernaut_channels] = chan 5. end 6. end 7. 8. module ActionController 9. class Base 10. include Juggernaut 11. end 12. end At the moment I get: undefined local variable or method `session'' for
2006 Mar 19
7
Tag Cloud Code
Does anyone have any sample code for a tag cloud. I''ve looked at typo but they''ve just got complicated sql (which I don''t have a clue about). All I want is to select tags and make them bigger/smaller depending on the number of pages that are ''tagged'' by them. Thanks in advance -- Posted via http://www.ruby-forum.com/.
2006 Apr 22
1
Newbie question about using helpers in controllers
I''m trying to display a list of pages in xml. I want to change page.update_at to distance_of_time_in_words_to_now. However whenever I run it I get an error saying: undefined method `distance_of_time_in_words_to_now'' I know I can just go the rails api and copy the source, but there must be another way. def list @page = Page.find(:all, :order => "updated_at desc")
2006 Mar 05
2
Sending http post requests
I''m trying to send http post request in the controller to a web address. In my application I''m using ajax to communicate with the controller, and then use the controller to pass the message on to a remote server, something you can''t do using ajax because of browser security problems. Just wondering what the syntax for a http post is in rails. Thanks Alex -- Posted
2006 Mar 20
1
Url encode
Can someone tell me how to encode a string to a url in Rails. I''ve got basic code as below, but it only adds dashes in place of spaces and doesn''t escape html. @page.url = @page.name.to_s.gsub(/[ ]/, ''-'') -- Posted via http://www.ruby-forum.com/.
2006 Mar 26
1
Newbie Question: How do I zip stuff
I''m using file column to upload files. What I need is to be able to select a few of them, zip them together and download them. Is this possible? -- Posted via http://www.ruby-forum.com/.
2011 Feb 08
1
Rails and WebSockets
...plugins like Juggernaut [1] aren''t going to optimally support async, since they can''t re-architecture the way connections are handled. Should I instead use Cramp [2] and incorporate the various features I like from Rails into it? Thank you for your time! [1] - https://github.com/maccman/juggernaut [2] - https://github.com/lifo/cramp -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group...
2011 Mar 30
0
how to generate transactions using braintree gateway
Hi all, I am sassy rails app for testing transaction. I have installed the sassy from git clone git://github.com/maccman/saasy.git when I launch the server script/server I am able to signup. but when I go to billing menu after changing the plan, it says no transaction so far How to create transaction? please help Thanks Nagaraj -- You received this message because you are subscribed to the Google Groups "Ru...
2006 Jul 20
16
Juggernaut Released - (a.k.a Armageddon)
I''ve just released Juggernaut - a plugin for ruby on rails. Check out the site: http://juggernaut.rubyforge.org I?ve also finished a demo that illustrates some of Juggernuat?s capabilities. You can sign up for an account here: http://alexmaccaw.no-ip.info:3500/login/sign_up . It might be a tad slow as it?s running from my home machine. Juggernaut for Ruby on Rails initiates a flash
2006 Mar 30
9
script/console not working after Rails 1.1 upgrade
Whenever I do script/console I get an error message: Loading development enviroment. c:/ruby/lib/ruby/1.8/irb/init.rb:151: in ''parse_opts'' : undefined method ''upcase'' for nil:NilClass (NoMethodError) from c:/ruby/lib/ruby/1.8/irb/init.rb: in ''setup'' from c:/ruby/lib/ruby/1.8/irb/init.rb:54: in ''start'' from c:/ruby/bin/irb:13
2006 Jun 11
3
Armageddon
I''m just wondering what happened to Armageddon and whether people had any more information/news about it. I''ve thought about comet but I think that a flash socket would be easier to implement. Does Armageddon have the same drawbacks as other flash sockets, namely not working over port 80 (so the companies firewall blocks it)? -- Posted via http://www.ruby-forum.com/.
2006 Jun 20
1
Extending RJS
Is it possible to extend RJS and create another object, like ''page''? I''m trying to create a customized RJS for my own javascript library. Thanks in advance -- Posted via http://www.ruby-forum.com/.
2006 Apr 07
0
Updating a relationship in a has_many and belongs_to
As the subjects suggests I''m trying to reiterate through certain pages, assigning them to certain menus. My code is as follows When I run the Below the position updates fine, but the menu_id in Page doesn''t seem to change it all. params["group_#{params[:id]}"].each_with_index do |id, position| Page.update(id, :position => position + 1, :menu => menu) end
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 Mar 05
1
post params
How can I access all the post request to a given controller, regardless of the parameters. For example would I use @allparams = params[] -- Posted via http://www.ruby-forum.com/.
2006 Mar 07
1
has_and_belongs_to_many tags
I''m trying to create a search where I can find pages by their tag name. Here''s a sample of my code (not working). @tags = Page.find(:all, :conditions => ["#{:tag.name} LIKE ?",''%'' + @params[''searchtags''] + ''%'' ]) My enviroment: I''ve got a table called tags, and a table called pages, both with a