Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • simonrose/naming-backend
  • anderslindh1/naming-backend
  • andersharrisson/naming-backend
3 results
Show changes
-- ----------------------------------------------------------------------------------------------------
-- About
-- migration script
-- postgresql 9.6.7
-- Content
-- user notification table
-- Note
-- remove table as it is no longer used
-- users to which to send notifications to be handled by configuration
-- ----------------------------------------------------------------------------------------------------
-- ----------------------------------------------------------------------------------------------------
-- user notification
-- ----------------------------------------------------------------------------------------------------
ALTER TABLE ONLY user_notification
DROP CONSTRAINT user_notification_pk;
DROP TABLE user_notification;
src/main/resources/static/images/naming_backend_data_access.png

25.5 KiB

src/main/resources/static/images/naming_backend_lifecycle.png

33.3 KiB

File deleted
File deleted
No preview for this file type
No preview for this file type
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org" xmlns:a="http://www.w3.org/1999/html">
<head>
<title th:remove="all">There are changes in Naming for names</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style>
th, td {
border-bottom: 1px solid #ddd;
padding-left: 20px;
text-align:left;
}
th {
background-color: #0094ca;
color: #FFFFFF;
}
table {
border-collapse: collapse;
}
thead {
border: 0;
}
</style>
</head>
<body>
<h2>There are changes in Naming for names</h2>
<br/>
<table>
<tr th:if="${numberCreated > 0}">
<td style="padding-left: 0px;">Number of created names: </td>
<td th:text="${numberCreated}"/>
</tr>
<tr th:if="${numberUpdated > 0}">
<td style="padding-left: 0px;">Number of updated names: </td>
<td th:text="${numberUpdated}"/>
</tr>
<tr th:if="${numberDeleted > 0}">
<td style="padding-left: 0px;">Number of deleted names: </td>
<td th:text="${numberDeleted}"/>
</tr>
</table>
<br/>
<div th:if="${numberCreated > 0}">
<div style="padding-bottom: 10px;">
<h3>Created</h3>
</div>
<table style="padding-bottom: 10px; width: 90%;">
<thead>
<tr>
<th>Create Update Delete</th>
<th>Old</th>
<th/>
<th>New</th>
<th>When</th>
<th>Who</th>
</tr>
</thead>
<tbody>
<tr th:each="row: ${created}">
<td th:text="${row.getNameCommandCUD()}"/>
<td style="font-weight: bold;">
<div>
<div th:text=${row.getOldIndex()}></div>
<div th:text=${row.getOldName()}></div>
<div th:text=${row.getOldDescription()}></div>
</div>
</td>
<td style="text-align: center; white-space: nowrap;" th:text="' -> '"/>
<td style="font-weight: bold;">
<div>
<div th:text=${row.getNewIndex()}></div>
<div th:text=${row.getNewName()}></div>
<div th:text=${row.getNewDescription()}></div>
</div>
</td>
<td th:text="${#dates.format(row.getWhen(), 'yyyy.MM.dd HH:mm')}"/>
<td th:text="${row.getWho()}"/>
</tr>
</tbody>
</table>
<br/>
<hr>
</div>
<div th:if="${numberUpdated > 0}">
<div style="padding-bottom: 10px;">
<h3>Updated</h3>
</div>
<table style="padding-bottom: 10px; width: 90%;">
<thead>
<tr>
<th>Create Update Delete</th>
<th>Old</th>
<th/>
<th>New</th>
<th>When</th>
<th>Who</th>
</tr>
</thead>
<tbody>
<tr th:each="row: ${updated}">
<td th:text="${row.getNameCommandCUD()}"/>
<td style="font-weight: bold;">
<div>
<div style="text-align: left;" th:text=${row.getOldIndex()}></div>
<div style="text-align: left;" th:text=${row.getOldName()}></div>
<div style="text-align: left;" th:text=${row.getOldDescription()}></div>
</div>
</td>
<td style="text-align: center; white-space: nowrap;" th:text="' -> '"/>
<td style="font-weight: bold;">
<div>
<div style="text-align: left;" th:text=${row.getNewIndex()}></div>
<div style="text-align: left;" th:text=${row.getNewName()}></div>
<div style="text-align: left;" th:text=${row.getNewDescription()}></div>
</div>
</td>
<td th:text="${#dates.format(row.getWhen(), 'yyyy.MM.dd HH:mm')}"/>
<td th:text="${row.getWho()}"/>
</tr>
</tbody>
</table>
<br/>
<hr>
</div>
<div th:if="${numberDeleted > 0}">
<div style="padding-bottom: 10px;">
<h3>Deleted</h3>
</div>
<table style="padding-bottom: 10px; width: 90%;">
<thead>
<tr>
<th>Create Update Delete</th>
<th>Old</th>
<th/>
<th>New</th>
<th>When</th>
<th>Who</th>
</tr>
</thead>
<tbody>
<tr th:each="row: ${deleted}">
<td th:text="${row.getNameCommandCUD()}"/>
<td style="font-weight: bold;">
<div>
<div style="text-align: left;" th:text=${row.getOldIndex()}></div>
<div style="text-align: left;" th:text=${row.getOldName()}></div>
<div style="text-align: left;" th:text=${row.getOldDescription()}></div>
</div>
</td>
<td style="text-align: center; white-space: nowrap;" th:text="' -> '"/>
<td style="font-weight: bold;">
<div>
<div style="text-align: left;" th:text=${row.getNewIndex()}></div>
<div style="text-align: left;" th:text=${row.getNewName()}></div>
<div style="text-align: left;" th:text=${row.getNewDescription()}></div>
</div>
</td>
<td th:text="${#dates.format(row.getWhen(), 'yyyy.MM.dd HH:mm')}"/>
<td th:text="${row.getWho()}"/>
</tr>
</tbody>
</table>
<br/>
<hr>
</div>
<div th:if="${addfooter}">
<div th:text="'Notifications show old and new values for Index, Name, Description.'"></div>
<br/>
<hr>
<div th:text="'Naming URL:'" style="display: inline;"></div>
<a th:href="@{${backendurl}}" th:text="${backendurl}"/></a>
</div>
</body>
</html>
\ No newline at end of file