mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-23 22:47:57 +01:00
30 lines
1005 B
Plaintext
30 lines
1005 B
Plaintext
<%@ include file="/jsp/init.jsp" %>
|
|
|
|
<h1>Mindmap Cooker</h1>
|
|
|
|
<div>
|
|
<form action='<c:url value="/c/cooker.htm"/>' method="post">
|
|
<input type="hidden" name="action" value="save"/>
|
|
<input type="hidden" name="mapId" value="${mindmap.id}"/>
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td class="formLabel">
|
|
Native XML:
|
|
</td>
|
|
<td>
|
|
<textarea name="nativeXml" id="xml" rows="20" cols="70">${mindmap.nativeXml}</textarea>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td>
|
|
<input type="submit" value="<spring:message code="SUBMIT"/>" class="btn-primary"/>
|
|
<input type="button" value="<spring:message code="CANCEL"/>" class="btn-primary"/>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
</div>
|