2009-06-07 20:59:43 +02:00
|
|
|
<%@ include file="/jsp/init.jsp" %>
|
|
|
|
<%--@elvariable id="wisemapDetail" type="com.wisemapping.view.MindMapBean"--%>
|
|
|
|
|
2012-05-20 07:25:54 +02:00
|
|
|
<div>
|
|
|
|
<ul class="nav nav-tabs">
|
|
|
|
<li class="active"><a href="#general" data-toggle="pill">General</a></li>
|
|
|
|
<li><a href="#collaborators" data-toggle="pill">Collaborators</a></li>
|
|
|
|
<li><a href="#publish" data-toggle="pill">Publish</a></li>
|
|
|
|
</ul>
|
2009-06-07 20:59:43 +02:00
|
|
|
|
2012-05-20 07:25:54 +02:00
|
|
|
<div class="tab-content">
|
|
|
|
<div class="tab-pane fade active in" id="general">
|
|
|
|
<ul class="unstyled">
|
|
|
|
<li><strong><spring:message code="NAME"/>:</strong> ${wisemapDetail.title}</li>
|
|
|
|
<li><strong><spring:message code="DESCRIPTION"/>:</strong> ${wisemapDetail.description}</li>
|
|
|
|
<li><strong><spring:message code="OWNER"/>:</strong> ${wisemapDetail.creationUser}</li>
|
|
|
|
<li><strong><spring:message code="CREATION_TIME"/>:</strong> ${wisemapDetail.creationTime}</li>
|
|
|
|
<li><strong><spring:message code="LAST_UPDATE"/>:</strong> ${wisemapDetail.lastEditTime}</li>
|
|
|
|
<li><strong><spring:message code="LAST_UPDATE_BY"/>:</strong> ${wisemapDetail.lastEditor}</li>
|
|
|
|
<li><strong> <spring:message code="TAGS"/>:</strong> ${wisemapDetail.tags}</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="tab-pane fade" id="collaborators">
|
|
|
|
<ul class="unstyled">
|
|
|
|
<li><strong><spring:message
|
|
|
|
code="EDITORS"/>(${wisemapDetail.countColaborators}): </strong>
|
|
|
|
<c:forEach items="${wisemapDetail.collaborators}" var="mindmapCollaborator">
|
|
|
|
${mindmapCollaborator.username}
|
|
|
|
</c:forEach>
|
|
|
|
</li>
|
|
|
|
<li><strong><spring:message code="VIEWERS"/>(${wisemapDetail.countViewers}): </strong>
|
|
|
|
<c:forEach items="${wisemapDetail.viewers}" var="mindmapViewer">
|
|
|
|
${mindmapViewer.username}
|
|
|
|
</c:forEach>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2009-06-07 20:59:43 +02:00
|
|
|
</div>
|
|
|
|
|
2012-05-20 07:25:54 +02:00
|
|
|
<div class="tab-pane fade" id="publish">
|
|
|
|
<ul class="unstyled">
|
|
|
|
<c:choose>
|
|
|
|
<c:when test="${wisemapDetail.public}">
|
|
|
|
<li><strong><spring:message code="PUBLIC"/>: </strong><spring:message code="ALL_VIEW_PUBLIC"/>
|
|
|
|
</li>
|
|
|
|
<li><<strong><spring:message code="URL"/>: </strong>
|
|
|
|
<input name="url"
|
|
|
|
value="http://www.wisemapping.com/c/publicView.htm?mapId=${wisemapDetail.id}"
|
|
|
|
style="width:400px" readonly="readonly"/>
|
|
|
|
</li>
|
|
|
|
<li><strong><spring:message code="DIRECT_LINK"/>: </strong>
|
|
|
|
<textarea style="width:400px;height:30px;overflow:hidden;" cols="55" rows="3"
|
|
|
|
readonly="readonly">
|
|
|
|
<a
|
|
|
|
href="http://www.wisemapping.com/c/publicView.htm?mapId=${wisemapDetail.id}">${wisemapDetail.title}</a></textarea>
|
|
|
|
<li><strong><spring:message code="BLOG_INCLUSION"/>: </strong>
|
|
|
|
<textarea style="width:400px;height:70px;overflow:hidden;" cols="55" rows="5"
|
|
|
|
readonly="readonly">
|
|
|
|
<iframe
|
|
|
|
style="border:0;width:600px;height:400px;border: 1px solid black"
|
|
|
|
src="http://www.wisemapping.com/c/embeddedView.htm?mapId=${wisemapDetail.id}&amzoom=1">
|
|
|
|
</iframe>
|
|
|
|
</textarea>
|
|
|
|
</li>
|
|
|
|
<li><spring:message code="EMBEDDED_MAP_SIZE"/></li>
|
|
|
|
</c:when>
|
|
|
|
<c:otherwise>
|
|
|
|
<li><strong><spring:message code="PUBLIC"/>:</strong><spring:message code="ONLY_VIEW_PRIVATE"/>
|
|
|
|
</li>
|
|
|
|
</c:otherwise>
|
|
|
|
</c:choose>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2009-06-07 20:59:43 +02:00
|
|
|
</div>
|