Sha256: 2f13badd66975d1253dcd210868976b4bc5aa717954e1c8b35c4b361561a3d48

Contents?: true

Size: 1.88 KB

Versions: 28

Compression:

Stored size: 1.88 KB

Contents

<%#
# encoding: utf-8
#--
#   Copyright (C) 2012-2013 Gitorious AS
#
#   This program is free software: you can redistribute it and/or modify
#   it under the terms of the GNU Affero General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU Affero General Public License for more details.
#
#   You should have received a copy of the GNU Affero General Public License
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
#++
%>
<% @title = "History of #{path}" %>
<div class="container gts-body">
  <div class="gts-browser">
    <div class="gts-ref-selector-ph"></div>
    <ul class="pull-right gts-blob-view">
      <li><a href="<%= blob_url(repository_slug, ref, path) %>">Blob content</a></li>
      <li><a href="<%= blame_url(repository_slug, ref, path) %>">Blame</a></li>
      <li class="active">History</li>
      <li><a href="<%= raw_url(repository_slug, ref, path) %>">Raw blob</a></li>
    </ul>
    <%= breadcrumb(repository_slug, ref, path) %>
    <% commits.each do |commit| %>
      <div class="gts-commit">
        <p class="gts-log-message">
          <span class="gts-commit-oid" data-gts-commit-oid="<%= commit[:oid] %>"><%= commit_oid(commit[:oid]) %></span>:
          <%= commit[:summary] %>
        </p>
        <p>
          <span class="gts-commit-author">
            <img width="24" height="24" src="<%= gravatar(commit[:author][:email]) %>" alt="avatar" class="gts-avatar">
            <%= commit[:author][:name] %>
          </span>
          <span class="gts-commit-time"><%= commit[:date].strftime("%H:%M") %></span>
        </p>
      </div>
    <% end %>
  </div>
</div>

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
libdolt-0.34.0 views/commits.erb
libdolt-0.33.18 views/commits.erb
libdolt-0.33.17 views/commits.erb
libdolt-0.33.16 views/commits.erb
libdolt-0.33.15 views/commits.erb
libdolt-0.33.14 views/commits.erb
libdolt-0.33.13 views/commits.erb
libdolt-0.33.12 views/commits.erb
libdolt-0.33.11 views/commits.erb
libdolt-0.33.10 views/commits.erb
libdolt-0.33.9 views/commits.erb
libdolt-0.33.8 views/commits.erb
libdolt-0.33.7 views/commits.erb
libdolt-0.33.6 views/commits.erb
libdolt-0.33.5 views/commits.erb
libdolt-0.33.4 views/commits.erb
libdolt-0.33.3 views/commits.erb
libdolt-0.33.2 views/commits.erb
libdolt-0.33.1 views/commits.erb
libdolt-0.33.0 views/commits.erb