From why at whytheluckystiff.net Mon Apr 7 15:17:01 2008 From: why at whytheluckystiff.net (_why) Date: Mon, 7 Apr 2008 14:17:01 -0500 Subject: camping moved to github In-Reply-To: <20080111073827.GI7513@beekeeper.hobix.com> References: <20080111073827.GI7513@beekeeper.hobix.com> Message-ID: <20080407191701.GW27840@beekeeper.hobix.com> In the better interest of helping all of you feel more welcome to contribute. http://github.com/why/camping I will probably close Trac and move to ditz for bug management, if zimbatm doesn't mind at all. You can look at Shoes' bugs/ directory for a sneak peek at how that all turns out. _why From zimbatm at oree.ch Mon Apr 7 16:55:52 2008 From: zimbatm at oree.ch (Jonas Pfenniger) Date: Mon, 7 Apr 2008 22:55:52 +0200 Subject: camping moved to github In-Reply-To: <20080407191701.GW27840@beekeeper.hobix.com> References: <20080111073827.GI7513@beekeeper.hobix.com> <20080407191701.GW27840@beekeeper.hobix.com> Message-ID: 2008/4/7 _why : > In the better interest of helping all of you feel more welcome to > contribute. > > http://github.com/why/camping > I will probably close Trac and move to ditz for bug management, if > zimbatm doesn't mind at all. You can look at Shoes' bugs/ directory > for a sneak peek at how that all turns out. why not.. I don't really understand what makes github so special but git the RCS is quite nice. Concerning ditz, it makes sense to have bugs related to a particular version of a code. I'm not sure if I should expect camping users to understand git and ditz to report bugs, but why not ? -- Cheers, zimbatm -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/camping-list/attachments/20080407/4831e9de/attachment.html From ironald at gmail.com Wed Apr 9 23:53:05 2008 From: ironald at gmail.com (RonaldEvangelista) Date: Wed, 09 Apr 2008 20:53:05 -0700 Subject: help on ajax autocompleter Message-ID: <47FD8F21.9000209@gmail.com> the div list of words doesn't get updated # controller class Words < R '/words' def get ("word01".."word20").each{|w| (@words ||='') << "
  • #{w}
  • "} render :_list @words end end #views # def layout html do head do link :rel => 'stylesheet', :type => 'text/css', :href => '/static/style.css', :media => 'all' ['prototype', 'effects', 'controls','search'].each do |s| script :src => "/static/#{s}.js", :type => 'text/javascript' end #... end end end def _links @words end def search #... form({:method=>'GET'}.merge(options)) do p do input.search :id=>'search', :type=>'text', :name=>'search' end div.search(:id=>'results', :style=>"display: block;") do p "Results:" _links end input :type=>'submit', :value=>'search' #... end #here's the search.js got this off a werbrick sample... # http://www.jhl.it/Courses/LUGPC7.html document.observe('dom:loaded', function() { new Ajax.Autocompleter('search', 'results', '/words', { method: 'get', minChars: 2, updateElement: function(item) { /* no update */ } }); }); sample code in camping would be very helpful. thanks! From ironald at gmail.com Thu Apr 10 02:44:47 2008 From: ironald at gmail.com (RonaldEvangelista) Date: Wed, 09 Apr 2008 23:44:47 -0700 Subject: help on ajax autocompleter Message-ID: <47FDB75F.8000305@gmail.com> got it working! twas just my crappy css. camping rules! From john.beppu at gmail.com Sun Apr 27 04:58:27 2008 From: john.beppu at gmail.com (John Beppu) Date: Sun, 27 Apr 2008 01:58:27 -0700 Subject: camping moved to github In-Reply-To: References: <20080111073827.GI7513@beekeeper.hobix.com> <20080407191701.GW27840@beekeeper.hobix.com> Message-ID: <21a10fe00804270158g54950f31r175d4671ef445422@mail.gmail.com> On Mon, Apr 7, 2008 at 1:55 PM, Jonas Pfenniger wrote: > why not.. I don't really understand what makes github so special but git > the RCS is quite nice. > > -- > Cheers, > zimbatm I usually hate social networks, but I'm really digging github. I like it, because it lets me feel more in tune w/ the projects that I care about. Being able to follow a project or a coder and get updates when something interesting happens makes coding feel a bit more communal, and I think that's a good thing. --beppu -------------- next part -------------- An HTML attachment was scrubbed... URL: