Added Meteor

main
Elbert Alias 10 years ago
parent 512b36aa23
commit 3fb7686aee

@ -9,19 +9,21 @@ var
json = require(process.env.WAPPALYZER_ROOT + '/src/apps.json'); json = require(process.env.WAPPALYZER_ROOT + '/src/apps.json');
for ( app in json.apps ) { for ( app in json.apps ) {
var path = process.env.WAPPALYZER_ROOT + '/src/icons/' + app + '.png'; (function(app) {
var path = process.env.WAPPALYZER_ROOT + '/src/icons/' + app + '.png';
fs.exists(path, function(exists) { fs.exists(path, function(exists) {
var buffer; var buffer;
if ( exists ) { if ( exists ) {
buffer = fileType(readChunk.sync(path, 0, 262)); buffer = fileType(readChunk.sync(path, 0, 262));
if ( buffer.mime !== 'image/png' ) { if ( buffer.mime !== 'image/png' ) {
throw new Error('Incorrect mimetype "' + buffer.mime + '": src/icons/' + app + '.png'); throw new Error('Incorrect mimetype "' + buffer.mime + '": src/icons/' + app + '.png');
}
} else {
throw new Error('Missing file: src/icons/' + app + '.png');
} }
} else { });
throw new Error('Missing file: src/icons/' + app + '.png'); }(app));
}
});
}; };

@ -3284,7 +3284,7 @@
}, },
"html": [ "html": [
"<a[^>]+>Powered by MODx</a>", "<a[^>]+>Powered by MODx</a>",
"<(?:link|script)[^>]+assets/(?:templates|components|snippets)/\\;confidence:80" "<(?:link|script)[^>]+assets/snippets/\\;confidence:20"
], ],
"implies": "PHP", "implies": "PHP",
"website": "modxcms.com" "website": "modxcms.com"
@ -3386,6 +3386,14 @@
"html": "(?:<iframe id=\"meebo-iframe\"|Meebo\\('domReady'\\))", "html": "(?:<iframe id=\"meebo-iframe\"|Meebo\\('domReady'\\))",
"website": "www.meebo.com" "website": "www.meebo.com"
}, },
"Meteor": {
"cats": [
12
],
"env": "^Meteor$",
"html": "<link[^>]+__meteor-css__",
"website": "meteor.com"
},
"Methode": { "Methode": {
"cats": [ "cats": [
1 1
@ -7218,4 +7226,4 @@
"49": "feed-readers", "49": "feed-readers",
"50": "document-management-systems" "50": "document-management-systems"
} }
} }

Loading…
Cancel
Save