Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
4eb3c47d
Commit
4eb3c47d
authored
Dec 14, 2014
by
Jeroen van Baarsen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a lot of already defined notices
Signed-off-by:
Jeroen van Baarsen
<
jeroenvanbaarsen@gmail.com
>
parent
24972730
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
app/models/commit.rb
app/models/commit.rb
+4
-4
app/models/project_wiki.rb
app/models/project_wiki.rb
+1
-1
No files found.
app/models/commit.rb
View file @
4eb3c47d
...
...
@@ -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 @
4eb3c47d
...
...
@@ -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