home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Full / NetObjects Fusion 9 Standard / NOF9_Full_EN.exe / data1.cab / FSI / Ecomm / lib / NameSpace.js < prev   
Encoding:
Text File  |  2005-11-16  |  2.3 KB  |  64 lines

  1. function NOF_EComm_Products(){
  2.   this.__proto__ = NOF_EComm_Products;
  3.  
  4.   this.MainWindow            = NOF_Ecomm_ProductsEditor;
  5.   this.AttributesEditor      = NOF_Ecomm_Product_AttributesEditor;
  6.   this.DescriptionEditor     = NOF_Ecomm_Product_DescriptionEditor;
  7.   this.DetailImageEditor     = NOF_Ecomm_Product_DetailImageEditor;
  8.   this.ThumbnailImageEditor  = NOF_Ecomm_Product_ThumbnailImageEditor;
  9.   this.RelatedProductsEditor = NOF_Ecomm_Product_RelatedProductsEditor;
  10. }
  11.  
  12. function NOF_EComm_ListPage(){
  13.   this.__proto__ = NOF_EComm_ListPage;
  14.  
  15.   this.MainWindow            = NOF_Ecomm_ListPageEditor;
  16.   this.LayoutEditor          = NOF_Ecomm_ListPage_LayoutEditor;
  17.   this.DisplayItemsEditor    = NOF_Ecomm_ListPage_DisplayItemsEditor;
  18.   this.PurchaseOptionsEditor = NOF_Ecomm_ListPage_PurchaseOptionsEditor;
  19. }
  20.  
  21. function NOF_EComm_DetailPage(){
  22.   this.__proto__ = NOF_EComm_DetailPage;
  23.  
  24.   this.MainWindow            = NOF_Ecomm_DetailPageEditor;
  25.   this.LayoutEditor          = NOF_Ecomm_DetailPage_LayoutEditor;
  26.   this.DisplayItemsEditor    = NOF_Ecomm_DetailPage_DisplayItemsEditor;
  27.   this.PurchaseOptionsEditor = NOF_Ecomm_DetailPage_PurchaseOptionsEditor;
  28. }
  29.  
  30. function NOF_EComm_Store () {
  31.   this.AddStoreEngineDlg    = NOF_Ecomm_AddStoreEngineDlg;
  32.   this.ManageStoreEngineDlg = NOF_Ecomm_ManageStoreEngineDlg;
  33.   this.AdvancedStoreMgrDlg = NOF_Ecomm_AdvancedStoreMgrDlg;
  34.   this.ValidationMgr = NOF_Ecomm_ValidationMgr;
  35.   this.StoreEngine = NOF_Ecomm_StoreEngine;
  36.   this.StoreEnginesMgr = NOF_Ecomm_StoreEnginesMgr;
  37.   this.PublishManager = NOF_Ecomm_PublishManager;
  38.   this.Serializer   = NOF_Ecomm_Serializer;
  39.  
  40.   this.ServicesDlg = NOF_Ecomm_ServicesDlg;
  41.   
  42.   this.OK = 0;
  43.   this.SERVICE_ERROR = 1;
  44.   this.AUTH_ERROR = 2;
  45. }
  46.   
  47. function NOF_EComm(){
  48.   this.__proto__        = NOF_EComm;
  49.  
  50.   this.MainWindow       = NOF_Ecomm_MainWindow;
  51.   this.CatalogManagerWindow = NOF_Ecomm_CatalogManagerWindow;
  52.  
  53.   this.products         = new NOF_EComm_Products();
  54.   this.listpage         = new NOF_EComm_ListPage();
  55.   this.detailpage       = new NOF_EComm_DetailPage();
  56.   this.store            = new NOF_EComm_Store ();
  57.  
  58.   this.StoreEditor      = NOF_Ecomm_StoreEditor;
  59.   this.App              = NOF_Ecomm_App;
  60. }
  61.  
  62.   //debugger;
  63.   NOF.__proto__.ecomm = new NOF_EComm();
  64.