Home
last modified time | relevance | path

Searched refs:header (Results 1051 – 1075 of 1105) sorted by path

1...<<4142434445

/plugin/virtualkeyboard/vk/
H A Dlicense.txt252 When a "work that uses the Library" uses material from a header file
/plugin/visrep/
H A Dimg.php16 header('Content-Type: image/png;');
17 header('Expires: '.gmdate("D, d M Y H:i:s", time()+max($conf['cachetime'], 3600)).' GMT');
18header('Cache-Control: public, proxy-revalidate, no-transform, max-age='.max($conf['cachetime'], 3…
19 header('Pragma: public');
23 header("HTTP/1.0 404 Not Found");
24 header('Content-Type: image/png');
/plugin/vshare/syntax/
H A Ddebug.php57 $renderer->header('vshare sites', 1, 0);
60 $renderer->header($site, 2, 0);
/plugin/watchcycle/
H A Daction.php204 header('Content-Type: application/json');
237 header('Content-Type: application/json');
H A Dadmin.php75 foreach ($headers as $header) {
76 $lang = $this->getLang("h $header");
80 'sortby' => $header,
83 if ($INPUT->str('sortby') == $header) {
/plugin/webcode/_test/data/pages/
H A Dacross_section.txt1 ====== Webcode - Across header ======
4 A webcode may be used across several header in order to create a How to for instance.
/plugin/webcode/vendor/
H A Dfirebug-lite-1.2-compressed.js11header=new lib.element("DIV").attribute.addClass("Header").insert(el.main);el.left={};el.left.cont…
H A Dfirebug-lite-1.2.js127 el.header = new lib.element("DIV").attribute.addClass("Header").insert(el.main);
138 ….button.container = new lib.element("DIV").attribute.addClass("ButtonContainer").insert(el.header);
H A Dfirebug-lite-1.4.js3291 },header:function(elem){return/h\d/i.test(elem.nodeName)
5055 this.setRequestHeader=function(header,value){spy.requestHeaders.push({name:[header],value:[value]}); argument
5056 return xhrRequest.setRequestHeader(header,value)
5062 this.getResponseHeader=function(header){return xhrRequest.getResponseHeader(header) argument
/plugin/webcomponent/syntax/
H A Dcard.php36 private $header; variable in syntax_plugin_webcomponent_card
230 $this->header .= '<h' . $level . ' class="card-title">';
231 $this->header .= $renderer->_xmlEntities($title);
232 $this->header .= "</h$level>";
246 if ($this->header == "" and $this->text == "" and $this->image != ""){
265 if ($this->header != "") {
266 $renderer->doc .= DOKU_TAB . DOKU_TAB . $this->header . DOKU_LF;
278 $this->header = "";
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md76 `Content-Disposition` header. (@Xenopathic).
395 * Fully supporting the updated `Prefer` header syntax, as defined in
670 `Accept:` header, in CardDAV reports, and automatically converting from
869 * Fixed: #175. Returning ETag header upon a failed `If-Match` or
885 * Fixed: Issue #178. Support for multiple items in the Timeout header.
952 with the If-header was a responsibility of the Locking plugin.
1496 * Fixed: Issue 94: Sending back Last-Modified header for 304 responses.
1999 header-methods are called.
2050 * Fixed: Issue 34: Invalid Lock-Token header response.
2065 * Fixed: Issue 23: Comma's between methods in Allow header.
[all …]
/plugin/webdav/vendor/sabre/dav/lib/DAV/Browser/assets/openiconic/
H A Dopen-iconic.css300 .oi[data-glyph=header]:before { content:'\e075'; }
/plugin/webdav/vendor/sabre/dav/lib/DAV/Browser/assets/
H A Dsabredav.css83 header { selector
86 header a {
/plugin/webdav/vendor/sabre/dav/lib/DAV/Exception/
H A DPreconditionFailed.php28 public $header = null; variable in Sabre\\DAV\\Exception\\PreconditionFailed
34 * @param string $header
36 function __construct($message, $header = null) { argument
39 $this->header = $header;
63 if ($this->header) {
65 $prop->nodeValue = $this->header;
/plugin/webdav/vendor/sabre/dav/lib/DAV/Locks/
H A DPlugin.php370 $header = $this->server->httpRequest->getHeader('Timeout');
372 if ($header) {
374 if (stripos($header, 'second-') === 0) $header = (int)(substr($header, 7));
375 elseif (stripos($header, 'infinite') === 0) $header = LockInfo::TIMEOUT_INFINITE;
380 $header = 0;
384 return $header;
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DServer.php861 foreach ($propertyMap as $property => $header) {
865 $headers[$header] = $properties[$property];
869 $headers[$header] = HTTP\Util::toHTTPDate($properties[$property]->getTime());
1580 $header = $request->getHeader('If');
1581 if (!$header) return [];
1586 preg_match_all($regex, $header, $matches, PREG_SET_ORDER);
/plugin/webdav/vendor/sabre/http/
H A DCHANGELOG.md26 the `Content-Length` header. This allows users to pass much larger strings
28 * The client now sets a default `User-Agent` header identifying this library.
57 * Added a parser for the HTTP `Prefer` header, as defined in [RFC7240][rfc7240].
98 * Hiding `Authorization` header value from `Request::__toString`.
117 * `getHeaders()` now returns header values as an array, just like psr/http.
124 * Changed: Copied most of the header-semantics for the PSR draft for
126 * This means that `setHeaders()` does not wipe out every existing header
131 * If you use `getHeader()`, and there's more than 1 header with that name, we
133 * `addHeader()` will now preserve an existing header with that name, and add a
134 second header with the same name.
H A DREADME.md22 * `header()`.
308 // Removing the Host header.
517 * Returns a specific HTTP header, based on it's name.
521 * If the header does not exist, this method must return null.
529 * Updates a HTTP header.
561 * Removes a HTTP header.
565 * and false if the header did not exist.
662 * Returns a specific HTTP header, based on it's name.
674 * Updates a HTTP header.
706 * Removes a HTTP header.
[all …]
/plugin/webdav/vendor/sabre/http/lib/
H A DClient.php516 foreach ($headerBlob as $header) {
517 $parts = explode(':', $header, 2);
H A DSapi.php58header('HTTP/' . $response->getHttpVersion() . ' ' . $response->getStatus() . ' ' . $response->get…
63 header($key . ': ' . $v);
65 header($key . ': ' . $v, false);
176 $header = strtolower(substr($key, 5));
180 $header = ucwords(str_replace('_', ' ', $header));
183 $header = str_replace(' ', '-', $header);
184 $headers[$header] = $value;
/plugin/webdavclient/
H A Dhelper.php1130 foreach($headers as $header => $content)
1131 $this->client->headers[$header] = $content;
/plugin/wikipediasnippet/
H A Dall.css7 /* __________ snippet header __________ */
H A Dprint.css2 /* __________ snippet header __________ */
H A Dstyle.css7 /* __________ snippet header __________ */
/plugin/wysiwyg/
H A Dajax.php84 header('Content-Type: text/html; charset=utf-8');
85 header('Cache-Control: public, max-age=3600');
86 header('Pragma: public');

1...<<4142434445