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
Tatuya Kamada
gitlab-ce
Commits
58c562a9
Commit
58c562a9
authored
Jul 20, 2016
by
winniehell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove magic comments from Ruby files (!5456)
parent
03738bdd
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
1 addition
and
15 deletions
+1
-15
CHANGELOG
CHANGELOG
+1
-0
app/helpers/commits_helper.rb
app/helpers/commits_helper.rb
+0
-1
app/uploaders/artifact_uploader.rb
app/uploaders/artifact_uploader.rb
+0
-1
app/uploaders/attachment_uploader.rb
app/uploaders/attachment_uploader.rb
+0
-2
app/uploaders/avatar_uploader.rb
app/uploaders/avatar_uploader.rb
+0
-2
app/uploaders/file_uploader.rb
app/uploaders/file_uploader.rb
+0
-1
app/uploaders/lfs_object_uploader.rb
app/uploaders/lfs_object_uploader.rb
+0
-2
spec/lib/banzai/filter/relative_link_filter_spec.rb
spec/lib/banzai/filter/relative_link_filter_spec.rb
+0
-2
spec/lib/banzai/filter/table_of_contents_filter_spec.rb
spec/lib/banzai/filter/table_of_contents_filter_spec.rb
+0
-2
spec/lib/banzai/filter/upload_link_filter_spec.rb
spec/lib/banzai/filter/upload_link_filter_spec.rb
+0
-2
No files found.
CHANGELOG
View file @
58c562a9
Please view this file on the master branch, on stable branches it's out of date.
Please view this file on the master branch, on stable branches it's out of date.
v 8.11.0 (unreleased)
v 8.11.0 (unreleased)
- Remove magic comments (`# encoding: UTF-8`) from Ruby files !5456 (winniehell)
- Fix of 'Commits being passed to custom hooks are already reachable when using the UI'
- Fix of 'Commits being passed to custom hooks are already reachable when using the UI'
- Limit git rev-list output count to one in forced push check
- Limit git rev-list output count to one in forced push check
- Retrieve rendered HTML from cache in one request
- Retrieve rendered HTML from cache in one request
...
...
app/helpers/commits_helper.rb
View file @
58c562a9
# encoding: utf-8
module
CommitsHelper
module
CommitsHelper
# Returns a link to the commit author. If the author has a matching user and
# Returns a link to the commit author. If the author has a matching user and
# is a member of the current @project it will link to the team member page.
# is a member of the current @project it will link to the team member page.
...
...
app/uploaders/artifact_uploader.rb
View file @
58c562a9
# encoding: utf-8
class
ArtifactUploader
<
CarrierWave
::
Uploader
::
Base
class
ArtifactUploader
<
CarrierWave
::
Uploader
::
Base
storage
:file
storage
:file
...
...
app/uploaders/attachment_uploader.rb
View file @
58c562a9
# encoding: utf-8
class
AttachmentUploader
<
CarrierWave
::
Uploader
::
Base
class
AttachmentUploader
<
CarrierWave
::
Uploader
::
Base
include
UploaderHelper
include
UploaderHelper
...
...
app/uploaders/avatar_uploader.rb
View file @
58c562a9
# encoding: utf-8
class
AvatarUploader
<
CarrierWave
::
Uploader
::
Base
class
AvatarUploader
<
CarrierWave
::
Uploader
::
Base
include
UploaderHelper
include
UploaderHelper
...
...
app/uploaders/file_uploader.rb
View file @
58c562a9
# encoding: utf-8
class
FileUploader
<
CarrierWave
::
Uploader
::
Base
class
FileUploader
<
CarrierWave
::
Uploader
::
Base
include
UploaderHelper
include
UploaderHelper
MARKDOWN_PATTERN
=
%r{
\!
?
\[
.*?
\]\(
/uploads/(?<secret>[0-9a-f]{32})/(?<file>.*?)
\)
}
MARKDOWN_PATTERN
=
%r{
\!
?
\[
.*?
\]\(
/uploads/(?<secret>[0-9a-f]{32})/(?<file>.*?)
\)
}
...
...
app/uploaders/lfs_object_uploader.rb
View file @
58c562a9
# encoding: utf-8
class
LfsObjectUploader
<
CarrierWave
::
Uploader
::
Base
class
LfsObjectUploader
<
CarrierWave
::
Uploader
::
Base
storage
:file
storage
:file
...
...
spec/lib/banzai/filter/relative_link_filter_spec.rb
View file @
58c562a9
# encoding: UTF-8
require
'spec_helper'
require
'spec_helper'
describe
Banzai
::
Filter
::
RelativeLinkFilter
,
lib:
true
do
describe
Banzai
::
Filter
::
RelativeLinkFilter
,
lib:
true
do
...
...
spec/lib/banzai/filter/table_of_contents_filter_spec.rb
View file @
58c562a9
# encoding: UTF-8
require
'spec_helper'
require
'spec_helper'
describe
Banzai
::
Filter
::
TableOfContentsFilter
,
lib:
true
do
describe
Banzai
::
Filter
::
TableOfContentsFilter
,
lib:
true
do
...
...
spec/lib/banzai/filter/upload_link_filter_spec.rb
View file @
58c562a9
# encoding: UTF-8
require
'spec_helper'
require
'spec_helper'
describe
Banzai
::
Filter
::
UploadLinkFilter
,
lib:
true
do
describe
Banzai
::
Filter
::
UploadLinkFilter
,
lib:
true
do
...
...
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