tree view readme support

This commit is contained in:
Saito 2011-12-13 00:42:07 +08:00 committed by Jeremy Mack
parent a1cd582c67
commit a39fb5fc25
2 changed files with 30 additions and 13 deletions

View file

@ -21,7 +21,7 @@
%th
Last commit
= link_to "history", tree.history_path, :class => "right"
- if tree.up_dir?
%tr{ :class => "tree-item", :url => tree.up_dir_path }
%td.tree-item-file-name
@ -35,6 +35,12 @@
- contents.select{ |i| i.is_a?(Grit::Blob)}.each do |content|
= render :partial => "refs/tree_item", :locals => { :content => content }
- if content = contents.select{ |c| c.is_a?(Grit::Blob) and c.name =~ /^readme\.(md|markdown)$/i }.first
#tree-readme-holder
%h3= content.name
.readme
= markdown(encode content.data)
:javascript
$(function(){
$('select#branch').selectmenu({style:'popup', width:200});