You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@manifoldcf.apache.org by "James Cox (JIRA)" <ji...@apache.org> on 2015/02/12 17:09:11 UTC

[jira] [Created] (CONNECTORS-1163) Livelink Connector GUI doesnt let you add a path w/ poss fix

James Cox created CONNECTORS-1163:
-------------------------------------

             Summary: Livelink Connector GUI doesnt let you add a path w/ poss fix
                 Key: CONNECTORS-1163
                 URL: https://issues.apache.org/jira/browse/CONNECTORS-1163
             Project: ManifoldCF
          Issue Type: Bug
          Components: LiveLink connector
    Affects Versions: ManifoldCF 2.0.1
         Environment: Windows Server 2008R2
Tomcat 7.0.57
Java 1.8.0_25
Firefox, Chrome, IE
            Reporter: James Cox
            Priority: Minor


When trying to create a Livelink crawl job, paths tab, you pick a Livelink folder to add to the paths spec on the job. Clicking the + sign creates the path ok, but when you click the ADD button to add it to the crawl spec, browser just hangs forever.

Looks like the GUI code is pulling a wrong variable out of the form it was sent. Appears to need to pull s0_specpath rather than specpath.

Suggested simple fix  in \ManifoldCF2.0.1\connectors\livelink\connector\src\main\java\org\apache\manifoldcf\crawler\connectors\livelink\LivelinkConnector.java

3265c3267
<         String path = variableContext.getParameter("specpath");
---
>         String path = variableContext.getParameter(seqPrefix+"specpath");




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)