Skip to content
Snippets Groups Projects
Commit 81deaa65 authored by Michael Becker's avatar Michael Becker
Browse files

display temple overview on main page

parent bf019016
No related merge requests found
...@@ -142,6 +142,10 @@ ...@@ -142,6 +142,10 @@
<groupId>org.mycore</groupId> <groupId>org.mycore</groupId>
<artifactId>mycore-iview2</artifactId> <artifactId>mycore-iview2</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.mycore</groupId>
<artifactId>mycore-neo4j</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.mycore</groupId> <groupId>org.mycore</groupId>
<artifactId>mycore-webtools</artifactId> <artifactId>mycore-webtools</artifactId>
...@@ -167,10 +171,6 @@ ...@@ -167,10 +171,6 @@
<groupId>de.uni-leipzig.urz</groupId> <groupId>de.uni-leipzig.urz</groupId>
<artifactId>dptbase-common</artifactId> <artifactId>dptbase-common</artifactId>
</dependency> </dependency>
<dependency>
<groupId>de.uni-leipzig.urz</groupId>
<artifactId>dptbase-glossary</artifactId>
</dependency>
<dependency> <dependency>
<groupId>de.uni-leipzig.urz</groupId> <groupId>de.uni-leipzig.urz</groupId>
<artifactId>dptbase-agent</artifactId> <artifactId>dptbase-agent</artifactId>
...@@ -179,14 +179,6 @@ ...@@ -179,14 +179,6 @@
<groupId>de.uni-leipzig.urz</groupId> <groupId>de.uni-leipzig.urz</groupId>
<artifactId>dptbase-infomail</artifactId> <artifactId>dptbase-infomail</artifactId>
</dependency> </dependency>
<dependency>
<groupId>de.uni-leipzig.urz</groupId>
<artifactId>dptbase-news</artifactId>
</dependency>
<dependency>
<groupId>de.uni-leipzig.urz</groupId>
<artifactId>dptbase-neo4j</artifactId>
</dependency>
<dependency> <dependency>
<groupId>jakarta.servlet</groupId> <groupId>jakarta.servlet</groupId>
......
...@@ -16,6 +16,18 @@ ...@@ -16,6 +16,18 @@
</p> </p>
</div> </div>
</html:section> </html:section>
<xed:form xmlns:xed="http://www.mycore.de/xeditor" method="post" class="dpt-editor-form">
<xed:if test="not($CurrentUser = 'guest')">
<html:section>
<div class="container">
<h2>Übersicht über die Anlage</h2>
<iframe id="temple-graph-view" src="/receive/EgyptPhilaeComplex_complex_00000001?XSL.Style=neo4j_full"
title="complex overview"/>
</div>
</html:section>
</xed:if>
</xed:form>
</div> </div>
</section> </section>
......
...@@ -2,3 +2,8 @@ ...@@ -2,3 +2,8 @@
@import url('./fonts.css'); @import url('./fonts.css');
@import url('./footer.css'); @import url('./footer.css');
@import url('./navigation.css'); @import url('./navigation.css');
#temple-graph-view {
width: 100%;
height: 500px;
}
\ No newline at end of file
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
<xsl:for-each select="$loaded_navigation_xml//item[@href=$browserAddress]"> <xsl:for-each select="$loaded_navigation_xml//item[@href=$browserAddress]">
<ul> <ul>
<xsl:for-each select="child::item"> <xsl:for-each select="child::item">
<xsl:message select="concat('usernot: ', @userNot, '; current user: ', $CurrentUser)"/>
<xsl:if test="not(@userNot = $CurrentUser)"> <xsl:if test="not(@userNot = $CurrentUser)">
<li> <li>
<xsl:call-template name="addLink"> <xsl:call-template name="addLink">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment