2013-02-05 14:16:51 -05:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2014-09-16 19:15:05 +08:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
module Slug
|
|
|
|
|
|
|
|
def self.for(string)
|
2013-06-03 09:08:34 +10:00
|
|
|
slug = string.gsub("'", "").parameterize
|
|
|
|
slug.gsub!("_", "-")
|
2014-11-18 11:47:04 +11:00
|
|
|
# TODO review if ja should use this
|
|
|
|
# ko asked for it to be removed
|
|
|
|
if ['zh_CN', 'ja'].include?(SiteSetting.default_locale)
|
2014-09-16 19:15:05 +08:00
|
|
|
unless defined? Stringex
|
|
|
|
require 'stringex_lite'
|
|
|
|
end
|
|
|
|
slug = string.to_url
|
|
|
|
end
|
2013-05-30 11:54:02 -04:00
|
|
|
slug =~ /[^\d]/ ? slug : '' # Reject slugs that only contain numbers, because they would be indistinguishable from id's.
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|