any ideas, guys??
On May 24, 8:47 pm, Deepti Tiwari <li...@ruby-forum.com> wrote:
> Hi,
>
> I am looking for a solution to generate 'Automatedsitemap.xml' in ROR.
> Is there any gem available for the same or if there is any other
> solution..?? I was earlier using site map generator but that doesn't
> fulfill my purpose anymore.
> --
> Posted viahttp://www.ruby-forum.com/.
>
> --
> 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@googlegroups.com.
> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
> For more options, visit this group athttp://groups.google.com/group/rubyonrails-talk?hl=en.
--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Max Williams wrote:
> Thanks Marnen but i don't want to switch from mysql to postgres right
> now.
Then you'll have to put your full-text-indexable field in a MyISAM
table. Yuck. You can do it, but switching to Postgres will give you
fewer problems. (Postgres has numerous other advantages too.)
> Can anyone actually recommend a search plugin rather than telling
> me i don't need one?
Why? IMHO you're just making your life harder by asking for what
appears to be an unnecessary tool. If you think I'm wrong, please
explain why you believe you need one in light of what's already been
suggested in this thread.
Best,
--
Marnen Laibow-Koser
http://www.marnen.org
marnen@marnen.org
Sent from my iPhone
--
Posted via http://www.ruby-forum.com/.
--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
hello,
I am facing a problem in while defining named routes
Here is my code in config/routes.rb
map.addon '/addons',:controller => 'settings',:action => 'addons'
map.demonstration '/demonstrations',:controller => 'settings',:action
=> 'demonstrations'
map.support '/supports',:controller => 'settings',:action =>
'supports'
map.overview '/overviews',:controller => 'settings','action' =>
'overviews'
map.download '/downloads' ,:controller => 'settings' ,'action' =>
'downloads'
map.documentation '/documentations',:controller => 'settings',:action
=> 'documentations'
Now when I try to access the /overviews page I get the following errors
Unknown action
No action responded to index. Actions: addons, demonstrations,
documentations, downloads, overviews, and supports
so I ran rake routes and found that this
addon /addons {:action=>"addons",:controller=>"settings"}
demonstration /demonstrations {:action=>"demonstrations",
:controller=>"settings"}
support /supports {:action=>"supports",:controller=>"settings"}
<b> overview /overviews {:action=>"index", :controller=>"settings",
"action"=>"overviews"} </b>
<b> download /downloads {:action=>"index", :controller=>"settings",
"action"=>"downloads"} </b>
documentation /documentations
{:action=>"documentations",:controller=>"settings"}
Look that rake routes generated for '/overviews' and '/downloads' which
is weird in my sense
I have define named routes many times never such weird info in rake
routes neither the above error
Any help would be appreciated
--
Posted via http://www.ruby-forum.com/.
--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.