home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 1999 #6 / K_CD_6_99.ISO / Arkivet / Ie401DK / DA / packages / IE4SHLNT.CAB / mycomp.htt < prev    next >
Text File  |  1998-06-09  |  7KB  |  120 lines

  1. <!-- 
  2.  * This file was automatically generated by Microsoft Internet Explorer 4.0 
  3.  * using the file %TEMPLATEDIR%\mycomp.htt 
  4.  --> <html> <style>
  5.         body        {font: 8pt/10pt verdana; margin: 0}
  6.         #Banner        {position: absolute; width: 100%; height: 88px; background: URL(res://webvw.dll/folder.gif) no-repeat top left}
  7.         #MiniBanner    {position: absolute; width: 100%; height: 32px; background: window}
  8.         #Icon        {position: absolute; left: 11px; top: 12px; width: 64px; height: 64px}
  9.         #FileList    {position: absolute; left: 30%; top: 88px; width: 1px; height: 1px}
  10.         #Media        {margin-left: 20px; margin-top: 10px}
  11.         #Panel        {position: absolute; top: 88px; width: 30%; background: window; overflow: auto}
  12.         #PieChart    {width: 100px; height: 50px; margin-top: 10px}
  13.         #Thumbnail    {width: 160px; height: 160px; margin-top: 0px}
  14.         #Status        {margin-left: 20px}
  15.         p        {margin-left: 20px; margin-right: 8px}
  16.         p.Title        {font: 16pt/16pt verdana; font-weight: bold; color: #0099FF}
  17.         p.Warning    {font-weight: bold; color: red}
  18.         p.Links        {margin-top: 4px}
  19.         a:link        {color: #FF6633}
  20.         a:visited    {color: #0099FF}
  21.         a:active     {color: black}
  22.     </style> <head>
  23. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252"> <script language="JavaScript">
  24.             var L_Intro_Text    = "Marker et ikon for at fσ vist en beskrivelse.";
  25.             var L_Multiple_Text    = " markerede objekter.";
  26.             var L_TotalSize_Text    = "Kapacitet: ";
  27.             var L_UsedSpace_Text    = "Anvendt plads:";
  28.             var L_FreeSpace_Text    = "Ledig plads: ";
  29.  
  30.             function FixSize() {
  31.                 // this function handles fixed panel sizing and collapsing when the window resizes
  32.                 var hideTop    = 200;
  33.                 var hideLeft    = 400;
  34.                 var miniHeight    = 32;
  35.                 var ch        = document.body.clientHeight;
  36.                 var cw        = document.body.clientWidth;
  37.  
  38.                 if (hideTop > ch) {
  39.                     document.all.Banner.style.visibility = "hidden";
  40.                     document.all.MiniBanner.style.visibility = "visible";
  41.                     document.all.FileList.style.top = miniHeight;
  42.                     document.all.Panel.style.top = miniHeight;
  43.                 } else {
  44.                     document.all.Banner.style.visibility = "visible";
  45.                     document.all.MiniBanner.style.visibility = "hidden";
  46.                     document.all.FileList.style.top = (document.all.Banner.offsetHeight - 32) + "px";
  47.                     document.all.Panel.style.top = (document.all.Banner.offsetHeight) + "px";
  48.                     document.all.Rule.style.width = (cw > 84 ? cw - 84 : 0) + "px";      
  49.                 }
  50.                 if (hideLeft > cw) {
  51.                     document.all.Panel.style.visibility = "hidden";
  52.                     document.all.FileList.style.pixelLeft = 0;
  53.                     document.all.FileList.style.pixelTop = document.all.Panel.style.pixelTop;
  54.                 } else {
  55.                     document.all.Panel.style.visibility = "visible";
  56.                     document.all.FileList.style.pixelLeft = document.all.Panel.style.pixelWidth;
  57.                 }
  58.                 document.all.FileList.style.pixelWidth = cw - document.all.FileList.style.pixelLeft;
  59.                 document.all.FileList.style.pixelHeight = ch - document.all.FileList.style.pixelTop;
  60.                 document.all.Panel.style.pixelHeight = ch - document.all.Panel.style.pixelTop;
  61.             }
  62.  
  63.             function Init() {
  64.                 // call our FixSize() function whenever the window gets resized
  65.                 window.onresize = FixSize;
  66.                 FixSize();
  67.                 Info.innerHTML = L_Intro_Text;
  68.             }
  69.         </script> <script language="JavaScript" for="FileList" event="SelectionChanged">
  70.             // this script updates the left info Panel when you select icons
  71.             var items    = FileList.FocusedItem;
  72.             var fldr    = FileList.Folder;
  73.             var name;
  74.             var text;
  75.             var data;
  76.             var i;
  77.  
  78.             PieChart.style.display = "none";
  79.  
  80.             data = FileList.SelectedItems().Count;
  81.             if (data == 0) {
  82.                 // nothing selected?
  83.                 Info.innerHTML = L_Intro_Text;
  84.                 return;
  85.             }
  86.             else if (data > 1) {
  87.                 // more than one item selected?
  88.                 text = data + L_Multiple_Text + "<br>";
  89.                 if (data <= 16)
  90.                     for (i = 0; i < data; i++)
  91.                         text += "<br>" + FileList.SelectedItems().Item(i).Name;
  92.                 Info.innerHTML = text;
  93.                 return;
  94.             }
  95.  
  96.             // name
  97.             name = fldr.GetDetailsOf(items, 0);
  98.             text = "<b>" + name + "</b><br>";
  99.  
  100.             // type
  101.             text += fldr.GetDetailsOf(items, 1);
  102.  
  103.             // tip?
  104.             data = fldr.GetDetailsOf(items, -1);
  105.             if (data && data != name)
  106.                 text += "<br><br>" + data;
  107.  
  108.             // drive
  109.             if (PieChart.displayFile(items.Path)) {
  110.                 text += "<br><br><br>" + L_TotalSize_Text + PieChart.totalSpace;
  111.                 text += "<br><br><table bgcolor=buttonface width=12 height=12 border=1 bordercolordark=black bordercolorlight=black align=left><td></td></table> " + L_UsedSpace_Text + PieChart.usedSpace;
  112.                 text += "<br><br><table bgcolor=buttonhighlight width=12 height=12 border=1 bordercolordark=black bordercolorlight=black align=left><td></td></table> " + L_FreeSpace_Text + PieChart.freeSpace;
  113.                 PieChart.style.display = "";
  114.             }
  115.  
  116.             Info.innerHTML = text;
  117.         </script> </head> <body scroll=no onload="Init()"> <!-- start normal banner --> <div id="Banner" style="visibility: hidden"> <!-- using a table with nowrap to prevent word wrapping --> <table><tr><td nowrap> <p class=Title style="margin-left: 104px; margin-top: 16px"> <!--webbot bot="HTMLMarkup" startspan alt="<B><I>Web View Folder Title</I></B> " --> %THISDIRNAME% <!--webbot bot="HTMLMarkup" endspan --> </td></tr></table> <!-- this is more efficient than a long graphic, but we have to adjust it in FixSize() --> <hr id="Rule" size=1px color=black style="position: absolute; top: 44px; left: 84px"> <!-- this is our awesome icon extractor --> <object id=Icon classid="clsid:e5df9d10-3b52-11d1-83e8-00a0c90dc849"> <param name="scale" value="200"> </object> </div> <!-- end normal banner --> <!-- start mini banner --> <div id="MiniBanner" style="visibility: hidden"> <!-- using a table with nowrap to prevent word wrapping --> <table><tr><td nowrap> <p class=Title style="margin-left: 16px; margin-top: 4px"> <!--webbot bot="HTMLMarkup" startspan alt="<B><I>Web View Folder Title</I></B> " --> %THISDIRNAME% <!--webbot bot="HTMLMarkup" endspan --> </td></tr></table> </div> <!-- end mini banner --> <!-- start left info panel --> <div id="Panel"> <p style="margin-top: 16px");
  118.             <span id="Info"> </span> <p> <object id="PieChart" classid="clsid:1D2B4F40-1F10-11D1-9E88-00C04FDCAB92" style="display: none"> </object> </div> <!-- end left info panel --> <!-- this is the standard file list control --> <!-- webbot bot="HTMLMarkup" startspan u-src="file:///C:\Program Files\Microsoft FrontPage Express\Data\FoldData.gif" --> <object id="FileList" border=0 tabindex=1 classid="clsid:1820FED0-473E-11D0-A96C-00C04FD705A2"
  119.         </object> <!-- webbot bot="HTMLMarkup" endspan --> </body> </html>
  120.