2012-01-27 00:13:19 +02:00
|
|
|
%ul.breadcrumb
|
2012-01-29 21:30:03 +02:00
|
|
|
%li
|
2012-02-28 00:00:19 +02:00
|
|
|
%span.arrow
|
2012-01-11 09:35:21 +02:00
|
|
|
= link_to tree_project_ref_path(@project, @ref, :path => nil), :remote => true do
|
2012-02-28 00:00:19 +02:00
|
|
|
= @project.name
|
2012-01-27 00:13:19 +02:00
|
|
|
- tree.breadcrumbs(6) do |link|
|
|
|
|
\/
|
|
|
|
%li= link
|
2011-11-01 22:11:24 +02:00
|
|
|
.clear
|
2012-01-29 21:30:03 +02:00
|
|
|
%div.tree_progress
|
2011-10-09 00:36:38 +03:00
|
|
|
#tree-content-holder
|
2011-11-20 22:32:12 +02:00
|
|
|
- if tree.is_blob?
|
2011-11-16 08:38:53 +03:00
|
|
|
= render :partial => "refs/tree_file", :locals => { :name => tree.name, :content => tree.data, :file => tree }
|
2011-10-09 00:36:38 +03:00
|
|
|
- else
|
|
|
|
- contents = tree.contents
|
2012-02-12 19:47:37 +02:00
|
|
|
%table#tree-slider.bordered-table
|
2011-11-01 22:11:24 +02:00
|
|
|
%thead
|
2011-10-09 00:36:38 +03:00
|
|
|
%th Name
|
|
|
|
%th Last Update
|
|
|
|
%th
|
|
|
|
Last commit
|
2012-01-18 00:04:27 +02:00
|
|
|
= link_to "History", tree.history_path, :class => "right"
|
2011-12-13 00:42:07 +08:00
|
|
|
|
2011-11-20 22:32:12 +02:00
|
|
|
- if tree.up_dir?
|
|
|
|
%tr{ :class => "tree-item", :url => tree.up_dir_path }
|
2011-10-09 00:36:38 +03:00
|
|
|
%td.tree-item-file-name
|
2012-03-12 23:52:10 +02:00
|
|
|
= image_tag "file_empty.png"
|
2011-11-20 22:32:12 +02:00
|
|
|
= link_to "..", tree.up_dir_path, :remote => :true
|
2011-10-23 12:47:57 +05:30
|
|
|
%td
|
|
|
|
%td
|
2011-10-09 00:36:38 +03:00
|
|
|
|
|
|
|
- contents.select{ |i| i.is_a?(Grit::Tree)}.each do |content|
|
2011-11-16 08:38:53 +03:00
|
|
|
= render :partial => "refs/tree_item", :locals => { :content => content }
|
2011-10-09 00:36:38 +03:00
|
|
|
- contents.select{ |i| i.is_a?(Grit::Blob)}.each do |content|
|
2011-11-16 08:38:53 +03:00
|
|
|
= render :partial => "refs/tree_item", :locals => { :content => content }
|
2012-02-14 23:48:42 +02:00
|
|
|
- contents.select{ |i| i.is_a?(Grit::Submodule)}.each do |content|
|
|
|
|
= render :partial => "refs/submodule_item", :locals => { :content => content }
|
2011-10-09 00:36:38 +03:00
|
|
|
|
2011-12-13 19:25:58 +08:00
|
|
|
- if content = contents.select{ |c| c.is_a?(Grit::Blob) and c.name =~ /^readme/i }.first
|
2011-12-13 00:42:07 +08:00
|
|
|
#tree-readme-holder
|
|
|
|
%h3= content.name
|
|
|
|
.readme
|
2011-12-13 19:25:58 +08:00
|
|
|
- if content.name =~ /\.(md|markdown)$/i
|
2011-12-30 21:41:39 +08:00
|
|
|
= markdown(content.data)
|
2011-12-13 19:25:58 +08:00
|
|
|
- else
|
2011-12-30 21:41:39 +08:00
|
|
|
= simple_format(content.data)
|
2011-12-13 00:42:07 +08:00
|
|
|
|
2012-01-29 21:30:03 +02:00
|
|
|
- if params[:path]
|
|
|
|
- history_path = tree_file_project_ref_path(@project, @ref, params[:path])
|
|
|
|
- else
|
|
|
|
- history_path = tree_project_ref_path(@project, @ref)
|
2011-10-09 00:36:38 +03:00
|
|
|
:javascript
|
|
|
|
$(function(){
|
|
|
|
$('select#branch').selectmenu({style:'popup', width:200});
|
|
|
|
$('select#tag').selectmenu({style:'popup', width:200});
|
2012-01-29 21:30:03 +02:00
|
|
|
$('.project-refs-select').chosen();
|
|
|
|
|
|
|
|
history.pushState({ path: this.path }, '', "#{history_path}")
|
2011-10-09 00:36:38 +03:00
|
|
|
});
|
2011-12-20 08:49:14 +02:00
|
|
|
|
2012-01-29 21:30:03 +02:00
|
|
|
|
2011-12-20 08:49:14 +02:00
|
|
|
- if params[:path] && request.xhr?
|
|
|
|
:javascript
|
|
|
|
$(window).unbind('popstate');
|
|
|
|
$(window).bind('popstate', function() {
|
|
|
|
if(location.pathname.search("tree") != -1) {
|
|
|
|
$.ajax({type: "GET", url: location.pathname, dataType: "script"})}
|
|
|
|
else { location.href = location.pathname;}});
|