Home
last modified time | relevance | path

Searched refs:http (Results 26 – 50 of 3327) sorted by relevance

12345678910>>...134

/plugin/icalevents/vendor/sabre/uri/tests/
H A DResolveTest.php25 'http://example.org/bar',
50 'http://example.org/foo/bar',
56 'http://example.org/foo/bar/',
62 'http://example.org/foo/bar/',
86 'http://example.org/path.json',
91 'http://www.example.com',
/plugin/jplayer/vendor/james-heinrich/getid3/
H A Dreadme.txt362 http://ff123.net/identify.html
539 * http://www.id3.org/id3v2-00.txt
558 * http://www.wotsit.org/
564 * http://www.replaygain.org/
565 * http://www.lossless-audio.com/
569 * http://jfaul.de/atl/
581 * http://www.nullsoft.com/nsv/
588 * http://ghido.shelter.ro/
592 * http://cartchunk.org:8080/
600 * http://j-faul.virtualave.net/
[all …]
/plugin/sfauth/
H A Dhelper.php144 $http->timeout = 30;
146 $http->headers['Accept'] = 'application/json';
147 $http->headers['X-PrettyPrint'] = '1';
158 $http->sendRequest($url, $data, $method);
159 if(!$http->resp_body) {
163 $resp = $json->decode($http->resp_body);
174 if($http->status < 200 || $http->status > 399) {
231 $http = new DokuHTTPClient();
232 $http->headers['Accept'] = 'application/json';
261 $http = new DokuHTTPClient();
[all …]
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Dmd1_auto_links.md1 Link: <http://example.com/>.
3 With an ampersand: <http://example.com/?foo=1&bar=2>
6 * <http://example.com/>
9 > Blockquoted: <http://example.com/>
11 Auto-links should not occur here: `<http://example.com/>`
13 or here: <http://example.com/>
H A Dlinks.md1 Go search on <http://google.com>!
3 link should be url decoded: <http://en.wikipedia.org/wiki/Mase_%28disambiguation%29>
7 About port info on wiki: [port](http://en.wikipedia.org/wiki/Port_(computer_networking))
9 About port info on wiki: [port](http://en.wikipedia.org/wiki/Port_(computer_networking) "port wiki")
21 A [link [in a link](http://example.com)](http://example.com)
23 About port info on wiki: [port]( http://en.wikipedia.org/wiki/Port_(computer_networking) )
25 About port info on wiki: [port]( http://en.wikipedia.org/wiki/Port_(computer_networking) "port wi…
/plugin/jplayer/vendor/happyworm/jplayer/
H A DREADME.md1 # [jPlayer](http://jplayer.org/) : HTML5 Audio & Video for [jQuery](http://jquery.com/)
3 Support for [Zepto](http://zeptojs.com/) 1.0+ compiled with the data module.
14 * control media on your website using a [JavaScript API](http://www.jplayer.org/latest/developer-gu…
24 * see <http://bower.io/> for more information.
49 [jPlayer](http://jplayer.org/) is licensed under the [MIT license](http://opensource.org/licenses/M…
52 * [jPlayer.org](http://jplayer.org/)
53 * [Quick Start Guide](http://www.jplayer.org/latest/quick-start-guide/)
54 * [Developer Guide and API Reference](http://www.jplayer.org/latest/developer-guide/)
57 Mark J Panaghiston [@thepag](http://twitter.com/thepag)
58 [happyworm.com](http://happyworm.com/)
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Dintl.rst136 .. _`strtotime`: http://php.net/strtotime
137 .. _`DateTime`: http://php.net/DateTime
138 .. _`Unix timestamps`: http://en.wikipedia.org/wiki/Unix_time
139 .. _`IntlDateFormatter::create()`: http://php.net/manual/en/intldateformatter.create.php
140 .. _`IntlDateFormatter::NONE`: http://php.net/manual/en/class.intldateformatter.php#intldate…
145 .. _`IntlDateFormatter::GREGORIAN`: http://php.net/IntlDateFormatter#intldateformatter.constants.…
146 .. _`IntlDateFormatter::TRADITIONAL`: http://php.net/IntlDateFormatter#intldateformatter.constants.…
147 .. _`ICU user guide`: http://userguide.icu-project.org/formatparse/datetime
148 .. _`NumberFormatter::create()`: http://php.net/manual/en/numberformatter.create.php
149 .. _`NumberFormatter::DECIMAL`: http://php.net/manual/en/class.numberformatter.php#numberform…
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DJSON.php15 * @see http://php.net/manual/en/function.json-decode.php
16 * @see http://php.net/manual/en/function.json-last-error.php
46 * @see http://php.net/manual/en/function.json-encode.php
47 * @see http://php.net/manual/en/function.json-last-error.php
75 * @see http://php.net/manual/en/function.json-last-error.php
76 * @see http://php.net/manual/en/function.json-last-error-msg.php
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/yml/
H A DSimpleClassObject.yml3 foo: http://foo.example.org
4 old_foo: http://old.foo.example.org
5 new_foo: http://new.foo.example.org
11 namespace: http://old.foo.example.org
15 namespace: http://foo.example.org
19 namespace: http://new.foo.example.org
H A DBlogPost.yml4 "": http://example.com/namespace
5 gd: http://schemas.google.com/g/2005
6 atom: http://www.w3.org/2005/Atom
7 dc: http://purl.org/dc/elements/1.1/
18 namespace: http://purl.org/dc/elements/1.1/
32 namespace: http://schemas.google.com/g/2005
43 namespace: http://www.w3.org/2005/Atom
H A DSimpleSubClassObject.yml3 foo: http://better.foo.example.org
4 old_foo: http://foo.example.org
9 namespace: http://better.foo.example.org
13 namespace: http://foo.example.org
17 namespace: http://new.foo.example.org
/plugin/evesso/classes/
H A DoAuthHTTPClient.php35 $http = new \DokuHTTPClient();
36 $http->headers = array_merge($http->headers, $extraHeaders);
38 $ok = $http->sendRequest($endpoint->getAbsoluteUri(), $requestBody, $method);
41 throw new TokenResponseException($msg . $http->error);
44 return $http->resp_body;
/plugin/publish/_test/
H A Dmail.unit.test.php37 …$expected_apprejlink = 'http://wiki.example.com' . DOKU_BASE . 'doku.php?id=wiki:syntax&rev=1'; //…
69 New Revision : http://wiki.example.com' . DOKU_BASE . 'doku.php?id=start&rev=' . $newrevision .…
73 http://wiki.example.com' . DOKU_BASE . 'doku.php?id=start&do=diff&rev2[0]=' . $oldrevision . '&rev2…
76 Please review the changes and approve the revision at http://wiki.example.com' . DOKU_BASE . 'doku.…
80 http://wiki.example.com' . DOKU_BASE . '
116 Your suggestion for My Test Wiki at http://wiki.example.com' . DOKU_BASE . '
118 URL: http://wiki.example.com' . DOKU_BASE . 'doku.php?id=start&rev=' . $revision . '
124 http://wiki.example.com' . DOKU_BASE . '
/plugin/statistics/inc/
H A Dsearchengines.php9 'google' => array('Google', 'http://www.google.com'),
10 'yahoo' => array('Yahoo!', 'http://www.yahoo.com'),
11 'yandex' => array('Яндекс (Yandex)', 'http://www.yandex.ru'),
12 'naver' => array('네이버 (Naver)', 'http://www.naver.com'),
13 'baidu' => array('百度 (Baidu)', 'http://www.baidu.com'),
14 'ask' => array('Ask', 'http://www.ask.com'),
15 'babylon' => array('Babylon', 'http://search.babylon.com'),
16 'aol' => array('AOL Search', 'http://search.aol.com'),
17 'duckduckgo' => array('DuckDuckGo', 'http://duckduckgo.com'),
18 'bing' => array('Bing', 'http
[all...]
/plugin/ckgdoku/ckeditor/plugins/footnote/
H A Dplugin.js.unc2 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.resourceManager.html#add
6 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.pluginDefinition.html#init
10 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.command.html
11 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialogCommand.html
33 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.ui.html#addButton
45 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.html#.add
46 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.dialogDefinition.html
53 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.dialogDefinition.html
77 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.ui.dialog.html.html
85 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.ui.dialog.textarea.html
[all …]
/plugin/ckgedit/ckeditor/plugins/footnote/
H A Dplugin.js.unc2 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.resourceManager.html#add
6 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.pluginDefinition.html#init
10 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.command.html
11 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialogCommand.html
33 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.ui.html#addButton
45 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.html#.add
46 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.dialogDefinition.html
53 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.dialogDefinition.html
77 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.ui.dialog.html.html
85 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.ui.dialog.textarea.html
[all …]
/plugin/wrap/images/
H A DREADME5 License: GPL (http://www.gnu.org/copyleft/gpl.html)
6 URL: http://schollidesign.deviantart.com/art/Human-O2-Iconset-105344123
12 License: Creative Commons Attribution 2.5 License (http://creativecommons.org/licenses/by/2.5/)
13 URL: http://www.famfamfam.com/lab/icons/silk/
17 License: Creative Commons Attribution 2.5 License (http://creativecommons.org/licenses/by/2.5/)
18 URL: http://www.damieng.com/icons/silkcompanion
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md307 - Add 'wait_for_no_initializing_shards' to Cluster\Health whitelist [[98a372c]](http://github.com/elasticsearch/elasticsearch-php/commit/98a372c)
308 - Add 'wait_for_active_shards' to Indices\Open whitelist [[0275fe5]](http://github.com/elasticsearch/elasticsearch-php/commit/0275fe5)
309 - Add 'max_concurrent_searches' to msearch whitelist [[5624123]](http://github.com/elasticsearch/elasticsearch-php/commit/5624123)
310 - Add 'max_concurrent_shard_requests' param to MSearch endpoint [[00800c1]](http://github.com/elasticsearch/elasticsearch-php/commit/00800c1)
311 - Add ReloadSecureSettings endpoint [[75b32b2]](http://github.com/elasticsearch/elasticsearch-php/commit/75b32b2)
312 - Remove obsolete Shutdown API [[c75d690]](http://github.com/elasticsearch/elasticsearch-php/commit/c75d690)
313 - Fix: Restore::setBody() does not throw exceptions (#828) [[a96bb9c]](http://github.com/elasticsearch/elasticsearch-php/commit/a96bb9c)
314 - Fixed php 7.3 compatibility for elasticsearch 6 (#827) [[77916b2]](http://github.com/elasticsearch/elasticsearch-php/commit/77916b2)
315 - Fix issue with getting status of respository and snapshots. (#719) [[2d11682]](http://github.com/elasticsearch/elasticsearch-php/commit/2d11682)
316 - fix DeleteByQuery param white list (#748) [[8d963c6]](http
[all...]
/plugin/s5reloaded/
H A DREADME2 http://meyerweb.com/eric/tools/s5/
8 http://www.yatil.de/s5/download/
13 Additional themes from JesusDA at http://www.jesusda.com/projects/presentaciones_s5
15 Scriptaculous was developed by Thomas Fuchs, http://script.aculo.us.
17 Presentacular was developed by Jose Manuel Caicedo, http://cavorite.com/.
20 http://www.linkmatrix.de/index.php?id=icon
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DGpxTypes.php9 * @see http://www.topografix.com/gpx/1/1/
19 * @see http://www.topografix.com/gpx/1/1/#type_gpxType
27 * @see http://www.topografix.com/gpx/1/1/#type_trkType
36 * @see http://www.topografix.com/gpx/1/1/#type_rteType
44 * @see http://www.topografix.com/gpx/1/1/#type_wptType
69 * @see http://www.topografix.com/gpx/1/1/#type_metadataType
/plugin/webdav/vendor/sabre/xml/
H A DREADME.md4 [![Build Status](https://secure.travis-ci.org/fruux/sabre-xml.svg?branch=master)](http://travis-ci.…
11 * [Introduction](http://sabre.io/xml/).
12 * [Installation](http://sabre.io/xml/install/).
13 * [Reading XML](http://sabre.io/xml/reading/).
14 * [Writing XML](http://sabre.io/xml/writing/).
20 Head over to the [SabreDAV mailing list](http://groups.google.com/group/sabredav-discuss) for any q…
/plugin/icalevents/vendor/sabre/xml/
H A DREADME.md4 [![Build Status](https://secure.travis-ci.org/fruux/sabre-xml.svg?branch=master)](http://travis-ci.…
11 * [Introduction](http://sabre.io/xml/).
12 * [Installation](http://sabre.io/xml/install/).
13 * [Reading XML](http://sabre.io/xml/reading/).
14 * [Writing XML](http://sabre.io/xml/writing/).
20 Head over to the [SabreDAV mailing list](http://groups.google.com/group/sabredav-discuss) for any q…
/plugin/davcal/vendor/sabre/xml/
H A DREADME.md4 [![Build Status](https://secure.travis-ci.org/fruux/sabre-xml.svg?branch=master)](http://travis-ci.…
11 * [Introduction](http://sabre.io/xml/).
12 * [Installation](http://sabre.io/xml/install/).
13 * [Reading XML](http://sabre.io/xml/reading/).
14 * [Writing XML](http://sabre.io/xml/writing/).
20 Head over to the [SabreDAV mailing list](http://groups.google.com/group/sabredav-discuss) for any q…
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dservlet-api.jar ... javax/servlet/descriptor/ javax/servlet/http/ javax/servlet/resources/ javax/servlet ...
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DRevoke.php36 private $http; variable in Google\\AccessToken\\Revoke
42 public function __construct(ClientInterface $http = null) argument
44 $this->http = $http;
75 $httpHandler = HttpHandlerFactory::build($this->http);

12345678910>>...134