Author: kwright
Date: Tue Jun 3 11:19:05 2014
New Revision: 1599476
URL: http://svn.apache.org/r1599476
Log:
More debugging
Modified:
manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/editjob.jsp
Modified:
manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/editjob.jsp
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/editjob.jsp?rev=1599476&r1=1599475&r2=1599476&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/editjob.jsp
(original)
+++
manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/editjob.jsp
Tue Jun 3 11:19:05 2014
@@ -224,7 +224,7 @@
if (outputConnection != null)
{
- IOutputConnector outputConnector =
OutputConnectorFactory.getConnectorNoCheck(outputConnection.getName());
+ IOutputConnector outputConnector =
OutputConnectorFactory.getConnectorNoCheck(outputConnection.getClassName());
if (outputConnector != null)
{
outputCheckMethod =
outputConnector.getFormCheckJavascriptMethodName(1+transformationNames.length);
@@ -236,7 +236,7 @@
for (int j = 0; j < transformationConnections.length; j++)
{
- ITransformationConnector transformationConnector =
TransformationConnectorFactory.getConnectorNoCheck(transformationConnections[j].getName());
+ ITransformationConnector transformationConnector =
TransformationConnectorFactory.getConnectorNoCheck(transformationConnections[j].getClassName());
if (transformationConnector != null)
{
transformationCheckMethods[j] =
transformationConnector.getFormCheckJavascriptMethodName(1+j);