From my blog (inquirylabs.com): RailDock is a full-text searchable Ruby on Rails documentation site. It is unique in that it brings together the auto-generated “ri” metadata produced by rdoc and Zed Shaw’s RubyOdeum library. Using this combination, a simple Google-suggest style drop-down box can give you a list of valid classes and methods that have any reference to the word or words you are typing in the search box. This means that if you type “redirect_to” and wait for suggestions, you will not only see the ActionController::Base#redirect_to but also ActionController::Flash (for example) since its documentation references redirect_to. Because RailDock uses the automatically generated documentation produced by rdoc, it can be kept precisely up to date with each new release of Ruby on Rails. Future releases will include better search results (currently only a list of pertinent classes and methods are returned if an exact match was not found), and the ability to post comments and code snippets for particular classes or methods. Enjoy! raildock.mytechsupport.com Duane Johnson (canadaduane) _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org lists.rubyonrails.org/mailman/listinfo/rails
"Site: raildock.mytechsupport.com not found." Hmm... On 7/9/05, Duane Johnson <duane.johnson-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> From my blog (inquirylabs.com): > > RailDock is a full-text searchable Ruby on Rails documentation site. It is > unique in that it brings together the auto-generated "ri" metadata produced > by rdoc and Zed Shaw''s RubyOdeum library. > > Using this combination, a simple Google-suggest style drop-down box can give > you a list of valid classes and methods that have any reference to the word > or words you are typing in the search box. This means that if you type > "redirect_to" and wait for suggestions, you will not only see the > ActionController::Base#redirect_to but also > ActionController::Flash (for example) since its documentation references > redirect_to. > > Because RailDock uses the automatically generated documentation produced by > rdoc, it can be kept precisely up to date with each new release of Ruby on > Rails. > > Future releases will include better search results (currently only a list of > pertinent classes and methods are returned if an exact match was not found), > and the ability to post comments and code snippets for particular classes or > methods. > > Enjoy! > > > raildock.mytechsupport.com > > > > Duane Johnson > (canadaduane) > > > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > lists.rubyonrails.org/mailman/listinfo/rails > > >-- Chris Johnson cj-lHH7W0eyjmpWk0Htik3J/w@public.gmane.org
On Jul 9, 2005, at 12:24 PM, Chris Johnson wrote:> "Site: raildock.mytechsupport.com not found." > > Hmm... >I set the DNS last night, so it may take a few hours to propogate... You can use mytechsupport''s DNS in the meantime if you''d like: 67.50.44.242 Duane Johnson (canadaduane)
"Site is down temporarily for maintenance please check back later. Thank you." Darn. On 7/9/05, Duane Johnson <duane.johnson-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On Jul 9, 2005, at 12:24 PM, Chris Johnson wrote: > > "Site: raildock.mytechsupport.com not found." > > > > Hmm... > > > I set the DNS last night, so it may take a few hours to propogate... > > You can use mytechsupport''s DNS in the meantime if you''d like: > 67.50.44.242 > > Duane Johnson > (canadaduane) > > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > lists.rubyonrails.org/mailman/listinfo/rails >-- Chris Boone hypsometry.com : website edification uvlist.org : free classifieds for the Upper Valley
>>> "Site is down temporarily for maintenance >>> please check back later. Thank you." >>> >>> Darn. >>> >>>>> I''m not getting the same response... it seems to be working for me. >> What did you do to get that message? >>On Jul 9, 2005, at 12:58 PM, Chris Boone wrote:> I got that response by going to 67.50.44.242... >Oh, I see. I had intended that you set your DNS to that address in order to access the raildock.mytechsupport.com url. 67.50.44.242 isn''t actually the address of the web server that hosts RailDock, it''s just a nameserver. (RailDock is hosted as a VirtualHost, requiring the URL of the page to be passed in the header, otherwise the web server won''t know which VirtualHost to dish out to the browser--so I can''t just give out the IP address and make it work.) Duane Johnson (canadaduane)
> (RailDock is hosted as a VirtualHost, requiring the URL of the page > to be passed in the header, otherwise the web server won''t know which > VirtualHost to dish out to the browser--so I can''t just give out the > IP address and make it work.)Right now, the dns is resolving fine for me, but I''m getting a mytechsupport.com error page that says railsdock.mytechsupport.com isn''t found. Did you forget to restart apache or add the correct VirtualHost container or something? Tyler
On Jul 9, 2005, at 2:28 PM, Tyler Kiley wrote:> Right now, the dns is resolving fine for me, but I''m getting a > mytechsupport.com error page that says railsdock.mytechsupport.com > isn''t found. Did you forget to restart apache or add the correct > VirtualHost container or something? >Make sure you''re accessing ''raildock'' and not ''railsdock''. Duane Johnson (canadaduane)
Nice. But with the risk of sounding harsh I''m going to attempt myself at some constructive critism (of course, I understand it''s still in the early phases), I''m not sure if that''s what you''re asking for, but I can''t keep my mouth shut on this subject anyway: *It nees more work ;) It being searchable isn''t enough to be a useful documentation alternative I think, the ability to browse is lacking and it''s (currently) only useful as an webbased alternative to ri. With the "relations" being a nice plus. * I assume you''ve seen the documention wiki pages: wiki.rubyonrails.com/rails/show/DocumentationDiscussion -- There''s a lot of good stuff in there (and different opinions as well ;)) on how to make the current docs even better. * This should be opensourced somehow within the community, at least if you''re serious about it being a possible alternative to the current rdoc format. I think you''d be able to get some good improvements that way. (of course this is your project, not mine, and again I''m guessing it''s not at all "done" yet) * html needs to be escaped for instance under paramters: raildock.mytechsupport.com/ri/ActionController::Base But great initiative, keep it going! -- johan On 7/9/05, Duane Johnson <duane.johnson-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> From my blog (inquirylabs.com): > > RailDock is a full-text searchable Ruby on Rails documentation site. It is > unique in that it brings together the auto-generated "ri" metadata produced > by rdoc and Zed Shaw''s RubyOdeum library. > > Using this combination, a simple Google-suggest style drop-down box can give > you a list of valid classes and methods that have any reference to the word > or words you are typing in the search box. This means that if you type > "redirect_to" and wait for suggestions, you will not only see the > ActionController::Base#redirect_to but also ActionController::Flash (for > example) since its documentation references redirect_to. > > Because RailDock uses the automatically generated documentation produced by > rdoc, it can be kept precisely up to date with each new release of Ruby on > Rails. > > Future releases will include better search results (currently only a list of > pertinent classes and methods are returned if an exact match was not found), > and the ability to post comments and code snippets for particular classes or > methods. > > Enjoy! > > > raildock.mytechsupport.com > > > > Duane Johnson > (canadaduane) > > > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > lists.rubyonrails.org/mailman/listinfo/rails > > >-- johansorensen.com theexciter.com
Hi Duane, same problem here trying to access: raildock.mytechsupport.com i''ve got a mytechsupport error page: Site: raildock.mytechsupport.com not found. Richard> On Jul 9, 2005, at 2:28 PM, Tyler Kiley wrote: > > Right now, the dns is resolving fine for me, but I''m getting a > > mytechsupport.com error page that says railsdock.mytechsupport.com > > isn''t found. Did you forget to restart apache or add the correct > > VirtualHost container or something? > > > > Make sure you''re accessing ''raildock'' and not ''railsdock''. > > Duane Johnson > (canadaduane) > > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > lists.rubyonrails.org/mailman/listinfo/rails
Duane Johnson wrote:> From my blog (inquirylabs.com): > > RailDock is a full-text searchable Ruby on Rails documentation site. It > is unique in that it brings together the auto-generated “ri” metadata > produced by rdoc and Zed Shaw’s RubyOdeum library.Oh, quite nice! Is the source available? James -- ruby-doc.org - The Ruby Documentation Site rubyxml.com - News, Articles, and Listings for Ruby & XML rubystuff.com - The Ruby Store for Ruby Stuff jamesbritt.com - Playing with Better Toys
On 7/9/05, Richard Piacentini <ricp-nFa1xD8ZTHc@public.gmane.org> wrote:> Hi Duane, > > same problem here trying to access: raildock.mytechsupport.com > > i''ve got a mytechsupport error page: > > Site: raildock.mytechsupport.com not found. > > Richard+1 -- Regards, John Wilger ----------- Alice came to a fork in the road. "Which road do I take?" she asked. "Where do you want to go?" responded the Cheshire cat. "I don''t know," Alice answered. "Then," said the cat, "it doesn''t matter." - Lewis Carrol, Alice in Wonderland
On Jul 9, 2005, at 8:41 PM, John Wilger wrote:> On 7/9/05, Richard Piacentini <ricp-nFa1xD8ZTHc@public.gmane.org> wrote: > >> Hi Duane, >> >> same problem here trying to access: http:// >> raildock.mytechsupport.com >> >> i''ve got a mytechsupport error page: >> >> Site: raildock.mytechsupport.com not found. >> >> Richard >> > > +1Apologies to everyone who''s experiencing this. I guess I announced it prematurely--the nameservers are still distributing the IP address around the internet. For those of you who are experiencing this error page it''s because your DNS server hasn''t yet received the update to point to the raildock server address (our development box). Instead, you are being directed to our production server by a DNS catch-all subdomain. The error page is showing up because the production server is not hosting the application right now. Regards, Duane Johnson (canadaduane) _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org lists.rubyonrails.org/mailman/listinfo/rails
I''m resolving it... and its a nice app, good job. On 7/10/05, Duane Johnson <duane.johnson-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > > On Jul 9, 2005, at 8:41 PM, John Wilger wrote: > On 7/9/05, Richard Piacentini <ricp-nFa1xD8ZTHc@public.gmane.org> wrote: > > Hi Duane, > > same problem here trying to access: > raildock.mytechsupport.com > > i''ve got a mytechsupport error page: > > Site: raildock.mytechsupport.com not found. > > Richard > > +1 > > Apologies to everyone who''s experiencing this. I guess I announced it > prematurely--the nameservers are still distributing the IP address around > the internet. > > For those of you who are experiencing this error page it''s because your DNS > server hasn''t yet received the update to point to the raildock server > address (our development box). Instead, you are being directed to our > production server by a DNS catch-all subdomain. The error page is showing > up because the production server is not hosting the application right now. > > Regards, > Duane Johnson > (canadaduane) > > > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > lists.rubyonrails.org/mailman/listinfo/rails > > >-- "Force Feedback Computing Since 1984" modelm.org clubpacswestmi.net/ronsweeney clubpacswestmi.net