Tue, 25 Jul 2023 18:19:04 +0200
fix wrong regex for commit-refs
and also adds some more - fixes #279
<%-- project: Project component: Component (optional) --%> <div id="project-details-header-reduced" style="display:none" class="table project-attributes"> <div class="row"> <div class="caption"><fmt:message key="feed"/>:</div> <div> <a class="rss-feed" href="./feed/${project.node}/issues.rss"> <img src="./rss.svg" alt="Feed" style="width: 1em; height: 1em;"> RSS </a> </div> <div class="caption"><fmt:message key="project.repoUrl"/>:</div> <div> <c:if test="${not empty project.repoUrl}"> <a target="_blank" href="<c:out value="${project.repoUrl}"/>"><c:out value="${project.repoUrl}"/></a> </c:if> </div> </div> </div> <div id="project-details-header" class="table project-attributes"> <div class="row"> <div class="caption"><fmt:message key="feed"/>:</div> <div> <a class="rss-feed" href="./feed/${project.node}/issues.rss"> <img src="./rss.svg" alt="Feed" style="width: 1em; height: 1em;"> RSS </a> </div> </div> <div class="row"> <div class="caption"><fmt:message key="project.name"/>:</div> <div><c:out value="${project.name}"/></div> <div class="caption"><fmt:message key="description"/>:</div> <div><c:out value="${project.description}"/></div> </div> <div class="row"> <div class="caption"><fmt:message key="project.owner"/>:</div> <div> <c:if test="${not empty project.owner}"><c:out value="${project.owner.displayname}"/></c:if> </div> <div class="caption"><fmt:message key="project.repoUrl"/>:</div> <div> <c:if test="${not empty project.repoUrl}"> <a target="_blank" href="<c:out value="${project.repoUrl}"/>"><c:out value="${project.repoUrl}"/></a> </c:if> </div> </div> <c:if test="${not empty component}"> <div class="row"> <div class="caption"><fmt:message key="component"/>:</div> <div><c:out value="${component.name}"/></div> <div class="caption"><fmt:message key="component.lead"/>:</div> <div> <c:if test="${not empty component.lead}"> <c:out value="${component.lead.displayname}"/> </c:if> <c:if test="${empty component.lead}"> <fmt:message key="placeholder.null-lead"/> </c:if> </div> </div> </c:if> </div>