Complete mindjet integration.

This commit is contained in:
Paulo Gustavo Veiga
2013-03-29 11:49:59 -03:00
parent ed508d646c
commit 2c355205d0
79 changed files with 3156 additions and 11770 deletions

View File

@@ -64,6 +64,7 @@
<entry key="txt" value="text/plain"/>
<entry key="xls" value="application/vnd.ms-excel"/>
<entry key="otd" value="application/vnd.oasis.opendocument.text"/>
<entry key="mmap" value="application/vnd.mindjet.mindmanager"/>
</map>
</property>
<property name="viewResolvers">
@@ -130,6 +131,11 @@
<constructor-arg ref="notificationService"/>
</bean>
<bean id="transformViewMMap" class="com.wisemapping.rest.view.TransformView">
<constructor-arg value="application/vnd.mindjet.mindmanager"/>
<constructor-arg ref="notificationService"/>
</bean>
<bean id="transformViewWise" class="com.wisemapping.rest.view.TransformView">
<constructor-arg value="application/wisemapping+xml"/>
<constructor-arg ref="notificationService"/>

View File

@@ -18,6 +18,12 @@
<spring:message code="FREEMIND_EXPORT_FORMAT_DETAILS"/>
</label>
<label for="mmap">
<input type="radio" name="exportFormat" value="mmap" id="mmap"/>
<strong><spring:message code="MINDJET_EXPORT_FORMAT"/></strong><br/>
<spring:message code="MINDJET_EXPORT_FORMAT_DETAILS"/>
</label>
<label for="wisemapping">
<input type="radio" id="wisemapping" name="exportFormat" value="wxml"/>
<strong><spring:message code="WISEMAPPING_EXPORT_FORMAT"/></strong><br/>
@@ -65,6 +71,7 @@
<spring:message code="OPEN_OFFICE_EXPORT_FORMAT_DETAILS"/>
</label>
</fieldset>
</form>
</div>
@@ -80,7 +87,7 @@
// No way to obtain map svg. Hide panels..
if (window.location.pathname.indexOf('exportf') != -1) {
$('#exportInfo').hide();
$('#freemind,#pdf,#svg,#odt,#txt,#xls').click('click', function (event) {
$('#freemind,#pdf,#svg,#odt,#txt,#xls,#mmap').click('click', function (event) {
$('#imgFormat').hide();
});