Merge branch 'fix_encoding' of https://github.com/brodock/gitlabhq into brodock-fix_encoding

Conflicts:
	lib/gitlab/encode.rb
This commit is contained in:
randx 2012-05-27 12:20:35 +03:00
commit d72f8db08a
5 changed files with 29 additions and 13 deletions

View file

@ -8,7 +8,7 @@
%strong.cgray= commit.author_name
–
= image_tag gravatar_icon(commit.author_email), :class => "avatar", :width => 16
%span.row_title= truncate(commit.safe_message, :length => 50) rescue "--broken encoding"
%span.row_title= truncate(commit.safe_message, :length => 50)
%span.right.cgray
= time_ago_in_words(commit.committed_date)

View file

@ -42,9 +42,9 @@
.readme
- if content.name =~ /\.(md|markdown)$/i
= preserve do
= markdown(content.data.force_encoding('UTF-8'))
= markdown(content.data.detect_encoding!)
- else
= simple_format(content.data.force_encoding('UTF-8'))
= simple_format(content.data.detect_encoding!)
- if params[:path]
- history_path = tree_file_project_ref_path(@project, @ref, params[:path])

View file

@ -13,7 +13,7 @@
#tree-readme-holder
.readme
= preserve do
= markdown(file.data.force_encoding('UTF-8'))
= markdown(file.data.detect_encoding!)
- else
.view_file_content
- unless file.empty?