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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
cc8de0e5
Commit
cc8de0e5
authored
Apr 23, 2015
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce
parents
ac4968b9
d4fb062d
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
2 deletions
+7
-2
CHANGELOG
CHANGELOG
+1
-0
app/controllers/application_controller.rb
app/controllers/application_controller.rb
+4
-0
app/views/layouts/_head.html.haml
app/views/layouts/_head.html.haml
+1
-1
config/initializers/6_rack_profiler.rb
config/initializers/6_rack_profiler.rb
+1
-1
No files found.
CHANGELOG
View file @
cc8de0e5
...
@@ -4,6 +4,7 @@ v 7.11.0 (unreleased)
...
@@ -4,6 +4,7 @@ v 7.11.0 (unreleased)
- Fix clone URL field and X11 Primary selection (Dmitry Medvinsky)
- Fix clone URL field and X11 Primary selection (Dmitry Medvinsky)
- Ignore invalid lines in .gitmodules
- Ignore invalid lines in .gitmodules
- Fix "Cannot move project" error message from popping up after a successful transfer (Stan Hu)
- Fix "Cannot move project" error message from popping up after a successful transfer (Stan Hu)
- Redirect to sign in page after signing out.
-
-
- Add "Reply quoting selected text" shortcut key (`r`)
- Add "Reply quoting selected text" shortcut key (`r`)
- Fix bug causing `@whatever` inside an issue's first code block to be picked up as a user mention.
- Fix bug causing `@whatever` inside an issue's first code block to be picked up as a user mention.
...
...
app/controllers/application_controller.rb
View file @
cc8de0e5
...
@@ -87,6 +87,10 @@ class ApplicationController < ActionController::Base
...
@@ -87,6 +87,10 @@ class ApplicationController < ActionController::Base
end
end
end
end
def
after_sign_out_path_for
(
resource
)
new_user_session_path
end
def
abilities
def
abilities
Ability
.
abilities
Ability
.
abilities
end
end
...
...
app/views/layouts/_head.html.haml
View file @
cc8de0e5
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
=
render
'layouts/google_analytics'
if
extra_config
.
has_key?
(
'google_analytics_id'
)
=
render
'layouts/google_analytics'
if
extra_config
.
has_key?
(
'google_analytics_id'
)
=
render
'layouts/piwik'
if
extra_config
.
has_key?
(
'piwik_url'
)
&&
extra_config
.
has_key?
(
'piwik_site_id'
)
=
render
'layouts/piwik'
if
extra_config
.
has_key?
(
'piwik_url'
)
&&
extra_config
.
has_key?
(
'piwik_site_id'
)
=
render
'layouts/bootlint'
if
Rails
.
env
==
'development'
=
render
'layouts/bootlint'
if
Rails
.
env
.
development?
-# Atom feed
-# Atom feed
-
if
current_user
-
if
current_user
...
...
config/initializers/6_rack_profiler.rb
View file @
cc8de0e5
if
Rails
.
env
==
'development'
if
Rails
.
env
.
development?
require
'rack-mini-profiler'
require
'rack-mini-profiler'
# initialization is skipped so trigger it
# initialization is skipped so trigger it
...
...
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