Merge branch 'bzr/golem' of /Users/distler/Sites/code/instiki
This commit is contained in:
commit
f5f3d76c99
|
@ -10,13 +10,13 @@ class String
|
||||||
# returns a valid utf-8 string, purged of any subsequences of illegal bytes.
|
# returns a valid utf-8 string, purged of any subsequences of illegal bytes.
|
||||||
#--
|
#--
|
||||||
def purify
|
def purify
|
||||||
text = expand_ncrs
|
text = check_ncrs
|
||||||
text.split(//u).grep(UTF8_REGEX).join
|
text.split(//u).grep(UTF8_REGEX).join
|
||||||
end
|
end
|
||||||
|
|
||||||
def expand_ncrs
|
def check_ncrs
|
||||||
text = gsub(/&#[xX]([a-fA-F0-9]+);/) { |m| [$1.hex].pack('U*') }
|
text = gsub(/&#[xX]([a-fA-F0-9]+);/) { |m| [$1.hex].pack('U*') =~ UTF8_REGEX ? m : '' }
|
||||||
text.gsub!(/&#(\d+);/) { |m| [$1.to_i].pack('U*') }
|
text.gsub!(/&#(\d+);/) { |m| [$1.to_i].pack('U*') =~ UTF8_REGEX ? m : '' }
|
||||||
text
|
text
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ class String
|
||||||
#--
|
#--
|
||||||
def is_utf8?
|
def is_utf8?
|
||||||
#expand NCRs to utf-8
|
#expand NCRs to utf-8
|
||||||
text = self.expand_ncrs
|
text = self.check_ncrs
|
||||||
|
|
||||||
# You might think this is faster, but it isn't
|
# You might think this is faster, but it isn't
|
||||||
#pieces = self.split(/&#[xX]([a-fA-F0-9]+);/)
|
#pieces = self.split(/&#[xX]([a-fA-F0-9]+);/)
|
||||||
|
|
|
@ -771,6 +771,12 @@ class WikiControllerTest < ActionController::TestCase
|
||||||
new_page = @wiki.read_page('wiki1', 'AnotherPage')
|
new_page = @wiki.read_page('wiki1', 'AnotherPage')
|
||||||
assert_equal 'AnonymousCoward', new_page.author
|
assert_equal 'AnonymousCoward', new_page.author
|
||||||
|
|
||||||
|
r = process 'save', 'web' => 'wiki1', 'id' => 'AnotherPage', 'content' => 'Revised contents of a new page',
|
||||||
|
'author' => "Geo�rge & June"
|
||||||
|
|
||||||
|
assert_redirected_to :action => 'show', :controller => 'wiki', :web => 'wiki1', :id => 'AnotherPage'
|
||||||
|
new_page = @wiki.read_page('wiki1', 'AnotherPage')
|
||||||
|
assert_equal 'George & June', new_page.author
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_search
|
def test_search
|
||||||
|
|
Loading…
Reference in a new issue