1277. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/2/2018 11:57:12 AM Eastern Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

1277.1 Files compared

# Location File Last Modified
1 Tue Jan 2 16:57:12 2018 UTC
2 HTRE_P2.zip\src.zip\output\IHTA OLH Files.zip\hdi.zip cshdat_robohelp.htm Wed Feb 5 14:58:06 2014 UTC

1277.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 0 0
Changed 0 0
Inserted 1 261
Removed 0 0

1277.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

1277.4 Active regular expressions

No regular expressions were active.

1277.5 Comparison detail

        1   <html>
        2   <head>
        3   <meta http -equiv="Co ntent-Type " content= "text/html ; charset= utf-8" />
        4   <title>Inv entory Tra cker Help< /title>
        5  
        6   <meta name ="generato r" content ="Adobe Ro boHelp 10"  />
        7   <meta name ="descript ion" conte nt="WebHel p 5.50" />
        8   <script  s rc="whutil s.js" char set="utf-8 " charset= "utf-8"></ script>
        9   </head>
        10   <body>
        11   <script la nguage="Ja vaScript">
        12   <!--
        13  
        14   var gArray Csh = new  Array();
        15  
        16   var gstrWi ndowOption  = "";
        17   var gstrUR L = "";
        18   var gbWith NavPane =  false;
        19  
        20   function C shEntityIt em(strAlia sId, nTopi cNum, strU rl) 
        21   {
        22       this.s trAliasId  = strAlias Id;
        23       this.n TopicNum =  nTopicNum ;
        24       this.s trUrl = st rUrl;
        25   }
        26  
        27  
        28   //Try to g et to topi c number f rom hash s tring
        29   function G etTopicNum berAuto(st rMayBeNumb er)
        30   {
        31      var nNu m = -1;
        32      if (str MayBeNumbe r.length > = 1)
        33      {
        34                    var  strTmp = s trMayBeNum ber;
        35                    var  iEnd = str Tmp.length ;
        36                    for  (var i=0;  i<iEnd; i+ +)
        37                    {
        38                               var  ch = strTm p.charAt(i );
        39                               if ( !((ch == " 0") || (ch  == "1") | |
        40                                      (ch == " 2") || (ch  == "3") | |
        41                                      (ch == " 4") || (ch  == "5") | |
        42                                      (ch == " 6") || (ch  == "7") | |
        43                                      (ch == " 8") || (ch  == "9")))
        44                                    return Get TopicNumbe rById(strT mp);
        45                    }
        46                    nNum  = parseIn t(strTmp);
        47      }
        48      return  nNum;
        49   }
        50  
        51   function G etTopicNum ber(strHas hString)
        52   {
        53           va r nTopicEn dPos = str HashString .indexOf(' ,')
        54           if  (nTopicEn dPos == -1 ) { // no  window opt ion.
        55                    retu rn GetTopi cNumberOnl y(strHashS tring);
        56           }
        57           el se {
        58                    var  strWindowO ption = st rHashStrin g.substrin g(nTopicEn dPos + 1,  strHashStr ing.length );
        59                    var  strWithNav Pane = 'wi thnavpane= true';
        60                    if ( strWindowO ption.toLo werCase(). indexOf(st rWithNavPa ne) == 0)
        61                    {
        62                             if (st rWindowOpt ion.length  > strWith NavPane.le ngth)
        63                                      gstrWind owOption =  strWindow Option.sub string(str WithNavPan e.length +  1);
        64                             else
        65                                      gstrWind owOption =  "";
        66                             gbWith NavPane =  true;
        67                    }
        68                    else
        69                             gstrWi ndowOption  = strWind owOption;
        70                    retu rn GetTopi cNumberOnl y(strHashS tring.subs tring(0, n TopicEndPo s));             
        71           }
        72   }
        73  
        74   function G etTopicNum berOnly(st rTopicStri ng)
        75   {
        76           va r nEqualPo s = strTop icString.i ndexOf('=' );
        77           if  (nEqualPo s == -1) {
        78                    retu rn GetTopi cNumberAut o(strTopic String);
        79           }
        80           el se {
        81                    var  strValue=s trTopicStr ing.substr ing(nEqual Pos + 1, s trTopicStr ing.length );
        82                    if ( strTopicSt ring.toLow erCase().i ndexOf("to picnumber" ) == 0) {
        83                             return  parseInt( strValue);
        84                    } el se if (str TopicStrin g.toLowerC ase().inde xOf("conte xt") == 0)  {
        85                             return  GetTopicN umberById( strValue);
        86                    } el se if (str TopicStrin g.toLowerC ase().inde xOf("remot eurl") ==  0) {
        87                             if(IsI nternal(st rValue))
        88                                      gstrURL  = strValue ;
        89                             return  -1;
        90                    }
        91  
        92           }
        93   }
        94  
        95   //Find Hom ePage of t he WebHelp  system
        96   // we try  to get the  topic fro m remote p roject if  it exists.
        97   function R edirectToH omePage()
        98   {
        99           if  (parent & & parent ! = this &&  parent.goN ext)
        100           {
        101                    var  sHome = pa rent.goNex t();
        102                    if ( sHome != " ")
        103                             Redire ctTo(sHome );
        104           }
        105   }
        106  
        107   function g etHomePage ()
        108   {
        109           if  (parent & & parent ! = this &&  parent.get RelHomePag e)
        110           {
        111                    retu rn parent. getRelHome Page(docum ent.locati on.href);
        112           }
        113           re turn "";
        114   }
        115  
        116   function a ddRemotePr oject(strP ath)
        117   {
        118           if  (parent & & parent ! = this &&  parent.add Project)
        119           {
        120                    pare nt.addProj ect(strPat h);
        121           }
        122   }
        123  
        124   //Redirect  page to.. .
        125   function R edirectTo( strUrl)
        126   {
        127      if (gst rWindowOpt ion.length  != 0) {
        128                    var  wnd = wind ow.open(st rUrl, "Hel pStub", gs trWindowOp tion);
        129                    // c lose curre nt window  and rename  the stub  window to  current wi ndow.
        130                    if ( wnd)
        131                             wnd.fo cus();
        132                    if ( parent)
        133                             parent .close();
        134      }
        135      else {
        136           pa rent.docum ent.locati on.href =  strUrl;
        137           wi ndow.focus ();
        138     }
        139   }
        140  
        141   //Prompt t he user th at we can  not find.. .
        142   function F ailToFind( strMsg)
        143   {
        144       Redire ctToHomePa ge();
        145   }
        146  
        147   //Find top ic by topi c number ( defined in  h file)
        148   function F indTopicBy TopicNum(n TopicNum)
        149   {
        150           va r i = 0;
        151           va r iEnd = g ArrayCsh.l ength;
        152           fo r (i=0; i< iEnd; i++)
        153           {
        154                    if ( gArrayCsh[ i].nTopicN um == nTop icNum)
        155                    {
        156                             var st rURL = gAr rayCsh[i]. strUrl;
        157                             if (gb WithNavPan e)
        158                             {
        159                                      var strH omePage =  getHomePag e();
        160                                      if (strH omePage.le ngth != 0)
        161                                               strURL = s trHomePage  + strURL;
        162                             }        
        163                             Redire ctTo(strUR L);
        164                             return  true;
        165                    }
        166           }
        167           Fa ilToFind(" Fail to fi nd topic a ssocaite w ith topic  number: "  + nTopicNu m);
        168           re turn false ;
        169   }
        170  
        171   var oldPre fix = "Hel pIdFromHTM LHelp_"
        172   //Find top ic by topi c id (alia s id defin ed in ali  file)
        173   function G etTopicNum berById(st rTopicId)
        174   {
        175      if (str TopicId.in dexOf(oldP refix) ==  0)
        176      {
        177                    strT opicId = s trTopicId. substring( oldPrefix. length);
        178      }
        179  
        180      var i =  0;
        181      var iEn d = gArray Csh.length ;
        182      for (i= 0; i<iEnd;  i++)
        183      {
        184           if  (gArrayCs h[i].strAl iasId.toLo werCase()  == strTopi cId.toLowe rCase())
        185           {
        186                return g ArrayCsh[i ].nTopicNu m;
        187            }
        188      }
        189      gstrURL  = "";
        190      return  -1;
        191   }
        192  
        193   //Set Cont ext-sensit ive help e ntity...
        194   function S etCsh(n, s trAliasId,  nTopicNum , strUrl)
        195   {
        196      gArrayC sh[n] = ne w CshEntit yItem(strA liasId,nTo picNum,str Url);
        197   }
        198  
        199  
        200   function g etHash()
        201   {
        202           if  (parent & & parent ! = this)
        203                    retu rn parent. location.h ash;
        204           el se
        205                    retu rn "";
        206   }
        207   //-->
        208   </script>
        209   <script la nguage="ja vascript">
        210   <!--
        211  
        212  
        213   //-->
        214   </script>
        215   <script la nguage="ja vascript">
        216   <!--
        217   //Find CSH  according  to hash s tring afte r this pag e
        218   if (getHas h().length  > 0)
        219   {
        220      // VH 0 5/16/00 no w support 
        221      // Topi cID=
        222      // Topi cNumber=
        223      // Remo teURL=   
        224      // and  WindowsOpt ions
        225      // with  the forma t #a=xxx,b =xxx,c=xxx ...
        226      var str HashString  = getHash ().toStrin g();
        227      // chan ge ? to :  for remote  URL. beca use java a pplet have  some prob lem to pas s a URL wi th two : i nside the  URL so we  changed it
        228      // so h ere need t o change i t back.
        229      strHash String = s trHashStri ng.substri ng(1,strHa shString.l ength);
        230      strHash String = s trHashStri ng.replace ("%072%057 %057", ":/ /");
        231      var nTo picNum = G etTopicNum ber(strHas hString);
        232  
        233      if (nTo picNum !=  -1)
        234      {
        235         Find TopicByTop icNum(nTop icNum);
        236      }
        237      else
        238      {
        239         if ( gstrURL.le ngth > 0) 
        240           Re directTo(g strURL);
        241         else
        242           Re directToHo mePage();
        243      }
        244   }
        245   else
        246   {
        247      Redirec tToHomePag e();
        248   }
        249   //-->
        250   </script>
        251   <noscript>
        252    <p> Your  browser do es not sup port JavaS cript. Web Help Conte xt-Sensiti ve Help re quires Jav aScript su pport to r un.</p>
        253   </noscript >
        254   </body>
        255   </html>
        256  
        257  
        258  
        259  
        260  
        261