Author: kwright
Date: Thu Sep 12 12:13:33 2013
New Revision: 1522543
URL: http://svn.apache.org/r1522543
Log:
Templates and UI code for authority connector, except for view
Added:
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira.js
- copied, changed from r1521804,
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira_server.js
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira_proxy.html
(with props)
Removed:
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira_server.js
Modified:
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraAuthorityConnector.java
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraConfig.java
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/native2ascii/org/apache/manifoldcf/authorities/authorities/jira/common_en_US.properties
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/native2ascii/org/apache/manifoldcf/authorities/authorities/jira/common_ja_JP.properties
Modified:
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraAuthorityConnector.java
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraAuthorityConnector.java?rev=1522543&r1=1522542&r2=1522543&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraAuthorityConnector.java
(original)
+++
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraAuthorityConnector.java
Thu Sep 12 12:13:33 2013
@@ -53,16 +53,21 @@ public class JiraAuthorityConnector exte
// Configuration tabs
private static final String JIRA_SERVER_TAB_PROPERTY =
"JiraAuthorityConnector.Server";
+ private static final String JIRA_PROXY_TAB_PROPERTY =
"JiraAuthorityConnector.Proxy";
// Template names for configuration
/**
* Forward to the javascript to check the configuration parameters
*/
- private static final String EDIT_CONFIG_HEADER_FORWARD =
"editConfiguration_jira_server.js";
+ private static final String EDIT_CONFIG_HEADER_FORWARD =
"editConfiguration_jira.js";
/**
* Server tab template
*/
private static final String EDIT_CONFIG_FORWARD_SERVER =
"editConfiguration_jira_server.html";
+ /**
+ * Proxy tab template
+ */
+ private static final String EDIT_CONFIG_FORWARD_PROXY =
"editConfiguration_jira_proxy.html";
/**
* Forward to the HTML template to view the configuration parameters
@@ -252,6 +257,41 @@ public class JiraAuthorityConnector exte
}
/**
+ * Fill in a Proxy tab configuration parameter map for calling a Velocity
+ * template.
+ *
+ * @param newMap is the map to fill in
+ * @param parameters is the current set of configuration parameters
+ */
+ private static void fillInServerConfigurationMap(Map<String, Object> newMap,
IPasswordMapperActivity mapper, ConfigParams parameters) {
+ String jiraproxyhost =
parameters.getParameter(JiraConfig.JIRA_PROXYHOST_PARAM);
+ String jiraproxyport =
parameters.getParameter(JiraConfig.JIRA_PROXYPORT_PARAM);
+ String jiraproxydomain =
parameters.getParameter(JiraConfig.JIRA_PROXYDOMAIN_PARAM);
+ String jiraproxyusername =
parameters.getParameter(JiraConfig.JIRA_PROXYUSERNAME_PARAM);
+ String jiraproxypassword =
parameters.getObfuscatedParameter(JiraConfig.JIRA_PROXYPASSWORD_PARAM);
+
+ if (jiraproxyhost == null)
+ jiraproxyhost = JiraConfig.JIRA_PROXYHOST_DEFAULT;
+ if (jiraproxyport == null)
+ jiraproxyport = JiraConfig.JIRA_PROXYPORT_DEFAULT;
+
+ if (jiraproxydomain == null)
+ jiraproxydomain = JiraConfig.JIRA_PROXYDOMAIN_DEFAULT;
+ if (jiraproxyusername == null)
+ jiraproxyusername = JiraConfig.JIRA_PROXYUSERNAME_DEFAULT;
+ if (jiraproxypassword == null)
+ jiraproxypassword = JiraConfig.JIRA_PROXYPASSWORD_DEFAULT;
+ else
+ jiraproxypassword = mapper.mapPasswordToKey(jiraproxypassword);
+
+ newMap.put("JIRAPROXYHOST", jiraproxyhost);
+ newMap.put("JIRAPROXYPORT", jiraproxyport);
+ newMap.put("JIRAPROXYDOMAIN", jiraproxydomain);
+ newMap.put("JIRAPROXYUSERNAME", jiraproxyusername);
+ newMap.put("JIRAPROXYPASSWORD", jiraproxypassword);
+ }
+
+ /**
* View configuration. This method is called in the body section of the
* connector's view configuration page. Its purpose is to present the
* connection information to the user. The coder can presume that the HTML
@@ -294,12 +334,15 @@ public class JiraAuthorityConnector exte
throws ManifoldCFException, IOException {
// Add the Server tab
tabsArray.add(Messages.getString(locale, JIRA_SERVER_TAB_PROPERTY));
+ // Add the Proxy tab
+ tabsArray.add(Messages.getString(locale, JIRA_PROXY_TAB_PROPERTY));
// Map the parameters
Map<String, Object> paramMap = new HashMap<String, Object>();
// Fill in the parameters from each tab
fillInServerConfigurationMap(paramMap, out, parameters);
-
+ fillInProxyConfigurationMap(paramMap, out, parameters);
+
// Output the Javascript - only one Velocity template for all tabs
Messages.outputResourceWithVelocity(out,locale,EDIT_CONFIG_HEADER_FORWARD,paramMap);
}
@@ -315,10 +358,15 @@ public class JiraAuthorityConnector exte
// Set the tab name
paramMap.put("TabName", tabName);
- // Server tab
// Fill in the parameters
fillInServerConfigurationMap(paramMap, out, parameters);
+ fillInProxyConfigurationMap(paramMap, out, parameters);
+
+ // Server tab
Messages.outputResourceWithVelocity(out,locale,EDIT_CONFIG_FORWARD_SERVER,paramMap);
+ // Proxy tab
+
Messages.outputResourceWithVelocity(out,locale,EDIT_CONFIG_FORWARD_PROXY,paramMap);
+
}
/**
@@ -343,6 +391,8 @@ public class JiraAuthorityConnector exte
IPostParameters variableContext, ConfigParams parameters)
throws ManifoldCFException {
+ // Server tab parameters
+
String jiraprotocol = variableContext.getParameter("jiraprotocol");
if (jiraprotocol != null)
parameters.setParameter(JiraConfig.JIRA_PROTOCOL_PARAM, jiraprotocol);
@@ -367,6 +417,28 @@ public class JiraAuthorityConnector exte
if (clientsecret != null)
parameters.setObfuscatedParameter(JiraConfig.CLIENT_SECRET_PARAM,
variableContext.mapKeyToPassword(clientsecret));
+ // Proxy tab parameters
+
+ String jiraproxyhost = variableContext.getParameter("jiraproxyhost");
+ if (jiraproxyhost != null)
+ parameters.setParameter(JiraConfig.JIRA_PROXYHOST_PARAM, jiraproxyhost);
+
+ String jiraproxyport = variableContext.getParameter("jiraproxyport");
+ if (jiraproxyport != null)
+ parameters.setParameter(JiraConfig.JIRA_PROXYPORT_PARAM, jiraproxyport);
+
+ String jiraproxydomain = variableContext.getParameter("jiraproxydomain");
+ if (jiraproxydomain != null)
+ parameters.setParameter(JiraConfig.JIRA_PROXYDOMAIN_PARAM,
jiraproxydomain);
+
+ String jiraproxyusername =
variableContext.getParameter("jiraproxyusername");
+ if (jiraproxyusername != null)
+ parameters.setParameter(JiraConfig.JIRA_PROXYUSERNAME_PARAM,
jiraproxyusername);
+
+ String jiraproxypassword =
variableContext.getParameter("jiraproxypassword");
+ if (jiraproxypassword != null)
+ parameters.setObfuscatedParameter(JiraConfig.JIRA_PROXYPASSWORD_PARAM,
variableContext.mapKeyToPassword(jiraproxypassword));
+
return null;
}
Modified:
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraConfig.java
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraConfig.java?rev=1522543&r1=1522542&r2=1522543&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraConfig.java
(original)
+++
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraConfig.java
Thu Sep 12 12:13:33 2013
@@ -30,6 +30,12 @@ public class JiraConfig {
public static final String JIRA_PORT_PARAM = "jiraport";
public static final String JIRA_PATH_PARAM = "jirapath";
+ public static final String JIRA_PROXYHOST_PARAM = "jiraproxyhost";
+ public static final String JIRA_PROXYPORT_PARAM = "jiraproxyport";
+ public static final String JIRA_PROXYDOMAIN_PARAM = "jiraproxydomain";
+ public static final String JIRA_PROXYUSERNAME_PARAM = "jiraproxyusername";
+ public static final String JIRA_PROXYPASSWORD_PARAM = "jiraproxypassword";
+
public static final String CLIENT_ID_DEFAULT = "";
public static final String CLIENT_SECRET_DEFAULT = "";
public static final String JIRA_PROTOCOL_DEFAULT = "http";
@@ -37,4 +43,10 @@ public class JiraConfig {
public static final String JIRA_PORT_DEFAULT = "";
public static final String JIRA_PATH_DEFAULT = "/rest/api/2/";
+ public static final String JIRA_PROXYHOST_DEFAULT = "";
+ public static final String JIRA_PROXYPORT_DEFAULT = "";
+ public static final String JIRA_PROXYDOMAIN_DEFAULT = "";
+ public static final String JIRA_PROXYUSERNAME_DEFAULT = "";
+ public static final String JIRA_PROXYPASSWORD_DEFAULT = "";
+
}
Modified:
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/native2ascii/org/apache/manifoldcf/authorities/authorities/jira/common_en_US.properties
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/native2ascii/org/apache/manifoldcf/authorities/authorities/jira/common_en_US.properties?rev=1522543&r1=1522542&r2=1522543&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/native2ascii/org/apache/manifoldcf/authorities/authorities/jira/common_en_US.properties
(original)
+++
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/native2ascii/org/apache/manifoldcf/authorities/authorities/jira/common_en_US.properties
Thu Sep 12 12:13:33 2013
@@ -14,6 +14,7 @@
# limitations under the License.
JiraAuthorityConnector.Server=Server
+JiraAuthorityConnector.Proxy=Proxy
JiraAuthorityConnector.JiraProtocolColon=JIRA protocol:
JiraAuthorityConnector.JiraHostColon=JIRA host:
@@ -21,9 +22,19 @@ JiraAuthorityConnector.JiraPortColon=JIR
JiraAuthorityConnector.JiraRESTAPIPathColon=JIRA REST API path:
JiraAuthorityConnector.ClientIDColon=Client ID (Optional):
JiraAuthorityConnector.ClientSecretColon=Client Secret (Optional):
+
+JiraAuthorityConnector.JiraProxyHostColon=Proxy host:
+JiraAuthorityConnector.JiraProxyPortColon=Proxy port:
+JiraAuthorityConnector.JiraProxyDomainColon=Proxy authentication domain:
+JiraAuthorityConnector.JiraProxyUsernameColon=Proxy authentication user name:
+JiraAuthorityConnector.JiraProxyPasswordColon=Proxy authentication password:
+
JiraAuthorityConnector.JiraHostMustNotBeNull=JIRA host must not be null
JiraAuthorityConnector.JiraHostMustNotIncludeSlash=JIRA host must not include
a '/' character
JiraAuthorityConnector.JiraPortMustBeAnInteger=JIRA port must be an integer
JiraAuthorityConnector.JiraPathMustNotBeNull=JIRA path must not be null
JiraAuthorityConnector.JiraPathMustBeginWithASlash=JIRA path must begin with a
'/' character
+JiraAuthorityConnector.JiraProxyPortMustBeAnInteger=Proxy port must be an
integer
+JiraAuthorityConnector.JiraProxyHostMustNotIncludeSlash=Proxy host cannot
include a '/' character
+
Modified:
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/native2ascii/org/apache/manifoldcf/authorities/authorities/jira/common_ja_JP.properties
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/native2ascii/org/apache/manifoldcf/authorities/authorities/jira/common_ja_JP.properties?rev=1522543&r1=1522542&r2=1522543&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/native2ascii/org/apache/manifoldcf/authorities/authorities/jira/common_ja_JP.properties
(original)
+++
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/native2ascii/org/apache/manifoldcf/authorities/authorities/jira/common_ja_JP.properties
Thu Sep 12 12:13:33 2013
@@ -14,6 +14,7 @@
# limitations under the License.
JiraAuthorityConnector.Server=Server
+JiraAuthorityConnector.Proxy=Proxy
JiraAuthorityConnector.JiraProtocolColon=JIRA protocol:
JiraAuthorityConnector.JiraHostColon=JIRA host:
@@ -21,8 +22,18 @@ JiraAuthorityConnector.JiraPortColon=JIR
JiraAuthorityConnector.JiraRESTAPIPathColon=JIRA REST API path:
JiraAuthorityConnector.ClientIDColon=Client ID (Optional):
JiraAuthorityConnector.ClientSecretColon=Client Secret (Optional):
+
+JiraAuthorityConnector.JiraProxyHostColon=Proxy host:
+JiraAuthorityConnector.JiraProxyPortColon=Proxy port:
+JiraAuthorityConnector.JiraProxyDomainColon=Proxy authentication domain:
+JiraAuthorityConnector.JiraProxyUsernameColon=Proxy authentication user name:
+JiraAuthorityConnector.JiraProxyPasswordColon=Proxy authentication password:
+
JiraAuthorityConnector.JiraHostMustNotBeNull=JIRA host must not be null
JiraAuthorityConnector.JiraHostMustNotIncludeSlash=JIRA host must not include
a '/' character
JiraAuthorityConnector.JiraPortMustBeAnInteger=JIRA port must be an integer
JiraAuthorityConnector.JiraPathMustNotBeNull=JIRA path must not be null
JiraAuthorityConnector.JiraPathMustBeginWithASlash=JIRA path must begin with a
'/' character
+
+JiraAuthorityConnector.JiraProxyPortMustBeAnInteger=Proxy port must be an
integer
+JiraAuthorityConnector.JiraProxyHostMustNotIncludeSlash=Proxy host cannot
include a '/' character
Copied:
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira.js
(from r1521804,
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira_server.js)
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira.js?p2=manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira.js&p1=manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira_server.js&r1=1521804&r2=1522543&rev=1522543&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira_server.js
(original)
+++
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira.js
Thu Sep 12 12:13:33 2013
@@ -40,6 +40,20 @@ function checkConfig()
return false;
}
+ if (editconnection.jiraproxyport.value != "" &&
!isInteger(editconnection.jiraproxyport.value))
+ {
+
alert("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraAuthorityConnector.JiraProxyPortMustBeAnInteger'))");
+ editconnection.jiraproxyport.focus();
+ return false;
+ }
+
+ if (editconnection.jiraproxyhost.value != "" &&
editconnection.jiraproxyhost.value.indexOf("/") != -1)
+ {
+
alert("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraAuthorityConnector.JiraProxyHostMustNotIncludeSlash'))");
+ editconnection.jiraproxyhost.focus();
+ return false;
+ }
+
return true;
}
@@ -86,6 +100,22 @@ function checkConfigForSave()
return false;
}
+ if (editconnection.jiraproxyhost.value != "" &&
editconnection.jiraproxyhost.value.indexOf("/") != -1)
+ {
+
alert("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraAuthorityConnector.JiraProxyHostMustNotIncludeSlash'))");
+
SelectTab("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraAuthorityConnector.Proxy'))");
+ editconnection.jirahost.focus();
+ return false;
+ }
+
+ if (editconnection.jiraproxyport.value != "" &&
!isInteger(editconnection.jiraproxyport.value))
+ {
+
alert("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraAuthorityConnector.JiraProxyPortMustBeAnInteger'))");
+
SelectTab("$Encoder.bodyJavascriptEscape($ResourceBundle.getString('JiraAuthorityConnector.Proxy'))");
+ editconnection.jiraport.focus();
+ return false;
+ }
+
return true;
}
//-->
Added:
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira_proxy.html
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira_proxy.html?rev=1522543&view=auto
==============================================================================
---
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira_proxy.html
(added)
+++
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira_proxy.html
Thu Sep 12 12:13:33 2013
@@ -0,0 +1,78 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+#if($TabName == $ResourceBundle.getString('JiraAuthorityConnector.Proxy'))
+
+<table class="displaytable">
+ <tr><td class="separator" colspan="2"><hr/></td></tr>
+
+ <tr>
+ <td class="description">
+
<nobr>$Encoder.bodyEscape($ResourceBundle.getString('JiraAuthorityConnector.JiraProxyHostColon'))</nobr>
+ </td>
+ <td class="value">
+ <input size="32" type="text" id="jiraproxyhost" name="jiraproxyhost"
value="$Encoder.attributeEscape($JIRAPROXYHOST)" />
+ </td>
+ </tr>
+
+ <tr>
+ <td class="description">
+
<nobr>$Encoder.bodyEscape($ResourceBundle.getString('JiraAuthorityConnector.JiraProxyPortColon'))</nobr>
+ </td>
+ <td class="value">
+ <input size="5" type="text" id="jiraproxyport" name="jiraproxyport"
value="$Encoder.attributeEscape($JIRAPROXYPORT)" />
+ </td>
+ </tr>
+
+ <tr><td class="separator" colspan="2"><hr/></td></tr>
+
+ <tr>
+ <td class="description">
+
<nobr>$Encoder.bodyEscape($ResourceBundle.getString('JiraAuthorityConnector.JiraProxyDomainColon'))</nobr>
+ </td>
+ <td class="value">
+ <input size="32" type="text" id="jiraproxydomain" name="jiraproxydomain"
value="$Encoder.attributeEscape($JIRAPROXYDOMAIN)" />
+ </td>
+ </tr>
+
+ <tr>
+ <td class="description">
+
<nobr>$Encoder.bodyEscape($ResourceBundle.getString('JiraAuthorityConnector.JiraProxyUsernameColon'))</nobr>
+ </td>
+ <td class="value">
+ <input size="16" type="text" id="jiraproxyusername"
name="jiraproxyusername" value="$Encoder.attributeEscape($JIRAPROXYUSERNAME)" />
+ </td>
+ </tr>
+ <tr>
+ <td class="description">
+
<nobr>$Encoder.bodyEscape($ResourceBundle.getString('JiraAuthorityConnector.JiraProxyPasswordColon'))</nobr>
+ </td>
+ <td class="value">
+ <input size="16" type="password" id="jiraproxypassword"
name="jiraproxypassword" value="$Encoder.attributeEscape($JIRAPROXYPASSWORD)" />
+ </td>
+ </tr>
+</table>
+
+#else
+
+<input type="hidden" name="jiraproxyhost"
value="$Encoder.attributeEscape($JIRAPROXYHOST)" />
+<input type="hidden" name="jiraproxyport"
value="$Encoder.attributeEscape($JIRAPROXYPORT)" />
+<input type="hidden" name="jiraproxydomain"
value="$Encoder.attributeEscape($JIRAPROXYDOMAIN)" />
+<input type="hidden" name="jiraproxyusername"
value="$Encoder.attributeEscape($JIRAPROXYUSERNAME)" />
+<input type="hidden" name="jiraproxypassword"
value="$Encoder.attributeEscape($JIRAPROXYPASSWORD)" />
+
+#end
Propchange:
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira_proxy.html
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
manifoldcf/branches/CONNECTORS-773/connectors/jira/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/jira/editConfiguration_jira_proxy.html
------------------------------------------------------------------------------
svn:keywords = Id