def find_page(title, options = {})
title = start_page if title.blank?
title = Wiki.titleize(title)
- page = pages.first(:conditions => ["LOWER(title) LIKE LOWER(?)", title])
+ page = pages.first(:conditions => ["LOWER(title) = LOWER(?)", title])
if !page && !(options[:with_redirect] == false)
# search for a redirect
- redirect = redirects.first(:conditions => ["LOWER(title) LIKE LOWER(?)", title])
+ redirect = redirects.first(:conditions => ["LOWER(title) = LOWER(?)", title])
page = find_page(redirect.redirects_to, :with_redirect => false) if redirect
end
page
require File.expand_path('../../test_helper', __FILE__)
class WikiTest < ActiveSupport::TestCase
- fixtures :wikis, :wiki_pages, :wiki_contents, :wiki_content_versions
+ fixtures :projects, :wikis, :wiki_pages, :wiki_contents, :wiki_content_versions
def test_create
wiki = Wiki.new(:project => Project.find(2))
page = WikiPage.find(10)
assert_equal page, wiki.find_page('Этика_менеджмента')
+
+ page = WikiPage.generate!(:wiki => wiki, :title => '2009\\02\\09')
+ assert_equal page, wiki.find_page('2009\\02\\09')
end
def test_titleize