2012-01-31 23:20:42 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
|
|
|
module Gollum
|
|
|
|
class Page
|
2012-02-13 23:29:33 +00:00
|
|
|
def name_with_encoding
|
|
|
|
name_without_encoding.encode_to_default
|
2012-01-31 23:20:42 +00:00
|
|
|
end
|
|
|
|
|
2012-02-13 23:29:33 +00:00
|
|
|
alias_method_chain :name, :encoding
|
|
|
|
|
2012-01-31 23:20:42 +00:00
|
|
|
end
|
|
|
|
end
|