List of commits:
Subject Hash Author Date (UTC)
switched bootstrap theme to default 40eb9da469b7713f2a37fe057c9b594d498e222f mcehlert 2014-02-05 10:17:07
added required slashes to links in metric and score view 14dd91a3ad925087e2ce5daec872567b14012373 mcehlert 2014-01-15 11:21:07
added required trailing slash in node search redirection d08e944032809a09188bac1a33cbca2ed09cb559 mcehlert 2014-01-15 11:16:29
removed old app.rb, moved code to run.rb ac07f01aaf74e03e7b5e38ed6d0596b5b8d880cf mcehlert 2014-01-10 15:21:56
Create README.md 9f00cc4d8ae5686a6e6c5fa1de3aa71c067b7b84 Mathias Ehlert 2014-01-09 22:24:26
large refactoring step after colloquium 864aef32ba2419bd43709a3239273275d3f9946e mcehlert 2014-01-09 22:23:24
inital commit - pre colloquium state dcee4d4045615b761cc54b957be7134f0e12384d Mathias Ehlert 2013-11-22 13:49:56
Initial commit a90174ca714e3b82a7100875f411a5e84a90352b Mathias Ehlert 2013-11-22 13:48:45
Commit 40eb9da469b7713f2a37fe057c9b594d498e222f - switched bootstrap theme to default
Author: mcehlert
Author date (UTC): 2014-02-05 10:17
Committer name: mcehlert
Committer date (UTC): 2014-02-05 10:17
Parent(s): 14dd91a3ad925087e2ce5daec872567b14012373
Signing key:
Tree: 7a7d4d938c4bc7a61f9204f26d67e5cd1bed701c
File Lines added Lines deleted
views/layout.erb 1 1
views/metric_details.erb 1 1
views/node_details.erb 1 1
views/score_details.erb 1 1
File views/layout.erb changed (mode: 100644) (index 2fda8a6..8f5f9d7)
4 4 <meta charset="UTF-8"> <meta charset="UTF-8">
5 5 <title><%= @title %></title> <title><%= @title %></title>
6 6 <link rel="stylesheet" href="/css/bootstrap.min.css"> <link rel="stylesheet" href="/css/bootstrap.min.css">
7 <link href="//netdna.bootstrapcdn.com/bootswatch/3.0.0/cyborg/bootstrap.min.css" rel="stylesheet">
7
8 8 <link rel="stylesheet" href="/css/application.css"> <link rel="stylesheet" href="/css/application.css">
9 9
10 10 <script src="/js/jquery-2.0.2.min.js"></script> <script src="/js/jquery-2.0.2.min.js"></script>
File views/metric_details.erb changed (mode: 100644) (index a8e8d8e..120af43)
38 38 </div> </div>
39 39 </div> </div>
40 40 </td> </td>
41 <td><span class="<%= color_class %>"><%= (normalized*100).round(2) %>%</span></td>
41 <td><span class="text-<%= color_class %>"><%= (normalized*100).round(2) %>%</span></td>
42 42 </tr> </tr>
43 43 <% end %> <% end %>
44 44 </table> </table>
File views/node_details.erb changed (mode: 100644) (index bf989c9..6ed59ae)
60 60 </td> </td>
61 61
62 62 <td> <td>
63 <span class="<%= data[:color_class] %>">
63 <span class="text-<%= data[:color_class] %>">
64 64 <%= (data[:absolute]*100).round(2) %>% <%= (data[:absolute]*100).round(2) %>%
65 65 </span> </span>
66 66 </td> </td>
File views/score_details.erb changed (mode: 100644) (index fc141a9..67806cb)
35 35 </div> </div>
36 36 </div> </div>
37 37 </td> </td>
38 <td><span class="<%= color_class %>"><%= (absolute*100).round(2) %>%</span></td>
38 <td><span class="text-<%= color_class %>"><%= (absolute*100).round(2) %>%</span></td>
39 39 </tr> </tr>
40 40 <% end %> <% end %>
41 41 </table> </table>
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/coria/coria-frontend

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/coria/coria-frontend

Clone this repository using git:
git clone git://git.rocketgit.com/user/coria/coria-frontend

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main