6f870501a0
* Add tests for --local-time option * Update Readme
45 lines
1.4 KiB
Ruby
45 lines
1.4 KiB
Ruby
module Precious
|
|
module Views
|
|
class LatestChanges < Layout
|
|
DATE_FORMAT = '%B %d, %Y'
|
|
|
|
include Pagination
|
|
include HasUserIcons
|
|
|
|
attr_reader :wiki
|
|
|
|
def title
|
|
"Latest Changes (Globally)"
|
|
end
|
|
|
|
def versions
|
|
i = @versions.size + 1
|
|
@versions.map do |v|
|
|
i -= 1
|
|
authored_date = v.authored_date
|
|
{ :id => v.id,
|
|
:id7 => v.id[0..6],
|
|
:href => page_route("gollum/commit/#{v.id}"),
|
|
:num => i,
|
|
:author => v.author.name.respond_to?(:force_encoding) ? v.author.name.force_encoding('UTF-8') : v.author.name,
|
|
:message => v.message.respond_to?(:force_encoding) ? v.message.force_encoding('UTF-8') : v.message,
|
|
:date_full => authored_date,
|
|
:date => authored_date.strftime(DATE_FORMAT),
|
|
:datetime => authored_date.utc.iso8601,
|
|
:date_format => DATE_FORMAT,
|
|
:user_icon => self.user_icon_code(v.author.email),
|
|
:files => v.stats.files.map { |f|
|
|
new_path = extract_page_dir(f[:new_file])
|
|
{ :file => new_path,
|
|
:link => "#{page_route(new_path)}/#{v.id}",
|
|
:renamed => f[:old_file] ? extract_page_dir(f[:old_file]) : nil
|
|
}
|
|
}
|
|
}
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|