From 70e0edf000289b1907b8aee386daf23577f6bc08 Mon Sep 17 00:00:00 2001 From: Tony Jian Date: Sun, 29 Apr 2012 14:15:36 +0800 Subject: Make non English title indexable (such as Chinese or Japanese) using MD5. --- guides/rails_guides/indexer.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/guides/rails_guides/indexer.rb b/guides/rails_guides/indexer.rb index 89fbccbb1d..1847f09881 100644 --- a/guides/rails_guides/indexer.rb +++ b/guides/rails_guides/indexer.rb @@ -59,8 +59,9 @@ module RailsGuides def title_to_idx(title) idx = title.strip.parameterize.sub(/^\d+/, '') - if warnings && idx.blank? - puts "BLANK ID: please put an explicit ID for section #{title}, as in h5(#my-id)" + if idx.blank? + puts "BLANK ID: please put an explicit ID for section #{title}, as in h5(#my-id)" if warnings + idx = ("id-"+Digest::MD5.hexdigest(title.strip)).parameterize.sub(/^\d+/, '') end idx end -- cgit v1.2.3