diff --git a/mindplot/src/main/javascript/Topic.js b/mindplot/src/main/javascript/Topic.js
index d9125a30..b576f75e 100644
--- a/mindplot/src/main/javascript/Topic.js
+++ b/mindplot/src/main/javascript/Topic.js
@@ -824,7 +824,7 @@ mindplot.Topic = new Class({
* Point: references the center of the rect shape.!!!
*/
setPosition : function(point) {
- $assert(point,"position can not be null");
+ $assert(point, "position can not be null");
// Update model's position ...
var model = this.getModel();
@@ -852,7 +852,7 @@ mindplot.Topic = new Class({
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 ...
mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeMoveEvent, [this]);
diff --git a/wise-webapp/pom.xml b/wise-webapp/pom.xml
index 9255c66c..97998abc 100644
--- a/wise-webapp/pom.xml
+++ b/wise-webapp/pom.xml
@@ -420,6 +420,7 @@
maven-surefire-plugin
2.7.2
+ true
testng.xml
diff --git a/wise-webapp/src/main/java/com/wisemapping/exporter/ExporterFactory.java b/wise-webapp/src/main/java/com/wisemapping/exporter/ExporterFactory.java
index 831a75ff..63c66bc0 100644
--- a/wise-webapp/src/main/java/com/wisemapping/exporter/ExporterFactory.java
+++ b/wise-webapp/src/main/java/com/wisemapping/exporter/ExporterFactory.java
@@ -213,11 +213,11 @@ public class ExporterFactory {
int index = imgUrl.lastIndexOf("/");
elem.removeAttribute("href");
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. :)
String imgPath;
if (imgUrl.contains("images")) {
- imgPath = imgBaseUrl + "/../images/" + iconName;
+ imgPath = imgBaseUrl + "/../icons/legacy/" + iconName;
} else {
imgPath = imgBaseUrl + "/" + imgUrl;
}
diff --git a/wise-webapp/src/main/webapp/icons/legacy/add.png b/wise-webapp/src/main/webapp/icons/legacy/add.png
new file mode 100755
index 00000000..6332fefe
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/add.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/arrow_down.png b/wise-webapp/src/main/webapp/icons/legacy/arrow_down.png
new file mode 100755
index 00000000..2c4e2793
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/arrow_down.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/arrow_left.png b/wise-webapp/src/main/webapp/icons/legacy/arrow_left.png
new file mode 100755
index 00000000..5dc69678
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/arrow_left.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/arrow_merge.png b/wise-webapp/src/main/webapp/icons/legacy/arrow_merge.png
new file mode 100755
index 00000000..7502dbb3
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/arrow_merge.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/arrow_right.png b/wise-webapp/src/main/webapp/icons/legacy/arrow_right.png
new file mode 100755
index 00000000..4bfba64a
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/arrow_right.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/arrow_rotate_anticlockwise.png b/wise-webapp/src/main/webapp/icons/legacy/arrow_rotate_anticlockwise.png
new file mode 100755
index 00000000..46c75aa8
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/arrow_rotate_anticlockwise.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/arrow_rotate_clockwise.png b/wise-webapp/src/main/webapp/icons/legacy/arrow_rotate_clockwise.png
new file mode 100755
index 00000000..aa65210e
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/arrow_rotate_clockwise.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/arrow_turn_left.png b/wise-webapp/src/main/webapp/icons/legacy/arrow_turn_left.png
new file mode 100755
index 00000000..a3d6c9e3
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/arrow_turn_left.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/arrow_turn_right.png b/wise-webapp/src/main/webapp/icons/legacy/arrow_turn_right.png
new file mode 100755
index 00000000..629f20d6
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/arrow_turn_right.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/arrow_up.png b/wise-webapp/src/main/webapp/icons/legacy/arrow_up.png
new file mode 100755
index 00000000..1ebb1932
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/arrow_up.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/backColor.png b/wise-webapp/src/main/webapp/icons/legacy/backColor.png
new file mode 100755
index 00000000..bbd0d8ef
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/backColor.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/balloon.png b/wise-webapp/src/main/webapp/icons/legacy/balloon.png
new file mode 100644
index 00000000..45a7db8f
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/balloon.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/bin.png b/wise-webapp/src/main/webapp/icons/legacy/bin.png
new file mode 100755
index 00000000..ebad933c
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/bin.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/black-keyboard.png b/wise-webapp/src/main/webapp/icons/legacy/black-keyboard.png
new file mode 100644
index 00000000..5d670cca
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/black-keyboard.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/bold.png b/wise-webapp/src/main/webapp/icons/legacy/bold.png
new file mode 100755
index 00000000..dbefe42d
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/bold.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/borderColor.png b/wise-webapp/src/main/webapp/icons/legacy/borderColor.png
new file mode 100755
index 00000000..f8242e7e
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/borderColor.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/bullet_black.png b/wise-webapp/src/main/webapp/icons/legacy/bullet_black.png
new file mode 100755
index 00000000..57619706
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/bullet_black.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/bullet_blue.png b/wise-webapp/src/main/webapp/icons/legacy/bullet_blue.png
new file mode 100755
index 00000000..a7651ec8
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/bullet_blue.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/bullet_green.png b/wise-webapp/src/main/webapp/icons/legacy/bullet_green.png
new file mode 100755
index 00000000..058ad261
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/bullet_green.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/bullet_orange.png b/wise-webapp/src/main/webapp/icons/legacy/bullet_orange.png
new file mode 100755
index 00000000..fa63024e
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/bullet_orange.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/bullet_pink.png b/wise-webapp/src/main/webapp/icons/legacy/bullet_pink.png
new file mode 100755
index 00000000..0c9f73e3
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/bullet_pink.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/bullet_purple.png b/wise-webapp/src/main/webapp/icons/legacy/bullet_purple.png
new file mode 100755
index 00000000..52ba5036
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/bullet_purple.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/bullet_red.png b/wise-webapp/src/main/webapp/icons/legacy/bullet_red.png
new file mode 100755
index 00000000..0cd80311
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/bullet_red.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/chart_bar.png b/wise-webapp/src/main/webapp/icons/legacy/chart_bar.png
new file mode 100755
index 00000000..9051fbc6
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/chart_bar.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/chart_curve.png b/wise-webapp/src/main/webapp/icons/legacy/chart_curve.png
new file mode 100755
index 00000000..01e933a6
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/chart_curve.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/chart_line.png b/wise-webapp/src/main/webapp/icons/legacy/chart_line.png
new file mode 100755
index 00000000..85020f32
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/chart_line.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/chart_organisation.png b/wise-webapp/src/main/webapp/icons/legacy/chart_organisation.png
new file mode 100755
index 00000000..c32d25c1
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/chart_organisation.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/chart_pie.png b/wise-webapp/src/main/webapp/icons/legacy/chart_pie.png
new file mode 100755
index 00000000..fe00fa05
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/chart_pie.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/clock.png b/wise-webapp/src/main/webapp/icons/legacy/clock.png
new file mode 100755
index 00000000..e2672c20
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/clock.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/clock_red.png b/wise-webapp/src/main/webapp/icons/legacy/clock_red.png
new file mode 100755
index 00000000..2842cc33
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/clock_red.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/close.png b/wise-webapp/src/main/webapp/icons/legacy/close.png
new file mode 100644
index 00000000..4de1c381
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/close.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/coins.png b/wise-webapp/src/main/webapp/icons/legacy/coins.png
new file mode 100755
index 00000000..0ca9074d
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/coins.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/collab_publish.png b/wise-webapp/src/main/webapp/icons/legacy/collab_publish.png
new file mode 100644
index 00000000..fa862d61
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/collab_publish.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/collab_share.png b/wise-webapp/src/main/webapp/icons/legacy/collab_share.png
new file mode 100644
index 00000000..2e1594eb
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/collab_share.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/collab_tag.png b/wise-webapp/src/main/webapp/icons/legacy/collab_tag.png
new file mode 100644
index 00000000..b06c7d25
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/collab_tag.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/color_swatch.png b/wise-webapp/src/main/webapp/icons/legacy/color_swatch.png
new file mode 100755
index 00000000..ecb0ac7e
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/color_swatch.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/comment.png b/wise-webapp/src/main/webapp/icons/legacy/comment.png
new file mode 100755
index 00000000..00352e5b
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/comment.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/connect.png b/wise-webapp/src/main/webapp/icons/legacy/connect.png
new file mode 100755
index 00000000..024138eb
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/connect.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/cross.png b/wise-webapp/src/main/webapp/icons/legacy/cross.png
new file mode 100755
index 00000000..1514d51a
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/cross.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/delNode.png b/wise-webapp/src/main/webapp/icons/legacy/delNode.png
new file mode 100755
index 00000000..69baa4bc
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/delNode.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/delete.png b/wise-webapp/src/main/webapp/icons/legacy/delete.png
new file mode 100755
index 00000000..08f24936
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/delete.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/disconnect.png b/wise-webapp/src/main/webapp/icons/legacy/disconnect.png
new file mode 100755
index 00000000..b335cb11
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/disconnect.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-angel.png b/wise-webapp/src/main/webapp/icons/legacy/face-angel.png
new file mode 100644
index 00000000..d2c5e940
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-angel.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-crying.png b/wise-webapp/src/main/webapp/icons/legacy/face-crying.png
new file mode 100644
index 00000000..a7e3f49f
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-crying.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-devilish.png b/wise-webapp/src/main/webapp/icons/legacy/face-devilish.png
new file mode 100644
index 00000000..8e2cd458
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-devilish.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-glasses.png b/wise-webapp/src/main/webapp/icons/legacy/face-glasses.png
new file mode 100644
index 00000000..d13f2c8c
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-glasses.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-grin.png b/wise-webapp/src/main/webapp/icons/legacy/face-grin.png
new file mode 100644
index 00000000..d15cf2d4
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-grin.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-kiss.png b/wise-webapp/src/main/webapp/icons/legacy/face-kiss.png
new file mode 100644
index 00000000..809c1cf7
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-kiss.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-monkey.png b/wise-webapp/src/main/webapp/icons/legacy/face-monkey.png
new file mode 100644
index 00000000..69db8fa5
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-monkey.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-plain.png b/wise-webapp/src/main/webapp/icons/legacy/face-plain.png
new file mode 100644
index 00000000..a6761bd1
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-plain.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-sad.png b/wise-webapp/src/main/webapp/icons/legacy/face-sad.png
new file mode 100644
index 00000000..fa258956
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-sad.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-smile-big.png b/wise-webapp/src/main/webapp/icons/legacy/face-smile-big.png
new file mode 100644
index 00000000..4cebcff6
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-smile-big.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-smile.png b/wise-webapp/src/main/webapp/icons/legacy/face-smile.png
new file mode 100644
index 00000000..01e01170
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-smile.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-surprise.png b/wise-webapp/src/main/webapp/icons/legacy/face-surprise.png
new file mode 100644
index 00000000..863f3048
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-surprise.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/face-wink.png b/wise-webapp/src/main/webapp/icons/legacy/face-wink.png
new file mode 100644
index 00000000..46be6855
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/face-wink.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/file_export.png b/wise-webapp/src/main/webapp/icons/legacy/file_export.png
new file mode 100644
index 00000000..aec7cfb2
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/file_export.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/file_printer.png b/wise-webapp/src/main/webapp/icons/legacy/file_printer.png
new file mode 100644
index 00000000..ecd1ff26
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/file_printer.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/file_redo.png b/wise-webapp/src/main/webapp/icons/legacy/file_redo.png
new file mode 100644
index 00000000..3a8502c6
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/file_redo.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/file_redo_dis.png b/wise-webapp/src/main/webapp/icons/legacy/file_redo_dis.png
new file mode 100644
index 00000000..36cf9df3
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/file_redo_dis.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/file_undo.png b/wise-webapp/src/main/webapp/icons/legacy/file_undo.png
new file mode 100644
index 00000000..acd5a581
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/file_undo.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/file_undo_dis.png b/wise-webapp/src/main/webapp/icons/legacy/file_undo_dis.png
new file mode 100644
index 00000000..6af29fe2
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/file_undo_dis.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/flag_blue.png b/wise-webapp/src/main/webapp/icons/legacy/flag_blue.png
new file mode 100755
index 00000000..003924f5
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/flag_blue.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/flag_green.png b/wise-webapp/src/main/webapp/icons/legacy/flag_green.png
new file mode 100755
index 00000000..e4bc611f
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/flag_green.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/flag_orange.png b/wise-webapp/src/main/webapp/icons/legacy/flag_orange.png
new file mode 100755
index 00000000..e6320242
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/flag_orange.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/flag_pink.png b/wise-webapp/src/main/webapp/icons/legacy/flag_pink.png
new file mode 100755
index 00000000..5f15e526
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/flag_pink.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/flag_purple.png b/wise-webapp/src/main/webapp/icons/legacy/flag_purple.png
new file mode 100755
index 00000000..d0698664
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/flag_purple.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/flag_yellow.png b/wise-webapp/src/main/webapp/icons/legacy/flag_yellow.png
new file mode 100755
index 00000000..14c89a54
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/flag_yellow.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/font.png b/wise-webapp/src/main/webapp/icons/legacy/font.png
new file mode 100755
index 00000000..6e06872f
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/font.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/fontColor.png b/wise-webapp/src/main/webapp/icons/legacy/fontColor.png
new file mode 100755
index 00000000..20bc2423
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/fontColor.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/fontSize.png b/wise-webapp/src/main/webapp/icons/legacy/fontSize.png
new file mode 100644
index 00000000..2356c666
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/fontSize.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/font_bold.png b/wise-webapp/src/main/webapp/icons/legacy/font_bold.png
new file mode 100644
index 00000000..e35db88c
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/font_bold.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/font_color.png b/wise-webapp/src/main/webapp/icons/legacy/font_color.png
new file mode 100644
index 00000000..de227993
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/font_color.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/font_italic.png b/wise-webapp/src/main/webapp/icons/legacy/font_italic.png
new file mode 100644
index 00000000..8d915b04
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/font_italic.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/font_size.png b/wise-webapp/src/main/webapp/icons/legacy/font_size.png
new file mode 100644
index 00000000..e3499795
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/font_size.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/font_type.png b/wise-webapp/src/main/webapp/icons/legacy/font_type.png
new file mode 100644
index 00000000..eaccc509
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/font_type.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/group.png b/wise-webapp/src/main/webapp/icons/legacy/group.png
new file mode 100755
index 00000000..a7c3ade7
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/group.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/group2.png b/wise-webapp/src/main/webapp/icons/legacy/group2.png
new file mode 100755
index 00000000..ca11887f
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/group2.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/group_go.png b/wise-webapp/src/main/webapp/icons/legacy/group_go.png
new file mode 100755
index 00000000..1f523330
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/group_go.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/help.png b/wise-webapp/src/main/webapp/icons/legacy/help.png
new file mode 100755
index 00000000..5c870176
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/help.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/history.png b/wise-webapp/src/main/webapp/icons/legacy/history.png
new file mode 100644
index 00000000..6e8052ff
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/history.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/info.png b/wise-webapp/src/main/webapp/icons/legacy/info.png
new file mode 100644
index 00000000..12cd1aef
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/info.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/italic.png b/wise-webapp/src/main/webapp/icons/legacy/italic.png
new file mode 100755
index 00000000..006d4c59
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/italic.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/key.png b/wise-webapp/src/main/webapp/icons/legacy/key.png
new file mode 100755
index 00000000..4ec1a928
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/key.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/lightbulb.png b/wise-webapp/src/main/webapp/icons/legacy/lightbulb.png
new file mode 100755
index 00000000..d22fde8b
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/lightbulb.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/lightbulb_off.png b/wise-webapp/src/main/webapp/icons/legacy/lightbulb_off.png
new file mode 100755
index 00000000..e95b8c5b
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/lightbulb_off.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/lock.png b/wise-webapp/src/main/webapp/icons/legacy/lock.png
new file mode 100755
index 00000000..2ebc4f6f
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/lock.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/lock_open.png b/wise-webapp/src/main/webapp/icons/legacy/lock_open.png
new file mode 100755
index 00000000..a471765f
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/lock_open.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/logo-big.png b/wise-webapp/src/main/webapp/icons/legacy/logo-big.png
new file mode 100755
index 00000000..0b4befa6
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/logo-big.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/logo-vsmall.png b/wise-webapp/src/main/webapp/icons/legacy/logo-vsmall.png
new file mode 100755
index 00000000..4947f72e
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/logo-vsmall.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/logo-vvsmall.png b/wise-webapp/src/main/webapp/icons/legacy/logo-vvsmall.png
new file mode 100644
index 00000000..18551fe2
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/logo-vvsmall.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/mac-metaKey.png b/wise-webapp/src/main/webapp/icons/legacy/mac-metaKey.png
new file mode 100644
index 00000000..63579a46
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/mac-metaKey.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/marca-vsmall.png b/wise-webapp/src/main/webapp/icons/legacy/marca-vsmall.png
new file mode 100755
index 00000000..a07631d2
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/marca-vsmall.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/money.png b/wise-webapp/src/main/webapp/icons/legacy/money.png
new file mode 100755
index 00000000..42c52d05
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/money.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/money_dollar.png b/wise-webapp/src/main/webapp/icons/legacy/money_dollar.png
new file mode 100755
index 00000000..59af1638
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/money_dollar.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/money_euro.png b/wise-webapp/src/main/webapp/icons/legacy/money_euro.png
new file mode 100755
index 00000000..b322ba92
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/money_euro.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/money_pound.png b/wise-webapp/src/main/webapp/icons/legacy/money_pound.png
new file mode 100755
index 00000000..b7113646
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/money_pound.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/money_yen.png b/wise-webapp/src/main/webapp/icons/legacy/money_yen.png
new file mode 100755
index 00000000..228a6778
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/money_yen.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/moor_boverlay.png b/wise-webapp/src/main/webapp/icons/legacy/moor_boverlay.png
new file mode 100755
index 00000000..7ac228b0
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/moor_boverlay.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/moor_slider.png b/wise-webapp/src/main/webapp/icons/legacy/moor_slider.png
new file mode 100755
index 00000000..9f4c47bf
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/moor_slider.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/moor_woverlay.png b/wise-webapp/src/main/webapp/icons/legacy/moor_woverlay.png
new file mode 100755
index 00000000..c3f3e96e
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/moor_woverlay.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/move.png b/wise-webapp/src/main/webapp/icons/legacy/move.png
new file mode 100644
index 00000000..6e13dd3d
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/move.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/mymaps.png b/wise-webapp/src/main/webapp/icons/legacy/mymaps.png
new file mode 100644
index 00000000..8aabdd2d
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/mymaps.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/node_add.png b/wise-webapp/src/main/webapp/icons/legacy/node_add.png
new file mode 100755
index 00000000..a7c3ade7
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/node_add.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/node_border.png b/wise-webapp/src/main/webapp/icons/legacy/node_border.png
new file mode 100755
index 00000000..b72cf7bb
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/node_border.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/node_border2.png b/wise-webapp/src/main/webapp/icons/legacy/node_border2.png
new file mode 100755
index 00000000..f4599c59
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/node_border2.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/node_elipse.png b/wise-webapp/src/main/webapp/icons/legacy/node_elipse.png
new file mode 100755
index 00000000..53922749
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/node_elipse.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/note.png b/wise-webapp/src/main/webapp/icons/legacy/note.png
new file mode 100644
index 00000000..ffea2b8b
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/note.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/note1.png b/wise-webapp/src/main/webapp/icons/legacy/note1.png
new file mode 100644
index 00000000..667a85fc
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/note1.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/page_delete.png b/wise-webapp/src/main/webapp/icons/legacy/page_delete.png
new file mode 100644
index 00000000..73e86384
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/page_delete.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/page_go.png b/wise-webapp/src/main/webapp/icons/legacy/page_go.png
new file mode 100644
index 00000000..20c6ec0e
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/page_go.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/printNews.png b/wise-webapp/src/main/webapp/icons/legacy/printNews.png
new file mode 100644
index 00000000..7dd56f78
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/printNews.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/printer.png b/wise-webapp/src/main/webapp/icons/legacy/printer.png
new file mode 100644
index 00000000..888f9edd
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/printer.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/removeUser.jpeg b/wise-webapp/src/main/webapp/icons/legacy/removeUser.jpeg
new file mode 100644
index 00000000..d6a197e7
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/removeUser.jpeg differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/ruby.png b/wise-webapp/src/main/webapp/icons/legacy/ruby.png
new file mode 100755
index 00000000..f763a168
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/ruby.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/save.png b/wise-webapp/src/main/webapp/icons/legacy/save.png
new file mode 100644
index 00000000..a98b0c3b
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/save.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/search.png b/wise-webapp/src/main/webapp/icons/legacy/search.png
new file mode 100644
index 00000000..076708b4
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/search.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/search2.png b/wise-webapp/src/main/webapp/icons/legacy/search2.png
new file mode 100644
index 00000000..d6b3cb06
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/search2.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/search3.png b/wise-webapp/src/main/webapp/icons/legacy/search3.png
new file mode 100644
index 00000000..26bb1140
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/search3.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/seast.png b/wise-webapp/src/main/webapp/icons/legacy/seast.png
new file mode 100644
index 00000000..45118540
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/seast.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/shape-elipse.png b/wise-webapp/src/main/webapp/icons/legacy/shape-elipse.png
new file mode 100644
index 00000000..2e3ea734
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/shape-elipse.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/shape-line.png b/wise-webapp/src/main/webapp/icons/legacy/shape-line.png
new file mode 100644
index 00000000..de12b941
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/shape-line.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/shape-rectangle-rounded.png b/wise-webapp/src/main/webapp/icons/legacy/shape-rectangle-rounded.png
new file mode 100644
index 00000000..eaed09fb
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/shape-rectangle-rounded.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/shape-rectangle.png b/wise-webapp/src/main/webapp/icons/legacy/shape-rectangle.png
new file mode 100644
index 00000000..ff399b22
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/shape-rectangle.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/shape.png b/wise-webapp/src/main/webapp/icons/legacy/shape.png
new file mode 100755
index 00000000..7bfb84ea
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/shape.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/shape_handles.png b/wise-webapp/src/main/webapp/icons/legacy/shape_handles.png
new file mode 100755
index 00000000..5a88b2f3
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/shape_handles.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/shape_square_add.png b/wise-webapp/src/main/webapp/icons/legacy/shape_square_add.png
new file mode 100755
index 00000000..31edfce5
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/shape_square_add.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/shape_square_delete.png b/wise-webapp/src/main/webapp/icons/legacy/shape_square_delete.png
new file mode 100755
index 00000000..ede912de
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/shape_square_delete.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/shape_square_edit.png b/wise-webapp/src/main/webapp/icons/legacy/shape_square_edit.png
new file mode 100755
index 00000000..d28dc6b1
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/shape_square_edit.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/signUpBodyBtn.png b/wise-webapp/src/main/webapp/icons/legacy/signUpBodyBtn.png
new file mode 100644
index 00000000..dcd5c9b5
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/signUpBodyBtn.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/signUpEndBtn.png b/wise-webapp/src/main/webapp/icons/legacy/signUpEndBtn.png
new file mode 100644
index 00000000..18e7dd2a
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/signUpEndBtn.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/signUpStartBtn.png b/wise-webapp/src/main/webapp/icons/legacy/signUpStartBtn.png
new file mode 100644
index 00000000..d125cfbf
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/signUpStartBtn.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/sne.png b/wise-webapp/src/main/webapp/icons/legacy/sne.png
new file mode 100644
index 00000000..f844cd08
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/sne.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/snorth.png b/wise-webapp/src/main/webapp/icons/legacy/snorth.png
new file mode 100644
index 00000000..ae9c04d9
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/snorth.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/snw.png b/wise-webapp/src/main/webapp/icons/legacy/snw.png
new file mode 100644
index 00000000..44401ef6
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/snw.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/sse.png b/wise-webapp/src/main/webapp/icons/legacy/sse.png
new file mode 100644
index 00000000..be76255f
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/sse.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/ssouth.png b/wise-webapp/src/main/webapp/icons/legacy/ssouth.png
new file mode 100644
index 00000000..7b26b268
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/ssouth.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/ssw.png b/wise-webapp/src/main/webapp/icons/legacy/ssw.png
new file mode 100644
index 00000000..02ace46f
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/ssw.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/swest.png b/wise-webapp/src/main/webapp/icons/legacy/swest.png
new file mode 100644
index 00000000..54c06214
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/swest.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/tag_blue.png b/wise-webapp/src/main/webapp/icons/legacy/tag_blue.png
new file mode 100755
index 00000000..9757fc6e
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/tag_blue.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/tag_blue_add.png b/wise-webapp/src/main/webapp/icons/legacy/tag_blue_add.png
new file mode 100755
index 00000000..887972eb
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/tag_blue_add.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/tag_blue_add2.png b/wise-webapp/src/main/webapp/icons/legacy/tag_blue_add2.png
new file mode 100755
index 00000000..997c191a
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/tag_blue_add2.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/tag_green.png b/wise-webapp/src/main/webapp/icons/legacy/tag_green.png
new file mode 100755
index 00000000..83ec984b
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/tag_green.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/tag_orange.png b/wise-webapp/src/main/webapp/icons/legacy/tag_orange.png
new file mode 100755
index 00000000..454a59f3
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/tag_orange.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/tag_pink.png b/wise-webapp/src/main/webapp/icons/legacy/tag_pink.png
new file mode 100755
index 00000000..76e2296c
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/tag_pink.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/tag_purple.png b/wise-webapp/src/main/webapp/icons/legacy/tag_purple.png
new file mode 100755
index 00000000..ebaf0e87
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/tag_purple.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/tag_red.png b/wise-webapp/src/main/webapp/icons/legacy/tag_red.png
new file mode 100755
index 00000000..6ebb37d2
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/tag_red.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/tag_yellow.png b/wise-webapp/src/main/webapp/icons/legacy/tag_yellow.png
new file mode 100755
index 00000000..83d12924
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/tag_yellow.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/text_bold.png b/wise-webapp/src/main/webapp/icons/legacy/text_bold.png
new file mode 100755
index 00000000..889ae80e
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/text_bold.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/text_italic.png b/wise-webapp/src/main/webapp/icons/legacy/text_italic.png
new file mode 100755
index 00000000..8482ac8c
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/text_italic.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/thumb_down.png b/wise-webapp/src/main/webapp/icons/legacy/thumb_down.png
new file mode 100755
index 00000000..3c832d4c
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/thumb_down.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/thumb_up.png b/wise-webapp/src/main/webapp/icons/legacy/thumb_up.png
new file mode 100755
index 00000000..2bd16ccf
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/thumb_up.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/tick.png b/wise-webapp/src/main/webapp/icons/legacy/tick.png
new file mode 100755
index 00000000..a9925a06
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/tick.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/user_delete.png b/wise-webapp/src/main/webapp/icons/legacy/user_delete.png
new file mode 100755
index 00000000..acbb5630
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/user_delete.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/waring_icon.png b/wise-webapp/src/main/webapp/icons/legacy/waring_icon.png
new file mode 100644
index 00000000..628cf2da
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/waring_icon.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/world.png b/wise-webapp/src/main/webapp/icons/legacy/world.png
new file mode 100755
index 00000000..a7c3ade7
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/world.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/world2.png b/wise-webapp/src/main/webapp/icons/legacy/world2.png
new file mode 100755
index 00000000..448196b1
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/world2.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/world_go.png b/wise-webapp/src/main/webapp/icons/legacy/world_go.png
new file mode 100755
index 00000000..aee9c97f
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/world_go.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/world_link.png b/wise-webapp/src/main/webapp/icons/legacy/world_link.png
new file mode 100755
index 00000000..b8edc126
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/world_link.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/zoom_in.png b/wise-webapp/src/main/webapp/icons/legacy/zoom_in.png
new file mode 100755
index 00000000..1984e62d
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/zoom_in.png differ
diff --git a/wise-webapp/src/main/webapp/icons/legacy/zoom_out.png b/wise-webapp/src/main/webapp/icons/legacy/zoom_out.png
new file mode 100755
index 00000000..da2b3de4
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/legacy/zoom_out.png differ
diff --git a/wise-webapp/src/main/webapp/icons/weather-clear-night.png b/wise-webapp/src/main/webapp/icons/weather-clear-night.png
new file mode 100644
index 00000000..43457526
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/weather-clear-night.png differ
diff --git a/wise-webapp/src/main/webapp/icons/weather-clear.png b/wise-webapp/src/main/webapp/icons/weather-clear.png
new file mode 100644
index 00000000..7dc15ea9
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/weather-clear.png differ
diff --git a/wise-webapp/src/main/webapp/icons/weather-few-clouds-night.png b/wise-webapp/src/main/webapp/icons/weather-few-clouds-night.png
new file mode 100644
index 00000000..d69efec9
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/weather-few-clouds-night.png differ
diff --git a/wise-webapp/src/main/webapp/icons/weather-few-clouds.png b/wise-webapp/src/main/webapp/icons/weather-few-clouds.png
new file mode 100644
index 00000000..0e633a38
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/weather-few-clouds.png differ
diff --git a/wise-webapp/src/main/webapp/icons/weather-overcast.png b/wise-webapp/src/main/webapp/icons/weather-overcast.png
new file mode 100644
index 00000000..0045129b
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/weather-overcast.png differ
diff --git a/wise-webapp/src/main/webapp/icons/weather-severe-alert.png b/wise-webapp/src/main/webapp/icons/weather-severe-alert.png
new file mode 100644
index 00000000..98e9f6c1
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/weather-severe-alert.png differ
diff --git a/wise-webapp/src/main/webapp/icons/weather-showers-scattered.png b/wise-webapp/src/main/webapp/icons/weather-showers-scattered.png
new file mode 100644
index 00000000..8d10d844
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/weather-showers-scattered.png differ
diff --git a/wise-webapp/src/main/webapp/icons/weather-showers.png b/wise-webapp/src/main/webapp/icons/weather-showers.png
new file mode 100644
index 00000000..d9685d24
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/weather-showers.png differ
diff --git a/wise-webapp/src/main/webapp/icons/weather-snow.png b/wise-webapp/src/main/webapp/icons/weather-snow.png
new file mode 100644
index 00000000..a83d8559
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/weather-snow.png differ
diff --git a/wise-webapp/src/main/webapp/icons/weather-storm.png b/wise-webapp/src/main/webapp/icons/weather-storm.png
new file mode 100644
index 00000000..feebe1d4
Binary files /dev/null and b/wise-webapp/src/main/webapp/icons/weather-storm.png differ