Sha256: da80c0f94a9be8c9a13d7817268c94c8846687e6f50c44783b3d9d5d8fe386a9
Contents?: true
Size: 1.69 KB
Versions: 33
Compression:
Stored size: 1.69 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/>. #++ %> <div class="container gts-body"> <% @title = "Blame #{path} in #{repository_slug}:master" %> <div class="gts-file 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 class="active">Blame</li> <li><a href="<%= history_url(repository_slug, ref, path) %>">History</a></li> <li><a href="<%= raw_url(repository_slug, ref, path) %>">Raw blob</a></li> </ul> <%= breadcrumb(repository_slug, ref, path) %> <table class="gts-code-listing"> <% annotations = blame_annotations(blame) %> <% lines = blame_lines(path, blame) %> <% annotations.length.times do |i| %> <tr> <%= blame_annotation_cell(annotations[i]) %> <td class="linenum L<%= i + 1 %>"><%= i + 1 %></td> <%= blame_code_cell(lines[i]) %> </tr> <% end %> </table> </div> </div>
Version data entries
33 entries across 33 versions & 1 rubygems