home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 235 / Issue 235 - September 2007 - DPCS0907DVD.ISO / Extras / NetObjects Fusion / NOF10.exe / data1.cab / FSI / lib / nof / xml / XML.js < prev    next >
Encoding:
Text File  |  2007-04-11  |  1.1 KB  |  50 lines

  1. /****i* SOURCE_FILE/INFO
  2.   *
  3.   * NAME
  4.   *  XML.js
  5.   *
  6.   * USAGE
  7.   *  Part of Netobjects JavaScript Library.
  8.   *
  9.   * COPYRIGHT
  10.   *  Copyright ⌐ 2000-2005 Website Pros, Inc.
  11.   *  All Rights Reserved.
  12.   *
  13.   *  This is an unpublished work protected by Website Pros, Inc.
  14.   *  as a trade secret, and is not to be used or disclosed except as
  15.   *  expressly provided in a written license agreement executed by
  16.   *  you and Website Pros, Inc.
  17.   *
  18.   *      <copyright@websitepros.com>
  19.   *
  20.   * NOTES
  21.   *  JavaScript code.
  22.   *
  23.   *****/
  24.  
  25. if (!IS.isModuleInitialized("IS.NOF.XML"))
  26. /****h* NOF_JavaScript_Library/NOF.XML
  27.     *
  28.     * NAME
  29.     *  NOF.XML
  30.     *
  31.     * DESCRIPTION
  32.     *   The NOF.XML namespace.
  33.     * Package design and implementation based on code found at: 
  34.     *    http://sarissa.sourceforge.net/ and
  35.     *    http://webfx.eae.net/ (xml extras)
  36.     *
  37.     ****/
  38.     function NOF_XML() {
  39.         this.__proto__ = NOF_XML.prototype;
  40.         this.type = IS.TYPE_NAMESPACE;            
  41.     }        
  42.     // add XML namespace to NOF namespace
  43.     NOF.__proto__.XML = new NOF_XML();
  44.  
  45. }
  46.  
  47. var XML = NOF.XML;
  48.     
  49.