discourse/lib/slug.rb

22 lines
519 B
Ruby
Raw Normal View History

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