WebWorks Help 5.0 - Topics do not update in IE with WWHelp API

This is a defect in the WebWorks Help 5.0 format as shipped with ePublisher versions 2008.2 and 2008.3.

To correct this problem, users should create overrides for the following WebWorks Help 5.0 files:

In both files, search for "function GetDelimitedArguments(ParamURL) " and replace it with:

  function GetDelimitedArguments(ParamURL)
  {
    var  Parts = [];
    var  Parameters;

    // Process URL parameters
    //
    if (ParamURL.indexOf("?") != -1)
    {
      Parts = ParamURL.split("?");
    }
    else if (ParamURL.indexOf("#") != -1)
    {
      Parts = ParamURL.split("#");
      Parameters = Parts.slice(1).join("#");
      Parts.length = 2;
      Parts[1] = Parameters;
    }

    return Parts;
  }

Regenerate your helpset and you work should be complete.


CategorySolutionsOutputWebWorksHelp CategorySolutionsOutputCsh

LaurenLever/@Solutions/Output/WebWorks Help 5.0/Topics do not update in IE with WWHelp API (last edited 2009-06-02 19:56:44 by LaurenLever)