2012-06-30 14:20:09 -03:00
|
|
|
<%@ page import="com.wisemapping.security.Utils" %>
|
|
|
|
<%@ page import="com.wisemapping.model.User" %>
|
2012-06-30 02:26:21 -03:00
|
|
|
<%@page pageEncoding="UTF-8" %>
|
|
|
|
<%@ include file="/jsp/init.jsp" %>
|
|
|
|
|
2012-04-02 14:11:28 -03:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
|
2012-08-15 21:28:51 -03:00
|
|
|
<%--@elvariable id="mindmap" type="com.wisemapping.model.Mindmap"--%>
|
2009-06-07 18:59:43 +00:00
|
|
|
<%--@elvariable id="editorTryMode" type="java.lang.Boolean"--%>
|
2012-04-05 14:18:13 -03:00
|
|
|
<%--@elvariable id="editorTryMode" type="java.lang.String"--%>
|
|
|
|
<%--@elvariable id="mapXml" type="com.wisemapping.model.User"--%>
|
2012-11-10 17:19:28 -03:00
|
|
|
<%--@elvariable id="lockInfo" type="com.wisemapping.service.LockInfo"--%>
|
2009-06-07 18:59:43 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2012-11-04 18:17:32 -03:00
|
|
|
<base href="${requestScope['site.baseurl']}/">
|
2012-08-29 20:17:35 -03:00
|
|
|
<title><spring:message code="SITE.TITLE"/> - <c:out value="${mindmap.title}"/></title>
|
2011-03-13 16:24:26 +00:00
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
|
|
<![endif]-->
|
2012-02-20 11:32:37 -03:00
|
|
|
<link rel="stylesheet/less" type="text/css" href="css/editor.less"/>
|
|
|
|
<script type='text/javascript' src='js/mootools-core.js'></script>
|
|
|
|
<script type='text/javascript' src='js/mootools-more.js'></script>
|
|
|
|
<script type='text/javascript' src='js/core.js'></script>
|
|
|
|
<script type='text/javascript' src='js/less.js'></script>
|
2009-06-07 18:59:43 +00:00
|
|
|
|
2012-02-20 11:32:37 -03:00
|
|
|
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
|
|
|
|
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
|
2011-10-02 12:22:09 -03:00
|
|
|
|
2011-10-15 02:52:44 -03:00
|
|
|
<script type="text/javascript">
|
2011-10-02 12:22:09 -03:00
|
|
|
|
2012-07-01 17:56:31 -03:00
|
|
|
$(document).addEvent('loadcomplete', function (resource) {
|
2012-09-22 21:34:43 -03:00
|
|
|
try {
|
|
|
|
var mapId = '${mindmap.id}';
|
|
|
|
var mapXml = '${mindmap.xmlAsJsLiteral}';
|
2012-02-04 12:51:50 -03:00
|
|
|
|
2012-09-22 21:34:43 -03:00
|
|
|
// Configure designer options ...
|
|
|
|
var options = loadDesignerOptions();
|
2012-10-04 20:28:59 -03:00
|
|
|
<c:if test="${!memoryPersistence && !readOnlyMode}">
|
|
|
|
options.persistenceManager = new mindplot.RESTPersistenceManager(
|
|
|
|
{
|
2012-11-10 17:19:28 -03:00
|
|
|
saveUrl:"c/restful/maps/{id}/document",
|
|
|
|
revertUrl:"c/restful/maps/{id}/history/latest",
|
|
|
|
lockUrl:"c/restful/maps/{id}/lock",
|
2012-10-04 20:28:59 -03:00
|
|
|
timestamp: ${lockTimestamp},
|
|
|
|
session: ${lockSession}
|
|
|
|
}
|
|
|
|
);
|
2012-11-10 17:19:28 -03:00
|
|
|
|
2012-08-23 22:07:37 -03:00
|
|
|
</c:if>
|
2012-09-22 21:34:43 -03:00
|
|
|
var userOptions = ${mindmap.properties};
|
|
|
|
options.zoom = userOptions.zoom;
|
|
|
|
options.readOnly = ${!!readOnlyMode};
|
|
|
|
options.locale = '${locale}';
|
2012-02-04 12:51:50 -03:00
|
|
|
|
2012-09-22 21:34:43 -03:00
|
|
|
// Set map id ...
|
|
|
|
options.mapId = mapId;
|
2012-04-05 00:01:51 -03:00
|
|
|
|
2012-09-22 21:34:43 -03:00
|
|
|
// Build designer ...
|
|
|
|
var designer = buildDesigner(options);
|
2012-02-04 12:51:50 -03:00
|
|
|
|
2012-09-22 21:34:43 -03:00
|
|
|
// Load map from XML ...
|
|
|
|
var parser = new DOMParser();
|
|
|
|
var domDocument = parser.parseFromString(mapXml, "text/xml");
|
2012-05-27 18:15:46 -03:00
|
|
|
|
2012-09-22 21:34:43 -03:00
|
|
|
var mindmap = mindplot.PersistenceManager.loadFromDom(mapId, domDocument);
|
|
|
|
designer.loadMap(mindmap);
|
|
|
|
} catch (e) {
|
|
|
|
logStackTrace(e);
|
|
|
|
throw e;
|
|
|
|
}
|
2012-11-07 20:14:07 -03:00
|
|
|
|
|
|
|
<c:if test="${mindmapLocked}">
|
2012-11-10 17:19:28 -03:00
|
|
|
$notify("<spring:message code="MINDMAP_LOCKED" arguments="${lockInfo.user.fullName},${lockInfo.user.email}"/>", false);
|
2012-11-07 20:14:07 -03:00
|
|
|
</c:if>
|
2011-10-02 12:22:09 -03:00
|
|
|
});
|
2012-11-07 20:14:07 -03:00
|
|
|
|
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>
|
|
|
|
<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} |
|
|
|
|
<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
|
|
|
|
code="LOGOUT"/></a></span>
|
|
|
|
</c:if>
|
|
|
|
<c:if test="${memoryPersistence}">
|
|
|
|
<span><a href="c/keyboard" id="keyboardShortcuts"><spring:message code="SHORTCUTS"/></a></span> |
|
2012-08-29 20:17:35 -03: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>
|
2009-06-11 17:43:45 +00:00
|
|
|
</div>
|
2012-09-01 14:30:32 -03:00
|
|
|
<a href="${requestScope['site.homepage']}">
|
2011-10-15 02:52:44 -03:00
|
|
|
<div id="headerLogo"></div>
|
|
|
|
</a>
|
|
|
|
|
2012-08-29 20:17:35 -03:00
|
|
|
<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>
|
2009-06-07 18:59:43 +00:00
|
|
|
|
2012-06-24 21:51:04 -03:00
|
|
|
<div id="mindplot" onselectstart="return false;"></div>
|
2012-02-20 11:32:37 -03:00
|
|
|
<script type="text/javascript" src="js/editor.js"></script>
|
2012-11-07 20:14:07 -03:00
|
|
|
|
2012-11-17 15:57:02 -03:00
|
|
|
<c:if test="${requestScope['google.ads.enabled'] && !memoryPersistence && !readOnlyMode}">
|
2012-11-17 17:47:11 -03:00
|
|
|
<div style="position: absolute;width:470px;height: 62px;z-index: 100;right: 10px; bottom: 10px">
|
|
|
|
<script type="text/javascript"><!--
|
|
|
|
google_ad_client = "ca-pub-7564778578019285";
|
|
|
|
/* Wisemapping Editor Banner */
|
|
|
|
google_ad_slot = "6147489273";
|
|
|
|
google_ad_width = 468;
|
|
|
|
google_ad_height = 60;
|
|
|
|
//-->
|
2012-11-17 15:43:06 -03:00
|
|
|
</script>
|
2012-11-17 17:47:11 -03:00
|
|
|
<div>
|
|
|
|
<script type="text/javascript"
|
|
|
|
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
|
|
|
</script>
|
|
|
|
</div>
|
2012-11-17 15:43:06 -03:00
|
|
|
</div>
|
2012-11-17 17:47:11 -03:00
|
|
|
</c:if>
|
2009-06-07 18:59:43 +00:00
|
|
|
</body>
|
|
|
|
</html>
|