mirror of
https://github.com/internetee/registry.git
synced 2025-07-24 03:30:33 +02:00
Merge pull request #1345 from internetee/clickable-version-string
Clickable version string
This commit is contained in:
commit
f26031d539
7 changed files with 18 additions and 5 deletions
|
@ -15,6 +15,9 @@ body > .container
|
||||||
padding-top: 15px
|
padding-top: 15px
|
||||||
font-size: 10px
|
font-size: 10px
|
||||||
|
|
||||||
|
a.footer-version-link
|
||||||
|
color: black
|
||||||
|
|
||||||
.nowrap
|
.nowrap
|
||||||
white-space: nowrap
|
white-space: nowrap
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,15 @@ module ApplicationHelper
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def current_commit_link
|
||||||
|
hash = CURRENT_COMMIT_HASH
|
||||||
|
current_repo = CURRENT_COMMIT_REPO.gsub('com:', 'com/')
|
||||||
|
.gsub('git@', 'https://')
|
||||||
|
.gsub('.git', '')
|
||||||
|
|
||||||
|
link_to hash.to_s, "#{current_repo}/commit/#{hash}", class: 'footer-version-link'
|
||||||
|
end
|
||||||
|
|
||||||
def creator_link(model)
|
def creator_link(model)
|
||||||
return 'not present' if model.blank?
|
return 'not present' if model.blank?
|
||||||
return 'unknown' if model.creator.blank?
|
return 'unknown' if model.creator.blank?
|
||||||
|
@ -96,4 +105,4 @@ module ApplicationHelper
|
||||||
def body_css_class
|
def body_css_class
|
||||||
[controller_path.split('/').map!(&:dasherize), action_name.dasherize, 'page'].join('-')
|
[controller_path.split('/').map!(&:dasherize), action_name.dasherize, 'page'].join('-')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -32,5 +32,5 @@
|
||||||
|
|
||||||
.footer.text-right
|
.footer.text-right
|
||||||
Version
|
Version
|
||||||
= CURRENT_COMMIT_HASH
|
= current_commit_link
|
||||||
= javascript_include_tag 'admin-manifest', async: true
|
= javascript_include_tag 'admin-manifest', async: true
|
||||||
|
|
|
@ -76,7 +76,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6 text-right">
|
<div class="col-md-6 text-right">
|
||||||
Version
|
Version
|
||||||
<%= CURRENT_COMMIT_HASH %>
|
<%= current_commit_link %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6 text-right">
|
<div class="col-md-6 text-right">
|
||||||
Version
|
Version
|
||||||
<%= CURRENT_COMMIT_HASH %>
|
<%= current_commit_link %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6 text-right">
|
<div class="col-md-6 text-right">
|
||||||
Version
|
Version
|
||||||
<%= CURRENT_COMMIT_HASH %>
|
<%= current_commit_link %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
CURRENT_COMMIT_HASH = `git rev-parse --short HEAD`
|
CURRENT_COMMIT_HASH = `git rev-parse --short HEAD`
|
||||||
|
CURRENT_COMMIT_REPO = `git remote get-url origin`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue