bf079c24af
I decided to create a fork of rouge as rouge lacks a HTML formatter with the required options such as wrapping a line with <span> tags. Furthermore I was not really convinced about the clarity of rouge's source code. Rugments 1.0.0beta3 for now only includes some basic linting and a new HTML formatter. Everything else should behave the same.
30 lines
806 B
Text
30 lines
806 B
Text
= render 'nav'
|
|
%h3.page-title
|
|
%span.light History for
|
|
= link_to @page.title, project_wiki_path(@project, @page)
|
|
|
|
%table.table
|
|
%thead
|
|
%tr
|
|
%th Page version
|
|
%th Author
|
|
%th Commit Message
|
|
%th Last updated
|
|
%th Format
|
|
%tbody
|
|
- @page.versions.each_with_index do |version, index|
|
|
- commit = version
|
|
%tr
|
|
%td
|
|
= link_to project_wiki_path_with_version(@project, @page,
|
|
commit.id, index == 0) do
|
|
= truncate_sha(commit.id)
|
|
%td
|
|
= commit.author.name
|
|
%td
|
|
= commit.message
|
|
%td
|
|
#{time_ago_with_tooltip(version.authored_date)}
|
|
%td
|
|
%strong
|
|
= @page.page.wiki.page(@page.page.name, commit.id).try(:format)
|