Remove trunk directory
This commit is contained in:
125
wise-webapp/src/main/webapp/jsp/mindmapPublish.jsp
Normal file
125
wise-webapp/src/main/webapp/jsp/mindmapPublish.jsp
Normal file
@@ -0,0 +1,125 @@
|
||||
<%@ include file="/jsp/init.jsp" %>
|
||||
<h1>
|
||||
<spring:message code="PUBLISH"/>
|
||||
'${mindmap.title}'
|
||||
</h1>
|
||||
|
||||
<h2>
|
||||
<spring:message code="PUBLISH_DETAILS"/>
|
||||
</h2>
|
||||
|
||||
<div>
|
||||
<form method="post" id="publishForm" name="publishForm" action="<c:url value="publish.htm"/>" style="height:100%;">
|
||||
<input type="hidden" name="actionId" value="save"/>
|
||||
<input type="hidden" name="mapId" value="${mindmap.id}"/>
|
||||
<table>
|
||||
<colgroup>
|
||||
<col width="10%"/>
|
||||
<col width="90%"/>
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<input type="checkbox" id="publicViewId" name="publicView" value="true"
|
||||
<c:if test="${mindmap.public}">
|
||||
|
||||
checked="checked"
|
||||
</c:if>
|
||||
|
||||
/>
|
||||
<spring:message code="PUBLISH_MAP_TO_INTERNET"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<div id="disabledPanel"
|
||||
style="position:absolute;background-color:white;opacity:0.8;width:600px;height:180px;left:10px;visibility:hidden;">
|
||||
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="formLabel">
|
||||
<spring:message code="URL"/>
|
||||
:
|
||||
</td>
|
||||
<td>
|
||||
<input name="url" value="http://www.wisemapping.com/c/publicView.htm?mapId=${mindmap.id}"
|
||||
style="width:400px" readonly="readonly"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="formLabel">
|
||||
<spring:message code="DIRECT_LINK"/>
|
||||
:
|
||||
</td>
|
||||
<td>
|
||||
<textarea style="width:400px;height:30px;overflow:hidden;" cols="55" rows="3" readonly="readonly">
|
||||
<a href="http://www.wisemapping.com/c/publicView.htm?mapId=${mindmap.id}">${mindmap.title}</a></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="formLabel">
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="formLabel" style="white-space:normal;">
|
||||
<spring:message code="BLOG_INCLUSION"/>
|
||||
:
|
||||
</td>
|
||||
<td>
|
||||
<textarea style="width:400px;height:70px;overflow:hidden;" cols="55" rows="5" readonly="readonly">
|
||||
<iframe
|
||||
style="border:0;width:600px;height:400px;border: 1px solid black"
|
||||
src="http://www.wisemapping.com/c/embeddedView.htm?mapId=${mindmap.id}&zoom=1">
|
||||
</iframe>
|
||||
</textarea>
|
||||
|
||||
<p><spring:message code="EMBEDDED_MAP_SIZE"/></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align:center;margin-top:30px;" colspan="2">
|
||||
<input type="submit" id="ok" value="<spring:message code="OK"/>" class="btn-primary">
|
||||
<input type="button" value="<spring:message code="CANCEL"/>" class="btn-primary"
|
||||
onclick="MOOdalBox.close();">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
var isPublicPanelEnabled = false;
|
||||
var panelEnabler = function()
|
||||
{
|
||||
if (isPublicPanelEnabled)
|
||||
{
|
||||
$('disabledPanel').setStyle("visibility", "hidden");
|
||||
} else
|
||||
{
|
||||
$('disabledPanel').setStyle("visibility", "visible");
|
||||
}
|
||||
isPublicPanelEnabled = !isPublicPanelEnabled;
|
||||
}
|
||||
|
||||
if (${mindmap.public==false})
|
||||
{
|
||||
panelEnabler()
|
||||
}
|
||||
$('publicViewId').addEvent('click', panelEnabler);
|
||||
|
||||
</script>
|
||||
Reference in New Issue
Block a user