summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-06-23 06:39:58 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-06-23 06:39:58 +0000
commit73c1030da1318284495288461210e8d145aa7181 (patch)
tree4f0274827c0777f037a8cfb9580557d29dc36030 /app
parent68e4a68223f76cfa27bc55c5bcc822e3b5097007 (diff)
parente0c725c55f4cb3a70246f2eb3a28be7a0ca8b3a8 (diff)
downloadgitlab-ce-73c1030da1318284495288461210e8d145aa7181.tar.gz
Merge branch 'fix-go-meta-tag' into 'master'
Fix go meta tag See https://github.com/gitlabhq/gitlabhq/pull/5958#issuecomment-45397555
Diffstat (limited to 'app')
-rw-r--r--app/views/layouts/_head.html.haml13
1 files changed, 8 insertions, 5 deletions
diff --git a/app/views/layouts/_head.html.haml b/app/views/layouts/_head.html.haml
index d9a7a2d31cf..32dff0c6708 100644
--- a/app/views/layouts/_head.html.haml
+++ b/app/views/layouts/_head.html.haml
@@ -1,5 +1,13 @@
%head
%meta{charset: "utf-8"}
+
+ -# Go repository retrieval support
+ -# Need to be the fist thing in the head
+ -# Since Go is using an XML parser to process HTML5
+ -# https://github.com/gitlabhq/gitlabhq/pull/5958#issuecomment-45397555
+ - if controller_name == 'projects' && action_name == 'show'
+ %meta{name: "go-import", content: "#{@project.web_url_without_protocol} git #{@project.web_url}.git"}
+
%title
= "#{title} | " if defined?(title)
GitLab
@@ -24,8 +32,3 @@
= auto_discovery_link_tag(:atom, project_commits_url(@project, @ref, format: :atom, private_token: current_user.private_token), title: "Recent commits to #{@project.name}:#{@ref}")
- if current_controller?(:issues)
= auto_discovery_link_tag(:atom, project_issues_url(@project, :atom, private_token: current_user.private_token), title: "#{@project.name} issues")
-
- -# Go repository retrieval support.
- - if controller_name == 'projects' && action_name == 'show'
- %meta{name: "go-import", content: "#{@project.web_url_without_protocol} git #{@project.web_url}.git"}
-