Sha256: f95653518579f635ee931b119efdbfd12d4c97c17b05437a9478a92437dd4d39

Contents?: true

Size: 823 Bytes

Versions: 5

Compression:

Stored size: 823 Bytes

Contents

%h2
  = @collection.name.to_s.titlecase

%p #{@collection.description}

%br

%h3 Operations:

%table
  %thead
    %tr
      %th Name
      %th Description
  %tbody
    - @operations.keys.sort_by { |k| k.to_s }.each do |operation|
      %tr
        %td{:style => "width:15em"}
          %a{:href => "/api/docs/#{@collection.name.to_s}/#{operation}"} #{operation}
        %td{:style => "width:10em"} #{@operations[operation].description}

%h3 Features:

%table
  %thead
    %tr
      %th Name
      %th Description
      %th Modified Operations
  %tbody
    - @features.sort_by { |f| f.name.to_s }.each do |feature|
      %tr
        %td= feature.name
        %td= feature.description
        %td
          - feature.operations.each do |op|
            %a{:href => "/api/docs/#{@collection.name.to_s}/#{op.name}"} #{op.name}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
deltacloud-core-0.0.5 views/docs/collection.html.haml
deltacloud-core-0.0.4 views/docs/collection.html.haml
deltacloud-core-0.0.3 views/docs/collection.html.haml
deltacloud-core-0.0.2 views/docs/collection.html.haml
deltacloud-core-0.0.1 views/docs/collection.html.haml