home *** CD-ROM | disk | FTP | other *** search
- /*
- 2009 - Copyright by Bee <http://www.honeybeenet.altervista.org>.
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-
-
- (function(){ //unnamed function!!!!!!!!!!!!!!!!!
- var engines_enabled = 0;
- var engines_names = "";
- var msg = "";
- var i = beefree_website_fetch_init();
- while(beefree_website_fetch_test(++i))
- {
- if(beefree_website_get_info(i, "enabled"))
- engines_enabled++;
- engines_names +=
- (engines_names.length > 0 ? ", " : "") +
- beefree_website_get_info_with_error(i, "name", "<no name set>");
- }
- msg = "[BeeFREE] has got: " + beefree_website_count() + " filters (" + engines_enabled + " enabled)";
- msg += "\n" + engines_names;
- beefree_console_print(msg);
- })();
-
-