2011-07-23 22:22:46 +02:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
2011-10-04 06:16:29 +02:00
|
|
|
<title>WiseMapping - Editor </title>
|
|
|
|
<meta http-equiv="Content-type" content="text/html; charset=UTF-8"/>
|
2011-07-23 22:22:46 +02:00
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
|
|
<![endif]-->
|
2011-10-04 06:16:29 +02:00
|
|
|
<!--<script type="text/javascript" src="http://docs.google.com/brix/static/api/js/jsapi.nocache.js"></script>-->
|
2011-10-15 03:56:20 +02:00
|
|
|
<script type='text/javascript' src='../js/less-1.1.3.min.js'></script>
|
2011-10-10 23:30:02 +02:00
|
|
|
<link rel="stylesheet/less" type="text/css" href="../css/editor2.css"/>
|
2011-07-26 20:07:53 +02:00
|
|
|
|
2011-10-04 06:16:29 +02:00
|
|
|
<script type='text/javascript'
|
2011-10-18 14:29:29 +02:00
|
|
|
src='/mindplot/src/main/javascript/libraries/mootools/mootools-core-1.3.2-full-compress.js'></script>
|
2011-10-04 06:16:29 +02:00
|
|
|
<script type='text/javascript'
|
|
|
|
src='/mindplot/src/main/javascript/libraries/mootools/mootools-more-1.3.2.1-yui.js'></script>
|
2011-08-23 19:25:49 +02:00
|
|
|
<script type='text/javascript' src='/core-js/target/classes/core.js'></script>
|
2011-10-15 07:52:44 +02:00
|
|
|
<script type='text/javascript' src='../js/less-1.1.3.min.js'></script>
|
|
|
|
|
|
|
|
|
2011-08-08 00:27:23 +02:00
|
|
|
<script type="text/javascript">
|
2011-09-07 03:12:11 +02:00
|
|
|
|
2011-08-08 00:27:23 +02:00
|
|
|
//Google-Brix framework load callback function
|
|
|
|
collabOnLoad = function() {
|
2011-09-07 03:12:11 +02:00
|
|
|
$(document).fireEvent('loadcomplete', 'brix');
|
2011-08-08 00:27:23 +02:00
|
|
|
};
|
2011-09-07 03:12:11 +02:00
|
|
|
|
2011-10-04 06:16:29 +02:00
|
|
|
var mapId = '10'; // @todo: Must be changed ...
|
2011-09-07 03:12:11 +02:00
|
|
|
var brixReady = false;
|
|
|
|
var mindReady = false;
|
2011-10-04 06:16:29 +02:00
|
|
|
var collab = 'standalone';
|
|
|
|
// var collab = 'brix';
|
2011-09-07 03:12:11 +02:00
|
|
|
$(document).addEvent('loadcomplete', function(resource) {
|
|
|
|
brixReady = resource == 'brix' ? true : brixReady;
|
|
|
|
mindReady = resource == 'mind' ? true : mindReady;
|
|
|
|
|
2011-09-08 14:16:50 +02:00
|
|
|
if (mindReady) {
|
2011-10-04 06:16:29 +02:00
|
|
|
designer = buildDesigner(collab);
|
2011-09-08 14:16:50 +02:00
|
|
|
}
|
|
|
|
|
2011-09-07 03:12:11 +02:00
|
|
|
// If both resources has been loaded, start loading the framework...
|
|
|
|
if (brixReady && mindReady) {
|
|
|
|
|
2011-09-08 14:16:50 +02:00
|
|
|
mindplot.collaboration.framework.brix.BrixFramework.init(function() {
|
|
|
|
var manager = mindplot.collaboration.CollaborationManager.getInstance();
|
2011-09-09 07:22:44 +02:00
|
|
|
var mindmap = manager.buildMindmap();
|
|
|
|
designer.loadMap(mindmap);
|
|
|
|
|
2011-09-07 03:12:11 +02:00
|
|
|
// If not problem has arisen, close the dialog ...
|
|
|
|
if (!window.hasUnexpectedErrors) {
|
|
|
|
waitDialog.deactivate();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2011-10-04 06:16:29 +02:00
|
|
|
} else if (collab == 'standalone' && mindReady) {
|
2011-09-08 14:16:50 +02:00
|
|
|
// Load map from XML ...
|
2011-11-01 05:08:51 +01:00
|
|
|
var domDocument;
|
|
|
|
var xmlRequest = new Request({
|
|
|
|
url: '../maps/map1.xml',
|
|
|
|
method: 'get',
|
|
|
|
async: false,
|
|
|
|
onSuccess: function(responseText, responseXML) {
|
|
|
|
domDocument = responseXML;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
xmlRequest.send();
|
|
|
|
|
2011-09-08 14:16:50 +02:00
|
|
|
var serializer = mindplot.XMLMindmapSerializerFactory.getSerializerFromDocument(domDocument);
|
2011-10-04 06:16:29 +02:00
|
|
|
var mindmap = serializer.loadFromDom(domDocument, mapId);
|
2011-09-08 14:16:50 +02:00
|
|
|
|
|
|
|
// Now, load the map ...
|
|
|
|
designer.loadMap(mindmap);
|
2011-09-07 03:12:11 +02:00
|
|
|
|
2011-09-08 14:16:50 +02:00
|
|
|
// If not problem has arisen, close the dialog ...
|
2011-09-07 03:12:11 +02:00
|
|
|
if (!window.hasUnexpectedErrors) {
|
|
|
|
waitDialog.deactivate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2011-08-08 00:27:23 +02:00
|
|
|
</script>
|
2011-07-23 22:22:46 +02:00
|
|
|
|
|
|
|
<link rel="icon" href="../images/favicon.ico" type="image/x-icon">
|
|
|
|
<link rel="shortcut icon" href="../images/favicon.ico" type="image/x-icon">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2011-07-24 17:09:05 +02:00
|
|
|
<form method="post" id="printForm" name="printForm" action='' style="height:100%;" target="${mindmap.title}">
|
2011-07-23 22:22:46 +02:00
|
|
|
<input type="hidden" name="action" value="print">
|
|
|
|
<input type="hidden" name="mapId" value="${mindmap.id}">
|
|
|
|
<input type="hidden" name="mapSvg" value="">
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<div id="waitDialog" style="display:none">
|
|
|
|
<div id="waitingContainer">
|
|
|
|
<div class="loadingIcon"></div>
|
|
|
|
<div class="loadingText">
|
2011-08-05 06:06:56 +02:00
|
|
|
Loading ...
|
2011-07-23 22:22:46 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="errorDialog" style="display:none">
|
|
|
|
<div id="errorContainer">
|
|
|
|
<div class="loadingIcon"></div>
|
|
|
|
<div class="loadingText">
|
2011-08-05 06:06:56 +02:00
|
|
|
Unexpected error loading your map :(
|
2011-07-23 22:22:46 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
var waitDialog = new core.WaitDialog();
|
|
|
|
waitDialog.activate(true, $("waitDialog"));
|
|
|
|
$(window).addEvent("error", function(event) {
|
|
|
|
|
|
|
|
// Show error dialog ...
|
|
|
|
waitDialog.changeContent($("errorDialog"), false);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2011-10-10 23:30:02 +02:00
|
|
|
|
|
|
|
<div id="header">
|
|
|
|
<div id="headerInfo">
|
2011-10-15 03:56:20 +02:00
|
|
|
<div id="headerActions">
|
|
|
|
<span>MyWiseMappigs</span> | <span>Settings</span> | <span>Logout</span>
|
|
|
|
</div>
|
|
|
|
<div id="headerLogo"></div>
|
|
|
|
<div id="headerMapTitle">Title: <span>Hola</span></div>
|
2011-10-10 23:30:02 +02:00
|
|
|
</div>
|
|
|
|
<div id="toolbar">
|
|
|
|
<div id="editTab" class="tabContent">
|
2011-10-15 18:23:27 +02:00
|
|
|
<div id="persist" class="buttonContainer">
|
|
|
|
<div id="save" class="buttonOn" title="Save">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/save.png"/>
|
2011-10-15 18:23:27 +02:00
|
|
|
</div>
|
|
|
|
<div id="discart" class="buttonOn" title="Discard">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/discart.png"/>
|
2011-10-15 18:23:27 +02:00
|
|
|
</div>
|
|
|
|
<div id="print" class="buttonOn" title="Print">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/print.png"/>
|
2011-10-15 18:23:27 +02:00
|
|
|
</div>
|
|
|
|
<div id="export" class="buttonOn" title="Export">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/export.png"/>
|
2011-10-15 18:23:27 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="edit" class="buttonContainer">
|
2011-10-15 03:56:20 +02:00
|
|
|
<div id="undoEdition" class="buttonOn" title="Undo Edition">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/undo.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="redoEdition" class="buttonOn" title="Redo Edition">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/redo.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
2011-10-10 23:30:02 +02:00
|
|
|
</div>
|
|
|
|
<div id="zoom" class="buttonContainer">
|
2011-10-15 03:56:20 +02:00
|
|
|
<div id="zoomIn" class="buttonOn" title="Zoom In">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/zoom-in.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="zoomOut" class="buttonOn" title="Zoom Out">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/zoom-out.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
2011-10-10 23:30:02 +02:00
|
|
|
</div>
|
|
|
|
<div id="node" class="buttonContainer">
|
2011-10-15 03:56:20 +02:00
|
|
|
<div id="topicShape" class="buttonExtOn" title="Topic Shape">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/topic-shape.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="addTopic" class="buttonOn" title="Add Topic">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/topic-add.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="deleteTopic" class="buttonOn" title="Delete">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/topic-delete.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="topicBorder" class="buttonOn" title="Border Color">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/topic-border.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="topicColor" class="buttonExtOn" title="Background Color">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/topic-color.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="topicIcon" class="buttonExtOn" title="Add Icon">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/topic-icon.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="topicNote" class="buttonOn" title="Add Note">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/topic-note.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="topicLink" class="buttonOn" title="Add Link">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/topic-link.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="topicRelation" class="buttonOn" title="Add Relationship">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/topic-relation.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
2011-10-10 23:30:02 +02:00
|
|
|
</div>
|
|
|
|
<div id="font" class="buttonContainer">
|
2011-10-15 03:56:20 +02:00
|
|
|
<div id="fontFamily" class="buttonOn" title="Font Style">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/font-type.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="fontSize" class="buttonExtOn" title="Font Size">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/font-size.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="fontBold" class="buttonOn" title="Bold Style">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/font-bold.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
|
|
|
<div id="fontItalic" class="buttonOn" title="Italic Style">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/font-italic.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
</div>
|
2011-10-17 15:12:27 +02:00
|
|
|
<div id="fontColor" class="buttonExtOn" title="Fond Color" style="padding-top:4px">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/font-color.png"/>
|
2011-10-15 03:56:20 +02:00
|
|
|
|
|
|
|
</div>
|
2011-10-10 23:30:02 +02:00
|
|
|
</div>
|
2011-10-15 07:52:44 +02:00
|
|
|
<div id="collaboration" class="buttonContainer">
|
|
|
|
<div id="tagIt" class="buttonOn" title="Tag">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/tag.png"/>
|
2011-10-15 07:52:44 +02:00
|
|
|
</div>
|
|
|
|
<div id="shareIt" class="buttonOn" title="Share">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/share.png"/>
|
2011-10-15 07:52:44 +02:00
|
|
|
</div>
|
|
|
|
<div id="publishIt" class="buttonOn" title="Publish">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/public.png"/>
|
2011-10-15 07:52:44 +02:00
|
|
|
</div>
|
|
|
|
<div id="history" class="buttonOn" title="History">
|
2011-11-01 05:08:51 +01:00
|
|
|
<img src="../images/history.png"/>
|
2011-10-15 07:52:44 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2011-07-23 22:22:46 +02:00
|
|
|
</div>
|
2011-08-05 06:06:56 +02:00
|
|
|
</div>
|
2011-07-23 22:22:46 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="mindplot"></div>
|
|
|
|
<script type="text/javascript" src="../js/editor.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|