Fix failing using tests. Legacy will contain a set of images to be removed in the future.
@ -824,7 +824,7 @@ mindplot.Topic = new Class({
|
|||||||
* Point: references the center of the rect shape.!!!
|
* Point: references the center of the rect shape.!!!
|
||||||
*/
|
*/
|
||||||
setPosition : function(point) {
|
setPosition : function(point) {
|
||||||
$assert(point,"position can not be null");
|
$assert(point, "position can not be null");
|
||||||
|
|
||||||
// Update model's position ...
|
// Update model's position ...
|
||||||
var model = this.getModel();
|
var model = this.getModel();
|
||||||
@ -852,7 +852,7 @@ mindplot.Topic = new Class({
|
|||||||
this._iuCache['position'] = point;
|
this._iuCache['position'] = point;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$defined(currentPos) || currentPos.x != point.x || currentPos.y != point.y) {
|
if (!$defined(currentPos) || parseInt(currentPos.x) != parseInt(point.x) || parseInt(currentPos.y) != parseInt(point.y)) {
|
||||||
|
|
||||||
// Fire Listener events ...
|
// Fire Listener events ...
|
||||||
mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeMoveEvent, [this]);
|
mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeMoveEvent, [this]);
|
||||||
|
@ -420,6 +420,7 @@
|
|||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>2.7.2</version>
|
<version>2.7.2</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
|
<parallel>true</parallel>
|
||||||
<suiteXmlFiles>
|
<suiteXmlFiles>
|
||||||
<suiteXmlFile>testng.xml</suiteXmlFile>
|
<suiteXmlFile>testng.xml</suiteXmlFile>
|
||||||
</suiteXmlFiles>
|
</suiteXmlFiles>
|
||||||
|
@ -213,11 +213,11 @@ public class ExporterFactory {
|
|||||||
int index = imgUrl.lastIndexOf("/");
|
int index = imgUrl.lastIndexOf("/");
|
||||||
elem.removeAttribute("href");
|
elem.removeAttribute("href");
|
||||||
if (index != -1) {
|
if (index != -1) {
|
||||||
final String iconName = imgUrl.substring(index);
|
final String iconName = imgUrl.substring(index+1);
|
||||||
// Hack for backward compatibility . This can be removed in 2012. :)
|
// Hack for backward compatibility . This can be removed in 2012. :)
|
||||||
String imgPath;
|
String imgPath;
|
||||||
if (imgUrl.contains("images")) {
|
if (imgUrl.contains("images")) {
|
||||||
imgPath = imgBaseUrl + "/../images/" + iconName;
|
imgPath = imgBaseUrl + "/../icons/legacy/" + iconName;
|
||||||
} else {
|
} else {
|
||||||
imgPath = imgBaseUrl + "/" + imgUrl;
|
imgPath = imgBaseUrl + "/" + imgUrl;
|
||||||
}
|
}
|
||||||
|
BIN
wise-webapp/src/main/webapp/icons/legacy/add.png
Executable file
After Width: | Height: | Size: 733 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/arrow_down.png
Executable file
After Width: | Height: | Size: 379 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/arrow_left.png
Executable file
After Width: | Height: | Size: 345 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/arrow_merge.png
Executable file
After Width: | Height: | Size: 484 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/arrow_right.png
Executable file
After Width: | Height: | Size: 409 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/arrow_rotate_anticlockwise.png
Executable file
After Width: | Height: | Size: 608 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/arrow_rotate_clockwise.png
Executable file
After Width: | Height: | Size: 602 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/arrow_turn_left.png
Executable file
After Width: | Height: | Size: 516 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/arrow_turn_right.png
Executable file
After Width: | Height: | Size: 489 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/arrow_up.png
Executable file
After Width: | Height: | Size: 372 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/backColor.png
Executable file
After Width: | Height: | Size: 490 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/balloon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/bin.png
Executable file
After Width: | Height: | Size: 476 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/black-keyboard.png
Normal file
After Width: | Height: | Size: 9.0 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/bold.png
Executable file
After Width: | Height: | Size: 330 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/borderColor.png
Executable file
After Width: | Height: | Size: 3.3 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/bullet_black.png
Executable file
After Width: | Height: | Size: 211 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/bullet_blue.png
Executable file
After Width: | Height: | Size: 289 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/bullet_green.png
Executable file
After Width: | Height: | Size: 295 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/bullet_orange.png
Executable file
After Width: | Height: | Size: 283 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/bullet_pink.png
Executable file
After Width: | Height: | Size: 286 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/bullet_purple.png
Executable file
After Width: | Height: | Size: 294 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/bullet_red.png
Executable file
After Width: | Height: | Size: 287 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/chart_bar.png
Executable file
After Width: | Height: | Size: 541 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/chart_curve.png
Executable file
After Width: | Height: | Size: 710 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/chart_line.png
Executable file
After Width: | Height: | Size: 526 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/chart_organisation.png
Executable file
After Width: | Height: | Size: 444 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/chart_pie.png
Executable file
After Width: | Height: | Size: 918 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/clock.png
Executable file
After Width: | Height: | Size: 882 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/clock_red.png
Executable file
After Width: | Height: | Size: 889 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/close.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/coins.png
Executable file
After Width: | Height: | Size: 732 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/collab_publish.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/collab_share.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/collab_tag.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/color_swatch.png
Executable file
After Width: | Height: | Size: 3.2 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/comment.png
Executable file
After Width: | Height: | Size: 545 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/connect.png
Executable file
After Width: | Height: | Size: 748 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/cross.png
Executable file
After Width: | Height: | Size: 655 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/delNode.png
Executable file
After Width: | Height: | Size: 728 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/delete.png
Executable file
After Width: | Height: | Size: 715 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/disconnect.png
Executable file
After Width: | Height: | Size: 796 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-angel.png
Normal file
After Width: | Height: | Size: 992 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-crying.png
Normal file
After Width: | Height: | Size: 936 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-devilish.png
Normal file
After Width: | Height: | Size: 855 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-glasses.png
Normal file
After Width: | Height: | Size: 949 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-grin.png
Normal file
After Width: | Height: | Size: 905 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-kiss.png
Normal file
After Width: | Height: | Size: 919 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-monkey.png
Normal file
After Width: | Height: | Size: 784 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-plain.png
Normal file
After Width: | Height: | Size: 894 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-sad.png
Normal file
After Width: | Height: | Size: 918 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-smile-big.png
Normal file
After Width: | Height: | Size: 896 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-smile.png
Normal file
After Width: | Height: | Size: 919 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-surprise.png
Normal file
After Width: | Height: | Size: 917 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/face-wink.png
Normal file
After Width: | Height: | Size: 914 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/file_export.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/file_printer.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/file_redo.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/file_redo_dis.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/file_undo.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/file_undo_dis.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/flag_blue.png
Executable file
After Width: | Height: | Size: 671 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/flag_green.png
Executable file
After Width: | Height: | Size: 672 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/flag_orange.png
Executable file
After Width: | Height: | Size: 669 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/flag_pink.png
Executable file
After Width: | Height: | Size: 651 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/flag_purple.png
Executable file
After Width: | Height: | Size: 656 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/flag_yellow.png
Executable file
After Width: | Height: | Size: 671 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/font.png
Executable file
After Width: | Height: | Size: 780 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/fontColor.png
Executable file
After Width: | Height: | Size: 393 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/fontSize.png
Normal file
After Width: | Height: | Size: 435 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/font_bold.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/font_color.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/font_italic.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/font_size.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/font_type.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/group.png
Executable file
After Width: | Height: | Size: 616 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/group2.png
Executable file
After Width: | Height: | Size: 894 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/group_go.png
Executable file
After Width: | Height: | Size: 842 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/help.png
Executable file
After Width: | Height: | Size: 786 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/history.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/info.png
Normal file
After Width: | Height: | Size: 778 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/italic.png
Executable file
After Width: | Height: | Size: 336 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/key.png
Executable file
After Width: | Height: | Size: 612 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/lightbulb.png
Executable file
After Width: | Height: | Size: 782 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/lightbulb_off.png
Executable file
After Width: | Height: | Size: 700 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/lock.png
Executable file
After Width: | Height: | Size: 749 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/lock_open.png
Executable file
After Width: | Height: | Size: 727 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/logo-big.png
Executable file
After Width: | Height: | Size: 23 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/logo-vsmall.png
Executable file
After Width: | Height: | Size: 6.8 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/logo-vvsmall.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/mac-metaKey.png
Normal file
After Width: | Height: | Size: 531 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/marca-vsmall.png
Executable file
After Width: | Height: | Size: 6.8 KiB |
BIN
wise-webapp/src/main/webapp/icons/legacy/money.png
Executable file
After Width: | Height: | Size: 738 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/money_dollar.png
Executable file
After Width: | Height: | Size: 630 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/money_euro.png
Executable file
After Width: | Height: | Size: 605 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/money_pound.png
Executable file
After Width: | Height: | Size: 565 B |
BIN
wise-webapp/src/main/webapp/icons/legacy/money_yen.png
Executable file
After Width: | Height: | Size: 562 B |