mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
20 lines
506 B
Ruby
20 lines
506 B
Ruby
# encoding: utf-8
|
|
|
|
|
|
module Slug
|
|
|
|
def self.for(string)
|
|
slug = string.gsub("'", "").parameterize
|
|
slug.gsub!("_", "-")
|
|
# 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
|
|
end
|
|
slug =~ /[^\d]/ ? slug : '' # Reject slugs that only contain numbers, because they would be indistinguishable from id's.
|
|
end
|
|
|
|
end
|