Merge branch 'fix-go-meta-tag' into 'master'

Fix go meta tag

See https://github.com/gitlabhq/gitlabhq/pull/5958#issuecomment-45397555
This commit is contained in:
Dmitriy Zaporozhets 2014-06-23 06:39:58 +00:00
commit 73c1030da1
1 changed files with 8 additions and 5 deletions

View File

@ -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"}