Skip to content

Commit

Permalink
README updated with a couple of friendly reminders
Browse files Browse the repository at this point in the history
  • Loading branch information
joemsak committed Jul 22, 2010
1 parent 1bf6a4a commit 284cb30
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions readme.md
Expand Up @@ -11,6 +11,8 @@ Just 'git clone' Refinery, install this as a plugin using:

You'll also need to create a page (from the 'Pages' tab) with a custom URL of '/search'. You can set a custom URL for a page in the Advanced Options. It's probably also a good idea to uncheck the 'show in menu' option for this page.

Remember to restart your server.

A sample search form can be found in views/shared/_search.html.erb . You can either use this partial directly, or copy the appropriate parts.

## Searching in plugins
Expand All @@ -27,4 +29,8 @@ Any model you wish to search will need to be indexed using acts as indexed. To a

acts_as_indexed :fields => [:title, :body], :index_file => [Rails.root.to_s, "tmp", "index"]

If your model doesn't use a :title attribute, remember to use an alias_attribute:

alias_attribute :title, :name #for example

to the model. Obviously, replaced the indexed fields with those appropriate for your model. The above line will add indexing to PortfolioEntry in the portfolio plugin, which does not come indexed.

0 comments on commit 284cb30

Please sign in to comment.