Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
ee5504ad3a14
Commit
4eb3c47d
authored
Dec 14, 2014
by
Jeroen van Baarsen
Browse files
Fixed a lot of already defined notices
Signed-off-by:
Jeroen van Baarsen
<
jeroenvanbaarsen@gmail.com
>
parent
7f0e6ce6dfb8
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/models/commit.rb
View file @
ee5504ad
...
...
@@ -10,12 +10,12 @@ class Commit
# Used to prevent 500 error on huge commits by suppressing diff
#
# User can force display of diff above this size
DIFF_SAFE_FILES
=
100
DIFF_SAFE_LINES
=
5000
DIFF_SAFE_FILES
=
100
unless
defined?
(
DIFF_SAFE_FILES
)
DIFF_SAFE_LINES
=
5000
unless
defined?
(
DIFF_SAFE_LINES
)
# Commits above this size will not be rendered in HTML
DIFF_HARD_LIMIT_FILES
=
1000
DIFF_HARD_LIMIT_LINES
=
50000
DIFF_HARD_LIMIT_FILES
=
1000
unless
defined?
(
DIFF_HARD_LIMIT_FILES
)
DIFF_HARD_LIMIT_LINES
=
50000
unless
defined?
(
DIFF_HARD_LIMIT_LINES
)
class
<<
self
def
decorate
(
commits
)
...
...
app/models/project_wiki.rb
View file @
ee5504ad
...
...
@@ -5,7 +5,7 @@ class ProjectWiki
'Markdown'
=>
:markdown
,
'RDoc'
=>
:rdoc
,
'AsciiDoc'
=>
:asciidoc
}
}
unless
defined?
(
MARKUPS
)
class
CouldNotCreateWikiError
<
StandardError
;
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment