Revize a26d9f94
Přidáno uživatelem stepanekp před téměř 3 roky(ů)
src/main/webapp/WEB-INF/templates/anti-pattern.html | ||
---|---|---|
67 | 67 |
|
68 | 68 |
<!-- Anti pattern description --> |
69 | 69 |
<div class="form-group"> |
70 |
<h5 for="antiPatternDescription">Anti Pattern Description</h5>
|
|
70 |
<h5 for="antiPatternDescription">Anti-pattern Description</h5>
|
|
71 | 71 |
<textarea disabled class="form-control" id="antiPatternDescription" rows="5" |
72 | 72 |
th:text="${description}"></textarea> |
73 | 73 |
</div> |
... | ... | |
77 | 77 |
|
78 | 78 |
<!-- Anti pattern operationalization --> |
79 | 79 |
<div class="operationalization-detail"> |
80 |
<h5 style="display: inline-block">Anti Pattern Operationalization Detail</h5>
|
|
80 |
<h5 style="display: inline-block">Anti-pattern Operationalization Detail</h5>
|
|
81 | 81 |
<button type="button" class="btn edit-button" id="operationalizationEditButton" onclick="enableEdit()"> |
82 | 82 |
<i class="fa fa-pen-to-square fa-lg"></i> |
83 | 83 |
</button> |
... | ... | |
143 | 143 |
<hr> |
144 | 144 |
|
145 | 145 |
<!-- Anti pattern configuration form --> |
146 |
<h5>Anti Pattern Configurations</h5>
|
|
146 |
<h5>Anti-pattern Configurations</h5>
|
|
147 | 147 |
|
148 | 148 |
<!-- Form for configuration values --> |
149 | 149 |
<form action="#" th:action="@{/anti-patterns/} + ${antiPattern.id}" th:object="${antiPattern}" method="post"> |
src/main/webapp/WEB-INF/templates/fragments/navbar.html | ||
---|---|---|
1 | 1 |
<div th:fragment="navBar" xmlns:th="http://www.w3.org/1999/xhtml"> |
2 | 2 |
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light" id="main-navbar"> |
3 |
<a class="navbar-brand"><b>SPAWn</b> - SPADe Web Interface</a>
|
|
3 |
<a class="navbar-brand"><b>SPAWn</b> – SPADe Web Interface</a>
|
|
4 | 4 |
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> |
5 | 5 |
<span class="navbar-toggler-icon"></span> |
6 | 6 |
</button> |
7 | 7 |
<div class="collapse navbar-collapse" id="navbarSupportedContent"> |
8 | 8 |
<ul class="navbar-nav mr-auto"> |
9 | 9 |
<li class="nav-item active"> |
10 |
<a class="nav-link" th:href="@{/}">Analyze</a>
|
|
10 |
<a class="nav-link" th:href="@{/}">Detect</a>
|
|
11 | 11 |
</li> |
12 | 12 |
<li class="nav-item active"> |
13 | 13 |
<a class="nav-link" th:href="@{/configuration}">Configuration</a> |
src/main/webapp/WEB-INF/templates/index.html | ||
---|---|---|
24 | 24 |
<h1>Projects</h1> |
25 | 25 |
</div> |
26 | 26 |
<div class="col"> |
27 |
<h1>Anti Patterns</h1><br>
|
|
27 |
<h1>Anti-patterns</h1><br>
|
|
28 | 28 |
</div> |
29 | 29 |
</div> |
30 | 30 |
|
... | ... | |
37 | 37 |
<th scope="col">#</th> |
38 | 38 |
<th scope="col">Project Name</th> |
39 | 39 |
<th scope="col">Detail</th> |
40 |
<th scope="col">Analyze?</th>
|
|
40 |
<th scope="col">Detect?</th>
|
|
41 | 41 |
</tr> |
42 | 42 |
</thead> |
43 | 43 |
<tbody> |
... | ... | |
70 | 70 |
<thead> |
71 | 71 |
<tr> |
72 | 72 |
<th scope="col">#</th> |
73 |
<th scope="col">Anti Pattern</th>
|
|
73 |
<th scope="col">Anti-pattern</th>
|
|
74 | 74 |
<th scope="col">Detail</th> |
75 |
<th scope="col">Analyze?</th>
|
|
75 |
<th scope="col">Detect?</th>
|
|
76 | 76 |
</tr> |
77 | 77 |
</thead> |
78 | 78 |
<tbody> |
... | ... | |
120 | 120 |
|
121 | 121 |
<!-- Container for analyze button --> |
122 | 122 |
<div class="analyze-button-container"> |
123 |
<button id="analyzeButton" type="submit" class="btn btn-primary btn-lg btn-block" onclick="showProgressBar()">Analyze</button>
|
|
123 |
<button id="analyzeButton" type="submit" class="btn btn-primary btn-lg btn-block" onclick="showProgressBar()">Detect</button>
|
|
124 | 124 |
</div> |
125 | 125 |
<!-- ./Container for analyze button --> |
126 | 126 |
|
Také k dispozici: Unified diff
#22 Terminology fixed