home *** CD-ROM | disk | FTP | other *** search
- /***** BEGIN LICENSE BLOCK *****
- * Download Accelerator Plus Integration for Mozilla/Firefox.
- *
- * The contents of this file may be used under the terms of
- * Download Accelerator Plus (DAP) End User License Agreement, also
- * available at http://www.speedbit.com/Legal/DAPLICENSE.ASP ,
- * and is subject to the Speedbit Privacy Policy, also available
- * at http://www.speedbit.com/Legal/Privacy.ASP.
- *
- * Copyright (C) 1999-2006 SpeedBit Ltd.
- ***** END LICENSE BLOCK *****/
- ///////////// gloabal varible //////////////////////////////////////////
- const gDap_ConsoleService =
- Components.
- classes['@mozilla.org/consoleservice;1'].
- getService(Components.interfaces.nsIConsoleService);
-
-
- //////////////////////////////////////////////////////////////////////////////////////////
- var bLog = false;
- var gDAPService = null;
-
- function IsLog()
- {
- try
- {
- var obj = Components.classes["@speedbit.com/dapfirefox/dapcomponent;1"].createInstance();
- obj = obj.QueryInterface(Components.interfaces.IDAPComponent);
- return obj.IsWriteLog();
-
- }
- catch(ex)
- {
-
- }
- return false;
- }
-
- function DAP_Log(aMessage)
- {
- if( bLog == false )
- bLog = IsLog();
-
- if( bLog == false )
- return;
-
- gDap_ConsoleService.logStringMessage('DAP Handle: ' + aMessage);
- }
-
-
- function getDescriptionFromDocument(aDocument)
- {
- var metaElements = aDocument.getElementsByTagName('META');
-
- for (var m = 0; m < metaElements.length; m++)
- {
- if (metaElements[m].name.toLowerCase() == 'description' || metaElements[m].httpEquiv.toLowerCase() == 'description')
- return metaElements[m].content;
- }
- return "";
- }
-