More more more fixes.
@ -341,10 +341,8 @@ mindplot.Designer = new Class({
|
|||||||
},
|
},
|
||||||
|
|
||||||
needsSave : function() {
|
needsSave : function() {
|
||||||
|
|
||||||
//@Todo: Review all this ...
|
//@Todo: Review all this ...
|
||||||
// return this._actionDispatcher.hasBeenChanged();
|
return this._actionDispatcher._actionRunner.hasBeenChanged();
|
||||||
return true;
|
|
||||||
},
|
},
|
||||||
|
|
||||||
save : function(onSavedHandler, saveHistory) {
|
save : function(onSavedHandler, saveHistory) {
|
||||||
@ -391,11 +389,12 @@ mindplot.Designer = new Class({
|
|||||||
},
|
},
|
||||||
|
|
||||||
undo : function() {
|
undo : function() {
|
||||||
this._actionRunner.undo();
|
// @Todo: This is a hack...
|
||||||
|
this._actionDispatcher._actionRunner.undo();
|
||||||
},
|
},
|
||||||
|
|
||||||
redo : function() {
|
redo : function() {
|
||||||
this._actionRunner.redo();
|
this._actionDispatcher._actionRunner.redo();
|
||||||
},
|
},
|
||||||
|
|
||||||
_nodeModelToNodeGraph : function(nodeModel, isVisible) {
|
_nodeModelToNodeGraph : function(nodeModel, isVisible) {
|
||||||
|
@ -179,6 +179,24 @@ mindplot.widget.Menu = new Class({
|
|||||||
};
|
};
|
||||||
this._toolbarElems.push(new mindplot.widget.ColorPalettePanel('fontColor', fontColorModel, baseUrl));
|
this._toolbarElems.push(new mindplot.widget.ColorPalettePanel('fontColor', fontColorModel, baseUrl));
|
||||||
|
|
||||||
|
this.addButton('export', false, false, function() {
|
||||||
|
var reqDialog = new MooDialog.Request('../c/export.htm?mapId=' + mapId, null,
|
||||||
|
{'class': 'historyModalDialog',
|
||||||
|
closeButton:true,
|
||||||
|
destroyOnClose:true,
|
||||||
|
title:'Export'
|
||||||
|
});
|
||||||
|
reqDialog.setRequestOptions({
|
||||||
|
onRequest: function() {
|
||||||
|
reqDialog.setContent('loading...');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
this.addButton('print', false, false, function() {
|
||||||
|
printMap();
|
||||||
|
});
|
||||||
|
|
||||||
this.addButton('zoomIn', false, false, function() {
|
this.addButton('zoomIn', false, false, function() {
|
||||||
designer.zoomIn();
|
designer.zoomIn();
|
||||||
});
|
});
|
||||||
@ -225,29 +243,17 @@ mindplot.widget.Menu = new Class({
|
|||||||
|
|
||||||
var saveElem = $('save');
|
var saveElem = $('save');
|
||||||
if (saveElem) {
|
if (saveElem) {
|
||||||
saveElem.addEvent('click', function() {
|
this.addButton('save', false, false, function() {
|
||||||
|
|
||||||
if (!readOnly) {
|
|
||||||
saveElem.setStyle('cursor', 'wait');
|
saveElem.setStyle('cursor', 'wait');
|
||||||
(function() {
|
|
||||||
designer.save(function() {
|
designer.save(function() {
|
||||||
saveElem.setStyle('cursor', 'pointer');
|
saveElem.setStyle('cursor', 'pointer');
|
||||||
}, true);
|
}, true);
|
||||||
}).delay(1);
|
|
||||||
} else {
|
|
||||||
new Windoo.Confirm('This option is not enabled in try mode. You must by signed in order to execute this action.<br/> to create an account click <a href="userRegistration.htm">here</a>',
|
|
||||||
{
|
|
||||||
'window': {theme:Windoo.Themes.wise,
|
|
||||||
title:''
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
var discartElem = $('discart');
|
var discartElem = $('discart');
|
||||||
if (discartElem) {
|
if (discartElem) {
|
||||||
discartElem.addEvent('click', function() {
|
this.addButton('tagIt', false, false, function() {
|
||||||
|
|
||||||
if (!readOnly) {
|
if (!readOnly) {
|
||||||
displayLoading();
|
displayLoading();
|
||||||
@ -261,49 +267,58 @@ mindplot.widget.Menu = new Class({
|
|||||||
|
|
||||||
var tagElem = $('tagIt');
|
var tagElem = $('tagIt');
|
||||||
if (tagElem) {
|
if (tagElem) {
|
||||||
tagElem.addEvent('click', function(event) {
|
this.addButton('tagIt', false, false, function() {
|
||||||
var reqDialog = new MooDialog.Request('../c/tags.htm?mapId=' + mapId, null, {'class': 'MooDialogBig'});
|
var reqDialog = new MooDialog.Request('../c/tags.htm?mapId=' + mapId, null,
|
||||||
// var reqDialog = new MooDialog.Request("embeddde.html",null,{'class': 'MooDialogBig'});
|
{'class': 'tagItModalDialog',
|
||||||
|
closeButton:true,
|
||||||
|
destroyOnClose:true,
|
||||||
|
title:'Tags'
|
||||||
|
});
|
||||||
|
reqDialog.setRequestOptions({
|
||||||
|
onRequest: function() {
|
||||||
|
reqDialog.setContent('loading...');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
var shareElem = $('shareIt');
|
||||||
|
if (shareElem) {
|
||||||
|
this.addButton('shareIt', false, false, function() {
|
||||||
|
var reqDialog = new MooDialog.Request('../c/mymaps.htm?action=collaborator&userEmail=paulo%40pveiga.com.ar&mapId=' + mapId, null,
|
||||||
|
{'class': 'shareItModalDialog',
|
||||||
|
closeButton:true,
|
||||||
|
destroyOnClose:true,
|
||||||
|
title:'Share It'
|
||||||
|
});
|
||||||
reqDialog.setRequestOptions({
|
reqDialog.setRequestOptions({
|
||||||
onRequest: function() {
|
onRequest: function() {
|
||||||
reqDialog.setContent('loading...');
|
reqDialog.setContent('loading...');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
var shareElem = $('shareIt');
|
|
||||||
if (shareElem) {
|
|
||||||
shareElem.addEvent('click', function() {
|
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
var publishElem = $('publishIt');
|
var publishElem = $('publishIt');
|
||||||
if (publishElem) {
|
if (publishElem) {
|
||||||
$('publishIt').addEvent('click', function(event) {
|
|
||||||
new Windoo.Confirm('This option is not enabled in try mode. You must by signed in order to execute this action.',
|
|
||||||
{
|
|
||||||
'window': {theme:Windoo.Themes.wise,
|
|
||||||
title:''
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
var historyElem = $('history');
|
var historyElem = $('history');
|
||||||
if (historyElem) {
|
if (historyElem) {
|
||||||
historyElem.addEvent('click', function(event) {
|
|
||||||
new Windoo.Confirm('This option is not enabled in try mode. You must by signed in order to execute this action.',
|
this.addButton('history', false, false, function() {
|
||||||
{
|
var reqDialog = new MooDialog.Request('../c/history.htm?action=list&goToMindmapList&mapId=' + mapId, null,
|
||||||
'window': {theme:Windoo.Themes.wise,
|
{'class': 'historyModalDialog',
|
||||||
title:''
|
closeButton:true,
|
||||||
|
destroyOnClose:true,
|
||||||
|
title:'History'
|
||||||
|
});
|
||||||
|
reqDialog.setRequestOptions({
|
||||||
|
onRequest: function() {
|
||||||
|
reqDialog.setContent('loading...');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -283,6 +283,11 @@ div#headerActions span {
|
|||||||
border-bottom: 3px solid rgb(247, 201, 49);
|
border-bottom: 3px solid rgb(247, 201, 49);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div#headerActions a {
|
||||||
|
color: white;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
div#headerMapTitle {
|
div#headerMapTitle {
|
||||||
width: 200px;
|
width: 200px;
|
||||||
height:(@header-info-height ) - 13;
|
height:(@header-info-height ) - 13;
|
||||||
@ -312,6 +317,7 @@ div#toolbar {
|
|||||||
background-image: -moz-linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%);
|
background-image: -moz-linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%);
|
||||||
background-image: -webkit-linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%);
|
background-image: -webkit-linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%);
|
||||||
background-image: -ms-linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%);
|
background-image: -ms-linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%);
|
||||||
|
|
||||||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.47, rgb(229, 227, 209)), color-stop(0.87, rgb(252, 250, 237)));
|
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.47, rgb(229, 227, 209)), color-stop(0.87, rgb(252, 250, 237)));
|
||||||
border-bottom: 3px double rgb(190, 190, 190);
|
border-bottom: 3px double rgb(190, 190, 190);
|
||||||
border-top: 1px solid rgb(190, 190, 190);
|
border-top: 1px solid rgb(190, 190, 190);
|
||||||
@ -320,8 +326,6 @@ div#toolbar {
|
|||||||
div#toolbar .buttonContainer {
|
div#toolbar .buttonContainer {
|
||||||
height: @header-toolbar-height;
|
height: @header-toolbar-height;
|
||||||
float: left;
|
float: left;
|
||||||
/*color: black;*/
|
|
||||||
/*border: 1px solid #BBB4D6;*/
|
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -542,9 +546,6 @@ div.toolbarPanelLink, div.toolbarPanelLinkSelectedLink {
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
-moz-border-radius: 3px;
|
|
||||||
-webkit-border-radius: 3px;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
div.toolbarPanelLink:hover, div.toolbarPanelLinkSelectedLink {
|
div.toolbarPanelLink:hover, div.toolbarPanelLinkSelectedLink {
|
||||||
@ -654,6 +655,7 @@ div#small_error_icon {
|
|||||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||||
border-color: #0064cd #0064cd #003f81;
|
border-color: #0064cd #0064cd #003f81;
|
||||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||||
|
margin-top: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary:hover {
|
.btn-primary:hover {
|
||||||
@ -691,6 +693,7 @@ div#small_error_icon {
|
|||||||
-o-transition: 0.1s linear all;
|
-o-transition: 0.1s linear all;
|
||||||
transition: 0.1s linear all;
|
transition: 0.1s linear all;
|
||||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||||
|
margin-top: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-secondary:hover {
|
.btn-secondary:hover {
|
||||||
@ -699,8 +702,9 @@ div#small_error_icon {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** */
|
/** */
|
||||||
|
/* Modal dialogs definitions */
|
||||||
|
|
||||||
.MooDialogBig {
|
.tagItModalDialog, .historyModalDialog, .shareItModalDialog {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
@ -710,7 +714,7 @@ div#small_error_icon {
|
|||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.3);
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
||||||
*border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
/* IE6-7 */
|
/* IE6-7 */
|
||||||
|
|
||||||
-webkit-border-radius: 6px;
|
-webkit-border-radius: 6px;
|
||||||
@ -725,7 +729,42 @@ div#small_error_icon {
|
|||||||
padding: 30px;
|
padding: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.shareItModalDialog {
|
||||||
|
width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
.MooDialogBig .content {
|
.tagItModalDialog .title, .historyModalDialog .title, .shareItModalDialog .title {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
border-bottom: 1px solid #a1aec5;
|
||||||
|
font-weight: bold;
|
||||||
|
text-shadow: 1px 1px 0 #fff;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
padding: 5px 30px;
|
||||||
|
font-size: 18px
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagItModalDialog .content {
|
||||||
|
height: 130px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.historyModalDialog .content {
|
||||||
height: 300px;
|
height: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.shareItModalDialog .content {
|
||||||
|
height: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modalDialog h1 {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modalDialog h2 {
|
||||||
|
font-size: 14px;
|
||||||
|
margin: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -127,7 +127,21 @@
|
|||||||
</div>
|
</div>
|
||||||
<div id="toolbar">
|
<div id="toolbar">
|
||||||
<div id="editTab" class="tabContent">
|
<div id="editTab" class="tabContent">
|
||||||
<div id="file" class="buttonContainer">
|
<div id="persist" class="buttonContainer">
|
||||||
|
<div id="save" class="buttonOn" title="Save">
|
||||||
|
<img src="../nicons/save.png"/>
|
||||||
|
</div>
|
||||||
|
<div id="discart" class="buttonOn" title="Discard">
|
||||||
|
<img src="../nicons/discart.png"/>
|
||||||
|
</div>
|
||||||
|
<div id="print" class="buttonOn" title="Print">
|
||||||
|
<img src="../nicons/print.png"/>
|
||||||
|
</div>
|
||||||
|
<div id="export" class="buttonOn" title="Export">
|
||||||
|
<img src="../nicons/export.png"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="edit" class="buttonContainer">
|
||||||
<div id="undoEdition" class="buttonOn" title="Undo Edition">
|
<div id="undoEdition" class="buttonOn" title="Undo Edition">
|
||||||
<img src="../nicons/undo.png"/>
|
<img src="../nicons/undo.png"/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -115,6 +115,12 @@
|
|||||||
<put name="body" value="/jsp/newMap.jsp"/>
|
<put name="body" value="/jsp/newMap.jsp"/>
|
||||||
</definition>
|
</definition>
|
||||||
|
|
||||||
|
<definition name="newMap" extends="pageTemplate">
|
||||||
|
<put name="title" value="NEW_MINDMAP"/>
|
||||||
|
<put name="details" value="FIELD_REQUIRED_MSG"/>
|
||||||
|
<put name="body" value="/jsp/newMap.jsp"/>
|
||||||
|
</definition>
|
||||||
|
|
||||||
<definition name="newMapError" extends="pageTemplate">
|
<definition name="newMapError" extends="pageTemplate">
|
||||||
<put name="title" value="NEW_MINDMAP"/>
|
<put name="title" value="NEW_MINDMAP"/>
|
||||||
<put name="details" value="FIELD_REQUIRED_MSG"/>
|
<put name="details" value="FIELD_REQUIRED_MSG"/>
|
||||||
|
@ -109,6 +109,7 @@
|
|||||||
/js/**=IS_AUTHENTICATED_ANONYMOUSLY
|
/js/**=IS_AUTHENTICATED_ANONYMOUSLY
|
||||||
/ws/**=IS_AUTHENTICATED_ANONYMOUSLY
|
/ws/**=IS_AUTHENTICATED_ANONYMOUSLY
|
||||||
/images/*=IS_AUTHENTICATED_ANONYMOUSLY
|
/images/*=IS_AUTHENTICATED_ANONYMOUSLY
|
||||||
|
/nicons/*=IS_AUTHENTICATED_ANONYMOUSLY
|
||||||
/c/embeddedview.htm=IS_AUTHENTICATED_ANONYMOUSLY
|
/c/embeddedview.htm=IS_AUTHENTICATED_ANONYMOUSLY
|
||||||
/c/export.htm=IS_AUTHENTICATED_ANONYMOUSLY
|
/c/export.htm=IS_AUTHENTICATED_ANONYMOUSLY
|
||||||
/c/publicview.htm=IS_AUTHENTICATED_ANONYMOUSLY
|
/c/publicview.htm=IS_AUTHENTICATED_ANONYMOUSLY
|
||||||
|
@ -345,21 +345,6 @@ div#printLogo {
|
|||||||
background: url(../images/logo-vsmall.png) no-repeat right top;
|
background: url(../images/logo-vsmall.png) no-repeat right top;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary {
|
|
||||||
background: #3399CC;
|
|
||||||
border: 1px solid #006699;
|
|
||||||
color: #FFFFFF;
|
|
||||||
font-family: arial, helvetica, sans-serif;
|
|
||||||
font-size: 92%;
|
|
||||||
font-style: normal;
|
|
||||||
font-variant: normal;
|
|
||||||
font-weight: bold;
|
|
||||||
line-height: normal;
|
|
||||||
overflow: visible;
|
|
||||||
padding: 2px 8px 1px;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#paypal {
|
div#paypal {
|
||||||
float: left;
|
float: left;
|
||||||
margin: -29px;
|
margin: -29px;
|
||||||
@ -594,14 +579,83 @@ div.installCFG h2 {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.floating-tip {
|
/* */
|
||||||
background-color: #dfcf3c;
|
.btn-primary {
|
||||||
padding: 5px 15px;
|
cursor: pointer;
|
||||||
color: #666666;
|
display: inline-block;
|
||||||
/*font-weight: bold;*/
|
padding: 5px 14px 6px;
|
||||||
/*width: 100px;*/
|
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
||||||
|
color: #333;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
-moz-border-radius: 3px;
|
line-height: normal;
|
||||||
-webkit-border-radius: 3px;
|
border: 1px solid #ccc;
|
||||||
border-radius: 3px;
|
border-bottom-color: #bbb;
|
||||||
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
|
-webkit-border-radius: 4px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
border-radius: 4px;
|
||||||
|
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||||
|
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||||
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||||
|
-webkit-transition: 0.1s linear all;
|
||||||
|
-moz-transition: 0.1s linear all;
|
||||||
|
-ms-transition: 0.1s linear all;
|
||||||
|
-o-transition: 0.1s linear all;
|
||||||
|
transition: 0.1s linear all;
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #0064cd;
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
|
||||||
|
background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
|
||||||
|
background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
|
||||||
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
|
||||||
|
background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
|
||||||
|
background-image: -o-linear-gradient(top, #049cdb, #0064cd);
|
||||||
|
background-image: linear-gradient(top, #049cdb, #0064cd);
|
||||||
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||||
|
border-color: #0064cd #0064cd #003f81;
|
||||||
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||||
|
margin-top: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary:hover {
|
||||||
|
background-position: 0 -15px;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-secondary {
|
||||||
|
cursor: pointer;
|
||||||
|
display: inline-block;
|
||||||
|
background-color: #e6e6e6;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
|
||||||
|
background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
||||||
|
background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
|
||||||
|
background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
||||||
|
background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
||||||
|
background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
||||||
|
padding: 5px 14px 6px;
|
||||||
|
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
||||||
|
color: #333;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: normal;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
border-bottom-color: #bbb;
|
||||||
|
-webkit-border-radius: 4px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
border-radius: 4px;
|
||||||
|
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||||
|
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||||
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||||
|
-webkit-transition: 0.1s linear all;
|
||||||
|
-moz-transition: 0.1s linear all;
|
||||||
|
-ms-transition: 0.1s linear all;
|
||||||
|
-o-transition: 0.1s linear all;
|
||||||
|
transition: 0.1s linear all;
|
||||||
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||||
|
margin-top: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-secondary:hover {
|
||||||
|
background-position: 0 -15px;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
@ -326,8 +326,6 @@ div#toolbar {
|
|||||||
div#toolbar .buttonContainer {
|
div#toolbar .buttonContainer {
|
||||||
height: @header-toolbar-height;
|
height: @header-toolbar-height;
|
||||||
float: left;
|
float: left;
|
||||||
/*color: black;*/
|
|
||||||
/*border: 1px solid #BBB4D6;*/
|
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -657,6 +655,7 @@ div#small_error_icon {
|
|||||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||||
border-color: #0064cd #0064cd #003f81;
|
border-color: #0064cd #0064cd #003f81;
|
||||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||||
|
margin-top: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary:hover {
|
.btn-primary:hover {
|
||||||
@ -694,6 +693,7 @@ div#small_error_icon {
|
|||||||
-o-transition: 0.1s linear all;
|
-o-transition: 0.1s linear all;
|
||||||
transition: 0.1s linear all;
|
transition: 0.1s linear all;
|
||||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||||
|
margin-top: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-secondary:hover {
|
.btn-secondary:hover {
|
||||||
@ -702,8 +702,9 @@ div#small_error_icon {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** */
|
/** */
|
||||||
|
/* Modal dialogs definitions */
|
||||||
|
|
||||||
.MooDialogBig {
|
.tagItModalDialog, .historyModalDialog, .shareItModalDialog, .exportModalDialog {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
@ -713,7 +714,7 @@ div#small_error_icon {
|
|||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.3);
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
||||||
*border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
/* IE6-7 */
|
/* IE6-7 */
|
||||||
|
|
||||||
-webkit-border-radius: 6px;
|
-webkit-border-radius: 6px;
|
||||||
@ -728,17 +729,46 @@ div#small_error_icon {
|
|||||||
padding: 30px;
|
padding: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.shareItModalDialog {
|
||||||
.MooDialogBig .content {
|
width: 500px;
|
||||||
height: 200px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.MooDialogBig h1
|
.tagItModalDialog .title, .historyModalDialog .title, .shareItModalDialog .title, .exportModalDialog .title {
|
||||||
{
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
border-bottom: 1px solid #a1aec5;
|
||||||
|
font-weight: bold;
|
||||||
|
text-shadow: 1px 1px 0 #fff;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
padding: 5px 30px;
|
||||||
|
font-size: 18px
|
||||||
|
}
|
||||||
|
|
||||||
|
.tagItModalDialog .content {
|
||||||
|
height: 130px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.historyModalDialog .content {
|
||||||
|
height: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shareItModalDialog .content {
|
||||||
|
height: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.exportItModalDialog .content {
|
||||||
|
height: 280px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modalDialog h1 {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
.MooDialogBig h2
|
|
||||||
{
|
.modalDialog h2 {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -246,3 +246,7 @@
|
|||||||
-webkit-border-radius: 16px;
|
-webkit-border-radius: 16px;
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.subMenu2 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
Before Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 223 B |
Before Width: | Height: | Size: 111 B |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 631 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 871 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 303 B |
Before Width: | Height: | Size: 194 B |
Before Width: | Height: | Size: 519 B |
Before Width: | Height: | Size: 640 B |
Before Width: | Height: | Size: 147 B |
Before Width: | Height: | Size: 48 B |
Before Width: | Height: | Size: 249 B |
Before Width: | Height: | Size: 176 B |
Before Width: | Height: | Size: 689 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 928 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 339 B |
Before Width: | Height: | Size: 772 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 168 B |
Before Width: | Height: | Size: 65 B |
Before Width: | Height: | Size: 227 B |
Before Width: | Height: | Size: 108 B |
Before Width: | Height: | Size: 150 B |
Before Width: | Height: | Size: 54 B |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 9.2 KiB |
@ -1,297 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright [2011] [wisemapping]
|
|
||||||
*
|
|
||||||
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
||||||
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
|
||||||
* "powered by wisemapping" text requirement on every single page;
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the license at
|
|
||||||
*
|
|
||||||
* http://www.wisemapping.org/license
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* RUZEE.ShadedBorder 0.2
|
|
||||||
* (c) 2006 Steffen Rusitschka
|
|
||||||
*
|
|
||||||
* RUZEE.ShadedBorder is freely distributable under the terms of an MIT-style license.
|
|
||||||
* For details, see http://www.ruzee.com/
|
|
||||||
*/
|
|
||||||
|
|
||||||
var RUZEE = window.RUZEE || {};
|
|
||||||
|
|
||||||
RUZEE.ShadedBorder = {
|
|
||||||
|
|
||||||
create: function(opts) {
|
|
||||||
var isie = /msie/i.test(navigator.userAgent) && !window.opera;
|
|
||||||
function sty(el, h) {
|
|
||||||
for (k in h) {
|
|
||||||
if (/ie_/.test(k)) {
|
|
||||||
if (isie) el.style[k.substr(3)] = h[k];
|
|
||||||
} else el.style[k] = h[k];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function crdiv(h) {
|
|
||||||
var el = document.createElement("div");
|
|
||||||
el.className = "sb-gen";
|
|
||||||
sty(el, h);
|
|
||||||
return el;
|
|
||||||
}
|
|
||||||
function op(v) {
|
|
||||||
v = v < 0 ? 0 : v;
|
|
||||||
v = v > 0.99999 ? 0.99999 : v;
|
|
||||||
if (isie) {
|
|
||||||
return " filter:alpha(opacity=" + (v * 100) + ");";
|
|
||||||
} else {
|
|
||||||
return " opacity:" + v + ';';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var sr = opts.shadow || 0;
|
|
||||||
var r = opts.corner || 0;
|
|
||||||
var bor = 0;
|
|
||||||
var bow = opts.border || 0;
|
|
||||||
var shadow = sr != 0;
|
|
||||||
var lw = r > sr ? r : sr;
|
|
||||||
var rw = lw;
|
|
||||||
var th = lw;
|
|
||||||
var bh = lw;
|
|
||||||
if (bow > 0) {
|
|
||||||
bor = r;
|
|
||||||
r = r - bow;
|
|
||||||
}
|
|
||||||
var cx = r != 0 && shadow ? Math.round(lw / 3) : 0;
|
|
||||||
var cy = cx;
|
|
||||||
var cs = Math.round(cx / 2);
|
|
||||||
var iclass = r > 0 ? "sb-inner" : "sb-shadow";
|
|
||||||
var sclass = "sb-shadow";
|
|
||||||
var bclass = "sb-border";
|
|
||||||
var edges = opts.edges || "trlb";
|
|
||||||
if (!/t/i.test(edges)) th = 0;
|
|
||||||
if (!/b/i.test(edges)) bh = 0;
|
|
||||||
if (!/l/i.test(edges)) lw = 0;
|
|
||||||
if (!/r/i.test(edges)) rw = 0;
|
|
||||||
|
|
||||||
var p = { position:"absolute", left:"0", top:"0", width:lw + "px", height:th + "px",
|
|
||||||
ie_fontSize:"1px", overflow:"hidden" };
|
|
||||||
var tl = crdiv(p);
|
|
||||||
delete p.left;
|
|
||||||
p.right = "0";
|
|
||||||
p.width = rw + "px";
|
|
||||||
var tr = crdiv(p);
|
|
||||||
delete p.top;
|
|
||||||
p.bottom = "0";
|
|
||||||
p.height = bh + "px";
|
|
||||||
var br = crdiv(p);
|
|
||||||
delete p.right;
|
|
||||||
p.left = "0";
|
|
||||||
p.width = lw + "px";
|
|
||||||
var bl = crdiv(p);
|
|
||||||
|
|
||||||
var tw = crdiv({ position:"absolute", width:"100%", height:th + "px", ie_fontSize:"1px",
|
|
||||||
top:"0", left:"0", overflow:"hidden" });
|
|
||||||
var t = crdiv({ position:"relative", height:th + "px", ie_fontSize:"1px", marginLeft:lw + "px",
|
|
||||||
marginRight:rw + "px", overflow:"hidden" });
|
|
||||||
tw.appendChild(t);
|
|
||||||
|
|
||||||
var bw = crdiv({ position:"absolute", left:"0", bottom:"0", width:"100%", height:bh + "px",
|
|
||||||
ie_fontSize:"1px", overflow:"hidden" });
|
|
||||||
|
|
||||||
var b = crdiv({ position:"relative", height:bh + "px", ie_fontSize:"1px", marginLeft:lw + "px",
|
|
||||||
marginRight:rw + "px", overflow:"hidden" });
|
|
||||||
|
|
||||||
bw.appendChild(b);
|
|
||||||
|
|
||||||
var mw = crdiv({ position:"absolute", top:(-bh) + "px", left:"0", width:"100%", height:"100%",
|
|
||||||
overflow:"hidden", ie_fontSize:"1px" });
|
|
||||||
|
|
||||||
function corner(el, t, l) {
|
|
||||||
var w = l ? lw : rw;
|
|
||||||
var h = t ? th : bh;
|
|
||||||
var s = t ? cs : -cs;
|
|
||||||
var dsb = [];
|
|
||||||
var dsi = [];
|
|
||||||
var dss = [];
|
|
||||||
|
|
||||||
var xp = 0;
|
|
||||||
var xd = 1;
|
|
||||||
if (l) {
|
|
||||||
xp = w - 1;
|
|
||||||
xd = -1;
|
|
||||||
}
|
|
||||||
for (var x = 0; x < w; ++x) {
|
|
||||||
var yp = 0;
|
|
||||||
var yd = 1;
|
|
||||||
if (t) {
|
|
||||||
yp = h - 1;
|
|
||||||
yd = -1;
|
|
||||||
}
|
|
||||||
for (var y = 0; y < h; ++y) {
|
|
||||||
var div = '<div style="position:absolute; top:' + yp + 'px; left:' + xp + 'px; ' +
|
|
||||||
'width:1px; height:1px; overflow:hidden;';
|
|
||||||
|
|
||||||
var xc = x - cx;
|
|
||||||
var yc = y - cy - s;
|
|
||||||
var d = Math.sqrt(xc * xc + yc * yc);
|
|
||||||
var doShadow = false;
|
|
||||||
|
|
||||||
if (r > 0) {
|
|
||||||
// draw border
|
|
||||||
if (xc < 0 && yc < bor && yc >= r || yc < 0 && xc < bor && xc >= r) {
|
|
||||||
dsb.push(div + '" class="' + bclass + '"></div>');
|
|
||||||
} else
|
|
||||||
if (d < bor && d >= r - 1 && xc >= 0 && yc >= 0) {
|
|
||||||
var dd = div;
|
|
||||||
if (d >= bor - 1) {
|
|
||||||
dd += op(bor - d);
|
|
||||||
doShadow = true;
|
|
||||||
}
|
|
||||||
dsb.push(dd + '" class="' + bclass + '"></div>');
|
|
||||||
}
|
|
||||||
|
|
||||||
// draw inner
|
|
||||||
var dd = div + ' z-index:2;';
|
|
||||||
if (xc < 0 && yc < r || yc < 0 && xc < r) {
|
|
||||||
dsi.push(dd + '" class="' + iclass + '"></div>');
|
|
||||||
} else
|
|
||||||
if (d < r && xc >= 0 && yc >= 0) {
|
|
||||||
if (d >= r - 1) {
|
|
||||||
dd += op(r - d);
|
|
||||||
doShadow = true;
|
|
||||||
}
|
|
||||||
dsi.push(dd + '" class="' + iclass + '"></div>');
|
|
||||||
} else doShadow = true;
|
|
||||||
} else doShadow = true;
|
|
||||||
|
|
||||||
// draw shadow
|
|
||||||
if (sr > 0 && doShadow) {
|
|
||||||
d = Math.sqrt(x * x + y * y);
|
|
||||||
if (d < sr) {
|
|
||||||
dss.push(div + ' z-index:0; ' + op(1 - (d / sr)) + '" class="' + sclass + '"></div>');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
yp += yd;
|
|
||||||
}
|
|
||||||
xp += xd;
|
|
||||||
}
|
|
||||||
el.innerHTML = dss.concat(dsb.concat(dsi)).join('');
|
|
||||||
}
|
|
||||||
|
|
||||||
function mid(mw) {
|
|
||||||
var ds = [];
|
|
||||||
|
|
||||||
ds.push('<div style="position:relative; top:' + (th + bh) + 'px;' +
|
|
||||||
' height:10000px; margin-left:' + (lw - r - cx) + 'px;' +
|
|
||||||
' margin-right:' + (rw - r - cx) + 'px; overflow:hidden;"' +
|
|
||||||
' class="' + iclass + '"></div>');
|
|
||||||
|
|
||||||
var dd = '<div style="position:absolute; width:1px;' +
|
|
||||||
' top:' + (th + bh) + 'px; height:10000px;';
|
|
||||||
for (var x = 0; x < lw - r - cx; ++x) {
|
|
||||||
ds.push(dd + ' left:' + x + 'px;' + op((x + 1.0) / lw) +
|
|
||||||
'" class="' + sclass + '"></div>');
|
|
||||||
}
|
|
||||||
|
|
||||||
for (var x = 0; x < rw - r - cx; ++x) {
|
|
||||||
ds.push(dd + ' right:' + x + 'px;' + op((x + 1.0) / rw) +
|
|
||||||
'" class="' + sclass + '"></div>');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (bow > 0) {
|
|
||||||
var su = ' width:' + bow + 'px;' + '" class="' + bclass + '"></div>';
|
|
||||||
ds.push(dd + ' left:' + (lw - bor - cx) + 'px;' + su);
|
|
||||||
ds.push(dd + ' right:' + (rw - bor - cx) + 'px;' + su);
|
|
||||||
}
|
|
||||||
|
|
||||||
mw.innerHTML = ds.join('');
|
|
||||||
}
|
|
||||||
|
|
||||||
function tb(el, t) {
|
|
||||||
var ds = [];
|
|
||||||
var h = t ? th : bh;
|
|
||||||
var dd = '<div style="height:1px; overflow:hidden; position:absolute;' +
|
|
||||||
' width:100%; left:0px; ';
|
|
||||||
var s = t ? cs : -cs;
|
|
||||||
for (var y = 0; y < h - s - cy - r; ++y) {
|
|
||||||
ds.push(dd + (t ? 'top:' : 'bottom:') + y + 'px;' + op((y + 1) * 1.0 / h) +
|
|
||||||
'" class="' + sclass + '"></div>');
|
|
||||||
}
|
|
||||||
if (y >= bow) {
|
|
||||||
ds.push(dd + (t ? 'top:' : 'bottom:') + (y - bow) + 'px;' +
|
|
||||||
' height:' + bow + 'px;" class="' + bclass + '"></div>');
|
|
||||||
}
|
|
||||||
|
|
||||||
ds.push(dd + (t ? 'top:' : 'bottom:') + y + 'px;' +
|
|
||||||
' height:' + (r + cy + s) + 'px;" class="' + iclass + '"></div>');
|
|
||||||
|
|
||||||
el.innerHTML = ds.join('');
|
|
||||||
}
|
|
||||||
|
|
||||||
corner(tl, true, true);
|
|
||||||
corner(tr, true, false);
|
|
||||||
corner(bl, false, true);
|
|
||||||
corner(br, false, false);
|
|
||||||
mid(mw);
|
|
||||||
tb(t, true);
|
|
||||||
tb(b, false);
|
|
||||||
|
|
||||||
return {
|
|
||||||
render: function(el) {
|
|
||||||
if (typeof el == 'string') el = document.getElementById(el);
|
|
||||||
if (el.length != undefined) {
|
|
||||||
for (var i = 0; i < el.length; ++i) this.render(el[i]);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// remove generated children
|
|
||||||
var node = el.firstChild;
|
|
||||||
while (node) {
|
|
||||||
var nextNode = node.nextSibling;
|
|
||||||
if (node.nodeType == 1 && node.className == 'sb-gen')
|
|
||||||
el.removeChild(node);
|
|
||||||
node = nextNode;
|
|
||||||
}
|
|
||||||
|
|
||||||
var iel = el.firstChild;
|
|
||||||
|
|
||||||
var twc = tw.cloneNode(true);
|
|
||||||
var mwc = mw.cloneNode(true);
|
|
||||||
var bwc = bw.cloneNode(true);
|
|
||||||
|
|
||||||
el.insertBefore(tl.cloneNode(true), iel);
|
|
||||||
el.insertBefore(tr.cloneNode(true), iel);
|
|
||||||
el.insertBefore(bl.cloneNode(true), iel);
|
|
||||||
el.insertBefore(br.cloneNode(true), iel);
|
|
||||||
el.insertBefore(twc, iel);
|
|
||||||
el.insertBefore(mwc, iel);
|
|
||||||
el.insertBefore(bwc, iel);
|
|
||||||
|
|
||||||
if (isie) {
|
|
||||||
function resize() {
|
|
||||||
twc.style.width = bwc.style.width = mwc.style.width = el.offsetWidth + "px";
|
|
||||||
mwc.firstChild.style.height = el.offsetHeight + "px";
|
|
||||||
}
|
|
||||||
el.onresize = resize;
|
|
||||||
resize();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// add our styles to the document
|
|
||||||
document.write(
|
|
||||||
'<style type="text/css">' +
|
|
||||||
'.sb, .sbi, .sb *, .sbi * { position:relative;}' +
|
|
||||||
'* html .sb, * html .sbi { height:1%; }' +
|
|
||||||
'.sbi { display:inline-block; }' +
|
|
||||||
'.sb-inner { background:#ddd; }' +
|
|
||||||
'.sb-shadow { background:#000; }' +
|
|
||||||
'.sb-border { background:#bbb; }' +
|
|
||||||
'</style>'
|
|
||||||
);
|
|
@ -6,20 +6,6 @@
|
|||||||
<tiles:importAttribute name="details" scope="page"/>
|
<tiles:importAttribute name="details" scope="page"/>
|
||||||
|
|
||||||
<div class="modalDialog">
|
<div class="modalDialog">
|
||||||
|
|
||||||
<!-- Header can be customized -->
|
<!-- Header can be customized -->
|
||||||
|
|
||||||
<c:if test="${(not empty pageScope.title)}">
|
|
||||||
<h1>
|
|
||||||
<spring:message code="${pageScope.title}"/>
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<c:if test="${(not empty pageScope.details)}">
|
|
||||||
<h2>
|
|
||||||
<spring:message code="${pageScope.details}"/>
|
|
||||||
</h2>
|
|
||||||
</c:if>
|
|
||||||
</c:if>
|
|
||||||
|
|
||||||
<tiles:insert name="body"/>
|
<tiles:insert name="body"/>
|
||||||
</div>
|
</div>
|
@ -53,7 +53,7 @@
|
|||||||
<br/>
|
<br/>
|
||||||
<input id="invitationButton" type="submit" value="Invite Collaborators" class="btn-primary">
|
<input id="invitationButton" type="submit" value="Invite Collaborators" class="btn-primary">
|
||||||
<input type="button" value="<spring:message code="CANCEL"/>" onclick="MOOdalBox.close();"
|
<input type="button" value="<spring:message code="CANCEL"/>" onclick="MOOdalBox.close();"
|
||||||
class="btn-primary"/>
|
class="btn-secondary"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="currentUsers">
|
<div id="currentUsers">
|
||||||
|
@ -25,7 +25,9 @@
|
|||||||
<script type='text/javascript' src='../js/libraries/mootools/mootools-more-1.3.2.1-yui.js'></script>
|
<script type='text/javascript' src='../js/libraries/mootools/mootools-more-1.3.2.1-yui.js'></script>
|
||||||
|
|
||||||
<script type="text/javascript" src="../dwr/engine.js"></script>
|
<script type="text/javascript" src="../dwr/engine.js"></script>
|
||||||
|
<script type="text/javascript" src="../dwr/interface/MapEditorService.js"></script>
|
||||||
<script type="text/javascript" src="../dwr/interface/LoggerService.js"></script>
|
<script type="text/javascript" src="../dwr/interface/LoggerService.js"></script>
|
||||||
|
|
||||||
<script type='text/javascript' src='../js/core.js'></script>
|
<script type='text/javascript' src='../js/core.js'></script>
|
||||||
<script type='text/javascript' src='../js/editorLib.js'></script>
|
<script type='text/javascript' src='../js/editorLib.js'></script>
|
||||||
<script type='text/javascript' src='../js/less-1.1.3.min.js'></script>
|
<script type='text/javascript' src='../js/less-1.1.3.min.js'></script>
|
||||||
@ -141,9 +143,15 @@
|
|||||||
<div id="save" class="buttonOn" title="Save">
|
<div id="save" class="buttonOn" title="Save">
|
||||||
<img src="../nicons/save.png"/>
|
<img src="../nicons/save.png"/>
|
||||||
</div>
|
</div>
|
||||||
<div id="discart" class="buttonOn" title="Discart">
|
<div id="discart" class="buttonOn" title="Discard">
|
||||||
<img src="../nicons/discart.png"/>
|
<img src="../nicons/discart.png"/>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="print" class="buttonOn" title="Print">
|
||||||
|
<img src="../nicons/print.png"/>
|
||||||
|
</div>
|
||||||
|
<div id="export" class="buttonOn" title="Export">
|
||||||
|
<img src="../nicons/export.png"/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="edit" class="buttonContainer">
|
<div id="edit" class="buttonContainer">
|
||||||
<div id="undoEdition" class="buttonOn" title="Undo Edition">
|
<div id="undoEdition" class="buttonOn" title="Undo Edition">
|
||||||
|
@ -64,7 +64,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td style="text-align:center;margin-top:10px;">
|
<td style="text-align:center;margin-top:10px;">
|
||||||
<input type="button" id="ok" value="<spring:message code="OK"/>" class="btn-primary">
|
<input type="button" id="ok" value="<spring:message code="OK"/>" class="btn-primary">
|
||||||
<input type="button" value="<spring:message code="CANCEL"/>" class="btn-primary"
|
<input type="button" value="<spring:message code="CANCEL"/>" class="btn-secondary"
|
||||||
onclick="MOOdalBox.close();">
|
onclick="MOOdalBox.close();">
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -363,7 +363,7 @@
|
|||||||
function openWizard(href, title, rel)
|
function openWizard(href, title, rel)
|
||||||
{
|
{
|
||||||
href = href + $('selectedMapIds').value;
|
href = href + $('selectedMapIds').value;
|
||||||
MOOdalBox.open(href, title, rel);
|
// MOOdalBox.open(href, title, rel);
|
||||||
}
|
}
|
||||||
|
|
||||||
function addToSelectedMapList(el)
|
function addToSelectedMapList(el)
|
||||||
@ -450,8 +450,6 @@
|
|||||||
</script>
|
</script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
||||||
MOOdalBox.reloadRequered = true;
|
|
||||||
|
|
||||||
function removeCollaborator(collaboratorEmail)
|
function removeCollaborator(collaboratorEmail)
|
||||||
{
|
{
|
||||||
document.removeCollaboratorForm.colaboratorId.value = collaboratorEmail;
|
document.removeCollaboratorForm.colaboratorId.value = collaboratorEmail;
|
||||||
|
@ -11,10 +11,7 @@
|
|||||||
<table>
|
<table>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="formLabel">
|
<td class="formLabel"> </td>
|
||||||
<spring:message code="TAGS"/>
|
|
||||||
:
|
|
||||||
</td>
|
|
||||||
<td>
|
<td>
|
||||||
<form:input path="mindmapTags" id="mindmapTags" tabindex="0"/>
|
<form:input path="mindmapTags" id="mindmapTags" tabindex="0"/>
|
||||||
<form:errors path="mindmapTags" cssClass="errorMsg"/>
|
<form:errors path="mindmapTags" cssClass="errorMsg"/>
|
||||||
|
@ -34,11 +34,11 @@
|
|||||||
<input type="submit" value="<spring:message code="SUBMIT"/>" class="btn-primary">
|
<input type="submit" value="<spring:message code="SUBMIT"/>" class="btn-primary">
|
||||||
<c:choose>
|
<c:choose>
|
||||||
<c:when test="${!errorView}">
|
<c:when test="${!errorView}">
|
||||||
<input type="button" value="<spring:message code="CANCEL"/>" class="btn-primary"
|
<input type="button" value="<spring:message code="CANCEL"/>" class="btn-secondary"
|
||||||
onclick="MOOdalBox.close();">
|
onclick="MOOdalBox.close();">
|
||||||
</c:when>
|
</c:when>
|
||||||
<c:otherwise>
|
<c:otherwise>
|
||||||
<input type="button" value="<spring:message code="BACK"/>" class="btn-primary"
|
<input type="button" value="<spring:message code="BACK"/>" class="btn-secondary"
|
||||||
onclick="window.location='mymaps.htm'">
|
onclick="window.location='mymaps.htm'">
|
||||||
</c:otherwise>
|
</c:otherwise>
|
||||||
</c:choose>
|
</c:choose>
|
||||||
|
@ -24,13 +24,10 @@
|
|||||||
<link rel="icon" href="${pageContext.request.contextPath}/images/favicon.ico" type="image/x-icon"/>
|
<link rel="icon" href="${pageContext.request.contextPath}/images/favicon.ico" type="image/x-icon"/>
|
||||||
<link rel="shortcut icon" href="${pageContext.request.contextPath}/images/favicon.ico" type="image/x-icon"/>
|
<link rel="shortcut icon" href="${pageContext.request.contextPath}/images/favicon.ico" type="image/x-icon"/>
|
||||||
<script type="text/javascript" src="${pageContext.request.contextPath}/js/wiseLibrary.js"></script>
|
<script type="text/javascript" src="${pageContext.request.contextPath}/js/wiseLibrary.js"></script>
|
||||||
<!--[if lt IE 9]>
|
<script type='text/javascript'
|
||||||
<link rel="stylesheet" type="text/css" href="../css/wisehomeOldIE.css"/>
|
src='https://ajax.googleapis.com/ajax/libs/mootools/1.3.2/mootools-yui-compressed.js'></script>
|
||||||
<script type="text/javascript" src="${pageContext.request.contextPath}/js/shadedborder.js"></script>
|
<script type='text/javascript' src='../js/libraries/mootools/mootools-more-1.3.2.1-yui.js'></script>
|
||||||
<script type="text/javascript">
|
|
||||||
var isOldIE = true;
|
|
||||||
</script>
|
|
||||||
<![endif]-->
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
BIN
wise-webapp/src/main/webapp/nicons/shape-line.png
Normal file
After Width: | Height: | Size: 1.9 KiB |