globaldata.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // Licensed Materials - Property of IBM
  2. //
  3. // IBM Cognos Products: pps
  4. //
  5. // (C) Copyright IBM Corp. 2005, 2017
  6. //
  7. // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  8. var globalsLoaded = false;
  9. var nn7 = /netscape.*7\./i.test(navigator.userAgent) || /gecko/i.test(navigator.userAgent);
  10. var MacGecko = /gecko/i.test(navigator.userAgent) && /Mac OS/i.test(navigator.userAgent);
  11. var safari = /Safari/i.test(navigator.appName) && /MacPPC/i.test(navigator.platform);
  12. var serverMode = 1;
  13. var getChildrenMethod = "GET";
  14. var ppSkin;
  15. var imgPath;
  16. var virtualDirRoot;
  17. var sharedImgPath = "../ppwb/Icon/";
  18. var toolbarMenuIconPath;
  19. var iconPath;
  20. var helpurl;
  21. // Separator used to separate ppdsIds and codes
  22. // Using the ASCII record separator to avoid any collision with user data
  23. var codeSeparator = '\x1E';
  24. var renderAs = new Array();
  25. var main_ContextMenu = new Array();
  26. var gIconState = new Array();
  27. var gMenuState = new Array();
  28. var treeVisible = true;
  29. var parentTopframeCols = "192,*";
  30. var gLoadingText;
  31. var gMoreText;
  32. var webfxMenuUseHover = true;
  33. var menuImagePath = "";
  34. //This is set when user is editing a calculation. In which case, the calculation dialog is populated a bit differently.
  35. //-1 unknown, 0 insert, 1 edit, 2 rename, 3 delete
  36. var editingCalc = -1;
  37. var editingRank = -1;
  38. var gDimensionInfo = new Array();
  39. var dbg=0;
  40. var jsDebugAppendOutput;
  41. var jsDebugFontSize;
  42. var dimbar_first_item = 1;
  43. var dimbar_wrap = false;
  44. var dndManager = new dragAndDropManager();
  45. var dimCache = new dimensionCache();
  46. var dimTreeToolbarOpen = false;
  47. var chartOptionsTab = 1;
  48. var displayDataOnly;
  49. var isSplitView;
  50. var isChart;
  51. // for BUX
  52. var is_dashboard;
  53. var initial_open = true;
  54. var is_save;
  55. var no_auto_resize;
  56. var bux_report_name;
  57. var BUXToolbar;
  58. var PPESTopTarget;
  59. globalsLoaded = true;