Fix several issues related to HTML 5.0 in the editor.

This commit is contained in:
Paulo Gustavo Veiga 2011-03-28 02:39:12 -03:00
parent 8bb7dab9f0
commit 9849414abb
2 changed files with 15 additions and 20 deletions

View File

@ -35,10 +35,9 @@
<jsp:param name="onlyActionHeader" value="true"/> <jsp:param name="onlyActionHeader" value="true"/>
</jsp:include> </jsp:include>
<form method="post" id="printForm" name="printForm" action='<c:url value="export.htm"/>' style="height:100%;" <form method="post" id="printForm" name="printForm" action='<c:url value="export.htm"/>' style="height:100%;" target="${mindmap.title}">
target="${mindmap.title}"> <input type="hidden" name="action" value="print" >
<input type="hidden" name="action" value="print"/> <input type="hidden" name="mapId" value="${mindmap.id}" >
<input type="hidden" name="mapId" value="${mindmap.id}"/>
</form> </form>
<div id="waitDialog" style="display:none"> <div id="waitDialog" style="display:none">
@ -101,14 +100,10 @@
<div id="topicShapePanel" class="toolbarPanel"> <div id="topicShapePanel" class="toolbarPanel">
<!--<div id="automatic" class="toolbarPanelLink">Automatic</div>--> <!--<div id="automatic" class="toolbarPanelLink">Automatic</div>-->
<div id="rectagle" class="toolbarPanelLink"><img src="../images/shape-rectangle.png" alt="Rectangle" width="40px" <div id="rectagle" class="toolbarPanelLink"><img src="../images/shape-rectangle.png" alt="Rectangle" width="40" height="25"></div>
height="25px"></div> <div id="rounded rectagle" class="toolbarPanelLink"><img src="../images/shape-rectangle-rounded.png" alt="Rounded Rectangle" width="40" height="25"></div>
<div id="rounded rectagle" class="toolbarPanelLink"><img src="../images/shape-rectangle-rounded.png" <div id="line" class="toolbarPanelLink"><img src="../images/shape-line.png" alt="Line" width="40" height="7"></div>
alt="Rounded Rectangle" width="40px" height="25px"></div> <div id="elipse" class="toolbarPanelLink"><img src="../images/shape-elipse.png" alt="Elipse" width="40" height="25"></div>
<div id="line" class="toolbarPanelLink"><img src="../images/shape-line.png" alt="Line" width="40px" height="7px">
</div>
<div id="elipse" class="toolbarPanelLink"><img src="../images/shape-elipse.png" alt="Elipse" width="40px"
height="25px"></div>
</div> </div>
<div id="actionsContainer"> <div id="actionsContainer">
@ -236,7 +231,7 @@
</a> </a>
<c:choose> <c:choose>
<c:when test="${mindmap.owner==user}"> <c:when test="${mindmap.owner==user}">
<a id="shareAnchor" href="<c:out value="${shareMap}"/>&mapId=${mindmap.id}" <a id="shareAnchor" href="<c:out value="${shareMap}"/>&amp;mapId=${mindmap.id}"
rel="moodalbox 780px 530px wizard" title="<spring:message code="SHARE_DETAILS"/>"> rel="moodalbox 780px 530px wizard" title="<spring:message code="SHARE_DETAILS"/>">
<div id="shareIt" class="button" title="<spring:message code="COLLABORATION"/>"> <div id="shareIt" class="button" title="<spring:message code="COLLABORATION"/>">
<div class="toolbarLabel"><p><spring:message code="SHARE"/></p></div> <div class="toolbarLabel"><p><spring:message code="SHARE"/></p></div>
@ -251,7 +246,7 @@
</a> </a>
</c:when> </c:when>
</c:choose> </c:choose>
<a id="historyAnchor" href="history.htm?action=list&mapId=${mindmap.id}" <a id="historyAnchor" href="history.htm?action=list&amp;mapId=${mindmap.id}"
rel="moodalbox 600px 400px wizard" title="<spring:message code="HISTORY_MSG"/>"> rel="moodalbox 600px 400px wizard" title="<spring:message code="HISTORY_MSG"/>">
<div id="history" class="button" title="<spring:message code="HISTORY_MSG"/>"> <div id="history" class="button" title="<spring:message code="HISTORY_MSG"/>">
<div class="toolbarLabel"><p><spring:message code="HISTORY"/></p></div> <div class="toolbarLabel"><p><spring:message code="HISTORY"/></p></div>

View File

@ -10,12 +10,12 @@
<title> <title>
<spring:message code="SITE.TITLE"/> <spring:message code="SITE.TITLE"/>
</title> </title>
<meta http-equiv="Content-type" value="text/html; charset=utf-8"> <meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="../css/mymaps.css"> <link rel="stylesheet" type="text/css" href="../css/mymaps.css"/>
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/commonLibs.css"> <link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/commonLibs.css"/>
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/thirdparty.css"> <link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/thirdparty.css"/>
<link rel="icon" href="${pageContext.request.contextPath}/images/favicon.ico" type="image/x-icon"> <link rel="icon" href="${pageContext.request.contextPath}/images/favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="${pageContext.request.contextPath}/images/favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="${pageContext.request.contextPath}/images/favicon.ico" type="image/x-icon"/>
<script type="text/javascript" src="${pageContext.request.contextPath}/js/wiseLibrary.js"></script> <script type="text/javascript" src="${pageContext.request.contextPath}/js/wiseLibrary.js"></script>
<script type="text/javascript"> <script type="text/javascript">