home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / editor / calendarSmartWidgetOverlay.js < prev    next >
Encoding:
JavaScript  |  2004-01-14  |  4.7 KB  |  152 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Mozilla.org.
  15.  *
  16.  * The Initial Developer of the Original Code is Daniel Glazman.
  17.  * Portions created by the Initial Developer are Copyright (C) 2003
  18.  * the Initial Developer. All Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  *
  22.  * Alternatively, the contents of this file may be used under the terms of
  23.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  24.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  25.  * in which case the provisions of the GPL or the LGPL are applicable instead
  26.  * of those above. If you wish to allow use of your version of this file only
  27.  * under the terms of either the GPL or the LGPL, and not to allow others to
  28.  * use your version of this file under the terms of the MPL, indicate your
  29.  * decision by deleting the provisions above and replace them with the notice
  30.  * and other provisions required by the GPL or the LGPL. If you do not delete
  31.  * the provisions above, a recipient may use your version of this file under
  32.  * the terms of any one of the MPL, the GPL or the LGPL.
  33.  *
  34.  * ***** END LICENSE BLOCK ***** */
  35.  
  36. // this function contains all the script to be copied into the document
  37. function innerCalendarCode()
  38. {
  39.   function montharr(m0, m1, m2, m3, m4, m5, m6, m7, m8, m9, m10, m11)
  40.   {
  41.      this[0] = m0;
  42.      this[1] = m1;
  43.      this[2] = m2;
  44.      this[3] = m3;
  45.      this[4] = m4;
  46.      this[5] = m5;
  47.      this[6] = m6;
  48.      this[7] = m7;
  49.      this[8] = m8;
  50.      this[9] = m9;
  51.      this[10] = m10;
  52.      this[11] = m11;
  53.   }
  54.  
  55.   function calendar()
  56.   {
  57.      var monthNames = "JanFebMarAprMayJunJulAugSepOctNovDec";
  58.      var today = new Date();
  59.      var thisDay;
  60.      var monthDays = new montharr(31, 28, 31, 30, 31, 30, 31, 31, 30,
  61.         31, 30, 31);
  62.      
  63.      year = today.getYear();
  64.      if (year <= 200)
  65.          year += 1900;
  66.      thisDay = today.getDate();
  67.      
  68.  
  69.      if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0))
  70.         monthDays[1] = 29;
  71.  
  72.  
  73.      nDays = monthDays[today.getMonth()];
  74.  
  75.  
  76.      firstDay = today;
  77.      firstDay.setDate(1); // works fine for most systems
  78.      testMe = firstDay.getDate();
  79.      if (testMe == 2)
  80.           firstDay.setDate(0);    
  81.  
  82.      startDay = firstDay.getDay();
  83.        
  84.      document.writeln("<CENTER>");
  85.      document.write("<TABLE BORDER='1' BGCOLOR=White>");
  86.      document.write("<TR><TH COLSPAN=7>");
  87.      document.write(monthNames.substring(today.getMonth() * 3,
  88.         (today.getMonth() + 1) * 3));
  89.      document.write(". ");
  90.      document.write(year);
  91.     
  92.      document.write("<TR><TH>Sun<TH>Mon<TH>Tue<TH>Wed<TH>Thu<TH>Fri<TH>Sat");
  93.  
  94.  
  95.      document.write("<TR>");
  96.      column = 0;
  97.      for (i=0; i<startDay; i++)
  98.      {
  99.         document.write("<TD>");
  100.         column++;
  101.      }
  102.  
  103.      for (i=1; i<=nDays; i++)
  104.      {
  105.         document.write("<TD>");
  106.         if (i == thisDay)
  107.            document.write("<FONT COLOR=\"#FF0000\">")
  108.         document.write(i);
  109.         if (i == thisDay)
  110.           document.write("</FONT>")
  111.         column++;
  112.         if (column == 7)
  113.         {
  114.            document.write("<TR>"); 
  115.            column = 0;
  116.         }
  117.      }
  118.      document.write("</TABLE>");
  119.      document.writeln("</CENTER>");
  120.   }
  121.  
  122.   calendar();
  123. }
  124.  
  125.  
  126. function addCalendarSmartWidget()
  127. {
  128.   var bodyElt = GetBodyElement();
  129.   var doc = GetCurrentEditor().document;
  130.  
  131.   var enclosingDiv     = doc.createElement("div");
  132.  
  133.   var innerScript      = doc.createElement("script");
  134.   var innerScriptCdata = doc.createTextNode(innerCalendarCode.toString() +
  135.                                             "\n\n  innerCalendarCode();");
  136.   innerScript.appendChild(innerScriptCdata);
  137.  
  138.   var noScript            = doc.createElement("noscript");
  139.   var innerNoScriptImage  = doc.createElement("img");
  140.   innerNoScriptImage.setAttribute("src", "chrome://editor/content/images/calendarSW.gif");
  141.   noScript.appendChild(innerNoScriptImage);
  142.  
  143.   enclosingDiv.appendChild(noScript);
  144.   enclosingDiv.appendChild(innerScript);
  145.  
  146.   bodyElt.appendChild(enclosingDiv);
  147.   enclosingDiv.setAttribute("style",
  148.                             "position: absolute;" +
  149.                             "top: " + (window.scrollX + 50) + "px;" +
  150.                             "left: " + (window.scrollY + 50) + "px;");
  151. }
  152.