/plugin/webdavclient/ |
H A D | helper.php | 78 if($conn === false) 80 $conn = array_merge($conn, $this->getCredentials($connectionId)); 105 if($conn === false) 107 $conn = array_merge($conn, $this->getCredentials($connectionId)); 136 $conn = array_merge($conn, $this->getCredentials($connectionId)); 285 $conn = array_merge($conn, $this->getCredentials($connectionId)); 313 $conn = array_merge($conn, $this->getCredentials($connectionId)); 342 $conn = array_merge($conn, $this->getCredentials($connectionId)); 561 $conn = array(); 791 $conn = array_merge($conn, $this->getCredentials($connectionId)); [all …]
|
H A D | admin.php | 227 foreach($connections as $conn) 230 ptln(' <td>'.hsc($conn['id']). 231 … '</td><td><input type="text" name="moddn['.$conn['id'].']" value="'.$conn['displayname'].'">'. 232 …</td><td><input type="text" size="5" name="modsyncinterval['.$conn['id'].']" value="'.$conn['synci… 233 '</td><td><select name="modactive['.$conn['id'].']">'. 239 '</td><td><select name="modwrite['.$conn['id'].']"'. 240 (($conn['type'] === 'icsfeed') ? ' disabled' : '').'>'. 241 '<option value="1" '. (($conn['write']) ? 'selected="selected"' : '').'>'. 243 '<option value="0" '. (($conn['write']) ? '' : 'selected="selected"').'>'. 246 … '</td><td><input type="text" name="modperm['.$conn['id'].']" value="'.$conn['permission'].'">'. [all …]
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/ |
H A D | Http.php | 52 $conn = $this->_getConnection($connection->isPersistent()); 78 \curl_setopt($conn, \CURLOPT_URL, $baseUri); 79 \curl_setopt($conn, \CURLOPT_TIMEOUT_MS, $connection->getTimeout() * 1000); 80 \curl_setopt($conn, \CURLOPT_FORBID_REUSE, 0); 85 \curl_setopt($conn, \CURLOPT_ENCODING, ''); 93 \curl_setopt($conn, \CURLOPT_CONNECTTIMEOUT_MS, $connectTimeoutMs); 97 \curl_setopt($conn, \CURLOPT_PROXY, $proxy); 103 \curl_setopt($conn, \CURLOPT_HTTPAUTH, $this->_getAuthType()); 104 \curl_setopt($conn, \CURLOPT_USERPWD, "{$username}:{$password}"); 107 $this->_setupCurl($conn); [all...] |
H A D | AwsAuthV4.php | 106 private function isSslRequired(Connection $conn, bool $default = false): bool argument 108 return $conn->hasParam('ssl') 109 ? (bool) $conn->getParam('ssl')
|
/plugin/jdraw/lib/ |
H A D | httpclient-4.0.1.jar | ... http/conn/
org/apache/http/conn/ssl/
org/apache/http/conn ... |
H A D | httpcore-4.0.1.jar | ... address
int port
org.apache.http.HttpConnection conn
org.apache.http.HttpHost targethost
org. ... |
/plugin/jcapture/lib/ |
H A D | httpclient-4.0.1.jar | ... http/conn/
org/apache/http/conn/ssl/
org/apache/http/conn ... |
H A D | httpcore-4.0.1.jar | ... address
int port
org.apache.http.HttpConnection conn
org.apache.http.HttpHost targethost
org. ... |
/plugin/diagramsnet/lib/WEB-INF/lib/ |
H A D | httpclient-4.5.5.jar | ... client/entity/
org/apache/http/conn/
org/apache/http/conn/routing ... |
H A D | httpcore-4.4.9.jar | META-INF/MANIFEST.MF
META-INF/
org/
org/apache/
org/ ... |
H A D | jstl-1.2.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/LICENSE.txt
javax ... |
/plugin/gemini/ |
H A D | cli.php | 107 $conn = stream_socket_accept($socket, -1, $peername); 108 if ($conn === false) throw new \splitbrain\phpcli\Exception('socket failed'); 123 $this->handleGeminiConnection($pid, $conn, $peername); 131 * @param resource $conn The connected socket 135 protected function handleGeminiConnection($pid, $conn, $peername) argument 139 fclose($conn); 147 $req = stream_get_line($conn, 1024, "\n"); 186 fputs($conn, $response); 188 fputs($conn, $body); 190 fflush($conn); [all …]
|
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/py/ |
H A D | wsgi.py | 39 conn = FCKeditorConnector(environ) 41 conn = FCKeditorQuickUpload(environ) 49 data = conn.doResponse() 51 start_response ("200 Ok", conn.headers)
|
H A D | upload.py | 77 conn = FCKeditorQuickUpload() 78 data = conn.doResponse() 79 for header in conn.headers:
|
H A D | connector.py | 108 conn = FCKeditorConnector() 109 data = conn.doResponse() 110 for header in conn.headers:
|
/plugin/swiftmail/Swift/Authenticator/ |
H A D | @PopB4Smtp.php | 30 public function __construct($conn=null, $port=110, $encryption=0) argument 32 if (is_object($conn)) $this->connection = $conn; 36 … $this->connection = new Swift_Authenticator_PopB4Smtp_Pop3Connection($conn, $port, $encryption);
|
/plugin/swiftmail/Swift/Connection/ |
H A D | Multi.php | 38 foreach ($connections as $id => $conn) 92 foreach ($this->connections as $id => $conn)
|
H A D | Rotator.php | 43 foreach ($connections as $id => $conn) 142 foreach ($this->connections as $id => $conn)
|
/plugin/gil/ |
H A D | syntax.php | 52 $conn = @file_get_contents ($this->_request_uri(), 0, 0, 0, 128); 53 if ($conn===false) msg('Gil Plugin: '. $this->getLang('e_nodatasrc'). '.',-1);
|
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/ |
H A D | DoctrineDriverTest.php | 134 $conn = [ 139 return EntityManager::create($conn, $config);
|
/plugin/swiftmail/ |
H A D | Swift.php | 81 public function __construct(Swift_Connection $conn, $domain=false, $options=null) argument 96 $this->connection = $conn; 98 if ($conn && !$this->hasOption(self::NO_START))
|
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/ |
H A D | EditorActions.java | 58 import org.apache.http.impl.conn.ProxySelectorRoutePlanner; 1351 URLConnection conn = requestURL.openConnection(); in actionPerformed() local 1352 conn.setRequestProperty("Cookie", editor.getConfig().getCookies()); in actionPerformed() 1353 conn.setRequestProperty("Pragma", "No-cache"); in actionPerformed() 1355 InputStream is = conn.getInputStream(); in actionPerformed()
|
H A D | EditorActions.java.bak | 58 import org.apache.http.impl.conn.ProxySelectorRoutePlanner; 1351 URLConnection conn = requestURL.openConnection(); 1352 conn.setRequestProperty("Cookie", editor.getConfig().getCookies()); 1353 conn.setRequestProperty("Pragma", "No-cache"); 1355 InputStream is = conn.getInputStream();
|
/plugin/jcapture/src/com/hammurapi/jcapture/ |
H A D | AbstractCaptureApplet.java | 33 import org.apache.http.impl.conn.ProxySelectorRoutePlanner;
|
/plugin/davcal/ |
H A D | helper.php | 1014 $conn = $wdc->getConnection($connectionId); 1015 $calname = $conn['displayname'];
|