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" %>
|
|
|
|
|
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"--%>
|
2012-11-10 17:19:28 -03:00
|
|
|
<%--@elvariable id="lockInfo" type="com.wisemapping.service.LockInfo"--%>
|
2021-12-24 18:03:23 -08:00
|
|
|
|
2022-01-26 22:34:00 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2009-06-07 18:59:43 +00:00
|
|
|
<head>
|
2013-03-07 23:46:07 -03:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
2022-01-26 22:34:00 +00:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<base href="${requestScope['site.baseurl']}/static/webapp/">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;600&display=swap" rel="stylesheet" />
|
2022-02-20 21:55:40 -08:00
|
|
|
|
2022-01-10 19:12:58 -08:00
|
|
|
<%@ include file="/jsp/pageHeaders.jsf" %>
|
2011-10-02 12:22:09 -03:00
|
|
|
|
2022-01-30 09:55:07 -08:00
|
|
|
<title>Loading ... | WiseMapping</title>
|
2022-01-26 22:34:00 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
window.serverconfig = {
|
|
|
|
apiBaseUrl: '',
|
|
|
|
analyticsAccount: '${requestScope['google.analytics.account']}',
|
|
|
|
clientType: 'rest',
|
|
|
|
recaptcha2Enabled: ${requestScope['google.recaptcha2.enabled']},
|
|
|
|
recaptcha2SiteKey: '${requestScope['google.recaptcha2.siteKey']}'
|
|
|
|
};
|
|
|
|
|
|
|
|
</script>
|
2011-10-15 02:52:44 -03:00
|
|
|
<script type="text/javascript">
|
2021-12-24 18:03:23 -08:00
|
|
|
var mapId = '${mindmap.id}';
|
|
|
|
var lockTimestamp = '${lockTimestamp}';
|
|
|
|
var lockSession = '${lockSession}';
|
|
|
|
var mindmapLocked = ${mindmapLocked};
|
|
|
|
var mindmapLockedMsg = '<spring:message code="MINDMAP_LOCKED" arguments="${lockInfo.user.fullName},${lockInfo.user.email}"/>';
|
|
|
|
var userOptions = ${mindmap.properties};
|
2022-01-07 17:47:53 -08:00
|
|
|
var accountName = '${principal.fullName}';
|
|
|
|
var accountEmail = '${principal.email}';
|
2022-01-30 09:55:07 -08:00
|
|
|
var mapTitle = '${mindmap.title}';
|
2012-02-04 12:51:50 -03:00
|
|
|
</script>
|
2009-06-07 18:59:43 +00:00
|
|
|
</head>
|
2021-12-24 18:03:23 -08:00
|
|
|
|
2009-06-07 18:59:43 +00:00
|
|
|
<body>
|
2022-01-26 22:34:00 +00:00
|
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
|
|
<div id="root"></div>
|
|
|
|
|
2022-01-30 09:55:07 -08:00
|
|
|
<script type="text/javascript" src="${requestScope['site.static.js.url']}/webapp/vendors.bundle.js"></script>
|
|
|
|
<script type="text/javascript" src="${requestScope['site.static.js.url']}/webapp/app.bundle.js"></script>
|
2022-01-07 09:21:34 -08:00
|
|
|
|
2009-06-07 18:59:43 +00:00
|
|
|
</body>
|
2022-01-26 22:34:00 +00:00
|
|
|
|
2009-06-07 18:59:43 +00:00
|
|
|
</html>
|