78 lines
3.4 KiB
Plaintext
Raw Normal View History

2012-06-30 14:20:09 -03:00
<%@ page import="com.wisemapping.security.Utils" %>
<%@ page import="com.wisemapping.model.User" %>
2013-03-07 23:46:07 -03:00
<%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
2012-06-30 02:26:21 -03:00
<%@ include file="/jsp/init.jsp" %>
<%--@elvariable id="mindmap" type="com.wisemapping.model.Mindmap"--%>
2009-06-07 18:59:43 +00:00
<%--@elvariable id="editorTryMode" type="java.lang.Boolean"--%>
<%--@elvariable id="editorTryMode" type="java.lang.String"--%>
<%--@elvariable id="lockInfo" type="com.wisemapping.service.LockInfo"--%>
<!DOCTYPE HTML>
2009-06-07 18:59:43 +00:00
<html>
<head>
2013-03-07 23:46:07 -03:00
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<base href="${requestScope['site.baseurl']}/static/mindplot/">
<title><spring:message code="SITE.TITLE"/> - <c:out value="${mindmap.title}"/></title>
<link rel="stylesheet/less" type="text/css" href="../../css/editor.less"/>
<script type='text/javascript' src="../../js/less.js"/></script>
2021-12-26 09:23:51 -08:00
<%@ include file="/jsp/commonPageHeader.jsf" %>
2011-10-15 02:52:44 -03:00
<script type="text/javascript">
var mapId = '${mindmap.id}';
var memoryPersistence = ${memoryPersistence};
var readOnly = ${readOnlyMode};
var lockTimestamp = '${lockTimestamp}';
var lockSession = '${lockSession}';
var locale = '${locale}';
var mindmapLocked = ${mindmapLocked};
var mindmapLockedMsg = '<spring:message code="MINDMAP_LOCKED" arguments="${lockInfo.user.fullName},${lockInfo.user.email}"/>';
var userOptions = ${mindmap.properties};
2021-12-25 22:55:22 -08:00
var isAuth = ${principal != null};
2012-02-04 12:51:50 -03:00
</script>
2012-09-23 10:26:26 -03:00
<%@ include file="/jsp/googleAnalytics.jsf" %>
2009-06-07 18:59:43 +00:00
</head>
2009-06-07 18:59:43 +00:00
<body>
2011-10-02 21:05:17 -03:00
<div id="actionsContainer"></div>
2009-06-07 18:59:43 +00:00
2011-10-14 22:56:20 -03:00
<div id="header">
<div id="headerInfo">
<div id="headerActions">
2012-08-27 14:13:27 -03:00
<c:if test="${!memoryPersistence}">
2011-10-14 22:56:20 -03:00
2012-08-27 14:13:27 -03:00
<spring:message code="WELCOME"/>, ${principal.firstname} |
2021-12-30 22:30:22 -08:00
<span><a href="../../c/maps/"><spring:message code="MY_WISEMAPS"/></a></span> |
<span><a href="../../c/keyboard" id="keyboardShortcuts"><spring:message code="SHORTCUTS"/></a></span> |
<span><a href="../../c/logout" title="<spring:message code="LOGOUT"/>"><spring:message
2012-08-27 14:13:27 -03:00
code="LOGOUT"/></a></span>
</c:if>
2022-01-04 19:20:40 -08:00
<%-- This is the try page toolbar --%>
2012-08-27 14:13:27 -03:00
<c:if test="${memoryPersistence}">
2021-12-30 22:30:22 -08:00
<span><a href="../../c/keyboard" id="tutorialVideo"><spring:message code="TUTORIAL_VIDEO"/></a></span> |
2012-11-30 21:52:01 -03:00
<span><a href="#" id="keyboardShortcuts"><spring:message code="SHORTCUTS"/></a></span> |
2021-12-30 22:30:22 -08:00
<span><a href="../../c/user/registration" title="<spring:message code="REGISTER"/>"><spring:message
code="REGISTER"/></a></span>
2012-08-27 14:13:27 -03:00
</c:if>
</div>
<a href="${requestScope['site.homepage']}">
2011-10-15 02:52:44 -03:00
<div id="headerLogo"></div>
</a>
<div id="headerMapTitle"><spring:message code="NAME"/>: <span><c:out value="${mindmap.title}"/></span></div>
2011-10-14 22:56:20 -03:00
</div>
2012-06-17 02:51:01 -03:00
<%@ include file="/jsp/mindmapEditorToolbar.jsf" %>
2011-10-14 22:56:20 -03:00
</div>
2014-07-14 00:12:23 -03:00
<div id='load' class="modal fade">
<div class="modal-dialog">
<div style="height: 120px; text-align: center; border: 2px solid orange" class="modal-content">
<img style='margin-top:25px; text-align: center' src="../../images/editor/ajax-loader.gif">
2014-07-14 00:12:23 -03:00
</div>
</div>
</div>
2012-06-24 21:51:04 -03:00
<div id="mindplot" onselectstart="return false;"></div>
<script src="loader.js"></script>
2009-06-07 18:59:43 +00:00
</body>
</html>