diff --git a/drivers/bookmarklet/js/driver.js b/drivers/bookmarklet/js/driver.js index 70c6ce179..f4c057ef7 100644 --- a/drivers/bookmarklet/js/driver.js +++ b/drivers/bookmarklet/js/driver.js @@ -45,7 +45,7 @@ '
' + '' + '' + - ' ' + app + + ' ' + app + '' + '' ; diff --git a/drivers/firefox/content/js/driver.js b/drivers/firefox/content/js/driver.js index a54cd6f46..e0af82ad4 100644 --- a/drivers/firefox/content/js/driver.js +++ b/drivers/firefox/content/js/driver.js @@ -108,7 +108,7 @@ if ( w.detected[url] != null && w.detected[url].length ) { if ( !prefs.getBoolPref('showIcons') ) { var image = w$('') - .attr('src', 'chrome://wappalyzer/skin/images/icon16x16_hot.ico') + .attr('src', 'chrome://wappalyzer/skin/images/icon16x16_hot.png') ; w$('#wappalyzer-container').prepend(image); @@ -128,7 +128,7 @@ if ( display ) { if ( prefs.getBoolPref('showIcons') ) { var image = w$('') - .attr('src', 'chrome://wappalyzer/skin/images/icons/' + app + '.ico') + .attr('src', 'chrome://wappalyzer/skin/images/icons/' + app + '.png') ; w$('#wappalyzer-container').prepend(image); @@ -140,7 +140,7 @@ var menuItem = w$('') .attr('class', 'wappalyzer-application menuitem-iconic') - .attr('image', 'chrome://wappalyzer/skin/images/icons/' + app + '.ico') + .attr('image', 'chrome://wappalyzer/skin/images/icons/' + app + '.png') .attr('label', app) ; @@ -153,7 +153,7 @@ for ( cat in w.apps[app].cats ) { var menuItem = w$('') .attr('class', 'wappalyzer-category') - .attr('label', w.categories[w.apps[app].cats[cat]].name) + .attr('label', strings.getString('wappalyzer.cat' + w.apps[app].cats[cat])) ; menuItem.bind('command', function() { @@ -166,7 +166,7 @@ }); } else { var image = w$('') - .attr('src', 'chrome://wappalyzer/skin/images/icon16x16.ico') + .attr('src', 'chrome://wappalyzer/skin/images/icon16x16.png') ; w$('#wappalyzer-container').prepend(image); @@ -287,11 +287,6 @@ container(); }); - w$(prefix + 'categories') - .bind('command', function() { - w.driver.goToURL({ url: 'chrome://wappalyzer/content/xul/categories.xul' }) - }); - w$(prefix + 'donate') .bind('command', function() { w.driver.goToURL({ url: w.config.websiteURL + 'donate' }) diff --git a/drivers/firefox/locale/en-US/wappalyzer.properties b/drivers/firefox/locale/en-US/wappalyzer.properties index f78b305fa..3b9b1dd4a 100755 --- a/drivers/firefox/locale/en-US/wappalyzer.properties +++ b/drivers/firefox/locale/en-US/wappalyzer.properties @@ -1,2 +1,32 @@ -wappalyzer.name = Wappalyzer -wappalyzer.noAppsDetected = No applications detected +wappalyzer.name = Wappalyzer +wappalyzer.noAppsDetected = No applications detected + +wappalyzer.cat1 = CMS +wappalyzer.cat2 = Message Board +wappalyzer.cat3 = Database Manager +wappalyzer.cat4 = Documentation Tool +wappalyzer.cat5 = Widget +wappalyzer.cat6 = Web Shop +wappalyzer.cat7 = Photo Gallery +wappalyzer.cat8 = Wiki +wappalyzer.cat9 = Hosting Panel +wappalyzer.cat10 = Analytics +wappalyzer.cat11 = Blog +wappalyzer.cat12 = JavaScript Framework +wappalyzer.cat13 = Issue Tracker +wappalyzer.cat14 = Video Player +wappalyzer.cat15 = Comment System +wappalyzer.cat16 = CAPTCHA +wappalyzer.cat17 = Font Script +wappalyzer.cat18 = Web Framework +wappalyzer.cat19 = Miscellaneous +wappalyzer.cat20 = Editor +wappalyzer.cat21 = LMS +wappalyzer.cat22 = Web Server +wappalyzer.cat23 = Cache Tool +wappalyzer.cat24 = Rich Text Editor +wappalyzer.cat25 = Javascript Graphics +wappalyzer.cat26 = Mobile Framework +wappalyzer.cat27 = Programming Language +wappalyzer.cat28 = Operating System +wappalyzer.cat29 = Search Engine \ No newline at end of file diff --git a/drivers/firefox/locale/fr-FR/wappalyzer.properties b/drivers/firefox/locale/fr-FR/wappalyzer.properties index c7e46e1ba..d5df1ea08 100644 --- a/drivers/firefox/locale/fr-FR/wappalyzer.properties +++ b/drivers/firefox/locale/fr-FR/wappalyzer.properties @@ -1,2 +1,32 @@ wappalyzer.name = Wappalyzer wappalyzer.noAppsDetected = Pas d'applications détectées + +wappalyzer.cat1 = CMS +wappalyzer.cat2 = Forum +wappalyzer.cat3 = Gestionnaire de base de données +wappalyzer.cat4 = Outil de documentation +wappalyzer.cat5 = Widget +wappalyzer.cat6 = Boutique en ligne +wappalyzer.cat7 = Galerie photo +wappalyzer.cat8 = Wiki +wappalyzer.cat9 = Gestionnaires de serveur +wappalyzer.cat10 = Outil de statistiques +wappalyzer.cat11 = Blog +wappalyzer.cat12 = Framework JavaScript +wappalyzer.cat13 = Outils de suivi de problèmes +wappalyzer.cat14 = Lecteur de vidéos +wappalyzer.cat15 = Système de commentaires +wappalyzer.cat16 = CAPTCHA +wappalyzer.cat17 = Script de police +wappalyzer.cat18 = Framework web +wappalyzer.cat19 = Divers +wappalyzer.cat20 = Editeur +wappalyzer.cat21 = LMS +wappalyzer.cat22 = Serveur web +wappalyzer.cat23 = Outil de cache +wappalyzer.cat24 = Editeur WYSIWYG +wappalyzer.cat25 = Graphismes JavaScript +wappalyzer.cat26 = Framework pour mobiles +wappalyzer.cat27 = Language de programmation +wappalyzer.cat28 = Système d'exploitation +wappalyzer.cat29 = Moteur de recherche \ No newline at end of file diff --git a/drivers/firefox/skin/images/github.ico b/drivers/firefox/skin/images/github.ico deleted file mode 100644 index 9db08f286..000000000 Binary files a/drivers/firefox/skin/images/github.ico and /dev/null differ diff --git a/drivers/firefox/skin/images/github.png b/drivers/firefox/skin/images/github.png new file mode 100644 index 000000000..2746e5637 Binary files /dev/null and b/drivers/firefox/skin/images/github.png differ diff --git a/drivers/firefox/skin/images/gplus.ico b/drivers/firefox/skin/images/gplus.ico deleted file mode 100644 index 7aae1e6a2..000000000 Binary files a/drivers/firefox/skin/images/gplus.ico and /dev/null differ diff --git a/drivers/firefox/skin/images/gplus.png b/drivers/firefox/skin/images/gplus.png new file mode 100644 index 000000000..f4f2b5c9f Binary files /dev/null and b/drivers/firefox/skin/images/gplus.png differ diff --git a/drivers/firefox/skin/images/icon16x16.ico b/drivers/firefox/skin/images/icon16x16.ico deleted file mode 100644 index a5ca8aa87..000000000 Binary files a/drivers/firefox/skin/images/icon16x16.ico and /dev/null differ diff --git a/drivers/firefox/skin/images/icon16x16.png b/drivers/firefox/skin/images/icon16x16.png new file mode 100644 index 000000000..4fd101b2a Binary files /dev/null and b/drivers/firefox/skin/images/icon16x16.png differ diff --git a/drivers/firefox/skin/images/icon16x16_hot.ico b/drivers/firefox/skin/images/icon16x16_hot.ico deleted file mode 100644 index 36829b9a5..000000000 Binary files a/drivers/firefox/skin/images/icon16x16_hot.ico and /dev/null differ diff --git a/drivers/firefox/skin/images/icon16x16_hot.png b/drivers/firefox/skin/images/icon16x16_hot.png new file mode 100644 index 000000000..7e5b9a93e Binary files /dev/null and b/drivers/firefox/skin/images/icon16x16_hot.png differ diff --git a/drivers/firefox/skin/images/twitter.ico b/drivers/firefox/skin/images/twitter.ico deleted file mode 100644 index 00450d4fe..000000000 Binary files a/drivers/firefox/skin/images/twitter.ico and /dev/null differ diff --git a/drivers/firefox/skin/images/twitter.png b/drivers/firefox/skin/images/twitter.png new file mode 100644 index 000000000..88b21ac26 Binary files /dev/null and b/drivers/firefox/skin/images/twitter.png differ diff --git a/drivers/html/js/driver.js b/drivers/html/js/driver.js index add7e4e62..90ca84b00 100644 --- a/drivers/html/js/driver.js +++ b/drivers/html/js/driver.js @@ -31,7 +31,7 @@ document.getElementById('apps').innerHTML = ''; args.apps.map(function(app) { - document.getElementById('apps').innerHTML += ' ' + app + '
'; + document.getElementById('apps').innerHTML += ' ' + app + '
'; }); }, diff --git a/share/images/donate.png b/share/images/donate.png index fc60c5e1c..b19b1d0b7 100644 Binary files a/share/images/donate.png and b/share/images/donate.png differ diff --git a/share/images/feedback.png b/share/images/feedback.png index d22fde8ba..540b84c2c 100644 Binary files a/share/images/feedback.png and b/share/images/feedback.png differ diff --git a/share/images/github.ico b/share/images/github.ico deleted file mode 100644 index 9db08f286..000000000 Binary files a/share/images/github.ico and /dev/null differ diff --git a/share/images/github.png b/share/images/github.png new file mode 100644 index 000000000..2746e5637 Binary files /dev/null and b/share/images/github.png differ diff --git a/share/images/icons/1C-Bitrix.ico b/share/images/icons/1C-Bitrix.ico deleted file mode 100644 index 4f24c6bc1..000000000 Binary files a/share/images/icons/1C-Bitrix.ico and /dev/null differ diff --git a/share/images/icons/1C-Bitrix.png b/share/images/icons/1C-Bitrix.png new file mode 100644 index 000000000..3aeb8fa8b Binary files /dev/null and b/share/images/icons/1C-Bitrix.png differ diff --git a/share/images/icons/1und1.ico b/share/images/icons/1und1.ico deleted file mode 100644 index 7a40576dc..000000000 Binary files a/share/images/icons/1und1.ico and /dev/null differ diff --git a/share/images/icons/1und1.png b/share/images/icons/1und1.png new file mode 100644 index 000000000..89dc81119 Binary files /dev/null and b/share/images/icons/1und1.png differ diff --git a/share/images/icons/2z Project.ico b/share/images/icons/2z Project.ico deleted file mode 100644 index 58a0a822a..000000000 Binary files a/share/images/icons/2z Project.ico and /dev/null differ diff --git a/share/images/icons/2z Project.png b/share/images/icons/2z Project.png new file mode 100644 index 000000000..411d4a948 Binary files /dev/null and b/share/images/icons/2z Project.png differ diff --git a/share/images/icons/AOLserver.ico b/share/images/icons/AOLserver.ico deleted file mode 100644 index 0860d2b14..000000000 Binary files a/share/images/icons/AOLserver.ico and /dev/null differ diff --git a/share/images/icons/AOLserver.png b/share/images/icons/AOLserver.png new file mode 100644 index 000000000..45f84f1ab Binary files /dev/null and b/share/images/icons/AOLserver.png differ diff --git a/share/images/icons/ATG Web Commerce.png b/share/images/icons/ATG Web Commerce.png new file mode 100644 index 000000000..6fe21809a Binary files /dev/null and b/share/images/icons/ATG Web Commerce.png differ diff --git a/share/images/icons/AWStats.ico b/share/images/icons/AWStats.ico deleted file mode 100644 index 63ab39092..000000000 Binary files a/share/images/icons/AWStats.ico and /dev/null differ diff --git a/share/images/icons/AWStats.png b/share/images/icons/AWStats.png new file mode 100644 index 000000000..275f63e14 Binary files /dev/null and b/share/images/icons/AWStats.png differ diff --git a/share/images/icons/AddThis.ico b/share/images/icons/AddThis.ico deleted file mode 100644 index 4760122f1..000000000 Binary files a/share/images/icons/AddThis.ico and /dev/null differ diff --git a/share/images/icons/AddThis.png b/share/images/icons/AddThis.png new file mode 100644 index 000000000..a74324f12 Binary files /dev/null and b/share/images/icons/AddThis.png differ diff --git a/share/images/icons/Adobe GoLive.ico b/share/images/icons/Adobe GoLive.ico deleted file mode 100644 index 342c27979..000000000 Binary files a/share/images/icons/Adobe GoLive.ico and /dev/null differ diff --git a/share/images/icons/Adobe GoLive.png b/share/images/icons/Adobe GoLive.png new file mode 100644 index 000000000..40abf1a28 Binary files /dev/null and b/share/images/icons/Adobe GoLive.png differ diff --git a/share/images/icons/Advanced Web Stats.ico b/share/images/icons/Advanced Web Stats.ico deleted file mode 100644 index b1ae829e6..000000000 Binary files a/share/images/icons/Advanced Web Stats.ico and /dev/null differ diff --git a/share/images/icons/Advanced Web Stats.png b/share/images/icons/Advanced Web Stats.png new file mode 100644 index 000000000..c4f4b720e Binary files /dev/null and b/share/images/icons/Advanced Web Stats.png differ diff --git a/share/images/icons/Alloy.ico b/share/images/icons/Alloy.ico deleted file mode 100644 index a1000a292..000000000 Binary files a/share/images/icons/Alloy.ico and /dev/null differ diff --git a/share/images/icons/Alloy.png b/share/images/icons/Alloy.png new file mode 100644 index 000000000..b04ecc1d8 Binary files /dev/null and b/share/images/icons/Alloy.png differ diff --git a/share/images/icons/Ametys.ico b/share/images/icons/Ametys.ico deleted file mode 100644 index 78a34d4dd..000000000 Binary files a/share/images/icons/Ametys.ico and /dev/null differ diff --git a/share/images/icons/Ametys.png b/share/images/icons/Ametys.png new file mode 100644 index 000000000..7c5dfcdcb Binary files /dev/null and b/share/images/icons/Ametys.png differ diff --git a/share/images/icons/Amiro.CMS.ico b/share/images/icons/Amiro.CMS.ico deleted file mode 100644 index 451093b16..000000000 Binary files a/share/images/icons/Amiro.CMS.ico and /dev/null differ diff --git a/share/images/icons/Amiro.CMS.png b/share/images/icons/Amiro.CMS.png new file mode 100644 index 000000000..0483584c9 Binary files /dev/null and b/share/images/icons/Amiro.CMS.png differ diff --git a/share/images/icons/Apache OFBiz.ico b/share/images/icons/Apache OFBiz.ico deleted file mode 100644 index f0c22ad9b..000000000 Binary files a/share/images/icons/Apache OFBiz.ico and /dev/null differ diff --git a/share/images/icons/Apache OFBiz.png b/share/images/icons/Apache OFBiz.png new file mode 100644 index 000000000..9cc0c6a2d Binary files /dev/null and b/share/images/icons/Apache OFBiz.png differ diff --git a/share/images/icons/Apache Tomcat.ico b/share/images/icons/Apache Tomcat.ico deleted file mode 100644 index 4a498f745..000000000 Binary files a/share/images/icons/Apache Tomcat.ico and /dev/null differ diff --git a/share/images/icons/Apache Tomcat.png b/share/images/icons/Apache Tomcat.png new file mode 100644 index 000000000..fcf2172c3 Binary files /dev/null and b/share/images/icons/Apache Tomcat.png differ diff --git a/share/images/icons/Apache Traffic Server.ico b/share/images/icons/Apache Traffic Server.ico deleted file mode 100644 index a96494d7c..000000000 Binary files a/share/images/icons/Apache Traffic Server.ico and /dev/null differ diff --git a/share/images/icons/Apache Traffic Server.png b/share/images/icons/Apache Traffic Server.png new file mode 100644 index 000000000..5ff570e53 Binary files /dev/null and b/share/images/icons/Apache Traffic Server.png differ diff --git a/share/images/icons/Apache.ico b/share/images/icons/Apache.ico deleted file mode 100644 index f0c22ad9b..000000000 Binary files a/share/images/icons/Apache.ico and /dev/null differ diff --git a/share/images/icons/Apache.png b/share/images/icons/Apache.png new file mode 100644 index 000000000..9cc0c6a2d Binary files /dev/null and b/share/images/icons/Apache.png differ diff --git a/share/images/icons/Arc Forum.ico b/share/images/icons/Arc Forum.ico deleted file mode 100644 index 51d04ebda..000000000 Binary files a/share/images/icons/Arc Forum.ico and /dev/null differ diff --git a/share/images/icons/Arc Forum.png b/share/images/icons/Arc Forum.png new file mode 100644 index 000000000..4a924c913 Binary files /dev/null and b/share/images/icons/Arc Forum.png differ diff --git a/share/images/icons/Atlassian Confluence.ico b/share/images/icons/Atlassian Confluence.ico deleted file mode 100644 index d0a42183a..000000000 Binary files a/share/images/icons/Atlassian Confluence.ico and /dev/null differ diff --git a/share/images/icons/Atlassian Confluence.png b/share/images/icons/Atlassian Confluence.png new file mode 100644 index 000000000..5fc44930d Binary files /dev/null and b/share/images/icons/Atlassian Confluence.png differ diff --git a/share/images/icons/Atlassian Jira.ico b/share/images/icons/Atlassian Jira.ico deleted file mode 100644 index e2738055c..000000000 Binary files a/share/images/icons/Atlassian Jira.ico and /dev/null differ diff --git a/share/images/icons/Atlassian Jira.png b/share/images/icons/Atlassian Jira.png new file mode 100644 index 000000000..a53dab409 Binary files /dev/null and b/share/images/icons/Atlassian Jira.png differ diff --git a/share/images/icons/BIGACE.ico b/share/images/icons/BIGACE.ico deleted file mode 100644 index fba872d83..000000000 Binary files a/share/images/icons/BIGACE.ico and /dev/null differ diff --git a/share/images/icons/BIGACE.png b/share/images/icons/BIGACE.png new file mode 100644 index 000000000..3e5b8da6e Binary files /dev/null and b/share/images/icons/BIGACE.png differ diff --git a/share/images/icons/Backbone.js.ico b/share/images/icons/Backbone.js.ico deleted file mode 100644 index 633dae54a..000000000 Binary files a/share/images/icons/Backbone.js.ico and /dev/null differ diff --git a/share/images/icons/Backbone.js.png b/share/images/icons/Backbone.js.png new file mode 100644 index 000000000..5e7e5fb7f Binary files /dev/null and b/share/images/icons/Backbone.js.png differ diff --git a/share/images/icons/Banshee.ico b/share/images/icons/Banshee.ico deleted file mode 100644 index acdc515af..000000000 Binary files a/share/images/icons/Banshee.ico and /dev/null differ diff --git a/share/images/icons/Banshee.png b/share/images/icons/Banshee.png new file mode 100644 index 000000000..c25e8914f Binary files /dev/null and b/share/images/icons/Banshee.png differ diff --git a/share/images/icons/BigDump.ico b/share/images/icons/BigDump.ico deleted file mode 100644 index 743716f60..000000000 Binary files a/share/images/icons/BigDump.ico and /dev/null differ diff --git a/share/images/icons/BigDump.png b/share/images/icons/BigDump.png new file mode 100644 index 000000000..f2798fb62 Binary files /dev/null and b/share/images/icons/BigDump.png differ diff --git a/share/images/icons/Bigware.ico b/share/images/icons/Bigware.ico deleted file mode 100644 index 12470c049..000000000 Binary files a/share/images/icons/Bigware.ico and /dev/null differ diff --git a/share/images/icons/Bigware.png b/share/images/icons/Bigware.png new file mode 100644 index 000000000..566eb670b Binary files /dev/null and b/share/images/icons/Bigware.png differ diff --git a/share/images/icons/Blogger.ico b/share/images/icons/Blogger.ico deleted file mode 100644 index 1b9730b01..000000000 Binary files a/share/images/icons/Blogger.ico and /dev/null differ diff --git a/share/images/icons/Blogger.png b/share/images/icons/Blogger.png new file mode 100644 index 000000000..384d9d54b Binary files /dev/null and b/share/images/icons/Blogger.png differ diff --git a/share/images/icons/Bugzilla.ico b/share/images/icons/Bugzilla.ico deleted file mode 100644 index c6f1e607f..000000000 Binary files a/share/images/icons/Bugzilla.ico and /dev/null differ diff --git a/share/images/icons/Bugzilla.png b/share/images/icons/Bugzilla.png new file mode 100644 index 000000000..f8a46414e Binary files /dev/null and b/share/images/icons/Bugzilla.png differ diff --git a/share/images/icons/Burning Board.ico b/share/images/icons/Burning Board.ico deleted file mode 100644 index 0c87ae832..000000000 Binary files a/share/images/icons/Burning Board.ico and /dev/null differ diff --git a/share/images/icons/Burning Board.png b/share/images/icons/Burning Board.png new file mode 100644 index 000000000..4ab946ed9 Binary files /dev/null and b/share/images/icons/Burning Board.png differ diff --git a/share/images/icons/Business Catalyst.png b/share/images/icons/Business Catalyst.png new file mode 100644 index 000000000..2da90e22b Binary files /dev/null and b/share/images/icons/Business Catalyst.png differ diff --git a/share/images/icons/CKEditor.ico b/share/images/icons/CKEditor.ico deleted file mode 100644 index fdf1f3b70..000000000 Binary files a/share/images/icons/CKEditor.ico and /dev/null differ diff --git a/share/images/icons/CKEditor.png b/share/images/icons/CKEditor.png new file mode 100644 index 000000000..18ab0e963 Binary files /dev/null and b/share/images/icons/CKEditor.png differ diff --git a/share/images/icons/CMS Made Simple.ico b/share/images/icons/CMS Made Simple.ico deleted file mode 100644 index 39127e7f1..000000000 Binary files a/share/images/icons/CMS Made Simple.ico and /dev/null differ diff --git a/share/images/icons/CMS Made Simple.png b/share/images/icons/CMS Made Simple.png new file mode 100644 index 000000000..acef7574f Binary files /dev/null and b/share/images/icons/CMS Made Simple.png differ diff --git a/share/images/icons/CO2Stats.ico b/share/images/icons/CO2Stats.ico deleted file mode 100644 index 7eac84ac8..000000000 Binary files a/share/images/icons/CO2Stats.ico and /dev/null differ diff --git a/share/images/icons/CO2Stats.png b/share/images/icons/CO2Stats.png new file mode 100644 index 000000000..79514b28f Binary files /dev/null and b/share/images/icons/CO2Stats.png differ diff --git a/share/images/icons/CS Cart.ico b/share/images/icons/CS Cart.ico deleted file mode 100644 index 9c167e642..000000000 Binary files a/share/images/icons/CS Cart.ico and /dev/null differ diff --git a/share/images/icons/CS Cart.png b/share/images/icons/CS Cart.png new file mode 100644 index 000000000..b1199d99d Binary files /dev/null and b/share/images/icons/CS Cart.png differ diff --git a/share/images/icons/CakePHP.ico b/share/images/icons/CakePHP.ico deleted file mode 100644 index b88e45daf..000000000 Binary files a/share/images/icons/CakePHP.ico and /dev/null differ diff --git a/share/images/icons/CakePHP.png b/share/images/icons/CakePHP.png new file mode 100644 index 000000000..bb3a72f3c Binary files /dev/null and b/share/images/icons/CakePHP.png differ diff --git a/share/images/icons/Cargo.ico b/share/images/icons/Cargo.ico deleted file mode 100644 index 0444194da..000000000 Binary files a/share/images/icons/Cargo.ico and /dev/null differ diff --git a/share/images/icons/Cargo.png b/share/images/icons/Cargo.png new file mode 100644 index 000000000..e0b19e58b Binary files /dev/null and b/share/images/icons/Cargo.png differ diff --git a/share/images/icons/CentOS.ico b/share/images/icons/CentOS.ico deleted file mode 100644 index 188bd11cc..000000000 Binary files a/share/images/icons/CentOS.ico and /dev/null differ diff --git a/share/images/icons/CentOS.png b/share/images/icons/CentOS.png new file mode 100644 index 000000000..8e9bb0072 Binary files /dev/null and b/share/images/icons/CentOS.png differ diff --git a/share/images/icons/Chameleon.ico b/share/images/icons/Chameleon.ico deleted file mode 100644 index 53cb2873f..000000000 Binary files a/share/images/icons/Chameleon.ico and /dev/null differ diff --git a/share/images/icons/Chameleon.png b/share/images/icons/Chameleon.png new file mode 100644 index 000000000..b82022c24 Binary files /dev/null and b/share/images/icons/Chameleon.png differ diff --git a/share/images/icons/Chamilo.ico b/share/images/icons/Chamilo.ico deleted file mode 100644 index ec908b24d..000000000 Binary files a/share/images/icons/Chamilo.ico and /dev/null differ diff --git a/share/images/icons/Chamilo.png b/share/images/icons/Chamilo.png new file mode 100644 index 000000000..835556b86 Binary files /dev/null and b/share/images/icons/Chamilo.png differ diff --git a/share/images/icons/Cherokee.ico b/share/images/icons/Cherokee.ico deleted file mode 100644 index 402bfff9f..000000000 Binary files a/share/images/icons/Cherokee.ico and /dev/null differ diff --git a/share/images/icons/Cherokee.png b/share/images/icons/Cherokee.png new file mode 100644 index 000000000..bcd72697b Binary files /dev/null and b/share/images/icons/Cherokee.png differ diff --git a/share/images/icons/ClickHeat.ico b/share/images/icons/ClickHeat.ico deleted file mode 100644 index 36829b9a5..000000000 Binary files a/share/images/icons/ClickHeat.ico and /dev/null differ diff --git a/share/images/icons/ClickHeat.png b/share/images/icons/ClickHeat.png new file mode 100644 index 000000000..59fc5c2ca Binary files /dev/null and b/share/images/icons/ClickHeat.png differ diff --git a/share/images/icons/ClickTale.ico b/share/images/icons/ClickTale.ico deleted file mode 100644 index fbf1af459..000000000 Binary files a/share/images/icons/ClickTale.ico and /dev/null differ diff --git a/share/images/icons/ClickTale.png b/share/images/icons/ClickTale.png new file mode 100644 index 000000000..c19b4a49f Binary files /dev/null and b/share/images/icons/ClickTale.png differ diff --git a/share/images/icons/Clicky.ico b/share/images/icons/Clicky.ico deleted file mode 100644 index 19dc23510..000000000 Binary files a/share/images/icons/Clicky.ico and /dev/null differ diff --git a/share/images/icons/Clicky.png b/share/images/icons/Clicky.png new file mode 100644 index 000000000..c89449f5b Binary files /dev/null and b/share/images/icons/Clicky.png differ diff --git a/share/images/icons/CodeIgniter.ico b/share/images/icons/CodeIgniter.ico deleted file mode 100644 index 6db9a9c7a..000000000 Binary files a/share/images/icons/CodeIgniter.ico and /dev/null differ diff --git a/share/images/icons/CodeIgniter.png b/share/images/icons/CodeIgniter.png new file mode 100644 index 000000000..08b77067b Binary files /dev/null and b/share/images/icons/CodeIgniter.png differ diff --git a/share/images/icons/Commerce Server.png b/share/images/icons/Commerce Server.png new file mode 100644 index 000000000..c5950df1d Binary files /dev/null and b/share/images/icons/Commerce Server.png differ diff --git a/share/images/icons/Concrete5.ico b/share/images/icons/Concrete5.ico deleted file mode 100644 index 73f49a361..000000000 Binary files a/share/images/icons/Concrete5.ico and /dev/null differ diff --git a/share/images/icons/Concrete5.png b/share/images/icons/Concrete5.png new file mode 100644 index 000000000..272fadc62 Binary files /dev/null and b/share/images/icons/Concrete5.png differ diff --git a/share/images/icons/Contao.ico b/share/images/icons/Contao.ico deleted file mode 100644 index 776c0b789..000000000 Binary files a/share/images/icons/Contao.ico and /dev/null differ diff --git a/share/images/icons/Contao.png b/share/images/icons/Contao.png new file mode 100644 index 000000000..b67d1f780 Binary files /dev/null and b/share/images/icons/Contao.png differ diff --git a/share/images/icons/Contens.ico b/share/images/icons/Contens.ico deleted file mode 100644 index b1c5d8da6..000000000 Binary files a/share/images/icons/Contens.ico and /dev/null differ diff --git a/share/images/icons/Contens.png b/share/images/icons/Contens.png new file mode 100644 index 000000000..30c276a41 Binary files /dev/null and b/share/images/icons/Contens.png differ diff --git a/share/images/icons/ConversionLab.ico b/share/images/icons/ConversionLab.ico deleted file mode 100644 index 1de64403b..000000000 Binary files a/share/images/icons/ConversionLab.ico and /dev/null differ diff --git a/share/images/icons/ConversionLab.png b/share/images/icons/ConversionLab.png new file mode 100644 index 000000000..6d7c84139 Binary files /dev/null and b/share/images/icons/ConversionLab.png differ diff --git a/share/images/icons/Coppermine.ico b/share/images/icons/Coppermine.ico deleted file mode 100644 index 3a5a36751..000000000 Binary files a/share/images/icons/Coppermine.ico and /dev/null differ diff --git a/share/images/icons/Coppermine.png b/share/images/icons/Coppermine.png new file mode 100644 index 000000000..8a7f74a2a Binary files /dev/null and b/share/images/icons/Coppermine.png differ diff --git a/share/images/icons/Cosmoshop.ico b/share/images/icons/Cosmoshop.ico deleted file mode 100644 index c115ec478..000000000 Binary files a/share/images/icons/Cosmoshop.ico and /dev/null differ diff --git a/share/images/icons/Cosmoshop.png b/share/images/icons/Cosmoshop.png new file mode 100644 index 000000000..40f259cda Binary files /dev/null and b/share/images/icons/Cosmoshop.png differ diff --git a/share/images/icons/Cotonti.ico b/share/images/icons/Cotonti.ico deleted file mode 100644 index c29411334..000000000 Binary files a/share/images/icons/Cotonti.ico and /dev/null differ diff --git a/share/images/icons/Cotonti.png b/share/images/icons/Cotonti.png new file mode 100644 index 000000000..edf672cc6 Binary files /dev/null and b/share/images/icons/Cotonti.png differ diff --git a/share/images/icons/CouchDB.ico b/share/images/icons/CouchDB.ico deleted file mode 100644 index 34bfaa86f..000000000 Binary files a/share/images/icons/CouchDB.ico and /dev/null differ diff --git a/share/images/icons/CouchDB.png b/share/images/icons/CouchDB.png new file mode 100644 index 000000000..f11389275 Binary files /dev/null and b/share/images/icons/CouchDB.png differ diff --git a/share/images/icons/Crazy Egg.ico b/share/images/icons/Crazy Egg.ico deleted file mode 100644 index 6993f2916..000000000 Binary files a/share/images/icons/Crazy Egg.ico and /dev/null differ diff --git a/share/images/icons/Crazy Egg.png b/share/images/icons/Crazy Egg.png new file mode 100644 index 000000000..c472e8f5b Binary files /dev/null and b/share/images/icons/Crazy Egg.png differ diff --git a/share/images/icons/CubeCart.ico b/share/images/icons/CubeCart.ico deleted file mode 100644 index ff9f04dc9..000000000 Binary files a/share/images/icons/CubeCart.ico and /dev/null differ diff --git a/share/images/icons/CubeCart.png b/share/images/icons/CubeCart.png new file mode 100644 index 000000000..6be25d216 Binary files /dev/null and b/share/images/icons/CubeCart.png differ diff --git a/share/images/icons/DHTMLX.ico b/share/images/icons/DHTMLX.ico deleted file mode 100644 index d24acaa1b..000000000 Binary files a/share/images/icons/DHTMLX.ico and /dev/null differ diff --git a/share/images/icons/DHTMLX.png b/share/images/icons/DHTMLX.png new file mode 100644 index 000000000..7b5e9436b Binary files /dev/null and b/share/images/icons/DHTMLX.png differ diff --git a/share/images/icons/Dancer.png b/share/images/icons/Dancer.png new file mode 100644 index 000000000..88432bcbd Binary files /dev/null and b/share/images/icons/Dancer.png differ diff --git a/share/images/icons/Danneo CMS.ico b/share/images/icons/Danneo CMS.ico deleted file mode 100644 index d3403c2fb..000000000 Binary files a/share/images/icons/Danneo CMS.ico and /dev/null differ diff --git a/share/images/icons/Danneo CMS.png b/share/images/icons/Danneo CMS.png new file mode 100644 index 000000000..265231fee Binary files /dev/null and b/share/images/icons/Danneo CMS.png differ diff --git a/share/images/icons/DataLife Engine.ico b/share/images/icons/DataLife Engine.ico deleted file mode 100755 index 743716f60..000000000 Binary files a/share/images/icons/DataLife Engine.ico and /dev/null differ diff --git a/share/images/icons/DataLife Engine.png b/share/images/icons/DataLife Engine.png new file mode 100644 index 000000000..f2798fb62 Binary files /dev/null and b/share/images/icons/DataLife Engine.png differ diff --git a/share/images/icons/David Webbox.ico b/share/images/icons/David Webbox.ico deleted file mode 100644 index 9ab786305..000000000 Binary files a/share/images/icons/David Webbox.ico and /dev/null differ diff --git a/share/images/icons/David Webbox.png b/share/images/icons/David Webbox.png new file mode 100644 index 000000000..494312473 Binary files /dev/null and b/share/images/icons/David Webbox.png differ diff --git a/share/images/icons/Debian.ico b/share/images/icons/Debian.ico deleted file mode 100644 index 8f4e75cef..000000000 Binary files a/share/images/icons/Debian.ico and /dev/null differ diff --git a/share/images/icons/Debian.png b/share/images/icons/Debian.png new file mode 100644 index 000000000..d5959d49d Binary files /dev/null and b/share/images/icons/Debian.png differ diff --git a/share/images/icons/DedeCMS.png b/share/images/icons/DedeCMS.png new file mode 100644 index 000000000..c2e9a74d2 Binary files /dev/null and b/share/images/icons/DedeCMS.png differ diff --git a/share/images/icons/Demandware.ico b/share/images/icons/Demandware.ico deleted file mode 100644 index 39c13ea66..000000000 Binary files a/share/images/icons/Demandware.ico and /dev/null differ diff --git a/share/images/icons/Demandware.png b/share/images/icons/Demandware.png new file mode 100644 index 000000000..cfb263934 Binary files /dev/null and b/share/images/icons/Demandware.png differ diff --git a/share/images/icons/DirectAdmin.ico b/share/images/icons/DirectAdmin.ico deleted file mode 100644 index 39f6fdf2e..000000000 Binary files a/share/images/icons/DirectAdmin.ico and /dev/null differ diff --git a/share/images/icons/DirectAdmin.png b/share/images/icons/DirectAdmin.png new file mode 100644 index 000000000..03a374919 Binary files /dev/null and b/share/images/icons/DirectAdmin.png differ diff --git a/share/images/icons/Disqus.ico b/share/images/icons/Disqus.ico deleted file mode 100644 index a58d6f4fd..000000000 Binary files a/share/images/icons/Disqus.ico and /dev/null differ diff --git a/share/images/icons/Disqus.png b/share/images/icons/Disqus.png new file mode 100644 index 000000000..35cddd03d Binary files /dev/null and b/share/images/icons/Disqus.png differ diff --git a/share/images/icons/Django CMS.ico b/share/images/icons/Django CMS.ico deleted file mode 100644 index 37492a740..000000000 Binary files a/share/images/icons/Django CMS.ico and /dev/null differ diff --git a/share/images/icons/Django CMS.png b/share/images/icons/Django CMS.png new file mode 100644 index 000000000..a465ead46 Binary files /dev/null and b/share/images/icons/Django CMS.png differ diff --git a/share/images/icons/Django.ico b/share/images/icons/Django.ico deleted file mode 100644 index 1db49645b..000000000 Binary files a/share/images/icons/Django.ico and /dev/null differ diff --git a/share/images/icons/Django.png b/share/images/icons/Django.png new file mode 100644 index 000000000..eb4d7cbab Binary files /dev/null and b/share/images/icons/Django.png differ diff --git a/share/images/icons/Dokeos.ico b/share/images/icons/Dokeos.ico deleted file mode 100644 index 52d5afdea..000000000 Binary files a/share/images/icons/Dokeos.ico and /dev/null differ diff --git a/share/images/icons/Dokeos.png b/share/images/icons/Dokeos.png new file mode 100644 index 000000000..dc9751e5d Binary files /dev/null and b/share/images/icons/Dokeos.png differ diff --git a/share/images/icons/DokuWiki.ico b/share/images/icons/DokuWiki.ico deleted file mode 100644 index 8b9616abb..000000000 Binary files a/share/images/icons/DokuWiki.ico and /dev/null differ diff --git a/share/images/icons/DokuWiki.png b/share/images/icons/DokuWiki.png new file mode 100644 index 000000000..9da03ef22 Binary files /dev/null and b/share/images/icons/DokuWiki.png differ diff --git a/share/images/icons/DotNetNuke.ico b/share/images/icons/DotNetNuke.ico deleted file mode 100644 index 8a2e054b7..000000000 Binary files a/share/images/icons/DotNetNuke.ico and /dev/null differ diff --git a/share/images/icons/DotNetNuke.png b/share/images/icons/DotNetNuke.png new file mode 100644 index 000000000..08b8949e8 Binary files /dev/null and b/share/images/icons/DotNetNuke.png differ diff --git a/share/images/icons/Dotclear.ico b/share/images/icons/Dotclear.ico deleted file mode 100644 index e22a28065..000000000 Binary files a/share/images/icons/Dotclear.ico and /dev/null differ diff --git a/share/images/icons/Dotclear.png b/share/images/icons/Dotclear.png new file mode 100644 index 000000000..1dc5b1443 Binary files /dev/null and b/share/images/icons/Dotclear.png differ diff --git a/share/images/icons/DreamWeaver.ico b/share/images/icons/DreamWeaver.ico deleted file mode 100644 index 7791dd8a5..000000000 Binary files a/share/images/icons/DreamWeaver.ico and /dev/null differ diff --git a/share/images/icons/DreamWeaver.png b/share/images/icons/DreamWeaver.png new file mode 100644 index 000000000..92ffabf89 Binary files /dev/null and b/share/images/icons/DreamWeaver.png differ diff --git a/share/images/icons/Drupal Commerce.ico b/share/images/icons/Drupal Commerce.ico deleted file mode 100644 index 52184b3a3..000000000 Binary files a/share/images/icons/Drupal Commerce.ico and /dev/null differ diff --git a/share/images/icons/Drupal Commerce.png b/share/images/icons/Drupal Commerce.png new file mode 100644 index 000000000..5e6a73493 Binary files /dev/null and b/share/images/icons/Drupal Commerce.png differ diff --git a/share/images/icons/Drupal.ico b/share/images/icons/Drupal.ico deleted file mode 100644 index bfa1c996f..000000000 Binary files a/share/images/icons/Drupal.ico and /dev/null differ diff --git a/share/images/icons/Drupal.png b/share/images/icons/Drupal.png new file mode 100644 index 000000000..50894c78f Binary files /dev/null and b/share/images/icons/Drupal.png differ diff --git a/share/images/icons/Dynamicweb.ico b/share/images/icons/Dynamicweb.ico deleted file mode 100644 index 8fa15232e..000000000 Binary files a/share/images/icons/Dynamicweb.ico and /dev/null differ diff --git a/share/images/icons/Dynamicweb.png b/share/images/icons/Dynamicweb.png new file mode 100644 index 000000000..25fca6359 Binary files /dev/null and b/share/images/icons/Dynamicweb.png differ diff --git a/share/images/icons/Ecodoo.ico b/share/images/icons/Ecodoo.ico deleted file mode 100644 index e250dc184..000000000 Binary files a/share/images/icons/Ecodoo.ico and /dev/null differ diff --git a/share/images/icons/Ecodoo.png b/share/images/icons/Ecodoo.png new file mode 100644 index 000000000..16f6ccaa8 Binary files /dev/null and b/share/images/icons/Ecodoo.png differ diff --git a/share/images/icons/Endeca.ico b/share/images/icons/Endeca.ico deleted file mode 100644 index 43d0081b1..000000000 Binary files a/share/images/icons/Endeca.ico and /dev/null differ diff --git a/share/images/icons/Endeca.png b/share/images/icons/Endeca.png new file mode 100644 index 000000000..44aa6269e Binary files /dev/null and b/share/images/icons/Endeca.png differ diff --git a/share/images/icons/Exhibit.ico b/share/images/icons/Exhibit.ico deleted file mode 100644 index 36829b9a5..000000000 Binary files a/share/images/icons/Exhibit.ico and /dev/null differ diff --git a/share/images/icons/Exhibit.png b/share/images/icons/Exhibit.png new file mode 100644 index 000000000..59fc5c2ca Binary files /dev/null and b/share/images/icons/Exhibit.png differ diff --git a/share/images/icons/ExpressionEngine.ico b/share/images/icons/ExpressionEngine.ico deleted file mode 100644 index 69348a630..000000000 Binary files a/share/images/icons/ExpressionEngine.ico and /dev/null differ diff --git a/share/images/icons/ExpressionEngine.png b/share/images/icons/ExpressionEngine.png new file mode 100644 index 000000000..da58258ac Binary files /dev/null and b/share/images/icons/ExpressionEngine.png differ diff --git a/share/images/icons/ExtJS.ico b/share/images/icons/ExtJS.ico deleted file mode 100644 index 96055305f..000000000 Binary files a/share/images/icons/ExtJS.ico and /dev/null differ diff --git a/share/images/icons/ExtJS.png b/share/images/icons/ExtJS.png new file mode 100644 index 000000000..e4a180996 Binary files /dev/null and b/share/images/icons/ExtJS.png differ diff --git a/share/images/icons/FAST ESP.ico b/share/images/icons/FAST ESP.ico deleted file mode 100644 index 9de046a1e..000000000 Binary files a/share/images/icons/FAST ESP.ico and /dev/null differ diff --git a/share/images/icons/FAST ESP.png b/share/images/icons/FAST ESP.png new file mode 100644 index 000000000..f5afad8e2 Binary files /dev/null and b/share/images/icons/FAST ESP.png differ diff --git a/share/images/icons/FAST Search for SharePoint.ico b/share/images/icons/FAST Search for SharePoint.ico deleted file mode 100644 index 77e829225..000000000 Binary files a/share/images/icons/FAST Search for SharePoint.ico and /dev/null differ diff --git a/share/images/icons/FAST Search for SharePoint.png b/share/images/icons/FAST Search for SharePoint.png new file mode 100644 index 000000000..1c4b41f7d Binary files /dev/null and b/share/images/icons/FAST Search for SharePoint.png differ diff --git a/share/images/icons/FWP.ico b/share/images/icons/FWP.ico deleted file mode 100644 index 6b6723672..000000000 Binary files a/share/images/icons/FWP.ico and /dev/null differ diff --git a/share/images/icons/FWP.png b/share/images/icons/FWP.png new file mode 100644 index 000000000..ae188780c Binary files /dev/null and b/share/images/icons/FWP.png differ diff --git a/share/images/icons/Fact Finder.ico b/share/images/icons/Fact Finder.ico deleted file mode 100644 index 75b9b0aff..000000000 Binary files a/share/images/icons/Fact Finder.ico and /dev/null differ diff --git a/share/images/icons/Fact Finder.png b/share/images/icons/Fact Finder.png new file mode 100644 index 000000000..2f70ba63f Binary files /dev/null and b/share/images/icons/Fact Finder.png differ diff --git a/share/images/icons/FlexCMP.ico b/share/images/icons/FlexCMP.ico deleted file mode 100644 index 3b26809f8..000000000 Binary files a/share/images/icons/FlexCMP.ico and /dev/null differ diff --git a/share/images/icons/FlexCMP.png b/share/images/icons/FlexCMP.png new file mode 100644 index 000000000..4a2e41cf2 Binary files /dev/null and b/share/images/icons/FlexCMP.png differ diff --git a/share/images/icons/FluxBB.ico b/share/images/icons/FluxBB.ico deleted file mode 100644 index bfd9ec681..000000000 Binary files a/share/images/icons/FluxBB.ico and /dev/null differ diff --git a/share/images/icons/FluxBB.png b/share/images/icons/FluxBB.png new file mode 100644 index 000000000..ba29de6e8 Binary files /dev/null and b/share/images/icons/FluxBB.png differ diff --git a/share/images/icons/Flyspray.ico b/share/images/icons/Flyspray.ico deleted file mode 100644 index f801f1dbe..000000000 Binary files a/share/images/icons/Flyspray.ico and /dev/null differ diff --git a/share/images/icons/Flyspray.png b/share/images/icons/Flyspray.png new file mode 100644 index 000000000..8e6bbd9bc Binary files /dev/null and b/share/images/icons/Flyspray.png differ diff --git a/share/images/icons/FreeBSD.ico b/share/images/icons/FreeBSD.ico deleted file mode 100644 index 78a95684d..000000000 Binary files a/share/images/icons/FreeBSD.ico and /dev/null differ diff --git a/share/images/icons/FreeBSD.png b/share/images/icons/FreeBSD.png new file mode 100644 index 000000000..74e6faded Binary files /dev/null and b/share/images/icons/FreeBSD.png differ diff --git a/share/images/icons/FrontPage.ico b/share/images/icons/FrontPage.ico deleted file mode 100644 index 7fb209184..000000000 Binary files a/share/images/icons/FrontPage.ico and /dev/null differ diff --git a/share/images/icons/FrontPage.png b/share/images/icons/FrontPage.png new file mode 100644 index 000000000..e4c0126b4 Binary files /dev/null and b/share/images/icons/FrontPage.png differ diff --git a/share/images/icons/Gallery.png b/share/images/icons/Gallery.png new file mode 100644 index 000000000..a904fbc98 Binary files /dev/null and b/share/images/icons/Gallery.png differ diff --git a/share/images/icons/Gambio.ico b/share/images/icons/Gambio.ico deleted file mode 100644 index 6a7fbaf0b..000000000 Binary files a/share/images/icons/Gambio.ico and /dev/null differ diff --git a/share/images/icons/Gambio.png b/share/images/icons/Gambio.png new file mode 100644 index 000000000..076dd5602 Binary files /dev/null and b/share/images/icons/Gambio.png differ diff --git a/share/images/icons/Gauges.ico b/share/images/icons/Gauges.ico deleted file mode 100644 index 11261b690..000000000 Binary files a/share/images/icons/Gauges.ico and /dev/null differ diff --git a/share/images/icons/Gauges.png b/share/images/icons/Gauges.png new file mode 100644 index 000000000..61105d7b9 Binary files /dev/null and b/share/images/icons/Gauges.png differ diff --git a/share/images/icons/Get Satisfaction.ico b/share/images/icons/Get Satisfaction.ico deleted file mode 100644 index 6d62f8a2b..000000000 Binary files a/share/images/icons/Get Satisfaction.ico and /dev/null differ diff --git a/share/images/icons/Get Satisfaction.png b/share/images/icons/Get Satisfaction.png new file mode 100644 index 000000000..cbd01e5c2 Binary files /dev/null and b/share/images/icons/Get Satisfaction.png differ diff --git a/share/images/icons/GoStats.ico b/share/images/icons/GoStats.ico deleted file mode 100644 index 5cd344cfe..000000000 Binary files a/share/images/icons/GoStats.ico and /dev/null differ diff --git a/share/images/icons/GoStats.png b/share/images/icons/GoStats.png new file mode 100644 index 000000000..6e5113300 Binary files /dev/null and b/share/images/icons/GoStats.png differ diff --git a/share/images/icons/Google Analytics.ico b/share/images/icons/Google Analytics.ico deleted file mode 100644 index dcf4ca18f..000000000 Binary files a/share/images/icons/Google Analytics.ico and /dev/null differ diff --git a/share/images/icons/Google Analytics.png b/share/images/icons/Google Analytics.png new file mode 100644 index 000000000..fe09e0071 Binary files /dev/null and b/share/images/icons/Google Analytics.png differ diff --git a/share/images/icons/Google App Engine.ico b/share/images/icons/Google App Engine.ico deleted file mode 100644 index 1a71ea772..000000000 Binary files a/share/images/icons/Google App Engine.ico and /dev/null differ diff --git a/share/images/icons/Google App Engine.png b/share/images/icons/Google App Engine.png new file mode 100644 index 000000000..64271d2da Binary files /dev/null and b/share/images/icons/Google App Engine.png differ diff --git a/share/images/icons/Google Font API.ico b/share/images/icons/Google Font API.ico deleted file mode 100644 index 58be7ac3f..000000000 Binary files a/share/images/icons/Google Font API.ico and /dev/null differ diff --git a/share/images/icons/Google Font API.png b/share/images/icons/Google Font API.png new file mode 100644 index 000000000..6e44944b9 Binary files /dev/null and b/share/images/icons/Google Font API.png differ diff --git a/share/images/icons/Google Friend Connect.ico b/share/images/icons/Google Friend Connect.ico deleted file mode 100644 index ee7c943ab..000000000 Binary files a/share/images/icons/Google Friend Connect.ico and /dev/null differ diff --git a/share/images/icons/Google Friend Connect.png b/share/images/icons/Google Friend Connect.png new file mode 100644 index 000000000..d1ae97757 Binary files /dev/null and b/share/images/icons/Google Friend Connect.png differ diff --git a/share/images/icons/Google Maps.ico b/share/images/icons/Google Maps.ico deleted file mode 100644 index ea5b4c82b..000000000 Binary files a/share/images/icons/Google Maps.ico and /dev/null differ diff --git a/share/images/icons/Google Maps.png b/share/images/icons/Google Maps.png new file mode 100644 index 000000000..44db1638a Binary files /dev/null and b/share/images/icons/Google Maps.png differ diff --git a/share/images/icons/Google Sites.ico b/share/images/icons/Google Sites.ico deleted file mode 100644 index ee7c943ab..000000000 Binary files a/share/images/icons/Google Sites.ico and /dev/null differ diff --git a/share/images/icons/Google Sites.png b/share/images/icons/Google Sites.png new file mode 100644 index 000000000..d1ae97757 Binary files /dev/null and b/share/images/icons/Google Sites.png differ diff --git a/share/images/icons/Graffiti CMS.ico b/share/images/icons/Graffiti CMS.ico deleted file mode 100644 index 035ae4705..000000000 Binary files a/share/images/icons/Graffiti CMS.ico and /dev/null differ diff --git a/share/images/icons/Graffiti CMS.png b/share/images/icons/Graffiti CMS.png new file mode 100644 index 000000000..1ca257587 Binary files /dev/null and b/share/images/icons/Graffiti CMS.png differ diff --git a/share/images/icons/Gravatar.ico b/share/images/icons/Gravatar.ico deleted file mode 100644 index 0eaaa5d57..000000000 Binary files a/share/images/icons/Gravatar.ico and /dev/null differ diff --git a/share/images/icons/Gravatar.png b/share/images/icons/Gravatar.png new file mode 100644 index 000000000..d8600847e Binary files /dev/null and b/share/images/icons/Gravatar.png differ diff --git a/share/images/icons/Gravity Insights.ico b/share/images/icons/Gravity Insights.ico deleted file mode 100755 index 811f2c863..000000000 Binary files a/share/images/icons/Gravity Insights.ico and /dev/null differ diff --git a/share/images/icons/Gravity Insights.png b/share/images/icons/Gravity Insights.png new file mode 100644 index 000000000..1207257d2 Binary files /dev/null and b/share/images/icons/Gravity Insights.png differ diff --git a/share/images/icons/Handlebars.ico b/share/images/icons/Handlebars.ico deleted file mode 100644 index 9fa97b1c7..000000000 Binary files a/share/images/icons/Handlebars.ico and /dev/null differ diff --git a/share/images/icons/Handlebars.png b/share/images/icons/Handlebars.png new file mode 100644 index 000000000..b01309676 Binary files /dev/null and b/share/images/icons/Handlebars.png differ diff --git a/share/images/icons/Hiawatha.ico b/share/images/icons/Hiawatha.ico deleted file mode 100644 index 3243ad0ea..000000000 Binary files a/share/images/icons/Hiawatha.ico and /dev/null differ diff --git a/share/images/icons/Hiawatha.png b/share/images/icons/Hiawatha.png new file mode 100644 index 000000000..a421d1828 Binary files /dev/null and b/share/images/icons/Hiawatha.png differ diff --git a/share/images/icons/Highcharts.ico b/share/images/icons/Highcharts.ico deleted file mode 100644 index 714abab53..000000000 Binary files a/share/images/icons/Highcharts.ico and /dev/null differ diff --git a/share/images/icons/Highcharts.png b/share/images/icons/Highcharts.png new file mode 100644 index 000000000..ce6529f29 Binary files /dev/null and b/share/images/icons/Highcharts.png differ diff --git a/share/images/icons/Hotaru CMS.ico b/share/images/icons/Hotaru CMS.ico deleted file mode 100644 index bf8e59c79..000000000 Binary files a/share/images/icons/Hotaru CMS.ico and /dev/null differ diff --git a/share/images/icons/Hotaru CMS.png b/share/images/icons/Hotaru CMS.png new file mode 100644 index 000000000..b0ccfb23c Binary files /dev/null and b/share/images/icons/Hotaru CMS.png differ diff --git a/share/images/icons/Hybris.ico b/share/images/icons/Hybris.ico deleted file mode 100644 index ac20476a5..000000000 Binary files a/share/images/icons/Hybris.ico and /dev/null differ diff --git a/share/images/icons/Hybris.png b/share/images/icons/Hybris.png new file mode 100644 index 000000000..6df65714c Binary files /dev/null and b/share/images/icons/Hybris.png differ diff --git a/share/images/icons/IIS.ico b/share/images/icons/IIS.ico deleted file mode 100644 index 3045d9ea5..000000000 Binary files a/share/images/icons/IIS.ico and /dev/null differ diff --git a/share/images/icons/IIS.png b/share/images/icons/IIS.png new file mode 100644 index 000000000..217cf42f3 Binary files /dev/null and b/share/images/icons/IIS.png differ diff --git a/share/images/icons/IPB.ico b/share/images/icons/IPB.ico deleted file mode 100644 index 41b763df7..000000000 Binary files a/share/images/icons/IPB.ico and /dev/null differ diff --git a/share/images/icons/IPB.png b/share/images/icons/IPB.png new file mode 100644 index 000000000..c7d09880c Binary files /dev/null and b/share/images/icons/IPB.png differ diff --git a/share/images/icons/Indexhibit.ico b/share/images/icons/Indexhibit.ico deleted file mode 100644 index 36829b9a5..000000000 Binary files a/share/images/icons/Indexhibit.ico and /dev/null differ diff --git a/share/images/icons/Indexhibit.png b/share/images/icons/Indexhibit.png new file mode 100644 index 000000000..59fc5c2ca Binary files /dev/null and b/share/images/icons/Indexhibit.png differ diff --git a/share/images/icons/InstantCMS.ico b/share/images/icons/InstantCMS.ico deleted file mode 100644 index 743716f60..000000000 Binary files a/share/images/icons/InstantCMS.ico and /dev/null differ diff --git a/share/images/icons/InstantCMS.png b/share/images/icons/InstantCMS.png new file mode 100644 index 000000000..f2798fb62 Binary files /dev/null and b/share/images/icons/InstantCMS.png differ diff --git a/share/images/icons/Intershop.ico b/share/images/icons/Intershop.ico deleted file mode 100644 index d4e28964f..000000000 Binary files a/share/images/icons/Intershop.ico and /dev/null differ diff --git a/share/images/icons/Intershop.png b/share/images/icons/Intershop.png new file mode 100644 index 000000000..a50d045f8 Binary files /dev/null and b/share/images/icons/Intershop.png differ diff --git a/share/images/icons/JS Charts.ico b/share/images/icons/JS Charts.ico deleted file mode 100644 index b2b1a76f9..000000000 Binary files a/share/images/icons/JS Charts.ico and /dev/null differ diff --git a/share/images/icons/JS Charts.png b/share/images/icons/JS Charts.png new file mode 100644 index 000000000..b058ede7b Binary files /dev/null and b/share/images/icons/JS Charts.png differ diff --git a/share/images/icons/JTL Shop.ico b/share/images/icons/JTL Shop.ico deleted file mode 100644 index 5b1862924..000000000 Binary files a/share/images/icons/JTL Shop.ico and /dev/null differ diff --git a/share/images/icons/JTL Shop.png b/share/images/icons/JTL Shop.png new file mode 100644 index 000000000..c0e96be0b Binary files /dev/null and b/share/images/icons/JTL Shop.png differ diff --git a/share/images/icons/Jalios.ico b/share/images/icons/Jalios.ico deleted file mode 100644 index 32797ede0..000000000 Binary files a/share/images/icons/Jalios.ico and /dev/null differ diff --git a/share/images/icons/Jalios.png b/share/images/icons/Jalios.png new file mode 100644 index 000000000..bbe8e22b4 Binary files /dev/null and b/share/images/icons/Jalios.png differ diff --git a/share/images/icons/Java.png b/share/images/icons/Java.png new file mode 100644 index 000000000..1cbe4a931 Binary files /dev/null and b/share/images/icons/Java.png differ diff --git a/share/images/icons/Javascript Infovis Toolkit.ico b/share/images/icons/Javascript Infovis Toolkit.ico deleted file mode 100644 index 36829b9a5..000000000 Binary files a/share/images/icons/Javascript Infovis Toolkit.ico and /dev/null differ diff --git a/share/images/icons/Javascript Infovis Toolkit.png b/share/images/icons/Javascript Infovis Toolkit.png new file mode 100644 index 000000000..59fc5c2ca Binary files /dev/null and b/share/images/icons/Javascript Infovis Toolkit.png differ diff --git a/share/images/icons/Jo.ico b/share/images/icons/Jo.ico deleted file mode 100644 index c4252f6a7..000000000 Binary files a/share/images/icons/Jo.ico and /dev/null differ diff --git a/share/images/icons/Jo.png b/share/images/icons/Jo.png new file mode 100644 index 000000000..cec533d8a Binary files /dev/null and b/share/images/icons/Jo.png differ diff --git a/share/images/icons/Joomla.ico b/share/images/icons/Joomla.ico deleted file mode 100644 index b222fdd59..000000000 Binary files a/share/images/icons/Joomla.ico and /dev/null differ diff --git a/share/images/icons/Joomla.png b/share/images/icons/Joomla.png new file mode 100644 index 000000000..5c401924b Binary files /dev/null and b/share/images/icons/Joomla.png differ diff --git a/share/images/icons/K2.ico b/share/images/icons/K2.ico deleted file mode 100644 index e66f432c4..000000000 Binary files a/share/images/icons/K2.ico and /dev/null differ diff --git a/share/images/icons/K2.png b/share/images/icons/K2.png new file mode 100644 index 000000000..fbda62e81 Binary files /dev/null and b/share/images/icons/K2.png differ diff --git a/share/images/icons/Kampyle.ico b/share/images/icons/Kampyle.ico deleted file mode 100644 index ef85272cd..000000000 Binary files a/share/images/icons/Kampyle.ico and /dev/null differ diff --git a/share/images/icons/Kampyle.png b/share/images/icons/Kampyle.png new file mode 100644 index 000000000..d2ec81bf2 Binary files /dev/null and b/share/images/icons/Kampyle.png differ diff --git a/share/images/icons/Kentico CMS.ico b/share/images/icons/Kentico CMS.ico deleted file mode 100644 index bef12d192..000000000 Binary files a/share/images/icons/Kentico CMS.ico and /dev/null differ diff --git a/share/images/icons/Kentico CMS.png b/share/images/icons/Kentico CMS.png new file mode 100644 index 000000000..688071bc9 Binary files /dev/null and b/share/images/icons/Kentico CMS.png differ diff --git a/share/images/icons/Koego.ico b/share/images/icons/Koego.ico deleted file mode 100644 index 6f44a3b74..000000000 Binary files a/share/images/icons/Koego.ico and /dev/null differ diff --git a/share/images/icons/Koego.png b/share/images/icons/Koego.png new file mode 100644 index 000000000..d8a871932 Binary files /dev/null and b/share/images/icons/Koego.png differ diff --git a/share/images/icons/Kohana.ico b/share/images/icons/Kohana.ico deleted file mode 100644 index a2b3cbf7e..000000000 Binary files a/share/images/icons/Kohana.ico and /dev/null differ diff --git a/share/images/icons/Kohana.png b/share/images/icons/Kohana.png new file mode 100644 index 000000000..021803287 Binary files /dev/null and b/share/images/icons/Kohana.png differ diff --git a/share/images/icons/Kolibri CMS.ico b/share/images/icons/Kolibri CMS.ico deleted file mode 100644 index 743716f60..000000000 Binary files a/share/images/icons/Kolibri CMS.ico and /dev/null differ diff --git a/share/images/icons/Kolibri CMS.png b/share/images/icons/Kolibri CMS.png new file mode 100644 index 000000000..f2798fb62 Binary files /dev/null and b/share/images/icons/Kolibri CMS.png differ diff --git a/share/images/icons/Koobi.ico b/share/images/icons/Koobi.ico deleted file mode 100644 index 79df7a221..000000000 Binary files a/share/images/icons/Koobi.ico and /dev/null differ diff --git a/share/images/icons/Koobi.png b/share/images/icons/Koobi.png new file mode 100644 index 000000000..900e40d2f Binary files /dev/null and b/share/images/icons/Koobi.png differ diff --git a/share/images/icons/Liferay.ico b/share/images/icons/Liferay.ico deleted file mode 100644 index 7871fca28..000000000 Binary files a/share/images/icons/Liferay.ico and /dev/null differ diff --git a/share/images/icons/Liferay.png b/share/images/icons/Liferay.png new file mode 100644 index 000000000..556565216 Binary files /dev/null and b/share/images/icons/Liferay.png differ diff --git a/share/images/icons/LiteCommerce.ico b/share/images/icons/LiteCommerce.ico deleted file mode 100644 index f24163e62..000000000 Binary files a/share/images/icons/LiteCommerce.ico and /dev/null differ diff --git a/share/images/icons/LiteCommerce.png b/share/images/icons/LiteCommerce.png new file mode 100644 index 000000000..02510b918 Binary files /dev/null and b/share/images/icons/LiteCommerce.png differ diff --git a/share/images/icons/LiveJournal.ico b/share/images/icons/LiveJournal.ico deleted file mode 100644 index f3d21ec5e..000000000 Binary files a/share/images/icons/LiveJournal.ico and /dev/null differ diff --git a/share/images/icons/LiveJournal.png b/share/images/icons/LiveJournal.png new file mode 100644 index 000000000..93b3f9145 Binary files /dev/null and b/share/images/icons/LiveJournal.png differ diff --git a/share/images/icons/Lotus Domino.ico b/share/images/icons/Lotus Domino.ico deleted file mode 100644 index 8fccac6a3..000000000 Binary files a/share/images/icons/Lotus Domino.ico and /dev/null differ diff --git a/share/images/icons/Lotus Domino.png b/share/images/icons/Lotus Domino.png new file mode 100644 index 000000000..a11780b1f Binary files /dev/null and b/share/images/icons/Lotus Domino.png differ diff --git a/share/images/icons/MODx.ico b/share/images/icons/MODx.ico deleted file mode 100644 index 6f5c3e3ac..000000000 Binary files a/share/images/icons/MODx.ico and /dev/null differ diff --git a/share/images/icons/MODx.png b/share/images/icons/MODx.png new file mode 100644 index 000000000..c6c0abb31 Binary files /dev/null and b/share/images/icons/MODx.png differ diff --git a/share/images/icons/Magento.ico b/share/images/icons/Magento.ico deleted file mode 100644 index 1cb7c7713..000000000 Binary files a/share/images/icons/Magento.ico and /dev/null differ diff --git a/share/images/icons/Magento.png b/share/images/icons/Magento.png new file mode 100644 index 000000000..21974ee20 Binary files /dev/null and b/share/images/icons/Magento.png differ diff --git a/share/images/icons/Mambo.ico b/share/images/icons/Mambo.ico deleted file mode 100644 index cd2370fd9..000000000 Binary files a/share/images/icons/Mambo.ico and /dev/null differ diff --git a/share/images/icons/Mambo.png b/share/images/icons/Mambo.png new file mode 100644 index 000000000..81e5b36be Binary files /dev/null and b/share/images/icons/Mambo.png differ diff --git a/share/images/icons/MantisBT.ico b/share/images/icons/MantisBT.ico deleted file mode 100644 index f52923c0b..000000000 Binary files a/share/images/icons/MantisBT.ico and /dev/null differ diff --git a/share/images/icons/MantisBT.png b/share/images/icons/MantisBT.png new file mode 100644 index 000000000..65bd1de7e Binary files /dev/null and b/share/images/icons/MantisBT.png differ diff --git a/share/images/icons/MaxSite CMS.ico b/share/images/icons/MaxSite CMS.ico deleted file mode 100644 index 30cf21efc..000000000 Binary files a/share/images/icons/MaxSite CMS.ico and /dev/null differ diff --git a/share/images/icons/MaxSite CMS.png b/share/images/icons/MaxSite CMS.png new file mode 100644 index 000000000..b49284ee2 Binary files /dev/null and b/share/images/icons/MaxSite CMS.png differ diff --git a/share/images/icons/MediaWiki.ico b/share/images/icons/MediaWiki.ico deleted file mode 100644 index bd291c779..000000000 Binary files a/share/images/icons/MediaWiki.ico and /dev/null differ diff --git a/share/images/icons/MediaWiki.png b/share/images/icons/MediaWiki.png new file mode 100644 index 000000000..6e2a87bbf Binary files /dev/null and b/share/images/icons/MediaWiki.png differ diff --git a/share/images/icons/Meebo.ico b/share/images/icons/Meebo.ico deleted file mode 100644 index 3ea5fe31d..000000000 Binary files a/share/images/icons/Meebo.ico and /dev/null differ diff --git a/share/images/icons/Meebo.png b/share/images/icons/Meebo.png new file mode 100644 index 000000000..9972a217e Binary files /dev/null and b/share/images/icons/Meebo.png differ diff --git a/share/images/icons/Microsoft ASP.NET.ico b/share/images/icons/Microsoft ASP.NET.ico deleted file mode 100644 index 4e322220b..000000000 Binary files a/share/images/icons/Microsoft ASP.NET.ico and /dev/null differ diff --git a/share/images/icons/Microsoft ASP.NET.png b/share/images/icons/Microsoft ASP.NET.png new file mode 100644 index 000000000..57778d90b Binary files /dev/null and b/share/images/icons/Microsoft ASP.NET.png differ diff --git a/share/images/icons/Microsoft SharePoint.ico b/share/images/icons/Microsoft SharePoint.ico deleted file mode 100644 index 77e829225..000000000 Binary files a/share/images/icons/Microsoft SharePoint.ico and /dev/null differ diff --git a/share/images/icons/Microsoft SharePoint.png b/share/images/icons/Microsoft SharePoint.png new file mode 100644 index 000000000..1c4b41f7d Binary files /dev/null and b/share/images/icons/Microsoft SharePoint.png differ diff --git a/share/images/icons/MiniBB.ico b/share/images/icons/MiniBB.ico deleted file mode 100644 index bf24083af..000000000 Binary files a/share/images/icons/MiniBB.ico and /dev/null differ diff --git a/share/images/icons/MiniBB.png b/share/images/icons/MiniBB.png new file mode 100644 index 000000000..41c5b57db Binary files /dev/null and b/share/images/icons/MiniBB.png differ diff --git a/share/images/icons/Mint.ico b/share/images/icons/Mint.ico deleted file mode 100644 index 0defaf1da..000000000 Binary files a/share/images/icons/Mint.ico and /dev/null differ diff --git a/share/images/icons/Mint.png b/share/images/icons/Mint.png new file mode 100644 index 000000000..f4e165d41 Binary files /dev/null and b/share/images/icons/Mint.png differ diff --git a/share/images/icons/Mixpanel.ico b/share/images/icons/Mixpanel.ico deleted file mode 100644 index 4a25cfeed..000000000 Binary files a/share/images/icons/Mixpanel.ico and /dev/null differ diff --git a/share/images/icons/Mixpanel.png b/share/images/icons/Mixpanel.png new file mode 100644 index 000000000..424e8d97a Binary files /dev/null and b/share/images/icons/Mixpanel.png differ diff --git a/share/images/icons/MochiKit.ico b/share/images/icons/MochiKit.ico deleted file mode 100644 index 65f483410..000000000 Binary files a/share/images/icons/MochiKit.ico and /dev/null differ diff --git a/share/images/icons/MochiKit.png b/share/images/icons/MochiKit.png new file mode 100644 index 000000000..69dc8dd91 Binary files /dev/null and b/share/images/icons/MochiKit.png differ diff --git a/share/images/icons/Modernizr.ico b/share/images/icons/Modernizr.ico deleted file mode 100644 index c7ba618f7..000000000 Binary files a/share/images/icons/Modernizr.ico and /dev/null differ diff --git a/share/images/icons/openEngine.ico b/share/images/icons/Modernizr.png similarity index 52% rename from share/images/icons/openEngine.ico rename to share/images/icons/Modernizr.png index daf100776..306fb3aa6 100644 Binary files a/share/images/icons/openEngine.ico and b/share/images/icons/Modernizr.png differ diff --git a/share/images/icons/Mojolicious.png b/share/images/icons/Mojolicious.png new file mode 100644 index 000000000..5ac7c6f19 Binary files /dev/null and b/share/images/icons/Mojolicious.png differ diff --git a/share/images/icons/Mollom.ico b/share/images/icons/Mollom.ico deleted file mode 100644 index 2bd502831..000000000 Binary files a/share/images/icons/Mollom.ico and /dev/null differ diff --git a/share/images/icons/Mollom.png b/share/images/icons/Mollom.png new file mode 100644 index 000000000..5bea307c2 Binary files /dev/null and b/share/images/icons/Mollom.png differ diff --git a/share/images/icons/Mondo Media.ico b/share/images/icons/Mondo Media.ico deleted file mode 100644 index 3cfde427b..000000000 Binary files a/share/images/icons/Mondo Media.ico and /dev/null differ diff --git a/share/images/icons/Mondo Media.png b/share/images/icons/Mondo Media.png new file mode 100644 index 000000000..dbac7a7b1 Binary files /dev/null and b/share/images/icons/Mondo Media.png differ diff --git a/share/images/icons/Mongrel.ico b/share/images/icons/Mongrel.ico deleted file mode 100644 index c48862b55..000000000 Binary files a/share/images/icons/Mongrel.ico and /dev/null differ diff --git a/share/images/icons/Mongrel.png b/share/images/icons/Mongrel.png new file mode 100644 index 000000000..276f5d333 Binary files /dev/null and b/share/images/icons/Mongrel.png differ diff --git a/share/images/icons/MooTools.ico b/share/images/icons/MooTools.ico deleted file mode 100644 index 0cf272aaa..000000000 Binary files a/share/images/icons/MooTools.ico and /dev/null differ diff --git a/share/images/icons/MooTools.png b/share/images/icons/MooTools.png new file mode 100644 index 000000000..1938ffde6 Binary files /dev/null and b/share/images/icons/MooTools.png differ diff --git a/share/images/icons/Moodle.ico b/share/images/icons/Moodle.ico deleted file mode 100644 index 5a7a36a68..000000000 Binary files a/share/images/icons/Moodle.ico and /dev/null differ diff --git a/share/images/icons/Moodle.png b/share/images/icons/Moodle.png new file mode 100644 index 000000000..618c08f2f Binary files /dev/null and b/share/images/icons/Moodle.png differ diff --git a/share/images/icons/Moogo.ico b/share/images/icons/Moogo.ico deleted file mode 100644 index 7b5d90b91..000000000 Binary files a/share/images/icons/Moogo.ico and /dev/null differ diff --git a/share/images/icons/Moogo.png b/share/images/icons/Moogo.png new file mode 100644 index 000000000..cbd0c8564 Binary files /dev/null and b/share/images/icons/Moogo.png differ diff --git a/share/images/icons/Movable Type.ico b/share/images/icons/Movable Type.ico deleted file mode 100644 index c68ee8eff..000000000 Binary files a/share/images/icons/Movable Type.ico and /dev/null differ diff --git a/share/images/icons/Movable Type.png b/share/images/icons/Movable Type.png new file mode 100644 index 000000000..4ea913759 Binary files /dev/null and b/share/images/icons/Movable Type.png differ diff --git a/share/images/icons/Mustache.ico b/share/images/icons/Mustache.ico deleted file mode 100644 index a69e88460..000000000 Binary files a/share/images/icons/Mustache.ico and /dev/null differ diff --git a/share/images/icons/Mustache.png b/share/images/icons/Mustache.png new file mode 100644 index 000000000..bc4cb4d9a Binary files /dev/null and b/share/images/icons/Mustache.png differ diff --git a/share/images/icons/MyBB.ico b/share/images/icons/MyBB.ico deleted file mode 100644 index f2789e9ca..000000000 Binary files a/share/images/icons/MyBB.ico and /dev/null differ diff --git a/share/images/icons/MyBB.png b/share/images/icons/MyBB.png new file mode 100644 index 000000000..04f4d68c7 Binary files /dev/null and b/share/images/icons/MyBB.png differ diff --git a/share/images/icons/MyBlogLog.ico b/share/images/icons/MyBlogLog.ico deleted file mode 100644 index 16cd449b1..000000000 Binary files a/share/images/icons/MyBlogLog.ico and /dev/null differ diff --git a/share/images/icons/MyBlogLog.png b/share/images/icons/MyBlogLog.png new file mode 100644 index 000000000..adb160327 Binary files /dev/null and b/share/images/icons/MyBlogLog.png differ diff --git a/share/images/icons/Mynetcap.ico b/share/images/icons/Mynetcap.ico deleted file mode 100644 index c153eff66..000000000 Binary files a/share/images/icons/Mynetcap.ico and /dev/null differ diff --git a/share/images/icons/Mynetcap.png b/share/images/icons/Mynetcap.png new file mode 100644 index 000000000..9fecb13ec Binary files /dev/null and b/share/images/icons/Mynetcap.png differ diff --git a/share/images/icons/NOIX.ico b/share/images/icons/NOIX.ico deleted file mode 100644 index 2029e964e..000000000 Binary files a/share/images/icons/NOIX.ico and /dev/null differ diff --git a/share/images/icons/NOIX.png b/share/images/icons/NOIX.png new file mode 100644 index 000000000..7e54f9dab Binary files /dev/null and b/share/images/icons/NOIX.png differ diff --git a/share/images/icons/Nedstat.ico b/share/images/icons/Nedstat.ico deleted file mode 100644 index 3b7ca209d..000000000 Binary files a/share/images/icons/Nedstat.ico and /dev/null differ diff --git a/share/images/icons/Nedstat.png b/share/images/icons/Nedstat.png new file mode 100644 index 000000000..c8032cb3a Binary files /dev/null and b/share/images/icons/Nedstat.png differ diff --git a/share/images/icons/Netmonitor.ico b/share/images/icons/Netmonitor.ico deleted file mode 100644 index a7f918920..000000000 Binary files a/share/images/icons/Netmonitor.ico and /dev/null differ diff --git a/share/images/icons/Netmonitor.png b/share/images/icons/Netmonitor.png new file mode 100644 index 000000000..8066d4107 Binary files /dev/null and b/share/images/icons/Netmonitor.png differ diff --git a/share/images/icons/Nginx.ico b/share/images/icons/Nginx.ico deleted file mode 100644 index ab7c9ff35..000000000 Binary files a/share/images/icons/Nginx.ico and /dev/null differ diff --git a/share/images/icons/Plentymarkets.ico b/share/images/icons/Nginx.png similarity index 52% rename from share/images/icons/Plentymarkets.ico rename to share/images/icons/Nginx.png index 9e893d15f..b453fba27 100644 Binary files a/share/images/icons/Plentymarkets.ico and b/share/images/icons/Nginx.png differ diff --git a/share/images/icons/OXID eShop.ico b/share/images/icons/OXID eShop.ico deleted file mode 100644 index 067b03e60..000000000 Binary files a/share/images/icons/OXID eShop.ico and /dev/null differ diff --git a/share/images/icons/OXID eShop.png b/share/images/icons/OXID eShop.png new file mode 100644 index 000000000..ff54a5d29 Binary files /dev/null and b/share/images/icons/OXID eShop.png differ diff --git a/share/images/icons/OneStat.ico b/share/images/icons/OneStat.ico deleted file mode 100644 index 019a5947f..000000000 Binary files a/share/images/icons/OneStat.ico and /dev/null differ diff --git a/share/images/icons/OneStat.png b/share/images/icons/OneStat.png new file mode 100644 index 000000000..9b19e3302 Binary files /dev/null and b/share/images/icons/OneStat.png differ diff --git a/share/images/icons/Open Web Analytics.png b/share/images/icons/Open Web Analytics.png new file mode 100644 index 000000000..e27555109 Binary files /dev/null and b/share/images/icons/Open Web Analytics.png differ diff --git a/share/images/icons/OpenCart.ico b/share/images/icons/OpenCart.ico deleted file mode 100644 index 20f6209e3..000000000 Binary files a/share/images/icons/OpenCart.ico and /dev/null differ diff --git a/share/images/icons/OpenCart.png b/share/images/icons/OpenCart.png new file mode 100644 index 000000000..a5a8dbba9 Binary files /dev/null and b/share/images/icons/OpenCart.png differ diff --git a/share/images/icons/OpenGSE.ico b/share/images/icons/OpenGSE.ico deleted file mode 100644 index ee7c943ab..000000000 Binary files a/share/images/icons/OpenGSE.ico and /dev/null differ diff --git a/share/images/icons/OpenGSE.png b/share/images/icons/OpenGSE.png new file mode 100644 index 000000000..d1ae97757 Binary files /dev/null and b/share/images/icons/OpenGSE.png differ diff --git a/share/images/icons/OpenLayers.ico b/share/images/icons/OpenLayers.ico deleted file mode 100644 index 975e1cb0d..000000000 Binary files a/share/images/icons/OpenLayers.ico and /dev/null differ diff --git a/share/images/icons/OpenLayers.png b/share/images/icons/OpenLayers.png new file mode 100644 index 000000000..7d879bd3a Binary files /dev/null and b/share/images/icons/OpenLayers.png differ diff --git a/share/images/icons/OpenNemas.ico b/share/images/icons/OpenNemas.ico deleted file mode 100644 index 5e92e15e2..000000000 Binary files a/share/images/icons/OpenNemas.ico and /dev/null differ diff --git a/share/images/icons/OpenNemas.png b/share/images/icons/OpenNemas.png new file mode 100644 index 000000000..b375418a2 Binary files /dev/null and b/share/images/icons/OpenNemas.png differ diff --git a/share/images/icons/Optimizely.ico b/share/images/icons/Optimizely.ico deleted file mode 100644 index 7991a5d71..000000000 Binary files a/share/images/icons/Optimizely.ico and /dev/null differ diff --git a/share/images/icons/Optimizely.png b/share/images/icons/Optimizely.png new file mode 100644 index 000000000..021603824 Binary files /dev/null and b/share/images/icons/Optimizely.png differ diff --git a/share/images/icons/Oracle Recommendations On Demand.png b/share/images/icons/Oracle Recommendations On Demand.png new file mode 100644 index 000000000..b8c8762b9 Binary files /dev/null and b/share/images/icons/Oracle Recommendations On Demand.png differ diff --git a/share/images/icons/PANSITE.ico b/share/images/icons/PANSITE.ico deleted file mode 100644 index f242ff890..000000000 Binary files a/share/images/icons/PANSITE.ico and /dev/null differ diff --git a/share/images/icons/PANSITE.png b/share/images/icons/PANSITE.png new file mode 100644 index 000000000..9a976c7d3 Binary files /dev/null and b/share/images/icons/PANSITE.png differ diff --git a/share/images/icons/PHP-Fusion.ico b/share/images/icons/PHP-Fusion.ico deleted file mode 100644 index 6e4069d39..000000000 Binary files a/share/images/icons/PHP-Fusion.ico and /dev/null differ diff --git a/share/images/icons/PHP-Fusion.png b/share/images/icons/PHP-Fusion.png new file mode 100644 index 000000000..5e1b1734c Binary files /dev/null and b/share/images/icons/PHP-Fusion.png differ diff --git a/share/images/icons/PHP-Nuke.ico b/share/images/icons/PHP-Nuke.ico deleted file mode 100644 index 206b7d56a..000000000 Binary files a/share/images/icons/PHP-Nuke.ico and /dev/null differ diff --git a/share/images/icons/PHP-Nuke.png b/share/images/icons/PHP-Nuke.png new file mode 100644 index 000000000..780ca5f1c Binary files /dev/null and b/share/images/icons/PHP-Nuke.png differ diff --git a/share/images/icons/PHP.ico b/share/images/icons/PHP.ico deleted file mode 100644 index f095b7f75..000000000 Binary files a/share/images/icons/PHP.ico and /dev/null differ diff --git a/share/images/icons/PHP.png b/share/images/icons/PHP.png new file mode 100644 index 000000000..4c3eef7de Binary files /dev/null and b/share/images/icons/PHP.png differ diff --git a/share/images/icons/Parse.ly.ico b/share/images/icons/Parse.ly.ico deleted file mode 100644 index 236f6a119..000000000 Binary files a/share/images/icons/Parse.ly.ico and /dev/null differ diff --git a/share/images/icons/Parse.ly.png b/share/images/icons/Parse.ly.png new file mode 100644 index 000000000..d74ee0f51 Binary files /dev/null and b/share/images/icons/Parse.ly.png differ diff --git a/share/images/icons/Perl.png b/share/images/icons/Perl.png new file mode 100644 index 000000000..fc4a0ab2c Binary files /dev/null and b/share/images/icons/Perl.png differ diff --git a/share/images/icons/Phpcms.png b/share/images/icons/Phpcms.png new file mode 100644 index 000000000..ff6577eb4 Binary files /dev/null and b/share/images/icons/Phpcms.png differ diff --git a/share/images/icons/Piwik.ico b/share/images/icons/Piwik.ico deleted file mode 100644 index cd46034b0..000000000 Binary files a/share/images/icons/Piwik.ico and /dev/null differ diff --git a/share/images/icons/Piwik.png b/share/images/icons/Piwik.png new file mode 100644 index 000000000..444b8ac62 Binary files /dev/null and b/share/images/icons/Piwik.png differ diff --git a/share/images/icons/Plentymarkets.png b/share/images/icons/Plentymarkets.png new file mode 100644 index 000000000..0e6f67418 Binary files /dev/null and b/share/images/icons/Plentymarkets.png differ diff --git a/share/images/icons/Plesk.ico b/share/images/icons/Plesk.ico deleted file mode 100644 index ccb41c556..000000000 Binary files a/share/images/icons/Plesk.ico and /dev/null differ diff --git a/share/images/icons/Plesk.png b/share/images/icons/Plesk.png new file mode 100644 index 000000000..0585385ce Binary files /dev/null and b/share/images/icons/Plesk.png differ diff --git a/share/images/icons/Plone.ico b/share/images/icons/Plone.ico deleted file mode 100644 index ae7bb0cd8..000000000 Binary files a/share/images/icons/Plone.ico and /dev/null differ diff --git a/share/images/icons/Plone.png b/share/images/icons/Plone.png new file mode 100644 index 000000000..c6280919d Binary files /dev/null and b/share/images/icons/Plone.png differ diff --git a/share/images/icons/Plura.ico b/share/images/icons/Plura.ico deleted file mode 100644 index fb67e66e7..000000000 Binary files a/share/images/icons/Plura.ico and /dev/null differ diff --git a/share/images/icons/Plura.png b/share/images/icons/Plura.png new file mode 100644 index 000000000..c4dd1ef5c Binary files /dev/null and b/share/images/icons/Plura.png differ diff --git a/share/images/icons/Powergap.ico b/share/images/icons/Powergap.ico deleted file mode 100644 index 880352fa1..000000000 Binary files a/share/images/icons/Powergap.ico and /dev/null differ diff --git a/share/images/icons/Powergap.png b/share/images/icons/Powergap.png new file mode 100644 index 000000000..3d65d61bf Binary files /dev/null and b/share/images/icons/Powergap.png differ diff --git a/share/images/icons/Prestashop.ico b/share/images/icons/Prestashop.ico deleted file mode 100644 index 883937325..000000000 Binary files a/share/images/icons/Prestashop.ico and /dev/null differ diff --git a/share/images/icons/Prestashop.png b/share/images/icons/Prestashop.png new file mode 100644 index 000000000..8156fa457 Binary files /dev/null and b/share/images/icons/Prestashop.png differ diff --git a/share/images/icons/Prototype.ico b/share/images/icons/Prototype.ico deleted file mode 100644 index acf8eae36..000000000 Binary files a/share/images/icons/Prototype.ico and /dev/null differ diff --git a/share/images/icons/Prototype.png b/share/images/icons/Prototype.png new file mode 100644 index 000000000..d84c47b3c Binary files /dev/null and b/share/images/icons/Prototype.png differ diff --git a/share/images/icons/Protovis.ico b/share/images/icons/Protovis.ico deleted file mode 100644 index 36829b9a5..000000000 Binary files a/share/images/icons/Protovis.ico and /dev/null differ diff --git a/share/images/icons/Protovis.png b/share/images/icons/Protovis.png new file mode 100644 index 000000000..59fc5c2ca Binary files /dev/null and b/share/images/icons/Protovis.png differ diff --git a/share/images/icons/Python.ico b/share/images/icons/Python.ico deleted file mode 100644 index c9efc5844..000000000 Binary files a/share/images/icons/Python.ico and /dev/null differ diff --git a/share/images/icons/Python.png b/share/images/icons/Python.png new file mode 100644 index 000000000..db576769c Binary files /dev/null and b/share/images/icons/Python.png differ diff --git a/share/images/icons/Quantcast.ico b/share/images/icons/Quantcast.ico deleted file mode 100644 index 0d9e9b7a7..000000000 Binary files a/share/images/icons/Quantcast.ico and /dev/null differ diff --git a/share/images/icons/Quantcast.png b/share/images/icons/Quantcast.png new file mode 100644 index 000000000..fe2009966 Binary files /dev/null and b/share/images/icons/Quantcast.png differ diff --git a/share/images/icons/Quick.Cart.ico b/share/images/icons/Quick.Cart.ico deleted file mode 100644 index e9417d0b9..000000000 Binary files a/share/images/icons/Quick.Cart.ico and /dev/null differ diff --git a/share/images/icons/Quick.Cart.png b/share/images/icons/Quick.Cart.png new file mode 100644 index 000000000..299014eb3 Binary files /dev/null and b/share/images/icons/Quick.Cart.png differ diff --git a/share/images/icons/Raphael.ico b/share/images/icons/Raphael.ico deleted file mode 100644 index e50791127..000000000 Binary files a/share/images/icons/Raphael.ico and /dev/null differ diff --git a/share/images/icons/Raphael.png b/share/images/icons/Raphael.png new file mode 100644 index 000000000..f5690e60d Binary files /dev/null and b/share/images/icons/Raphael.png differ diff --git a/share/images/icons/ReallyCMS.png b/share/images/icons/ReallyCMS.png new file mode 100644 index 000000000..0a58ed4d7 Binary files /dev/null and b/share/images/icons/ReallyCMS.png differ diff --git a/share/images/icons/Red Hat.ico b/share/images/icons/Red Hat.ico deleted file mode 100644 index cbb612493..000000000 Binary files a/share/images/icons/Red Hat.ico and /dev/null differ diff --git a/share/images/icons/Red Hat.png b/share/images/icons/Red Hat.png new file mode 100644 index 000000000..e33cb088c Binary files /dev/null and b/share/images/icons/Red Hat.png differ diff --git a/share/images/icons/Reddit.ico b/share/images/icons/Reddit.ico deleted file mode 100644 index 17e9ae476..000000000 Binary files a/share/images/icons/Reddit.ico and /dev/null differ diff --git a/share/images/icons/Reddit.png b/share/images/icons/Reddit.png new file mode 100644 index 000000000..8ba0f6771 Binary files /dev/null and b/share/images/icons/Reddit.png differ diff --git a/share/images/icons/Redmine.ico b/share/images/icons/Redmine.ico deleted file mode 100644 index ec4fd698c..000000000 Binary files a/share/images/icons/Redmine.ico and /dev/null differ diff --git a/share/images/icons/Redmine.png b/share/images/icons/Redmine.png new file mode 100644 index 000000000..bd7b370de Binary files /dev/null and b/share/images/icons/Redmine.png differ diff --git a/share/images/icons/Reinvigorate.ico b/share/images/icons/Reinvigorate.ico deleted file mode 100644 index 65d204982..000000000 Binary files a/share/images/icons/Reinvigorate.ico and /dev/null differ diff --git a/share/images/icons/Reinvigorate.png b/share/images/icons/Reinvigorate.png new file mode 100644 index 000000000..0542cc139 Binary files /dev/null and b/share/images/icons/Reinvigorate.png differ diff --git a/share/images/icons/RequireJS.ico b/share/images/icons/RequireJS.ico deleted file mode 100644 index 760b81b96..000000000 Binary files a/share/images/icons/RequireJS.ico and /dev/null differ diff --git a/share/images/icons/RequireJS.png b/share/images/icons/RequireJS.png new file mode 100644 index 000000000..706168e9b Binary files /dev/null and b/share/images/icons/RequireJS.png differ diff --git a/share/images/icons/Ruby.ico b/share/images/icons/Ruby.ico deleted file mode 100644 index 7f8cb129e..000000000 Binary files a/share/images/icons/Ruby.ico and /dev/null differ diff --git a/share/images/icons/Ruby.png b/share/images/icons/Ruby.png new file mode 100644 index 000000000..ee1168c51 Binary files /dev/null and b/share/images/icons/Ruby.png differ diff --git a/share/images/icons/S.Builder.ico b/share/images/icons/S.Builder.ico deleted file mode 100644 index de7b45839..000000000 Binary files a/share/images/icons/S.Builder.ico and /dev/null differ diff --git a/share/images/icons/S.Builder.png b/share/images/icons/S.Builder.png new file mode 100644 index 000000000..5d37faac0 Binary files /dev/null and b/share/images/icons/S.Builder.png differ diff --git a/share/images/icons/SMF.ico b/share/images/icons/SMF.ico deleted file mode 100644 index d3abb15c9..000000000 Binary files a/share/images/icons/SMF.ico and /dev/null differ diff --git a/share/images/icons/SMF.png b/share/images/icons/SMF.png new file mode 100644 index 000000000..635f1f0f1 Binary files /dev/null and b/share/images/icons/SMF.png differ diff --git a/share/images/icons/SOBI 2.ico b/share/images/icons/SOBI 2.ico deleted file mode 100644 index 315c05330..000000000 Binary files a/share/images/icons/SOBI 2.ico and /dev/null differ diff --git a/share/images/icons/SOBI 2.png b/share/images/icons/SOBI 2.png new file mode 100644 index 000000000..8f63ed05b Binary files /dev/null and b/share/images/icons/SOBI 2.png differ diff --git a/share/images/icons/SPIP.ico b/share/images/icons/SPIP.ico deleted file mode 100644 index 720817647..000000000 Binary files a/share/images/icons/SPIP.ico and /dev/null differ diff --git a/share/images/icons/SPIP.png b/share/images/icons/SPIP.png new file mode 100644 index 000000000..f7110f9f6 Binary files /dev/null and b/share/images/icons/SPIP.png differ diff --git a/share/images/icons/SQL Buddy.ico b/share/images/icons/SQL Buddy.ico deleted file mode 100644 index 9988e489f..000000000 Binary files a/share/images/icons/SQL Buddy.ico and /dev/null differ diff --git a/share/images/icons/SQL Buddy.png b/share/images/icons/SQL Buddy.png new file mode 100644 index 000000000..3bdf7d294 Binary files /dev/null and b/share/images/icons/SQL Buddy.png differ diff --git a/share/images/icons/SWFObject.ico b/share/images/icons/SWFObject.ico deleted file mode 100644 index 805c893dd..000000000 Binary files a/share/images/icons/SWFObject.ico and /dev/null differ diff --git a/share/images/icons/SWFObject.png b/share/images/icons/SWFObject.png new file mode 100644 index 000000000..f24a5251d Binary files /dev/null and b/share/images/icons/SWFObject.png differ diff --git a/share/images/icons/Sencha Touch.ico b/share/images/icons/Sencha Touch.ico deleted file mode 100644 index ea8c545bb..000000000 Binary files a/share/images/icons/Sencha Touch.ico and /dev/null differ diff --git a/share/images/icons/Sencha Touch.png b/share/images/icons/Sencha Touch.png new file mode 100644 index 000000000..9344fcf7b Binary files /dev/null and b/share/images/icons/Sencha Touch.png differ diff --git a/share/images/icons/Seoshop.ico b/share/images/icons/Seoshop.ico deleted file mode 100644 index 7916f77e4..000000000 Binary files a/share/images/icons/Seoshop.ico and /dev/null differ diff --git a/share/images/icons/Seoshop.png b/share/images/icons/Seoshop.png new file mode 100644 index 000000000..ea8452658 Binary files /dev/null and b/share/images/icons/Seoshop.png differ diff --git a/share/images/icons/ShareThis.ico b/share/images/icons/ShareThis.ico deleted file mode 100644 index c1febf999..000000000 Binary files a/share/images/icons/ShareThis.ico and /dev/null differ diff --git a/share/images/icons/ShareThis.png b/share/images/icons/ShareThis.png new file mode 100644 index 000000000..a247fe9cd Binary files /dev/null and b/share/images/icons/ShareThis.png differ diff --git a/share/images/icons/Shopify.ico b/share/images/icons/Shopify.ico deleted file mode 100644 index a0dca1c34..000000000 Binary files a/share/images/icons/Shopify.ico and /dev/null differ diff --git a/share/images/icons/Shopify.png b/share/images/icons/Shopify.png new file mode 100644 index 000000000..ca6d2924b Binary files /dev/null and b/share/images/icons/Shopify.png differ diff --git a/share/images/icons/Site Meter.ico b/share/images/icons/Site Meter.ico deleted file mode 100644 index f18e87ea3..000000000 Binary files a/share/images/icons/Site Meter.ico and /dev/null differ diff --git a/share/images/icons/Site Meter.png b/share/images/icons/Site Meter.png new file mode 100644 index 000000000..aca734e3d Binary files /dev/null and b/share/images/icons/Site Meter.png differ diff --git a/share/images/icons/SiteCatalyst.ico b/share/images/icons/SiteCatalyst.ico deleted file mode 100644 index cb5beccaa..000000000 Binary files a/share/images/icons/SiteCatalyst.ico and /dev/null differ diff --git a/share/images/icons/SiteCatalyst.png b/share/images/icons/SiteCatalyst.png new file mode 100644 index 000000000..07f40b565 Binary files /dev/null and b/share/images/icons/SiteCatalyst.png differ diff --git a/share/images/icons/SiteDNK.ico b/share/images/icons/SiteDNK.ico deleted file mode 100644 index 743716f60..000000000 Binary files a/share/images/icons/SiteDNK.ico and /dev/null differ diff --git a/share/images/icons/SiteDNK.png b/share/images/icons/SiteDNK.png new file mode 100644 index 000000000..f2798fb62 Binary files /dev/null and b/share/images/icons/SiteDNK.png differ diff --git a/share/images/icons/SiteEdit.ico b/share/images/icons/SiteEdit.ico deleted file mode 100644 index 458f7e265..000000000 Binary files a/share/images/icons/SiteEdit.ico and /dev/null differ diff --git a/share/images/icons/SiteEdit.png b/share/images/icons/SiteEdit.png new file mode 100644 index 000000000..a3798fa23 Binary files /dev/null and b/share/images/icons/SiteEdit.png differ diff --git a/share/images/icons/Smartstore.ico b/share/images/icons/Smartstore.ico deleted file mode 100644 index 9df2f10d2..000000000 Binary files a/share/images/icons/Smartstore.ico and /dev/null differ diff --git a/share/images/icons/Smartstore.png b/share/images/icons/Smartstore.png new file mode 100644 index 000000000..994377bb3 Binary files /dev/null and b/share/images/icons/Smartstore.png differ diff --git a/share/images/icons/Snoobi.ico b/share/images/icons/Snoobi.ico deleted file mode 100644 index 36dcb0e7e..000000000 Binary files a/share/images/icons/Snoobi.ico and /dev/null differ diff --git a/share/images/icons/Snoobi.png b/share/images/icons/Snoobi.png new file mode 100644 index 000000000..ba980597a Binary files /dev/null and b/share/images/icons/Snoobi.png differ diff --git a/share/images/icons/Solr.ico b/share/images/icons/Solr.ico deleted file mode 100644 index eded10aac..000000000 Binary files a/share/images/icons/Solr.ico and /dev/null differ diff --git a/share/images/icons/Solr.png b/share/images/icons/Solr.png new file mode 100644 index 000000000..117e22a22 Binary files /dev/null and b/share/images/icons/Solr.png differ diff --git a/share/images/icons/SoundManager.ico b/share/images/icons/SoundManager.ico deleted file mode 100644 index 2c8677344..000000000 Binary files a/share/images/icons/SoundManager.ico and /dev/null differ diff --git a/share/images/icons/SoundManager.png b/share/images/icons/SoundManager.png new file mode 100644 index 000000000..257b3ffa4 Binary files /dev/null and b/share/images/icons/SoundManager.png differ diff --git a/share/images/icons/Squarespace.ico b/share/images/icons/Squarespace.ico deleted file mode 100644 index 647a380df..000000000 Binary files a/share/images/icons/Squarespace.ico and /dev/null differ diff --git a/share/images/icons/Squarespace.png b/share/images/icons/Squarespace.png new file mode 100644 index 000000000..255568418 Binary files /dev/null and b/share/images/icons/Squarespace.png differ diff --git a/share/images/icons/Squiz Matrix.ico b/share/images/icons/Squiz Matrix.ico deleted file mode 100644 index 3cf8760c0..000000000 Binary files a/share/images/icons/Squiz Matrix.ico and /dev/null differ diff --git a/share/images/icons/Squiz Matrix.png b/share/images/icons/Squiz Matrix.png new file mode 100644 index 000000000..0dd63468e Binary files /dev/null and b/share/images/icons/Squiz Matrix.png differ diff --git a/share/images/icons/StatCounter.ico b/share/images/icons/StatCounter.ico deleted file mode 100644 index d37ad87ec..000000000 Binary files a/share/images/icons/StatCounter.ico and /dev/null differ diff --git a/share/images/icons/StatCounter.png b/share/images/icons/StatCounter.png new file mode 100644 index 000000000..9bd4aa981 Binary files /dev/null and b/share/images/icons/StatCounter.png differ diff --git a/share/images/icons/Store Systems.ico b/share/images/icons/Store Systems.ico deleted file mode 100644 index 948cb4a23..000000000 Binary files a/share/images/icons/Store Systems.ico and /dev/null differ diff --git a/share/images/icons/Store Systems.png b/share/images/icons/Store Systems.png new file mode 100644 index 000000000..752eed543 Binary files /dev/null and b/share/images/icons/Store Systems.png differ diff --git a/share/images/icons/Swiftlet.ico b/share/images/icons/Swiftlet.ico deleted file mode 100644 index 9398cc5ff..000000000 Binary files a/share/images/icons/Swiftlet.ico and /dev/null differ diff --git a/share/images/icons/Swiftlet.png b/share/images/icons/Swiftlet.png new file mode 100644 index 000000000..9c85afc4c Binary files /dev/null and b/share/images/icons/Swiftlet.png differ diff --git a/share/images/icons/TYPO3.ico b/share/images/icons/TYPO3.ico deleted file mode 100644 index 04fa8a08e..000000000 Binary files a/share/images/icons/TYPO3.ico and /dev/null differ diff --git a/share/images/icons/TYPO3.png b/share/images/icons/TYPO3.png new file mode 100644 index 000000000..f922f5c37 Binary files /dev/null and b/share/images/icons/TYPO3.png differ diff --git a/share/images/icons/TYPOlight.ico b/share/images/icons/TYPOlight.ico deleted file mode 100644 index ff859cfc9..000000000 Binary files a/share/images/icons/TYPOlight.ico and /dev/null differ diff --git a/share/images/icons/TYPOlight.png b/share/images/icons/TYPOlight.png new file mode 100644 index 000000000..8357c41f0 Binary files /dev/null and b/share/images/icons/TYPOlight.png differ diff --git a/share/images/icons/Textpattern CMS.ico b/share/images/icons/Textpattern CMS.ico deleted file mode 100644 index 3cb822273..000000000 Binary files a/share/images/icons/Textpattern CMS.ico and /dev/null differ diff --git a/share/images/icons/Textpattern CMS.png b/share/images/icons/Textpattern CMS.png new file mode 100644 index 000000000..76407f529 Binary files /dev/null and b/share/images/icons/Textpattern CMS.png differ diff --git a/share/images/icons/Tiki Wiki CMS Groupware.png b/share/images/icons/Tiki Wiki CMS Groupware.png new file mode 100644 index 000000000..5f4bca63d Binary files /dev/null and b/share/images/icons/Tiki Wiki CMS Groupware.png differ diff --git a/share/images/icons/Timeline.ico b/share/images/icons/Timeline.ico deleted file mode 100644 index 5d2a5bcff..000000000 Binary files a/share/images/icons/Timeline.ico and /dev/null differ diff --git a/share/images/icons/Timeline.png b/share/images/icons/Timeline.png new file mode 100644 index 000000000..fa2b6fae6 Binary files /dev/null and b/share/images/icons/Timeline.png differ diff --git a/share/images/icons/Timeplot.ico b/share/images/icons/Timeplot.ico deleted file mode 100644 index 36829b9a5..000000000 Binary files a/share/images/icons/Timeplot.ico and /dev/null differ diff --git a/share/images/icons/Timeplot.png b/share/images/icons/Timeplot.png new file mode 100644 index 000000000..59fc5c2ca Binary files /dev/null and b/share/images/icons/Timeplot.png differ diff --git a/share/images/icons/TinyMCE.ico b/share/images/icons/TinyMCE.ico deleted file mode 100644 index 2ed9d2f6c..000000000 Binary files a/share/images/icons/TinyMCE.ico and /dev/null differ diff --git a/share/images/icons/TinyMCE.png b/share/images/icons/TinyMCE.png new file mode 100644 index 000000000..4e53184a8 Binary files /dev/null and b/share/images/icons/TinyMCE.png differ diff --git a/share/images/icons/TomatoCart.ico b/share/images/icons/TomatoCart.ico deleted file mode 100644 index 3ac300f7c..000000000 Binary files a/share/images/icons/TomatoCart.ico and /dev/null differ diff --git a/share/images/icons/TomatoCart.png b/share/images/icons/TomatoCart.png new file mode 100644 index 000000000..994ebf9d1 Binary files /dev/null and b/share/images/icons/TomatoCart.png differ diff --git a/share/images/icons/Trac.ico b/share/images/icons/Trac.ico deleted file mode 100644 index 71970c451..000000000 Binary files a/share/images/icons/Trac.ico and /dev/null differ diff --git a/share/images/icons/Trac.png b/share/images/icons/Trac.png new file mode 100644 index 000000000..31cf93eeb Binary files /dev/null and b/share/images/icons/Trac.png differ diff --git a/share/images/icons/Tumblr.ico b/share/images/icons/Tumblr.ico deleted file mode 100644 index bafb8f941..000000000 Binary files a/share/images/icons/Tumblr.ico and /dev/null differ diff --git a/share/images/icons/Tumblr.png b/share/images/icons/Tumblr.png new file mode 100644 index 000000000..50c4c3389 Binary files /dev/null and b/share/images/icons/Tumblr.png differ diff --git a/share/images/icons/Twilight CMS.ico b/share/images/icons/Twilight CMS.ico deleted file mode 100644 index c9c62d2eb..000000000 Binary files a/share/images/icons/Twilight CMS.ico and /dev/null differ diff --git a/share/images/icons/Twilight CMS.png b/share/images/icons/Twilight CMS.png new file mode 100644 index 000000000..074deb541 Binary files /dev/null and b/share/images/icons/Twilight CMS.png differ diff --git a/share/images/icons/Twitter Bootstrap.ico b/share/images/icons/Twitter Bootstrap.ico deleted file mode 100644 index 3455c3fb9..000000000 Binary files a/share/images/icons/Twitter Bootstrap.ico and /dev/null differ diff --git a/share/images/icons/Twitter Bootstrap.png b/share/images/icons/Twitter Bootstrap.png new file mode 100644 index 000000000..e5b402cc7 Binary files /dev/null and b/share/images/icons/Twitter Bootstrap.png differ diff --git a/share/images/icons/TypePad.ico b/share/images/icons/TypePad.ico deleted file mode 100644 index d1d8b9c12..000000000 Binary files a/share/images/icons/TypePad.ico and /dev/null differ diff --git a/share/images/icons/TypePad.png b/share/images/icons/TypePad.png new file mode 100644 index 000000000..a351a6f94 Binary files /dev/null and b/share/images/icons/TypePad.png differ diff --git a/share/images/icons/Typekit.ico b/share/images/icons/Typekit.ico deleted file mode 100644 index c3b8d5302..000000000 Binary files a/share/images/icons/Typekit.ico and /dev/null differ diff --git a/share/images/icons/Typekit.png b/share/images/icons/Typekit.png new file mode 100644 index 000000000..4b2de435a Binary files /dev/null and b/share/images/icons/Typekit.png differ diff --git a/share/images/icons/UNIX.ico b/share/images/icons/UNIX.ico deleted file mode 100644 index 741e374fe..000000000 Binary files a/share/images/icons/UNIX.ico and /dev/null differ diff --git a/share/images/icons/UNIX.png b/share/images/icons/UNIX.png new file mode 100644 index 000000000..72b8ad4fb Binary files /dev/null and b/share/images/icons/UNIX.png differ diff --git a/share/images/icons/Ubercart.ico b/share/images/icons/Ubercart.ico deleted file mode 100644 index 861c2557b..000000000 Binary files a/share/images/icons/Ubercart.ico and /dev/null differ diff --git a/share/images/icons/Ubercart.png b/share/images/icons/Ubercart.png new file mode 100644 index 000000000..d233995a7 Binary files /dev/null and b/share/images/icons/Ubercart.png differ diff --git a/share/images/icons/Ubuntu.ico b/share/images/icons/Ubuntu.ico deleted file mode 100644 index 136b44322..000000000 Binary files a/share/images/icons/Ubuntu.ico and /dev/null differ diff --git a/share/images/icons/Ubuntu.png b/share/images/icons/Ubuntu.png new file mode 100644 index 000000000..2408fd5a8 Binary files /dev/null and b/share/images/icons/Ubuntu.png differ diff --git a/share/images/icons/Umbraco.ico b/share/images/icons/Umbraco.ico deleted file mode 100644 index 04e29436c..000000000 Binary files a/share/images/icons/Umbraco.ico and /dev/null differ diff --git a/share/images/icons/Umbraco.png b/share/images/icons/Umbraco.png new file mode 100644 index 000000000..005fdbc7c Binary files /dev/null and b/share/images/icons/Umbraco.png differ diff --git a/share/images/icons/Underscore.js.ico b/share/images/icons/Underscore.js.ico deleted file mode 100644 index b5d6f0a05..000000000 Binary files a/share/images/icons/Underscore.js.ico and /dev/null differ diff --git a/share/images/icons/Underscore.js.png b/share/images/icons/Underscore.js.png new file mode 100644 index 000000000..924beead0 Binary files /dev/null and b/share/images/icons/Underscore.js.png differ diff --git a/share/images/icons/UserRules.ico b/share/images/icons/UserRules.ico deleted file mode 100644 index d4ac01bb3..000000000 Binary files a/share/images/icons/UserRules.ico and /dev/null differ diff --git a/share/images/icons/UserRules.png b/share/images/icons/UserRules.png new file mode 100644 index 000000000..5f58573ee Binary files /dev/null and b/share/images/icons/UserRules.png differ diff --git a/share/images/icons/UserVoice.ico b/share/images/icons/UserVoice.ico deleted file mode 100644 index f1188cb50..000000000 Binary files a/share/images/icons/UserVoice.ico and /dev/null differ diff --git a/share/images/icons/UserVoice.png b/share/images/icons/UserVoice.png new file mode 100644 index 000000000..a76ee47d7 Binary files /dev/null and b/share/images/icons/UserVoice.png differ diff --git a/share/images/icons/VIVVO.png b/share/images/icons/VIVVO.png new file mode 100644 index 000000000..da3b7d4a8 Binary files /dev/null and b/share/images/icons/VIVVO.png differ diff --git a/share/images/icons/VP-ASP.ico b/share/images/icons/VP-ASP.ico deleted file mode 100644 index 878628f5b..000000000 Binary files a/share/images/icons/VP-ASP.ico and /dev/null differ diff --git a/share/images/icons/VP-ASP.png b/share/images/icons/VP-ASP.png new file mode 100644 index 000000000..0bb760c1a Binary files /dev/null and b/share/images/icons/VP-ASP.png differ diff --git a/share/images/icons/Vanilla.ico b/share/images/icons/Vanilla.ico deleted file mode 100644 index 75cae32c6..000000000 Binary files a/share/images/icons/Vanilla.ico and /dev/null differ diff --git a/share/images/icons/Vanilla.png b/share/images/icons/Vanilla.png new file mode 100644 index 000000000..90a02c8ed Binary files /dev/null and b/share/images/icons/Vanilla.png differ diff --git a/share/images/icons/Varnish.ico b/share/images/icons/Varnish.ico deleted file mode 100644 index e9fa1c235..000000000 Binary files a/share/images/icons/Varnish.ico and /dev/null differ diff --git a/share/images/icons/Varnish.png b/share/images/icons/Varnish.png new file mode 100644 index 000000000..5832be59d Binary files /dev/null and b/share/images/icons/Varnish.png differ diff --git a/share/images/icons/Vignette.ico b/share/images/icons/Vignette.ico deleted file mode 100644 index 86cde70cf..000000000 Binary files a/share/images/icons/Vignette.ico and /dev/null differ diff --git a/share/images/icons/Vignette.png b/share/images/icons/Vignette.png new file mode 100644 index 000000000..238effdf6 Binary files /dev/null and b/share/images/icons/Vignette.png differ diff --git a/share/images/icons/Vimeo.ico b/share/images/icons/Vimeo.ico deleted file mode 100644 index c2e55f23b..000000000 Binary files a/share/images/icons/Vimeo.ico and /dev/null differ diff --git a/share/images/icons/Vimeo.png b/share/images/icons/Vimeo.png new file mode 100644 index 000000000..e9324339e Binary files /dev/null and b/share/images/icons/Vimeo.png differ diff --git a/share/images/icons/VirtueMart.ico b/share/images/icons/VirtueMart.ico deleted file mode 100644 index e14e4efe9..000000000 Binary files a/share/images/icons/VirtueMart.ico and /dev/null differ diff --git a/share/images/icons/VirtueMart.png b/share/images/icons/VirtueMart.png new file mode 100644 index 000000000..af285f1ff Binary files /dev/null and b/share/images/icons/VirtueMart.png differ diff --git a/share/images/icons/VisualPath.ico b/share/images/icons/VisualPath.ico deleted file mode 100644 index 1de64403b..000000000 Binary files a/share/images/icons/VisualPath.ico and /dev/null differ diff --git a/share/images/icons/VisualPath.png b/share/images/icons/VisualPath.png new file mode 100644 index 000000000..6d7c84139 Binary files /dev/null and b/share/images/icons/VisualPath.png differ diff --git a/share/images/icons/Vox.ico b/share/images/icons/Vox.ico deleted file mode 100644 index ccfcc0137..000000000 Binary files a/share/images/icons/Vox.ico and /dev/null differ diff --git a/share/images/icons/Vox.png b/share/images/icons/Vox.png new file mode 100644 index 000000000..169a3d22c Binary files /dev/null and b/share/images/icons/Vox.png differ diff --git a/share/images/icons/W3Counter.ico b/share/images/icons/W3Counter.ico deleted file mode 100644 index 562fa8e51..000000000 Binary files a/share/images/icons/W3Counter.ico and /dev/null differ diff --git a/share/images/icons/W3Counter.png b/share/images/icons/W3Counter.png new file mode 100644 index 000000000..c8ac763aa Binary files /dev/null and b/share/images/icons/W3Counter.png differ diff --git a/share/images/icons/Web Optimizer.ico b/share/images/icons/Web Optimizer.ico deleted file mode 100644 index a22513525..000000000 Binary files a/share/images/icons/Web Optimizer.ico and /dev/null differ diff --git a/share/images/icons/Web Optimizer.png b/share/images/icons/Web Optimizer.png new file mode 100644 index 000000000..4f83e9787 Binary files /dev/null and b/share/images/icons/Web Optimizer.png differ diff --git a/share/images/icons/WebGUI.ico b/share/images/icons/WebGUI.ico deleted file mode 100644 index af7f1ea98..000000000 Binary files a/share/images/icons/WebGUI.ico and /dev/null differ diff --git a/share/images/icons/WebGUI.png b/share/images/icons/WebGUI.png new file mode 100644 index 000000000..365153149 Binary files /dev/null and b/share/images/icons/WebGUI.png differ diff --git a/share/images/icons/WebPublisher.ico b/share/images/icons/WebPublisher.ico deleted file mode 100644 index 0ca75e4eb..000000000 Binary files a/share/images/icons/WebPublisher.ico and /dev/null differ diff --git a/share/images/icons/WebPublisher.png b/share/images/icons/WebPublisher.png new file mode 100644 index 000000000..81cd5f224 Binary files /dev/null and b/share/images/icons/WebPublisher.png differ diff --git a/share/images/icons/Websale.ico b/share/images/icons/Websale.ico deleted file mode 100644 index 7be33bfe5..000000000 Binary files a/share/images/icons/Websale.ico and /dev/null differ diff --git a/share/images/icons/Websale.png b/share/images/icons/Websale.png new file mode 100644 index 000000000..f7a54e9b3 Binary files /dev/null and b/share/images/icons/Websale.png differ diff --git a/share/images/icons/WebsiteBaker.ico b/share/images/icons/WebsiteBaker.ico deleted file mode 100644 index 4a6769c9f..000000000 Binary files a/share/images/icons/WebsiteBaker.ico and /dev/null differ diff --git a/share/images/icons/WebsiteBaker.png b/share/images/icons/WebsiteBaker.png new file mode 100644 index 000000000..a003311b4 Binary files /dev/null and b/share/images/icons/WebsiteBaker.png differ diff --git a/share/images/icons/Webtrekk.ico b/share/images/icons/Webtrekk.ico deleted file mode 100644 index 98da3b5e6..000000000 Binary files a/share/images/icons/Webtrekk.ico and /dev/null differ diff --git a/share/images/icons/Webtrekk.png b/share/images/icons/Webtrekk.png new file mode 100644 index 000000000..eb00c2a5a Binary files /dev/null and b/share/images/icons/Webtrekk.png differ diff --git a/share/images/icons/Webtrends.ico b/share/images/icons/Webtrends.ico deleted file mode 100644 index 1e4b1ee7e..000000000 Binary files a/share/images/icons/Webtrends.ico and /dev/null differ diff --git a/share/images/icons/Webtrends.png b/share/images/icons/Webtrends.png new file mode 100644 index 000000000..ac0416822 Binary files /dev/null and b/share/images/icons/Webtrends.png differ diff --git a/share/images/icons/Weebly.ico b/share/images/icons/Weebly.ico deleted file mode 100644 index 7fec9a63e..000000000 Binary files a/share/images/icons/Weebly.ico and /dev/null differ diff --git a/share/images/icons/Weebly.png b/share/images/icons/Weebly.png new file mode 100644 index 000000000..0f8d9d20f Binary files /dev/null and b/share/images/icons/Weebly.png differ diff --git a/share/images/icons/WikkaWiki.ico b/share/images/icons/WikkaWiki.ico deleted file mode 100644 index 7df5f1e3f..000000000 Binary files a/share/images/icons/WikkaWiki.ico and /dev/null differ diff --git a/share/images/icons/WikkaWiki.png b/share/images/icons/WikkaWiki.png new file mode 100644 index 000000000..a5264672d Binary files /dev/null and b/share/images/icons/WikkaWiki.png differ diff --git a/share/images/icons/Windows Server.png b/share/images/icons/Windows Server.png new file mode 100644 index 000000000..5dbda8e60 Binary files /dev/null and b/share/images/icons/Windows Server.png differ diff --git a/share/images/icons/Wolf CMS.ico b/share/images/icons/Wolf CMS.ico deleted file mode 100644 index 9f37f6d32..000000000 Binary files a/share/images/icons/Wolf CMS.ico and /dev/null differ diff --git a/share/images/icons/Wolf CMS.png b/share/images/icons/Wolf CMS.png new file mode 100644 index 000000000..577f0f955 Binary files /dev/null and b/share/images/icons/Wolf CMS.png differ diff --git a/share/images/icons/Woopra.ico b/share/images/icons/Woopra.ico deleted file mode 100644 index 1659b4d88..000000000 Binary files a/share/images/icons/Woopra.ico and /dev/null differ diff --git a/share/images/icons/Woopra.png b/share/images/icons/Woopra.png new file mode 100644 index 000000000..f137b2cdc Binary files /dev/null and b/share/images/icons/Woopra.png differ diff --git a/share/images/icons/WordPress.ico b/share/images/icons/WordPress.ico deleted file mode 100644 index 31b7d2c2b..000000000 Binary files a/share/images/icons/WordPress.ico and /dev/null differ diff --git a/share/images/icons/WordPress.png b/share/images/icons/WordPress.png new file mode 100644 index 000000000..541657c4b Binary files /dev/null and b/share/images/icons/WordPress.png differ diff --git a/share/images/icons/XMB.ico b/share/images/icons/XMB.ico deleted file mode 100644 index 79fed7237..000000000 Binary files a/share/images/icons/XMB.ico and /dev/null differ diff --git a/share/images/icons/XMB.png b/share/images/icons/XMB.png new file mode 100644 index 000000000..0d2892cf1 Binary files /dev/null and b/share/images/icons/XMB.png differ diff --git a/share/images/icons/XOOPS.ico b/share/images/icons/XOOPS.ico deleted file mode 100644 index ad6a67cfc..000000000 Binary files a/share/images/icons/XOOPS.ico and /dev/null differ diff --git a/share/images/icons/XOOPS.png b/share/images/icons/XOOPS.png new file mode 100644 index 000000000..d3771fc00 Binary files /dev/null and b/share/images/icons/XOOPS.png differ diff --git a/share/images/icons/Xanario.ico b/share/images/icons/Xanario.ico deleted file mode 100644 index 003ae38f7..000000000 Binary files a/share/images/icons/Xanario.ico and /dev/null differ diff --git a/share/images/icons/Xanario.png b/share/images/icons/Xanario.png new file mode 100644 index 000000000..e0b897666 Binary files /dev/null and b/share/images/icons/Xanario.png differ diff --git a/share/images/icons/XenForo.ico b/share/images/icons/XenForo.ico deleted file mode 100644 index 1de4fe2a4..000000000 Binary files a/share/images/icons/XenForo.ico and /dev/null differ diff --git a/share/images/icons/XenForo.png b/share/images/icons/XenForo.png new file mode 100644 index 000000000..4dc861e3e Binary files /dev/null and b/share/images/icons/XenForo.png differ diff --git a/share/images/icons/XiTi.ico b/share/images/icons/XiTi.ico deleted file mode 100644 index 60d7db99d..000000000 Binary files a/share/images/icons/XiTi.ico and /dev/null differ diff --git a/share/images/icons/XiTi.png b/share/images/icons/XiTi.png new file mode 100644 index 000000000..1200bd3a3 Binary files /dev/null and b/share/images/icons/XiTi.png differ diff --git a/share/images/icons/YUI Doc.ico b/share/images/icons/YUI Doc.ico deleted file mode 100644 index d7761e5a9..000000000 Binary files a/share/images/icons/YUI Doc.ico and /dev/null differ diff --git a/share/images/icons/YUI Doc.png b/share/images/icons/YUI Doc.png new file mode 100644 index 000000000..0740bf864 Binary files /dev/null and b/share/images/icons/YUI Doc.png differ diff --git a/share/images/icons/YUI.ico b/share/images/icons/YUI.ico deleted file mode 100644 index 5bb513bb8..000000000 Binary files a/share/images/icons/YUI.ico and /dev/null differ diff --git a/share/images/icons/YUI.png b/share/images/icons/YUI.png new file mode 100644 index 000000000..c4deef16a Binary files /dev/null and b/share/images/icons/YUI.png differ diff --git a/share/images/icons/YaBB.ico b/share/images/icons/YaBB.ico deleted file mode 100644 index 6fc595f26..000000000 Binary files a/share/images/icons/YaBB.ico and /dev/null differ diff --git a/share/images/icons/YaBB.png b/share/images/icons/YaBB.png new file mode 100644 index 000000000..004e641c5 Binary files /dev/null and b/share/images/icons/YaBB.png differ diff --git a/share/images/icons/Yahoo! Web Analytics.ico b/share/images/icons/Yahoo! Web Analytics.ico deleted file mode 100644 index d7761e5a9..000000000 Binary files a/share/images/icons/Yahoo! Web Analytics.ico and /dev/null differ diff --git a/share/images/icons/Yahoo! Web Analytics.png b/share/images/icons/Yahoo! Web Analytics.png new file mode 100644 index 000000000..0740bf864 Binary files /dev/null and b/share/images/icons/Yahoo! Web Analytics.png differ diff --git a/share/images/icons/Yandex.Metrika.ico b/share/images/icons/Yandex.Metrika.ico deleted file mode 100644 index 43a0105ab..000000000 Binary files a/share/images/icons/Yandex.Metrika.ico and /dev/null differ diff --git a/share/images/icons/Yandex.Metrika.png b/share/images/icons/Yandex.Metrika.png new file mode 100644 index 000000000..869c88b42 Binary files /dev/null and b/share/images/icons/Yandex.Metrika.png differ diff --git a/share/images/icons/YouTube.ico b/share/images/icons/YouTube.ico deleted file mode 100644 index dc4ded6c4..000000000 Binary files a/share/images/icons/YouTube.ico and /dev/null differ diff --git a/share/images/icons/YouTube.png b/share/images/icons/YouTube.png new file mode 100644 index 000000000..fc14bb53e Binary files /dev/null and b/share/images/icons/YouTube.png differ diff --git a/share/images/icons/Zen Cart.ico b/share/images/icons/Zen Cart.ico deleted file mode 100644 index 40bc70c89..000000000 Binary files a/share/images/icons/Zen Cart.ico and /dev/null differ diff --git a/share/images/icons/Zen Cart.png b/share/images/icons/Zen Cart.png new file mode 100644 index 000000000..a85003735 Binary files /dev/null and b/share/images/icons/Zen Cart.png differ diff --git a/share/images/icons/Zend.ico b/share/images/icons/Zend.ico deleted file mode 100644 index b93a0b448..000000000 Binary files a/share/images/icons/Zend.ico and /dev/null differ diff --git a/share/images/icons/Zend.png b/share/images/icons/Zend.png new file mode 100644 index 000000000..5f38cb06e Binary files /dev/null and b/share/images/icons/Zend.png differ diff --git a/share/images/icons/Zepto.ico b/share/images/icons/Zepto.ico deleted file mode 100644 index fb0fc1aee..000000000 Binary files a/share/images/icons/Zepto.ico and /dev/null differ diff --git a/share/images/icons/Zepto.png b/share/images/icons/Zepto.png new file mode 100644 index 000000000..7a2bc80e8 Binary files /dev/null and b/share/images/icons/Zepto.png differ diff --git a/share/images/icons/_placeholder.ico b/share/images/icons/_placeholder.ico deleted file mode 100644 index 36829b9a5..000000000 Binary files a/share/images/icons/_placeholder.ico and /dev/null differ diff --git a/share/images/icons/_placeholder.png b/share/images/icons/_placeholder.png new file mode 100644 index 000000000..59fc5c2ca Binary files /dev/null and b/share/images/icons/_placeholder.png differ diff --git a/share/images/icons/blip.tv.ico b/share/images/icons/blip.tv.ico deleted file mode 100644 index 18494c782..000000000 Binary files a/share/images/icons/blip.tv.ico and /dev/null differ diff --git a/share/images/icons/blip.tv.png b/share/images/icons/blip.tv.png new file mode 100644 index 000000000..f1661c99e Binary files /dev/null and b/share/images/icons/blip.tv.png differ diff --git a/share/images/icons/cPanel.ico b/share/images/icons/cPanel.ico deleted file mode 100644 index 44a93c6b3..000000000 Binary files a/share/images/icons/cPanel.ico and /dev/null differ diff --git a/share/images/icons/cPanel.png b/share/images/icons/cPanel.png new file mode 100644 index 000000000..44f2ff535 Binary files /dev/null and b/share/images/icons/cPanel.png differ diff --git a/share/images/icons/chartbeat.ico b/share/images/icons/chartbeat.ico deleted file mode 100644 index c86b3e7bb..000000000 Binary files a/share/images/icons/chartbeat.ico and /dev/null differ diff --git a/share/images/icons/chartbeat.png b/share/images/icons/chartbeat.png new file mode 100644 index 000000000..c5909519b Binary files /dev/null and b/share/images/icons/chartbeat.png differ diff --git a/share/images/icons/comScore.ico b/share/images/icons/comScore.ico deleted file mode 100644 index 2b9e49058..000000000 Binary files a/share/images/icons/comScore.ico and /dev/null differ diff --git a/share/images/icons/comScore.png b/share/images/icons/comScore.png new file mode 100644 index 000000000..1846551e6 Binary files /dev/null and b/share/images/icons/comScore.png differ diff --git a/share/images/icons/cufon.ico b/share/images/icons/cufon.ico deleted file mode 100644 index 6c0e5119a..000000000 Binary files a/share/images/icons/cufon.ico and /dev/null differ diff --git a/share/images/icons/cufon.png b/share/images/icons/cufon.png new file mode 100644 index 000000000..4f3053f8c Binary files /dev/null and b/share/images/icons/cufon.png differ diff --git a/share/images/icons/d3.ico b/share/images/icons/d3.ico deleted file mode 100644 index 36829b9a5..000000000 Binary files a/share/images/icons/d3.ico and /dev/null differ diff --git a/share/images/icons/d3.png b/share/images/icons/d3.png new file mode 100644 index 000000000..59fc5c2ca Binary files /dev/null and b/share/images/icons/d3.png differ diff --git a/share/images/icons/dashCommerce.ico b/share/images/icons/dashCommerce.ico deleted file mode 100644 index 36829b9a5..000000000 Binary files a/share/images/icons/dashCommerce.ico and /dev/null differ diff --git a/share/images/icons/dashCommerce.png b/share/images/icons/dashCommerce.png new file mode 100644 index 000000000..59fc5c2ca Binary files /dev/null and b/share/images/icons/dashCommerce.png differ diff --git a/share/images/icons/dojo.ico b/share/images/icons/dojo.ico deleted file mode 100644 index cfd5d1550..000000000 Binary files a/share/images/icons/dojo.ico and /dev/null differ diff --git a/share/images/icons/dojo.png b/share/images/icons/dojo.png new file mode 100644 index 000000000..112c23c89 Binary files /dev/null and b/share/images/icons/dojo.png differ diff --git a/share/images/icons/e107.ico b/share/images/icons/e107.ico deleted file mode 100644 index bbf3ef3b2..000000000 Binary files a/share/images/icons/e107.ico and /dev/null differ diff --git a/share/images/icons/e107.png b/share/images/icons/e107.png new file mode 100644 index 000000000..edfed4db0 Binary files /dev/null and b/share/images/icons/e107.png differ diff --git a/share/images/icons/eZ Publish.ico b/share/images/icons/eZ Publish.ico deleted file mode 100644 index a08643f3a..000000000 Binary files a/share/images/icons/eZ Publish.ico and /dev/null differ diff --git a/share/images/icons/eZ Publish.png b/share/images/icons/eZ Publish.png new file mode 100644 index 000000000..50ae525cd Binary files /dev/null and b/share/images/icons/eZ Publish.png differ diff --git a/share/images/icons/gentoo.ico b/share/images/icons/gentoo.ico deleted file mode 100644 index 5d3bec636..000000000 Binary files a/share/images/icons/gentoo.ico and /dev/null differ diff --git a/share/images/icons/gentoo.png b/share/images/icons/gentoo.png new file mode 100644 index 000000000..5a4e6f510 Binary files /dev/null and b/share/images/icons/gentoo.png differ diff --git a/share/images/icons/iWeb.ico b/share/images/icons/iWeb.ico deleted file mode 100644 index 34e6eb1a5..000000000 Binary files a/share/images/icons/iWeb.ico and /dev/null differ diff --git a/share/images/icons/iWeb.png b/share/images/icons/iWeb.png new file mode 100644 index 000000000..ce713cf33 Binary files /dev/null and b/share/images/icons/iWeb.png differ diff --git a/share/images/icons/jQTouch.ico b/share/images/icons/jQTouch.ico deleted file mode 100644 index d4270825b..000000000 Binary files a/share/images/icons/jQTouch.ico and /dev/null differ diff --git a/share/images/icons/jQTouch.png b/share/images/icons/jQTouch.png new file mode 100644 index 000000000..41c1691cc Binary files /dev/null and b/share/images/icons/jQTouch.png differ diff --git a/share/images/icons/jQuery Mobile.ico b/share/images/icons/jQuery Mobile.ico deleted file mode 100644 index d4270825b..000000000 Binary files a/share/images/icons/jQuery Mobile.ico and /dev/null differ diff --git a/share/images/icons/jQuery Mobile.png b/share/images/icons/jQuery Mobile.png new file mode 100644 index 000000000..41c1691cc Binary files /dev/null and b/share/images/icons/jQuery Mobile.png differ diff --git a/share/images/icons/jQuery Sparklines.ico b/share/images/icons/jQuery Sparklines.ico deleted file mode 100644 index 36829b9a5..000000000 Binary files a/share/images/icons/jQuery Sparklines.ico and /dev/null differ diff --git a/share/images/icons/jQuery Sparklines.png b/share/images/icons/jQuery Sparklines.png new file mode 100644 index 000000000..59fc5c2ca Binary files /dev/null and b/share/images/icons/jQuery Sparklines.png differ diff --git a/share/images/icons/jQuery UI.ico b/share/images/icons/jQuery UI.ico deleted file mode 100644 index 77e3bd2dd..000000000 Binary files a/share/images/icons/jQuery UI.ico and /dev/null differ diff --git a/share/images/icons/jQuery UI.png b/share/images/icons/jQuery UI.png new file mode 100644 index 000000000..e32b8d856 Binary files /dev/null and b/share/images/icons/jQuery UI.png differ diff --git a/share/images/icons/jQuery.ico b/share/images/icons/jQuery.ico deleted file mode 100644 index d4270825b..000000000 Binary files a/share/images/icons/jQuery.ico and /dev/null differ diff --git a/share/images/icons/jQuery.png b/share/images/icons/jQuery.png new file mode 100644 index 000000000..41c1691cc Binary files /dev/null and b/share/images/icons/jQuery.png differ diff --git a/share/images/icons/jqPlot.ico b/share/images/icons/jqPlot.ico deleted file mode 100644 index 36829b9a5..000000000 Binary files a/share/images/icons/jqPlot.ico and /dev/null differ diff --git a/share/images/icons/jqPlot.png b/share/images/icons/jqPlot.png new file mode 100644 index 000000000..59fc5c2ca Binary files /dev/null and b/share/images/icons/jqPlot.png differ diff --git a/share/images/icons/lighttpd.ico b/share/images/icons/lighttpd.ico deleted file mode 100644 index ff71111a3..000000000 Binary files a/share/images/icons/lighttpd.ico and /dev/null differ diff --git a/share/images/icons/lighttpd.png b/share/images/icons/lighttpd.png new file mode 100644 index 000000000..4efdf2c66 Binary files /dev/null and b/share/images/icons/lighttpd.png differ diff --git a/share/images/icons/nopCommerce.ico b/share/images/icons/nopCommerce.ico deleted file mode 100644 index 144b1ab44..000000000 Binary files a/share/images/icons/nopCommerce.ico and /dev/null differ diff --git a/share/images/icons/nopCommerce.png b/share/images/icons/nopCommerce.png new file mode 100644 index 000000000..5b0a312af Binary files /dev/null and b/share/images/icons/nopCommerce.png differ diff --git a/share/images/icons/openEngine.png b/share/images/icons/openEngine.png new file mode 100644 index 000000000..2d4399613 Binary files /dev/null and b/share/images/icons/openEngine.png differ diff --git a/share/images/icons/osCSS.ico b/share/images/icons/osCSS.ico deleted file mode 100644 index 6c041258e..000000000 Binary files a/share/images/icons/osCSS.ico and /dev/null differ diff --git a/share/images/icons/osCSS.png b/share/images/icons/osCSS.png new file mode 100644 index 000000000..28e3dab79 Binary files /dev/null and b/share/images/icons/osCSS.png differ diff --git a/share/images/icons/osCommerce.ico b/share/images/icons/osCommerce.ico deleted file mode 100644 index 456f541a2..000000000 Binary files a/share/images/icons/osCommerce.ico and /dev/null differ diff --git a/share/images/icons/osCommerce.png b/share/images/icons/osCommerce.png new file mode 100644 index 000000000..15f67f1d8 Binary files /dev/null and b/share/images/icons/osCommerce.png differ diff --git a/share/images/icons/papaya CMS.ico b/share/images/icons/papaya CMS.ico deleted file mode 100644 index 84307f0db..000000000 Binary files a/share/images/icons/papaya CMS.ico and /dev/null differ diff --git a/share/images/icons/papaya CMS.png b/share/images/icons/papaya CMS.png new file mode 100644 index 000000000..0799b2b14 Binary files /dev/null and b/share/images/icons/papaya CMS.png differ diff --git a/share/images/icons/phpBB.ico b/share/images/icons/phpBB.ico deleted file mode 100644 index f0247141f..000000000 Binary files a/share/images/icons/phpBB.ico and /dev/null differ diff --git a/share/images/icons/phpBB.png b/share/images/icons/phpBB.png new file mode 100644 index 000000000..32d1aba4a Binary files /dev/null and b/share/images/icons/phpBB.png differ diff --git a/share/images/icons/phpDocumentor.ico b/share/images/icons/phpDocumentor.ico deleted file mode 100644 index b605c0472..000000000 Binary files a/share/images/icons/phpDocumentor.ico and /dev/null differ diff --git a/share/images/icons/phpDocumentor.png b/share/images/icons/phpDocumentor.png new file mode 100644 index 000000000..884861cb4 Binary files /dev/null and b/share/images/icons/phpDocumentor.png differ diff --git a/share/images/icons/phpMyAdmin.ico b/share/images/icons/phpMyAdmin.ico deleted file mode 100644 index 2352b5fa4..000000000 Binary files a/share/images/icons/phpMyAdmin.ico and /dev/null differ diff --git a/share/images/icons/phpMyAdmin.png b/share/images/icons/phpMyAdmin.png new file mode 100644 index 000000000..d5e6c547d Binary files /dev/null and b/share/images/icons/phpMyAdmin.png differ diff --git a/share/images/icons/phpPgAdmin.ico b/share/images/icons/phpPgAdmin.ico deleted file mode 100644 index 6a188d538..000000000 Binary files a/share/images/icons/phpPgAdmin.ico and /dev/null differ diff --git a/share/images/icons/phpPgAdmin.png b/share/images/icons/phpPgAdmin.png new file mode 100644 index 000000000..62b69d53b Binary files /dev/null and b/share/images/icons/phpPgAdmin.png differ diff --git a/share/images/icons/posterous.ico b/share/images/icons/posterous.ico deleted file mode 100644 index f87822a7f..000000000 Binary files a/share/images/icons/posterous.ico and /dev/null differ diff --git a/share/images/icons/posterous.png b/share/images/icons/posterous.png new file mode 100644 index 000000000..6b709587e Binary files /dev/null and b/share/images/icons/posterous.png differ diff --git a/share/images/icons/punBB.ico b/share/images/icons/punBB.ico deleted file mode 100644 index bac4e9a0d..000000000 Binary files a/share/images/icons/punBB.ico and /dev/null differ diff --git a/share/images/icons/punBB.png b/share/images/icons/punBB.png new file mode 100644 index 000000000..ef5c7c747 Binary files /dev/null and b/share/images/icons/punBB.png differ diff --git a/share/images/icons/reCAPTCHA.ico b/share/images/icons/reCAPTCHA.ico deleted file mode 100644 index 004b644b2..000000000 Binary files a/share/images/icons/reCAPTCHA.ico and /dev/null differ diff --git a/share/images/icons/reCAPTCHA.png b/share/images/icons/reCAPTCHA.png new file mode 100644 index 000000000..f438cb94a Binary files /dev/null and b/share/images/icons/reCAPTCHA.png differ diff --git a/share/images/icons/s9y.ico b/share/images/icons/s9y.ico deleted file mode 100644 index 52d08cb62..000000000 Binary files a/share/images/icons/s9y.ico and /dev/null differ diff --git a/share/images/icons/s9y.png b/share/images/icons/s9y.png new file mode 100644 index 000000000..f85da20b7 Binary files /dev/null and b/share/images/icons/s9y.png differ diff --git a/share/images/icons/sIFR.ico b/share/images/icons/sIFR.ico deleted file mode 100644 index d7b4551ef..000000000 Binary files a/share/images/icons/sIFR.ico and /dev/null differ diff --git a/share/images/icons/sIFR.png b/share/images/icons/sIFR.png new file mode 100644 index 000000000..051bc2c0b Binary files /dev/null and b/share/images/icons/sIFR.png differ diff --git a/share/images/icons/sNews.ico b/share/images/icons/sNews.ico deleted file mode 100644 index 087c0d7db..000000000 Binary files a/share/images/icons/sNews.ico and /dev/null differ diff --git a/share/images/icons/sNews.png b/share/images/icons/sNews.png new file mode 100644 index 000000000..b4a373d64 Binary files /dev/null and b/share/images/icons/sNews.png differ diff --git a/share/images/icons/script.aculo.us.ico b/share/images/icons/script.aculo.us.ico deleted file mode 100644 index 7b8015830..000000000 Binary files a/share/images/icons/script.aculo.us.ico and /dev/null differ diff --git a/share/images/icons/script.aculo.us.png b/share/images/icons/script.aculo.us.png new file mode 100644 index 000000000..217a12cba Binary files /dev/null and b/share/images/icons/script.aculo.us.png differ diff --git a/share/images/icons/swift.engine.ico b/share/images/icons/swift.engine.ico deleted file mode 100644 index a545aa6ea..000000000 Binary files a/share/images/icons/swift.engine.ico and /dev/null differ diff --git a/share/images/icons/swift.engine.png b/share/images/icons/swift.engine.png new file mode 100644 index 000000000..e5b7fe3ad Binary files /dev/null and b/share/images/icons/swift.engine.png differ diff --git a/share/images/icons/vBulletin.ico b/share/images/icons/vBulletin.ico deleted file mode 100755 index c21ed60e3..000000000 Binary files a/share/images/icons/vBulletin.ico and /dev/null differ diff --git a/share/images/icons/vBulletin.png b/share/images/icons/vBulletin.png new file mode 100644 index 000000000..a4f710ab4 Binary files /dev/null and b/share/images/icons/vBulletin.png differ diff --git a/share/images/icons/viennaCMS.ico b/share/images/icons/viennaCMS.ico deleted file mode 100644 index 743716f60..000000000 Binary files a/share/images/icons/viennaCMS.ico and /dev/null differ diff --git a/share/images/icons/viennaCMS.png b/share/images/icons/viennaCMS.png new file mode 100644 index 000000000..f2798fb62 Binary files /dev/null and b/share/images/icons/viennaCMS.png differ diff --git a/share/images/icons/webEdition.ico b/share/images/icons/webEdition.ico deleted file mode 100644 index 8a16fa0be..000000000 Binary files a/share/images/icons/webEdition.ico and /dev/null differ diff --git a/share/images/icons/webEdition.png b/share/images/icons/webEdition.png new file mode 100644 index 000000000..454f720f3 Binary files /dev/null and b/share/images/icons/webEdition.png differ diff --git a/share/images/icons/wink.ico b/share/images/icons/wink.ico deleted file mode 100644 index c84560157..000000000 Binary files a/share/images/icons/wink.ico and /dev/null differ diff --git a/share/images/icons/wink.png b/share/images/icons/wink.png new file mode 100644 index 000000000..f753b1a6a Binary files /dev/null and b/share/images/icons/wink.png differ diff --git a/share/images/icons/xajax.ico b/share/images/icons/xajax.ico deleted file mode 100644 index 743716f60..000000000 Binary files a/share/images/icons/xajax.ico and /dev/null differ diff --git a/share/images/icons/xajax.png b/share/images/icons/xajax.png new file mode 100644 index 000000000..f2798fb62 Binary files /dev/null and b/share/images/icons/xajax.png differ diff --git a/share/images/icons/xtCommerce.ico b/share/images/icons/xtCommerce.ico deleted file mode 100644 index 2c90fb866..000000000 Binary files a/share/images/icons/xtCommerce.ico and /dev/null differ diff --git a/share/images/icons/xtCommerce.png b/share/images/icons/xtCommerce.png new file mode 100644 index 000000000..1e5ab876c Binary files /dev/null and b/share/images/icons/xtCommerce.png differ diff --git a/share/images/icons/xui.ico b/share/images/icons/xui.ico deleted file mode 100644 index 39f2c6964..000000000 Binary files a/share/images/icons/xui.ico and /dev/null differ diff --git a/share/images/icons/xui.png b/share/images/icons/xui.png new file mode 100644 index 000000000..ec25c5417 Binary files /dev/null and b/share/images/icons/xui.png differ diff --git a/share/images/twitter.ico b/share/images/twitter.ico deleted file mode 100644 index 00450d4fe..000000000 Binary files a/share/images/twitter.ico and /dev/null differ diff --git a/share/images/twitter.png b/share/images/twitter.png new file mode 100644 index 000000000..88b21ac26 Binary files /dev/null and b/share/images/twitter.png differ diff --git a/share/js/apps.js b/share/js/apps.js index 40b0cc744..eda052afd 100644 --- a/share/js/apps.js +++ b/share/js/apps.js @@ -2,39 +2,39 @@ if ( wappalyzer == null ) return; var w = wappalyzer; - + w.categories = { - 1: { name: 'CMS', plural: 'CMS' }, - 2: { name: 'Message Board', plural: 'Message Boards' }, - 3: { name: 'Database Manager', plural: 'Database Managers' }, - 4: { name: 'Documentation Tool', plural: 'Documentation Tools' }, - 5: { name: 'Widget', plural: 'Widgets' }, - 6: { name: 'Web Shop', plural: 'Web Shops' }, - 7: { name: 'Photo Gallery', plural: 'Photo Galleries' }, - 8: { name: 'Wiki', plural: 'Wikis' }, - 9: { name: 'Hosting Panel', plural: 'Hosting Panels' }, - 10: { name: 'Analytics', plural: 'Analytics' }, - 11: { name: 'Blog', plural: 'Blogs' }, - 12: { name: 'JavaScript Framework', plural: 'JavaScript Frameworks' }, - 13: { name: 'Issue Tracker', plural: 'Issue Trackers' }, - 14: { name: 'Video Player', plural: 'Video Players' }, - 15: { name: 'Comment System', plural: 'Comment Systems' }, - 16: { name: 'CAPTCHA', plural: 'CAPTCHAs' }, - 17: { name: 'Font Script', plural: 'Font Scripts' }, - 18: { name: 'Web Framework', plural: 'Web Frameworks' }, - 19: { name: 'Miscellaneous', plural: 'Miscellaneous' }, - 20: { name: 'Editor', plural: 'Editors' }, - 21: { name: 'LMS', plural: 'LMS' }, - 22: { name: 'Web Server', plural: 'Web Servers' }, - 23: { name: 'Cache Tool', plural: 'Cache Tools' }, - 24: { name: 'Rich Text Editor', plural: 'Rich Text Editors' }, - 25: { name: 'Javascript Graphics', plural: 'Javascript Graphics' }, - 26: { name: 'Mobile Framework', plural: 'Mobile Frameworks' }, - 27: { name: 'Programming Language', plural: 'Programming Languages' }, - 28: { name: 'Operating System', plural: 'Operating Systems' }, - 29: { name: 'Search Engine', plural: 'Search Engines'} + 1: { plural: 'CMS' }, + 2: { plural: 'Message Boards' }, + 3: { plural: 'Database Managers' }, + 4: { plural: 'Documentation Tools' }, + 5: { plural: 'Widgets' }, + 6: { plural: 'Web Shops' }, + 7: { plural: 'Photo Galleries' }, + 8: { plural: 'Wikis' }, + 9: { plural: 'Hosting Panels' }, + 10: { plural: 'Analytics' }, + 11: { plural: 'Blogs' }, + 12: { plural: 'JavaScript Frameworks' }, + 13: { plural: 'Issue Trackers' }, + 14: { plural: 'Video Players' }, + 15: { plural: 'Comment Systems' }, + 16: { plural: 'CAPTCHAs' }, + 17: { plural: 'Font Scripts' }, + 18: { plural: 'Web Frameworks' }, + 19: { plural: 'Miscellaneous' }, + 20: { plural: 'Editors' }, + 21: { plural: 'LMS' }, + 22: { plural: 'Web Servers' }, + 23: { plural: 'Cache Tools' }, + 24: { plural: 'Rich Text Editors' }, + 25: { plural: 'Javascript Graphics' }, + 26: { plural: 'Mobile Frameworks' }, + 27: { plural: 'Programming Languages' }, + 28: { plural: 'Operating Systems' }, + 29: { plural: 'Search Engines'} }; - + w.apps = { '1und1': { cats: { 1: 6 }, url: /\/shop\/catalog\/browse\?sessid\=/ }, '1C-Bitrix': { cats: { 1: 1 }, html: /]+components\/bitrix/i, script: /1c\-bitrix/i },