# HG changeset patch # User Mike Becker # Date 1722163002 -7200 # Node ID 12f696cc79057d39a0695bd388a6db7972e2c150 # Parent 4c5342255263c59b20cb528f49236553e0da9c26 issue viewer's page title now starts with the ID - fixes #396 diff -r 4c5342255263 -r 12f696cc7905 src/main/kotlin/de/uapcore/lightpit/servlet/ProjectServlet.kt --- a/src/main/kotlin/de/uapcore/lightpit/servlet/ProjectServlet.kt Sun Jul 28 12:19:42 2024 +0200 +++ b/src/main/kotlin/de/uapcore/lightpit/servlet/ProjectServlet.kt Sun Jul 28 12:36:42 2024 +0200 @@ -346,7 +346,7 @@ val comments = dao.listComments(issue) with(http) { - pageTitle = "${path.projectInfo.project.name}: #${issue.id} ${issue.subject}" + pageTitle = "#${issue.id} ${issue.subject} (${path.projectInfo.project.name})" view = IssueDetailView( path, issue, diff -r 4c5342255263 -r 12f696cc7905 src/main/webapp/WEB-INF/changelogs/changelog-de.jspf --- a/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf Sun Jul 28 12:19:42 2024 +0200 +++ b/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf Sun Jul 28 12:36:42 2024 +0200 @@ -27,6 +27,7 @@

Version 1.3.0 - Vorschau

diff -r 4c5342255263 -r 12f696cc7905 src/main/webapp/WEB-INF/changelogs/changelog.jspf --- a/src/main/webapp/WEB-INF/changelogs/changelog.jspf Sun Jul 28 12:19:42 2024 +0200 +++ b/src/main/webapp/WEB-INF/changelogs/changelog.jspf Sun Jul 28 12:36:42 2024 +0200 @@ -27,6 +27,7 @@

Version 1.3.0 - preview

diff -r 4c5342255263 -r 12f696cc7905 src/main/webapp/WEB-INF/jsp/site.jsp --- a/src/main/webapp/WEB-INF/jsp/site.jsp Sun Jul 28 12:19:42 2024 +0200 +++ b/src/main/webapp/WEB-INF/jsp/site.jsp Sun Jul 28 12:36:42 2024 +0200 @@ -69,8 +69,8 @@ - LightPIT - <c:if test="${not empty pageTitle}"> - <c:out value="${pageTitle}"/></c:if> + <c:if test="${empty pageTitle}">LightPIT</c:if> + <c:out value="${pageTitle}"/>