Commit e683b3c9273d15784039bebd6b593ceb5e389178

Authored by Daniel
Committed by Diego Camarinha
1 parent d91d8847

Add keywords tutorial page.

Signed-off-by: Diego Araújo <diegoamc90@gmail.com>
app/assets/stylesheets/keywords.css 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +.keyword-explanation {
  2 + padding-bottom: 20px;
  3 +}
... ...
app/views/tutorials/keywords.html.erb 0 → 100644
... ... @@ -0,0 +1,20 @@
  1 +<h1>Keywords</h1>
  2 +
  3 +<hr />
  4 +
  5 +<h3 id="module">Module</h3>
  6 +
  7 +<p class="keyword-explanation">Represents a fragment of the software. Every node in the processing tree generated by the Kalibro processor is a module. It can be a software package, file or the whole software.</p>
  8 +
  9 +<h3 id="range">Range</h3>
  10 +
  11 +<p class="keyword-explanation">Represents numerical intervals that may contain the value calculated for a given metric. Ranges combined with readings provide interpretations for metric results.</p>
  12 +
  13 +<h3 id="reading">Reading</h3>
  14 +
  15 +<p class="keyword-explanation">The interpretation given to a metric result (e.g., "Good", "Complex", "A"). Readings combined with ranges provide interpretations for metric results.</p>
  16 +
  17 +<h3 id="reading-group">Reading Group</h3>
  18 +
  19 +<p class="keyword-explanation">A set of readings that make sense when grouped together (e.g., "Good" and "Bad", "Simple" and "Complex").</p>
  20 +
... ...