Sha256: 4c35795f2ed83a8d94c3502faac572cc8aad9c0d7293fe9c330b9de4a55dba14

Contents?: true

Size: 1.2 KB

Versions: 11

Compression:

Stored size: 1.2 KB

Contents

!!!
%html
  %head
    %meta{:charset => "utf-8"}
      %title Society Relational Analysis
      :css
        @import url(stylesheets/society.css);
      %script{:src => "javascripts/d3.min.js"}
      %script{:src => "javascripts/society.js"}
      :css
        body {
          background-color: #fff;
          padding: 1em;
          font-family: Consolas, Verdana, sans-serif;
          font-size: 12px;
        }
  %body
    %div{:style => "text-align: center;"}
      %h1 Relational Matrices
      %h3
        Generated by
        %a{:href => "https://github.com/Bantik/society"} Society
    %hr{:size => "1"}/
    %div{:style => "text-align: center;"}
      %h2 Heatmap
    #heatmap
    %hr{:size => "1"}/
    %div{:style => "text-align: center;"}
      %h2 Network
      %p
        %em
          Hover over a class name to see incoming references (green) and outgoing
          references (red).
    #network{:style => "height: 100%; width: 100%;"}
    :javascript
      var data = JSON.parse('#{json_data}');
      Society.generate("#network", {
        data: {
          json: data
        }
      });
      Society.generate("#heatmap", {
        type: "heatmap",
        data: {
          json: data
        }
      });

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
society-1.4.2 lib/society/formatter/report/templates/index.htm.haml
society-1.4.1 lib/society/formatter/report/templates/index.htm.haml
society-1.4.0 lib/society/formatter/report/templates/index.htm.haml
society-1.3.0 lib/society/formatter/report/templates/index.htm.haml
society-1.2.3 lib/society/formatter/report/templates/index.htm.haml
society-1.2.2 lib/society/formatter/report/templates/index.htm.haml
society-1.2.1 lib/society/formatter/report/templates/index.htm.haml
society-1.2.0 lib/society/formatter/report/templates/index.htm.haml
society-1.1.1 lib/society/formatter/report/templates/index.htm.haml
society-1.1.0 lib/society/formatter/report/templates/index.htm.haml
society-1.0.0 lib/society/formatter/report/templates/index.htm.haml