Sha256: 2a19eb62cc2727141e099f8c768a6ef3008039950cb0bde5f221a077cc7b601f

Contents?: true

Size: 934 Bytes

Versions: 2

Compression:

Stored size: 934 Bytes

Contents

%h1= root

- if parent
  %a{ :href => parent.empty? ? "/#{idx}" : "/#{idx}#{parent}", :class => "parent" }
    ↪ Back to parent
- else
  %a{ :href => "/", :class => "parent" }
    ↪ Back to selection

%h2
  %span.path= request.path_info.empty? ? '/' : request.path_info

%table
  -contents.each_with_index do |f, i|
    %tr
      %td
        %a{ :href => "/#{idx}#{request.path_info}/#{File.basename(f)}" }
          ="#{request.path_info}/#{File.basename(f)}"


%form.add
  %p Add a file in this directory
  %input{:type => 'text', :name => "path", :class => "edit" }
  %input{:type => 'submit', :value => "New file" }

%form.upload{ :method => "post", :enctype => "multipart/form-data", :action => "/#{idx}#{request.path_info}/upload" }
  %p Upload a file to this directory
  %input{:type => 'file', :value => "Select a file", :name => "file", :class => "uploader" }
  %input{:type => 'submit', :value => "Upload file"}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gitdocs-0.3.1 lib/gitdocs/views/dir.haml
gitdocs-0.3.0 lib/gitdocs/views/dir.haml