home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 November / PCWorld_2007-11_cd.bin / v cisle / dap / dap85.exe / %TEMPCABFULLDIR% / DapLang.cab / dapff.jar / content / daputil.js < prev    next >
Encoding:
Text File  |  2006-04-17  |  1.7 KB  |  62 lines

  1. /***** BEGIN LICENSE BLOCK *****
  2. * Download Accelerator Plus Integration for Mozilla/Firefox. 
  3. *
  4. * The contents of this file may be used under the terms of 
  5. * Download Accelerator Plus (DAP) End User License Agreement, also 
  6. * available at http://www.speedbit.com/Legal/DAPLICENSE.ASP ,
  7. * and is subject to the Speedbit Privacy Policy, also available 
  8. * at http://www.speedbit.com/Legal/Privacy.ASP. 
  9. *
  10. * Copyright (C) 1999-2006 SpeedBit Ltd.
  11. ***** END LICENSE BLOCK *****/
  12. ///////////// gloabal varible //////////////////////////////////////////
  13. const gDap_ConsoleService =
  14.       Components.
  15.           classes['@mozilla.org/consoleservice;1'].
  16.               getService(Components.interfaces.nsIConsoleService);
  17.  
  18.  
  19. //////////////////////////////////////////////////////////////////////////////////////////
  20. var bLog  = false;
  21. var gDAPService = null;
  22.  
  23. function IsLog()
  24. {
  25.   try
  26.     {
  27.      var obj = Components.classes["@speedbit.com/dapfirefox/dapcomponent;1"].createInstance();
  28.      obj = obj.QueryInterface(Components.interfaces.IDAPComponent);
  29.      return obj.IsWriteLog();
  30.     
  31.     }
  32.     catch(ex)
  33.    {
  34.  
  35.    }
  36.   return false;
  37. }
  38.  
  39. function DAP_Log(aMessage)
  40. {
  41.    if( bLog == false  )
  42.     bLog = IsLog();
  43.  
  44.   if( bLog == false )
  45.     return;
  46.  
  47.   gDap_ConsoleService.logStringMessage('DAP  Handle: ' + aMessage);
  48. }
  49.  
  50.  
  51. function getDescriptionFromDocument(aDocument)
  52. {
  53.     var metaElements = aDocument.getElementsByTagName('META');
  54.  
  55.     for (var m = 0; m < metaElements.length; m++) 
  56.         {
  57.       if (metaElements[m].name.toLowerCase() == 'description' || metaElements[m].httpEquiv.toLowerCase() == 'description')
  58.         return metaElements[m].content;
  59.         }
  60.   return "";
  61. }
  62.