}
var commands = {
- jumpToDocumentElement: function(element) {
- sandbox.getModule('documentCanvas').jumpToElement(element);
- },
refreshCanvasSelection: function(selection) {
var fragment = selection.toDocumentFragment();
sandbox.getModule('documentToolbar').setDocumentFragment(fragment);
};
eventHandlers.data = {
- ready: function(usingDraft, draftTimestamp) {
+ ready: function(usingDraft, draftTimestamp, xmlValid) {
wlxmlDocument = sandbox.getModule('data').getDocument();
views.mainLayout.setView('mainView', views.mainTabs.getAsView());
sandbox.getModule('mainBar').setCommandEnabled('drop-draft', usingDraft);
sandbox.getModule('mainBar').setCommandEnabled('save', usingDraft);
- _.each(['sourceEditor', 'documentCanvas', 'documentToolbar', 'mainBar', 'indicator', 'documentHistory', 'diffViewer', 'statusBar'], function(moduleName) {
+
+ var toStart = ['sourceEditor', 'documentToolbar', 'mainBar', 'indicator', 'documentHistory', 'diffViewer', 'statusBar'];
+ if(xmlValid) {
+ toStart.push('documentCanvas');
+ }
+ _.each(toStart, function(moduleName) {
sandbox.getModule(moduleName).start();
});
},
documentReverted: function(version) {
documentIsDirty = false;
- sandbox.getModule('indicator').clearMessage({message:'Wersja ' + version + ' przywrócona'});
+ sandbox.getModule('indicator').clearMessage({message:'Revision restored'});
+ },
+ publishingStarted: function(version) {
+ sandbox.getModule('indicator').showMessage(gettext('Publishing...'));
+ },
+ documentPublished: function(version) {
+ sandbox.getModule('indicator').clearMessage({message:'Published.'});
}
};
views.visualEditing.setView('leftColumn', sandbox.getModule('documentCanvas').getView());
},
- nodeHovered: function(canvasNode) {
- commands.highlightDocumentNode(canvasNode);
- },
-
- nodeBlured: function(canvasNode) {
- commands.dimDocumentNode(canvasNode);
- },
-
selectionChanged: function(selection) {
commands.refreshCanvasSelection(selection);
}
restoreVersion: function(version) {
sandbox.getModule('data').restoreVersion(version);
},
- displayVersion: function(event) {
+ displayVersion: function(revision) {
/* globals window */
- window.open('/' + gettext('editor') + '/' + sandbox.getModule('data').getDocumentId() + '?version=' + event.version, _.uniqueId());
+ //window.open(sandbox.getConfig().documentPreviewUrl(revision), _.uniqueId());
+ window.open(sandbox.getConfig().documentPreviewUrl(revision), 'preview');
+ },
+ publishVersion: function(version) {
+ sandbox.getModule('data').publishVersion(version);
}
};