Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorChristian Johansen <christian@gitorious.com>2013-01-29 08:13:05 (GMT)
committer Christian Johansen <christian@gitorious.com>2013-01-29 08:13:05 (GMT)
commitffdd8e31ab600618274e617913f8f49b16ad8a8d (patch)
tree79cf3cd63db3fe8b8722863da0a5814803f6978a /app
parentaf84d8a3c3094871b1bbf61acd4ad3db8c8a0d26 (diff)
Trailing white-space: Do not want
Diffstat (limited to 'app')
-rw-r--r--app/helpers/blobs_helper.rb22
1 files changed, 11 insertions, 11 deletions
diff --git a/app/helpers/blobs_helper.rb b/app/helpers/blobs_helper.rb
index 7335838..5d2c419 100644
--- a/app/helpers/blobs_helper.rb
+++ b/app/helpers/blobs_helper.rb
@@ -21,7 +21,7 @@
module BlobsHelper
include RepositoriesHelper
include TreesHelper
-
+
HIGHLIGHTER_TO_EXT = {
"apollo"=> /\.(apollo|agc|aea)$/,
"css" => /\.css$/,
@@ -37,21 +37,21 @@ module BlobsHelper
"wiki" => /\.(mediawiki|wikipedia|wiki)$/,
"yaml" => /\.(yaml|yml)$/,
}
-
+
ASCII_MIME_TYPES_EXCEPTIONS = [ /^text/ ]
-
+
def textual?(blob)
!binary?(blob)
end
-
+
def binary?(blob)
blob.binary?
end
-
+
def image?(blob)
blob.mime_type =~ /^image/
end
-
+
def highlightable?(blob)
if File.extname(blob.name) == ""
return false
@@ -61,13 +61,13 @@ module BlobsHelper
end
true
end
-
+
def language_of_file(filename)
if lang_tuple = HIGHLIGHTER_TO_EXT.find{|lang, matcher| filename =~ matcher }
return lang_tuple.first
end
end
-
+
def render_highlighted(text, filename, code_theme_class = nil)
render_highlighted_list(text.to_s.split("\n"), filename, {:code_theme_class => code_theme_class})
end
@@ -97,7 +97,7 @@ module BlobsHelper
out << "</table>"
out.join("\n")
end
-
+
def too_big_to_render?(size)
size > eval(GitoriousConfig["max_render_blob_size"] || '350.kilobytes')
end
@@ -109,7 +109,7 @@ module BlobsHelper
@project = project
@repository = repository
end
-
+
def blame_info_for_commit(commit)
return %Q{<td class="blame_info unchanged"></td>} if commit.id == @previous_sha
author = commit.author.name
@@ -120,6 +120,6 @@ module BlobsHelper
first = ' first' if not @previous_sha
@previous_sha = commit.id
%Q{<td class="blame_info#{first}">#{commit_link}</td>}
- end
+ end
end
end