");
+ $input.on("blur.tt", function($e) {
+ var active, isActive, hasActive;
+ active = document.activeElement;
+ isActive = $menu.is(active);
+ hasActive = $menu.has(active).length > 0;
+ if (_.isMsie() && (isActive || hasActive)) {
+ $e.preventDefault();
+ $e.stopImmediatePropagation();
+ _.defer(function() {
+ $input.focus();
+ });
+ }
+ });
+ $menu.on("mousedown.tt", function($e) {
+ $e.preventDefault();
+ });
+ },
+ _onSelectableClicked: function onSelectableClicked(type, $el) {
+ this.select($el);
+ },
+ _onDatasetCleared: function onDatasetCleared() {
+ this._updateHint();
+ },
+ _onDatasetRendered: function onDatasetRendered(type, dataset, suggestions, async) {
+ this._updateHint();
+ this.eventBus.trigger("render", suggestions, async, dataset);
+ },
+ _onAsyncRequested: function onAsyncRequested(type, dataset, query) {
+ this.eventBus.trigger("asyncrequest", query, dataset);
+ },
+ _onAsyncCanceled: function onAsyncCanceled(type, dataset, query) {
+ this.eventBus.trigger("asynccancel", query, dataset);
+ },
+ _onAsyncReceived: function onAsyncReceived(type, dataset, query) {
+ this.eventBus.trigger("asyncreceive", query, dataset);
+ },
+ _onFocused: function onFocused() {
+ this._minLengthMet() && this.menu.update(this.input.getQuery());
+ },
+ _onBlurred: function onBlurred() {
+ if (this.input.hasQueryChangedSinceLastFocus()) {
+ this.eventBus.trigger("change", this.input.getQuery());
+ }
+ },
+ _onEnterKeyed: function onEnterKeyed(type, $e) {
+ var $selectable;
+ if ($selectable = this.menu.getActiveSelectable()) {
+ this.select($selectable) && $e.preventDefault();
+ }
+ },
+ _onTabKeyed: function onTabKeyed(type, $e) {
+ var $selectable;
+ if ($selectable = this.menu.getActiveSelectable()) {
+ this.select($selectable) && $e.preventDefault();
+ } else if ($selectable = this.menu.getTopSelectable()) {
+ this.autocomplete($selectable) && $e.preventDefault();
+ }
+ },
+ _onEscKeyed: function onEscKeyed() {
+ this.close();
+ },
+ _onUpKeyed: function onUpKeyed() {
+ this.moveCursor(-1);
+ },
+ _onDownKeyed: function onDownKeyed() {
+ this.moveCursor(+1);
+ },
+ _onLeftKeyed: function onLeftKeyed() {
+ if (this.dir === "rtl" && this.input.isCursorAtEnd()) {
+ this.autocomplete(this.menu.getTopSelectable());
+ }
+ },
+ _onRightKeyed: function onRightKeyed() {
+ if (this.dir === "ltr" && this.input.isCursorAtEnd()) {
+ this.autocomplete(this.menu.getTopSelectable());
+ }
+ },
+ _onQueryChanged: function onQueryChanged(e, query) {
+ this._minLengthMet(query) ? this.menu.update(query) : this.menu.empty();
+ },
+ _onWhitespaceChanged: function onWhitespaceChanged() {
+ this._updateHint();
+ },
+ _onLangDirChanged: function onLangDirChanged(e, dir) {
+ if (this.dir !== dir) {
+ this.dir = dir;
+ this.menu.setLanguageDirection(dir);
+ }
+ },
+ _openIfActive: function openIfActive() {
+ this.isActive() && this.open();
+ },
+ _minLengthMet: function minLengthMet(query) {
+ query = _.isString(query) ? query : this.input.getQuery() || "";
+ return query.length >= this.minLength;
+ },
+ _updateHint: function updateHint() {
+ var $selectable, data, val, query, escapedQuery, frontMatchRegEx, match;
+ $selectable = this.menu.getTopSelectable();
+ data = this.menu.getSelectableData($selectable);
+ val = this.input.getInputValue();
+ if (data && !_.isBlankString(val) && !this.input.hasOverflow()) {
+ query = Input.normalizeQuery(val);
+ escapedQuery = _.escapeRegExChars(query);
+ frontMatchRegEx = new RegExp("^(?:" + escapedQuery + ")(.+$)", "i");
+ match = frontMatchRegEx.exec(data.val);
+ match && this.input.setHint(val + match[1]);
+ } else {
+ this.input.clearHint();
+ }
+ },
+ isEnabled: function isEnabled() {
+ return this.enabled;
+ },
+ enable: function enable() {
+ this.enabled = true;
+ },
+ disable: function disable() {
+ this.enabled = false;
+ },
+ isActive: function isActive() {
+ return this.active;
+ },
+ activate: function activate() {
+ if (this.isActive()) {
+ return true;
+ } else if (!this.isEnabled() || this.eventBus.before("active")) {
+ return false;
+ } else {
+ this.active = true;
+ this.eventBus.trigger("active");
+ return true;
+ }
+ },
+ deactivate: function deactivate() {
+ if (!this.isActive()) {
+ return true;
+ } else if (this.eventBus.before("idle")) {
+ return false;
+ } else {
+ this.active = false;
+ this.close();
+ this.eventBus.trigger("idle");
+ return true;
+ }
+ },
+ isOpen: function isOpen() {
+ return this.menu.isOpen();
+ },
+ open: function open() {
+ if (!this.isOpen() && !this.eventBus.before("open")) {
+ this.menu.open();
+ this._updateHint();
+ this.eventBus.trigger("open");
+ }
+ return this.isOpen();
+ },
+ close: function close() {
+ if (this.isOpen() && !this.eventBus.before("close")) {
+ this.menu.close();
+ this.input.clearHint();
+ this.input.resetInputValue();
+ this.eventBus.trigger("close");
+ }
+ return !this.isOpen();
+ },
+ setVal: function setVal(val) {
+ this.input.setQuery(_.toStr(val));
+ },
+ getVal: function getVal() {
+ return this.input.getQuery();
+ },
+ select: function select($selectable) {
+ var data = this.menu.getSelectableData($selectable);
+ if (data && !this.eventBus.before("select", data.obj)) {
+ this.input.setQuery(data.val, true);
+ this.eventBus.trigger("select", data.obj);
+ this.close();
+ return true;
+ }
+ return false;
+ },
+ autocomplete: function autocomplete($selectable) {
+ var query, data, isValid;
+ query = this.input.getQuery();
+ data = this.menu.getSelectableData($selectable);
+ isValid = data && query !== data.val;
+ if (isValid && !this.eventBus.before("autocomplete", data.obj)) {
+ this.input.setQuery(data.val);
+ this.eventBus.trigger("autocomplete", data.obj);
+ return true;
+ }
+ return false;
+ },
+ moveCursor: function moveCursor(delta) {
+ var query, $candidate, data, payload, cancelMove;
+ query = this.input.getQuery();
+ $candidate = this.menu.selectableRelativeToCursor(delta);
+ data = this.menu.getSelectableData($candidate);
+ payload = data ? data.obj : null;
+ cancelMove = this._minLengthMet() && this.menu.update(query);
+ if (!cancelMove && !this.eventBus.before("cursorchange", payload)) {
+ this.menu.setCursor($candidate);
+ if (data) {
+ this.input.setInputValue(data.val);
+ } else {
+ this.input.resetInputValue();
+ this._updateHint();
+ }
+ this.eventBus.trigger("cursorchange", payload);
+ return true;
+ }
+ return false;
+ },
+ destroy: function destroy() {
+ this.input.destroy();
+ this.menu.destroy();
+ }
+ });
+ return Typeahead;
+ function c(ctx) {
+ var methods = [].slice.call(arguments, 1);
+ return function() {
+ var args = [].slice.call(arguments);
+ _.each(methods, function(method) {
+ return ctx[method].apply(ctx, args);
+ });
+ };
+ }
+ }();
+ (function() {
+ "use strict";
+ var old, keys, methods;
+ old = $.fn.typeahead;
+ keys = {
+ www: "tt-www",
+ attrs: "tt-attrs",
+ typeahead: "tt-typeahead"
+ };
+ methods = {
+ initialize: function initialize(o, datasets) {
+ var www;
+ datasets = _.isArray(datasets) ? datasets : [].slice.call(arguments, 1);
+ o = o || {};
+ www = WWW(o.classNames);
+ return this.each(attach);
+ function attach() {
+ var $input, $wrapper, $hint, $menu, defaultHint, defaultMenu, eventBus, input, menu, typeahead, MenuConstructor;
+ _.each(datasets, function(d) {
+ d.highlight = !!o.highlight;
+ });
+ $input = $(this);
+ $wrapper = $(www.html.wrapper);
+ $hint = $elOrNull(o.hint);
+ $menu = $elOrNull(o.menu);
+ defaultHint = o.hint !== false && !$hint;
+ defaultMenu = o.menu !== false && !$menu;
+ defaultHint && ($hint = buildHintFromInput($input, www));
+ defaultMenu && ($menu = $(www.html.menu).css(www.css.menu));
+ $hint && $hint.val("");
+ $input = prepInput($input, www);
+ if (defaultHint || defaultMenu) {
+ $wrapper.css(www.css.wrapper);
+ $input.css(defaultHint ? www.css.input : www.css.inputWithNoHint);
+ $input.wrap($wrapper).parent().prepend(defaultHint ? $hint : null).append(defaultMenu ? $menu : null);
+ }
+ MenuConstructor = defaultMenu ? DefaultMenu : Menu;
+ eventBus = new EventBus({
+ el: $input
+ });
+ input = new Input({
+ hint: $hint,
+ input: $input
+ }, www);
+ menu = new MenuConstructor({
+ node: $menu,
+ datasets: datasets
+ }, www);
+ typeahead = new Typeahead({
+ input: input,
+ menu: menu,
+ eventBus: eventBus,
+ minLength: o.minLength
+ }, www);
+ $input.data(keys.www, www);
+ $input.data(keys.typeahead, typeahead);
+ }
+ },
+ isEnabled: function isEnabled() {
+ var enabled;
+ ttEach(this.first(), function(t) {
+ enabled = t.isEnabled();
+ });
+ return enabled;
+ },
+ enable: function enable() {
+ ttEach(this, function(t) {
+ t.enable();
+ });
+ return this;
+ },
+ disable: function disable() {
+ ttEach(this, function(t) {
+ t.disable();
+ });
+ return this;
+ },
+ isActive: function isActive() {
+ var active;
+ ttEach(this.first(), function(t) {
+ active = t.isActive();
+ });
+ return active;
+ },
+ activate: function activate() {
+ ttEach(this, function(t) {
+ t.activate();
+ });
+ return this;
+ },
+ deactivate: function deactivate() {
+ ttEach(this, function(t) {
+ t.deactivate();
+ });
+ return this;
+ },
+ isOpen: function isOpen() {
+ var open;
+ ttEach(this.first(), function(t) {
+ open = t.isOpen();
+ });
+ return open;
+ },
+ open: function open() {
+ ttEach(this, function(t) {
+ t.open();
+ });
+ return this;
+ },
+ close: function close() {
+ ttEach(this, function(t) {
+ t.close();
+ });
+ return this;
+ },
+ select: function select(el) {
+ var success = false, $el = $(el);
+ ttEach(this.first(), function(t) {
+ success = t.select($el);
+ });
+ return success;
+ },
+ autocomplete: function autocomplete(el) {
+ var success = false, $el = $(el);
+ ttEach(this.first(), function(t) {
+ success = t.autocomplete($el);
+ });
+ return success;
+ },
+ moveCursor: function moveCursoe(delta) {
+ var success = false;
+ ttEach(this.first(), function(t) {
+ success = t.moveCursor(delta);
+ });
+ return success;
+ },
+ val: function val(newVal) {
+ var query;
+ if (!arguments.length) {
+ ttEach(this.first(), function(t) {
+ query = t.getVal();
+ });
+ return query;
+ } else {
+ ttEach(this, function(t) {
+ t.setVal(newVal);
+ });
+ return this;
+ }
+ },
+ destroy: function destroy() {
+ ttEach(this, function(typeahead, $input) {
+ revert($input);
+ typeahead.destroy();
+ });
+ return this;
+ }
+ };
+ $.fn.typeahead = function(method) {
+ if (methods[method]) {
+ return methods[method].apply(this, [].slice.call(arguments, 1));
+ } else {
+ return methods.initialize.apply(this, arguments);
+ }
+ };
+ $.fn.typeahead.noConflict = function noConflict() {
+ $.fn.typeahead = old;
+ return this;
+ };
+ function ttEach($els, fn) {
+ $els.each(function() {
+ var $input = $(this), typeahead;
+ (typeahead = $input.data(keys.typeahead)) && fn(typeahead, $input);
+ });
+ }
+ function buildHintFromInput($input, www) {
+ return $input.clone().addClass(www.classes.hint).removeData().css(www.css.hint).css(getBackgroundStyles($input)).prop("readonly", true).removeAttr("id name placeholder required").attr({
+ autocomplete: "off",
+ spellcheck: "false",
+ tabindex: -1
+ });
+ }
+ function prepInput($input, www) {
+ $input.data(keys.attrs, {
+ dir: $input.attr("dir"),
+ autocomplete: $input.attr("autocomplete"),
+ spellcheck: $input.attr("spellcheck"),
+ style: $input.attr("style")
+ });
+ $input.addClass(www.classes.input).attr({
+ autocomplete: "off",
+ spellcheck: false
+ });
+ try {
+ !$input.attr("dir") && $input.attr("dir", "auto");
+ } catch (e) {}
+ return $input;
+ }
+ function getBackgroundStyles($el) {
+ return {
+ backgroundAttachment: $el.css("background-attachment"),
+ backgroundClip: $el.css("background-clip"),
+ backgroundColor: $el.css("background-color"),
+ backgroundImage: $el.css("background-image"),
+ backgroundOrigin: $el.css("background-origin"),
+ backgroundPosition: $el.css("background-position"),
+ backgroundRepeat: $el.css("background-repeat"),
+ backgroundSize: $el.css("background-size")
+ };
+ }
+ function revert($input) {
+ var www, $wrapper;
+ www = $input.data(keys.www);
+ $wrapper = $input.parent().filter(www.selectors.wrapper);
+ _.each($input.data(keys.attrs), function(val, key) {
+ _.isUndefined(val) ? $input.removeAttr(key) : $input.attr(key, val);
+ });
+ $input.removeData(keys.typeahead).removeData(keys.www).removeData(keys.attr).removeClass(www.classes.input);
+ if ($wrapper.length) {
+ $input.detach().insertAfter($wrapper);
+ $wrapper.remove();
+ }
+ }
+ function $elOrNull(obj) {
+ var isValid, $el;
+ isValid = _.isJQuery(obj) || _.isElement(obj);
+ $el = isValid ? $(obj).first() : [];
+ return $el.length ? $el : null;
+ }
+ })();
+});
\ No newline at end of file
diff --git a/docs/current/NIOHTTPClient/search.json b/docs/current/NIOHTTPClient/search.json
new file mode 100644
index 000000000..b9cf4d5ab
--- /dev/null
+++ b/docs/current/NIOHTTPClient/search.json
@@ -0,0 +1 @@
+{"Structs/HTTPClientError.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"HTTPClientError"},"Structs/HTTPClientError.html#/s:13NIOHTTPClient15HTTPClientErrorV10invalidURLACvpZ":{"name":"invalidURL","abstract":"
Undocumented
","parent_name":"HTTPClientError"},"Structs/HTTPClientError.html#/s:13NIOHTTPClient15HTTPClientErrorV9emptyHostACvpZ":{"name":"emptyHost","abstract":"
Undocumented
","parent_name":"HTTPClientError"},"Structs/HTTPClientError.html#/s:13NIOHTTPClient15HTTPClientErrorV15alreadyShutdownACvpZ":{"name":"alreadyShutdown","abstract":"
Undocumented
","parent_name":"HTTPClientError"},"Structs/HTTPClientError.html#/s:13NIOHTTPClient15HTTPClientErrorV11emptySchemeACvpZ":{"name":"emptyScheme","abstract":"
Undocumented
","parent_name":"HTTPClientError"},"Structs/HTTPClientError.html#/s:13NIOHTTPClient15HTTPClientErrorV17unsupportedSchemeyACSSFZ":{"name":"unsupportedScheme(_:)","abstract":"
Undocumented
","parent_name":"HTTPClientError"},"Structs/HTTPClientError.html#/s:13NIOHTTPClient15HTTPClientErrorV11readTimeoutACvpZ":{"name":"readTimeout","abstract":"
Undocumented
","parent_name":"HTTPClientError"},"Structs/HTTPClientError.html#/s:13NIOHTTPClient15HTTPClientErrorV22remoteConnectionClosedACvpZ":{"name":"remoteConnectionClosed","abstract":"
Undocumented
","parent_name":"HTTPClientError"},"Structs/HTTPClientError.html#/s:13NIOHTTPClient15HTTPClientErrorV9cancelledACvpZ":{"name":"cancelled","abstract":"
Undocumented
","parent_name":"HTTPClientError"},"Structs/HTTPClientError.html#/s:13NIOHTTPClient15HTTPClientErrorV32identityCodingIncorrectlyPresentACvpZ":{"name":"identityCodingIncorrectlyPresent","abstract":"
Undocumented
","parent_name":"HTTPClientError"},"Structs/HTTPClientError.html#/s:13NIOHTTPClient15HTTPClientErrorV29chunkedSpecifiedMultipleTimesACvpZ":{"name":"chunkedSpecifiedMultipleTimes","abstract":"
Undocumented
","parent_name":"HTTPClientError"},"Structs/HTTPClientError.html#/s:13NIOHTTPClient15HTTPClientErrorV20invalidProxyResponseACvpZ":{"name":"invalidProxyResponse","abstract":"
Undocumented
","parent_name":"HTTPClientError"},"Structs/HTTPCookie.html#/s:13NIOHTTPClient10HTTPCookieV4nameSSvp":{"name":"name","abstract":"
Undocumented
","parent_name":"HTTPCookie"},"Structs/HTTPCookie.html#/s:13NIOHTTPClient10HTTPCookieV5valueSSvp":{"name":"value","abstract":"
Undocumented
","parent_name":"HTTPCookie"},"Structs/HTTPCookie.html#/s:13NIOHTTPClient10HTTPCookieV4pathSSvp":{"name":"path","abstract":"
Undocumented
","parent_name":"HTTPCookie"},"Structs/HTTPCookie.html#/s:13NIOHTTPClient10HTTPCookieV6domainSSSgvp":{"name":"domain","abstract":"
Undocumented
","parent_name":"HTTPCookie"},"Structs/HTTPCookie.html#/s:13NIOHTTPClient10HTTPCookieV7expires10Foundation4DateVSgvp":{"name":"expires","abstract":"
Undocumented
","parent_name":"HTTPCookie"},"Structs/HTTPCookie.html#/s:13NIOHTTPClient10HTTPCookieV6maxAgeSiSgvp":{"name":"maxAge","abstract":"
Undocumented
","parent_name":"HTTPCookie"},"Structs/HTTPCookie.html#/s:13NIOHTTPClient10HTTPCookieV8httpOnlySbvp":{"name":"httpOnly","abstract":"
Undocumented
","parent_name":"HTTPCookie"},"Structs/HTTPCookie.html#/s:13NIOHTTPClient10HTTPCookieV6secureSbvp":{"name":"secure","abstract":"
Undocumented
","parent_name":"HTTPCookie"},"Structs/HTTPCookie.html#/s:13NIOHTTPClient10HTTPCookieV4from13defaultDomainACSgSS_SStcfc":{"name":"init(from:defaultDomain:)","abstract":"
Undocumented
","parent_name":"HTTPCookie"},"Structs/HTTPCookie.html#/s:13NIOHTTPClient10HTTPCookieV4name5value4path6domain7expires6maxAge8httpOnly6secureACSS_S3SSg10Foundation4DateVSgSiSgS2btcfc":{"name":"init(name:value:path:domain:expires:maxAge:httpOnly:secure:)","abstract":"
Undocumented
","parent_name":"HTTPCookie"},"Structs/HTTPCookie.html":{"name":"HTTPCookie","abstract":"
Undocumented
"},"Structs/HTTPClientError.html":{"name":"HTTPClientError","abstract":"
Undocumented
"},"Protocols/HTTPClientResponseDelegate.html#/s:13NIOHTTPClient26HTTPClientResponseDelegateP0C0Qa":{"name":"Response","abstract":"
Undocumented
","parent_name":"HTTPClientResponseDelegate"},"Protocols/HTTPClientResponseDelegate.html#/s:13NIOHTTPClient26HTTPClientResponseDelegateP22didTransmitRequestBody4taskyAA0B0C4TaskCy_0C0QzG_tF":{"name":"didTransmitRequestBody(task:)","abstract":"
Undocumented
","parent_name":"HTTPClientResponseDelegate"},"Protocols/HTTPClientResponseDelegate.html#/s:13NIOHTTPClient26HTTPClientResponseDelegateP14didReceiveHead4task_yAA0B0C4TaskCy_0C0QzG_8NIOHTTP1012HTTPResponseG0VtF":{"name":"didReceiveHead(task:_:)","abstract":"
Undocumented
","parent_name":"HTTPClientResponseDelegate"},"Protocols/HTTPClientResponseDelegate.html#/s:13NIOHTTPClient26HTTPClientResponseDelegateP14didReceivePart4task_yAA0B0C4TaskCy_0C0QzG_3NIO10ByteBufferVtF":{"name":"didReceivePart(task:_:)","abstract":"
Undocumented
","parent_name":"HTTPClientResponseDelegate"},"Protocols/HTTPClientResponseDelegate.html#/s:13NIOHTTPClient26HTTPClientResponseDelegateP15didReceiveError4task_yAA0B0C4TaskCy_0C0QzG_s0G0_ptF":{"name":"didReceiveError(task:_:)","abstract":"
Undocumented
","parent_name":"HTTPClientResponseDelegate"},"Protocols/HTTPClientResponseDelegate.html#/s:13NIOHTTPClient26HTTPClientResponseDelegateP16didFinishRequest4task0C0QzAA0B0C4TaskCy_AGG_tKF":{"name":"didFinishRequest(task:)","abstract":"
Undocumented
","parent_name":"HTTPClientResponseDelegate"},"Protocols/HTTPClientResponseDelegate.html":{"name":"HTTPClientResponseDelegate","abstract":"
This delegate is strongly held by the HTTPTaskHandler"},"Enums/EventLoopGroupProvider.html#/s:13NIOHTTPClient22EventLoopGroupProviderO6sharedyAC3NIO0bcD0_pcACmF":{"name":"shared(_:)","abstract":"
Undocumented
","parent_name":"EventLoopGroupProvider"},"Enums/EventLoopGroupProvider.html#/s:13NIOHTTPClient22EventLoopGroupProviderO9createNewyA2CmF":{"name":"createNew","abstract":"
Undocumented
","parent_name":"EventLoopGroupProvider"},"Enums/EventLoopGroupProvider.html":{"name":"EventLoopGroupProvider","abstract":"
Undocumented
"},"Classes/HandlingHTTPResponseDelegate.html#/s:13NIOHTTPClient28HandlingHTTPResponseDelegateC6Resulta":{"name":"Result","abstract":"
Undocumented
","parent_name":"HandlingHTTPResponseDelegate"},"Classes/HandlingHTTPResponseDelegate.html#/s:13NIOHTTPClient28HandlingHTTPResponseDelegateC22didTransmitRequestBody4taskyAA10HTTPClientC4TaskCy_xG_tF":{"name":"didTransmitRequestBody(task:)","abstract":"
Undocumented
","parent_name":"HandlingHTTPResponseDelegate"},"Classes/HandlingHTTPResponseDelegate.html#/s:13NIOHTTPClient28HandlingHTTPResponseDelegateC14didReceiveHead4task_yAA10HTTPClientC4TaskCy_xG_8NIOHTTP10cG0VtF":{"name":"didReceiveHead(task:_:)","abstract":"
Undocumented
","parent_name":"HandlingHTTPResponseDelegate"},"Classes/HandlingHTTPResponseDelegate.html#/s:13NIOHTTPClient28HandlingHTTPResponseDelegateC14didReceivePart4task_yAA10HTTPClientC4TaskCy_xG_3NIO10ByteBufferVtF":{"name":"didReceivePart(task:_:)","abstract":"
Undocumented
","parent_name":"HandlingHTTPResponseDelegate"},"Classes/HandlingHTTPResponseDelegate.html#/s:13NIOHTTPClient28HandlingHTTPResponseDelegateC15didReceiveError4task_yAA10HTTPClientC4TaskCy_xG_s0G0_ptF":{"name":"didReceiveError(task:_:)","abstract":"
Undocumented
","parent_name":"HandlingHTTPResponseDelegate"},"Classes/HandlingHTTPResponseDelegate.html#/s:13NIOHTTPClient28HandlingHTTPResponseDelegateC16didFinishRequest4taskxAA10HTTPClientC4TaskCy_xG_tKF":{"name":"didFinishRequest(task:)","abstract":"
Undocumented
","parent_name":"HandlingHTTPResponseDelegate"},"Classes/HTTPClient/Task.html#/s:13NIOHTTPClient10HTTPClientC4TaskC4waitxyKF":{"name":"wait()","abstract":"
Undocumented
","parent_name":"Task"},"Classes/HTTPClient/Task.html#/s:13NIOHTTPClient10HTTPClientC4TaskC6cancelyyF":{"name":"cancel()","abstract":"
Undocumented
","parent_name":"Task"},"Classes/HTTPClient/Task.html#/s:13NIOHTTPClient10HTTPClientC4TaskC7cascade7promisey3NIO16EventLoopPromiseVyxG_tF":{"name":"cascade(promise:)","abstract":"
Undocumented
","parent_name":"Task"},"Classes/HTTPClient/Request.html#/s:13NIOHTTPClient10HTTPClientC7RequestV7version8NIOHTTP111HTTPVersionVvp":{"name":"version","abstract":"
Undocumented
","parent_name":"Request"},"Classes/HTTPClient/Request.html#/s:13NIOHTTPClient10HTTPClientC7RequestV6method8NIOHTTP110HTTPMethodOvp":{"name":"method","abstract":"
Undocumented
","parent_name":"Request"},"Classes/HTTPClient/Request.html#/s:13NIOHTTPClient10HTTPClientC7RequestV3url10Foundation3URLVvp":{"name":"url","abstract":"
Undocumented
","parent_name":"Request"},"Classes/HTTPClient/Request.html#/s:13NIOHTTPClient10HTTPClientC7RequestV6schemeSSvp":{"name":"scheme","abstract":"
Undocumented
","parent_name":"Request"},"Classes/HTTPClient/Request.html#/s:13NIOHTTPClient10HTTPClientC7RequestV4hostSSvp":{"name":"host","abstract":"
Undocumented
","parent_name":"Request"},"Classes/HTTPClient/Request.html#/s:13NIOHTTPClient10HTTPClientC7RequestV7headers8NIOHTTP111HTTPHeadersVvp":{"name":"headers","abstract":"
Undocumented
","parent_name":"Request"},"Classes/HTTPClient/Request.html#/s:13NIOHTTPClient10HTTPClientC7RequestV4bodyAC4BodyOSgvp":{"name":"body","abstract":"
Undocumented
","parent_name":"Request"},"Classes/HTTPClient/Request.html#/s:13NIOHTTPClient10HTTPClientC7RequestV3url7version6method7headers4bodyAESS_8NIOHTTP111HTTPVersionVAK10HTTPMethodOAK11HTTPHeadersVAC4BodyOSgtKcfc":{"name":"init(url:version:method:headers:body:)","abstract":"
Undocumented
","parent_name":"Request"},"Classes/HTTPClient/Request.html#/s:13NIOHTTPClient10HTTPClientC7RequestV3url7version6method7headers4bodyAE10Foundation3URLV_8NIOHTTP111HTTPVersionVAN10HTTPMethodOAN11HTTPHeadersVAC4BodyOSgtKcfc":{"name":"init(url:version:method:headers:body:)","abstract":"
Undocumented
","parent_name":"Request"},"Classes/HTTPClient/Request.html#/s:13NIOHTTPClient10HTTPClientC7RequestV6useTLSSbvp":{"name":"useTLS","abstract":"
Undocumented
","parent_name":"Request"},"Classes/HTTPClient/Request.html#/s:13NIOHTTPClient10HTTPClientC7RequestV4portSivp":{"name":"port","abstract":"
Undocumented
","parent_name":"Request"},"Classes/HTTPClient/Body.html#/s:13NIOHTTPClient10HTTPClientC4BodyO10byteBufferyAE3NIO04ByteE0VcAEmF":{"name":"byteBuffer(_:)","abstract":"
Undocumented
","parent_name":"Body"},"Classes/HTTPClient/Body.html#/s:13NIOHTTPClient10HTTPClientC4BodyO4datayAE10Foundation4DataVcAEmF":{"name":"data(_:)","abstract":"
Undocumented
","parent_name":"Body"},"Classes/HTTPClient/Body.html#/s:13NIOHTTPClient10HTTPClientC4BodyO6stringyAESScAEmF":{"name":"string(_:)","abstract":"
Undocumented
","parent_name":"Body"},"Classes/HTTPClient/Response.html#/s:13NIOHTTPClient10HTTPClientC8ResponseV4hostSSvp":{"name":"host","abstract":"
Undocumented
","parent_name":"Response"},"Classes/HTTPClient/Response.html#/s:13NIOHTTPClient10HTTPClientC8ResponseV6status8NIOHTTP118HTTPResponseStatusOvp":{"name":"status","abstract":"
Undocumented
","parent_name":"Response"},"Classes/HTTPClient/Response.html#/s:13NIOHTTPClient10HTTPClientC8ResponseV7headers8NIOHTTP111HTTPHeadersVvp":{"name":"headers","abstract":"
Undocumented
","parent_name":"Response"},"Classes/HTTPClient/Response.html#/s:13NIOHTTPClient10HTTPClientC8ResponseV4body3NIO10ByteBufferVSgvp":{"name":"body","abstract":"
Undocumented
","parent_name":"Response"},"Classes/HTTPClient/Response.html#/s:13NIOHTTPClient10HTTPClientC8ResponseV7cookiesSayAA10HTTPCookieVGvp":{"name":"cookies","abstract":"
Undocumented
","parent_name":"Response"},"Classes/HTTPClient/Proxy.html#/s:13NIOHTTPClient10HTTPClientC5ProxyV6server4host4portAESS_SitFZ":{"name":"server(host:port:)","abstract":"
Undocumented
","parent_name":"Proxy"},"Classes/HTTPClient/Timeout.html#/s:13NIOHTTPClient10HTTPClientC7TimeoutV7connect3NIO10TimeAmountVSgvp":{"name":"connect","abstract":"
Undocumented
","parent_name":"Timeout"},"Classes/HTTPClient/Timeout.html#/s:13NIOHTTPClient10HTTPClientC7TimeoutV4read3NIO10TimeAmountVSgvp":{"name":"read","abstract":"
Undocumented
","parent_name":"Timeout"},"Classes/HTTPClient/Timeout.html#/s:13NIOHTTPClient10HTTPClientC7TimeoutV7connect4readAE3NIO10TimeAmountVSg_AKtcfc":{"name":"init(connect:read:)","abstract":"
Undocumented
","parent_name":"Timeout"},"Classes/HTTPClient/Configuration.html#/s:13NIOHTTPClient10HTTPClientC13ConfigurationV03tlsC06NIOSSL16TLSConfigurationVSgvp":{"name":"tlsConfiguration","abstract":"
Undocumented
","parent_name":"Configuration"},"Classes/HTTPClient/Configuration.html#/s:13NIOHTTPClient10HTTPClientC13ConfigurationV15followRedirectsSbvp":{"name":"followRedirects","abstract":"
Undocumented
","parent_name":"Configuration"},"Classes/HTTPClient/Configuration.html#/s:13NIOHTTPClient10HTTPClientC13ConfigurationV7timeoutAC7TimeoutVvp":{"name":"timeout","abstract":"
Undocumented
","parent_name":"Configuration"},"Classes/HTTPClient/Configuration.html#/s:13NIOHTTPClient10HTTPClientC13ConfigurationV5proxyAC5ProxyVSgvp":{"name":"proxy","abstract":"
Undocumented
","parent_name":"Configuration"},"Classes/HTTPClient/Configuration.html#/s:13NIOHTTPClient10HTTPClientC13ConfigurationV03tlsC015followRedirects7timeout5proxyAE6NIOSSL16TLSConfigurationVSg_SbAC7TimeoutVAC5ProxyVSgtcfc":{"name":"init(tlsConfiguration:followRedirects:timeout:proxy:)","abstract":"
Undocumented
","parent_name":"Configuration"},"Classes/HTTPClient/Configuration.html#/s:13NIOHTTPClient10HTTPClientC13ConfigurationV23certificateVerification15followRedirects7timeout5proxyAE6NIOSSL011CertificateE0O_SbAC7TimeoutVAC5ProxyVSgtcfc":{"name":"init(certificateVerification:followRedirects:timeout:proxy:)","abstract":"
Undocumented
","parent_name":"Configuration"},"Classes/HTTPClient.html#/s:13NIOHTTPClient10HTTPClientC22eventLoopGroupProvider13configurationAcA05EventdeF0O_AC13ConfigurationVtcfc":{"name":"init(eventLoopGroupProvider:configuration:)","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient.html#/s:13NIOHTTPClient10HTTPClientCfd":{"name":"deinit","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient.html#/s:13NIOHTTPClient10HTTPClientC12syncShutdownyyKF":{"name":"syncShutdown()","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient.html#/s:13NIOHTTPClient10HTTPClientC3get3url7timeout3NIO15EventLoopFutureCyAC8ResponseVGSS_AC7TimeoutVSgtF":{"name":"get(url:timeout:)","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient.html#/s:13NIOHTTPClient10HTTPClientC4post3url4body7timeout3NIO15EventLoopFutureCyAC8ResponseVGSS_AC4BodyOSgAC7TimeoutVSgtF":{"name":"post(url:body:timeout:)","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient.html#/s:13NIOHTTPClient10HTTPClientC5patch3url4body7timeout3NIO15EventLoopFutureCyAC8ResponseVGSS_AC4BodyOSgAC7TimeoutVSgtF":{"name":"patch(url:body:timeout:)","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient.html#/s:13NIOHTTPClient10HTTPClientC3put3url4body7timeout3NIO15EventLoopFutureCyAC8ResponseVGSS_AC4BodyOSgAC7TimeoutVSgtF":{"name":"put(url:body:timeout:)","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient.html#/s:13NIOHTTPClient10HTTPClientC6delete3url7timeout3NIO15EventLoopFutureCyAC8ResponseVGSS_AC7TimeoutVSgtF":{"name":"delete(url:timeout:)","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient.html#/s:13NIOHTTPClient10HTTPClientC7execute7request7timeout3NIO15EventLoopFutureCyAC8ResponseVGAC7RequestV_AC7TimeoutVSgtF":{"name":"execute(request:timeout:)","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient.html#/s:13NIOHTTPClient10HTTPClientC7execute7request8delegate7timeoutAC4TaskCy_8ResponseQzGAC7RequestV_xAC7TimeoutVSgtAA0bH8DelegateRzlF":{"name":"execute(request:delegate:timeout:)","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient/Configuration.html":{"name":"Configuration","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient/Timeout.html":{"name":"Timeout","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient/Proxy.html":{"name":"Proxy","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient/Response.html":{"name":"Response","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient/Body.html":{"name":"Body","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient/Request.html":{"name":"Request","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient/Task.html":{"name":"Task","abstract":"
Undocumented
","parent_name":"HTTPClient"},"Classes/HTTPClient.html":{"name":"HTTPClient","abstract":"
Undocumented
"},"Classes/HandlingHTTPResponseDelegate.html":{"name":"HandlingHTTPResponseDelegate","abstract":"
Undocumented
"},"Classes.html":{"name":"Classes","abstract":"
The following classes are available globally.
"},"Enums.html":{"name":"Enumerations","abstract":"
The following enumerations are available globally.
"},"Protocols.html":{"name":"Protocols","abstract":"
The following protocols are available globally.
"},"Structs.html":{"name":"Structures","abstract":"
The following structures are available globally.
"}}
\ No newline at end of file
diff --git a/docs/current/NIOHTTPClient/undocumented.json b/docs/current/NIOHTTPClient/undocumented.json
new file mode 100644
index 000000000..bdafa1cee
--- /dev/null
+++ b/docs/current/NIOHTTPClient/undocumented.json
@@ -0,0 +1,656 @@
+{
+ "warnings": [
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPClientProxyHandler.swift",
+ "line": 28,
+ "symbol": "HTTPClient.Proxy",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPClientProxyHandler.swift",
+ "line": 32,
+ "symbol": "HTTPClient.Proxy.server(host:port:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPCookie.swift",
+ "line": 18,
+ "symbol": "HTTPCookie",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPCookie.swift",
+ "line": 19,
+ "symbol": "HTTPCookie.name",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPCookie.swift",
+ "line": 20,
+ "symbol": "HTTPCookie.value",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPCookie.swift",
+ "line": 21,
+ "symbol": "HTTPCookie.path",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPCookie.swift",
+ "line": 22,
+ "symbol": "HTTPCookie.domain",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPCookie.swift",
+ "line": 23,
+ "symbol": "HTTPCookie.expires",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPCookie.swift",
+ "line": 24,
+ "symbol": "HTTPCookie.maxAge",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPCookie.swift",
+ "line": 25,
+ "symbol": "HTTPCookie.httpOnly",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPCookie.swift",
+ "line": 26,
+ "symbol": "HTTPCookie.secure",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPCookie.swift",
+ "line": 28,
+ "symbol": "HTTPCookie.init(from:defaultDomain:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPCookie.swift",
+ "line": 92,
+ "symbol": "HTTPCookie.init(name:value:path:domain:expires:maxAge:httpOnly:secure:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPCookie.swift",
+ "line": 118,
+ "symbol": "HTTPClient.Response.cookies",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": null,
+ "symbol": "HTTPClient.Response",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 22,
+ "symbol": "HTTPClient.Body",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 23,
+ "symbol": "HTTPClient.Body.byteBuffer(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 24,
+ "symbol": "HTTPClient.Body.data(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 25,
+ "symbol": "HTTPClient.Body.string(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 39,
+ "symbol": "HTTPClient.Request",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 40,
+ "symbol": "HTTPClient.Request.version",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 41,
+ "symbol": "HTTPClient.Request.method",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 42,
+ "symbol": "HTTPClient.Request.url",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 43,
+ "symbol": "HTTPClient.Request.scheme",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 44,
+ "symbol": "HTTPClient.Request.host",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 45,
+ "symbol": "HTTPClient.Request.headers",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 46,
+ "symbol": "HTTPClient.Request.body",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 48,
+ "symbol": "HTTPClient.Request.init(url:version:method:headers:body:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 56,
+ "symbol": "HTTPClient.Request.init(url:version:method:headers:body:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 78,
+ "symbol": "HTTPClient.Request.useTLS",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 82,
+ "symbol": "HTTPClient.Request.port",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 91,
+ "symbol": "HTTPClient.Response",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 92,
+ "symbol": "HTTPClient.Response.host",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 93,
+ "symbol": "HTTPClient.Response.status",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 94,
+ "symbol": "HTTPClient.Response.headers",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 95,
+ "symbol": "HTTPClient.Response.body",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 175,
+ "symbol": "HTTPClientResponseDelegate.Response",
+ "symbol_kind": "source.lang.swift.decl.associatedtype",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 177,
+ "symbol": "HTTPClientResponseDelegate.didTransmitRequestBody(task:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 179,
+ "symbol": "HTTPClientResponseDelegate.didReceiveHead(task:_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 181,
+ "symbol": "HTTPClientResponseDelegate.didReceivePart(task:_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 183,
+ "symbol": "HTTPClientResponseDelegate.didReceiveError(task:_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 185,
+ "symbol": "HTTPClientResponseDelegate.didFinishRequest(task:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 209,
+ "symbol": "HTTPClient.Task",
+ "symbol_kind": "source.lang.swift.decl.class",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 229,
+ "symbol": "HTTPClient.Task.wait()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 233,
+ "symbol": "HTTPClient.Task.cancel()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/HTTPHandler.swift",
+ "line": 242,
+ "symbol": "HTTPClient.Task.cascade(promise:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": null,
+ "symbol": "HTTPClient",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": null,
+ "symbol": "HTTPClient",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": null,
+ "symbol": "HTTPClient",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 21,
+ "symbol": "EventLoopGroupProvider",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 22,
+ "symbol": "EventLoopGroupProvider.shared(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 23,
+ "symbol": "EventLoopGroupProvider.createNew",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 26,
+ "symbol": "HTTPClient",
+ "symbol_kind": "source.lang.swift.decl.class",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 33,
+ "symbol": "HTTPClient.init(eventLoopGroupProvider:configuration:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 44,
+ "symbol": "HTTPClient.deinit",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 53,
+ "symbol": "HTTPClient.syncShutdown()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 67,
+ "symbol": "HTTPClient.get(url:timeout:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 76,
+ "symbol": "HTTPClient.post(url:body:timeout:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 85,
+ "symbol": "HTTPClient.patch(url:body:timeout:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 94,
+ "symbol": "HTTPClient.put(url:body:timeout:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 103,
+ "symbol": "HTTPClient.delete(url:timeout:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 112,
+ "symbol": "HTTPClient.execute(request:timeout:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 117,
+ "symbol": "HTTPClient.execute(request:delegate:timeout:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 185,
+ "symbol": "HTTPClient.Configuration",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 186,
+ "symbol": "HTTPClient.Configuration.tlsConfiguration",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 187,
+ "symbol": "HTTPClient.Configuration.followRedirects",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 188,
+ "symbol": "HTTPClient.Configuration.timeout",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 189,
+ "symbol": "HTTPClient.Configuration.proxy",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 191,
+ "symbol": "HTTPClient.Configuration.init(tlsConfiguration:followRedirects:timeout:proxy:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 198,
+ "symbol": "HTTPClient.Configuration.init(certificateVerification:followRedirects:timeout:proxy:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 206,
+ "symbol": "HTTPClient.Timeout",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 207,
+ "symbol": "HTTPClient.Timeout.connect",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 208,
+ "symbol": "HTTPClient.Timeout.read",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 210,
+ "symbol": "HTTPClient.Timeout.init(connect:read:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 248,
+ "symbol": "HTTPClientError",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 273,
+ "symbol": "HTTPClientError.invalidURL",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 274,
+ "symbol": "HTTPClientError.emptyHost",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 275,
+ "symbol": "HTTPClientError.alreadyShutdown",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 276,
+ "symbol": "HTTPClientError.emptyScheme",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 277,
+ "symbol": "HTTPClientError.unsupportedScheme(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 278,
+ "symbol": "HTTPClientError.readTimeout",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 279,
+ "symbol": "HTTPClientError.remoteConnectionClosed",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 280,
+ "symbol": "HTTPClientError.cancelled",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 281,
+ "symbol": "HTTPClientError.identityCodingIncorrectlyPresent",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 282,
+ "symbol": "HTTPClientError.chunkedSpecifiedMultipleTimes",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/SwiftNIOHTTP.swift",
+ "line": 283,
+ "symbol": "HTTPClientError.invalidProxyResponse",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/Utils.swift",
+ "line": 18,
+ "symbol": "HandlingHTTPResponseDelegate",
+ "symbol_kind": "source.lang.swift.decl.class",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/Utils.swift",
+ "line": 21,
+ "symbol": "HandlingHTTPResponseDelegate.Result",
+ "symbol_kind": "source.lang.swift.decl.typealias",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/Utils.swift",
+ "line": 28,
+ "symbol": "HandlingHTTPResponseDelegate.didTransmitRequestBody(task:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/Utils.swift",
+ "line": 30,
+ "symbol": "HandlingHTTPResponseDelegate.didReceiveHead(task:_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/Utils.swift",
+ "line": 36,
+ "symbol": "HandlingHTTPResponseDelegate.didReceivePart(task:_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/Utils.swift",
+ "line": 42,
+ "symbol": "HandlingHTTPResponseDelegate.didReceiveError(task:_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/code/Sources/NIOHTTPClient/Utils.swift",
+ "line": 48,
+ "symbol": "HandlingHTTPResponseDelegate.didFinishRequest(task:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ }
+ ],
+ "source_directory": "/code"
+}
\ No newline at end of file
diff --git a/index.html b/index.html
index 3b18e512d..a3c322bd3 100644
--- a/index.html
+++ b/index.html
@@ -1 +1 @@
-hello world
+
From 88225a3480ca131ca3fbf4712908b12981a313b5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Trev=C3=B6r?=
Date: Wed, 1 May 2019 00:21:11 +0000
Subject: [PATCH 03/14] publish master docs
---
docs/current/NIOHTTPClient/Classes.html | 6 +-
.../NIOHTTPClient/Classes/HTTPClient.html | 66 +++++++++++-----
.../Classes/HTTPClient/Body.html | 8 +-
.../Classes/HTTPClient/Configuration.html | 14 ++--
.../Classes/HTTPClient/Proxy.html | 4 +-
.../Classes/HTTPClient/Request.html | 24 +++---
.../Classes/HTTPClient/Response.html | 12 +--
.../Classes/HTTPClient/Task.html | 8 +-
.../Classes/HTTPClient/Timeout.html | 8 +-
.../Classes/HandlingHTTPResponseDelegate.html | 14 ++--
docs/current/NIOHTTPClient/Enums.html | 4 +-
.../Enums/EventLoopGroupProvider.html | 6 +-
docs/current/NIOHTTPClient/Protocols.html | 4 +-
.../Protocols/HTTPClientResponseDelegate.html | 14 ++--
docs/current/NIOHTTPClient/Structs.html | 6 +-
.../Structs/HTTPClientError.html | 26 +++----
.../NIOHTTPClient/Structs/HTTPCookie.html | 22 +++---
docs/current/NIOHTTPClient/index.html | 2 +-
docs/current/NIOHTTPClient/search.json | 2 +-
docs/current/NIOHTTPClient/undocumented.json | 73 ++++++++++--------
.../NIOHTTPClient/Classes.html | 6 +-
.../NIOHTTPClient/Classes/HTTPClient.html | 66 +++++++++++-----
.../Classes/HTTPClient/Body.html | 8 +-
.../Classes/HTTPClient/Configuration.html | 14 ++--
.../Classes/HTTPClient/Proxy.html | 4 +-
.../Classes/HTTPClient/Request.html | 24 +++---
.../Classes/HTTPClient/Response.html | 12 +--
.../Classes/HTTPClient/Task.html | 8 +-
.../Classes/HTTPClient/Timeout.html | 8 +-
.../Classes/HandlingHTTPResponseDelegate.html | 14 ++--
.../NIOHTTPClient/Enums.html | 4 +-
.../Enums/EventLoopGroupProvider.html | 6 +-
.../NIOHTTPClient/Protocols.html | 4 +-
.../Protocols/HTTPClientResponseDelegate.html | 14 ++--
.../NIOHTTPClient/Structs.html | 6 +-
.../Structs/HTTPClientError.html | 26 +++----
.../NIOHTTPClient/Structs/HTTPCookie.html | 22 +++---
.../{0.0.0 => master}/NIOHTTPClient/badge.svg | 0
.../NIOHTTPClient/css/highlight.css | 0
.../NIOHTTPClient/css/jazzy.css | 0
.../NIOHTTPClient/img/carat.png | Bin
.../NIOHTTPClient/img/dash.png | Bin
.../NIOHTTPClient/img/gh.png | Bin
.../NIOHTTPClient/img/spinner.gif | Bin
.../NIOHTTPClient/index.html | 2 +-
.../NIOHTTPClient/js/jazzy.js | 0
.../NIOHTTPClient/js/jazzy.search.js | 0
.../NIOHTTPClient/js/jquery.min.js | 0
.../NIOHTTPClient/js/lunr.min.js | 0
.../NIOHTTPClient/js/typeahead.jquery.js | 0
.../NIOHTTPClient/search.json | 2 +-
.../NIOHTTPClient/undocumented.json | 73 ++++++++++--------
52 files changed, 360 insertions(+), 286 deletions(-)
rename docs/{0.0.0 => master}/NIOHTTPClient/Classes.html (97%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Classes/HTTPClient.html (91%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Classes/HTTPClient/Body.html (97%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Classes/HTTPClient/Configuration.html (96%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Classes/HTTPClient/Proxy.html (98%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Classes/HTTPClient/Request.html (95%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Classes/HTTPClient/Response.html (96%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Classes/HTTPClient/Task.html (97%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Classes/HTTPClient/Timeout.html (97%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Classes/HandlingHTTPResponseDelegate.html (96%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Enums.html (98%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Enums/EventLoopGroupProvider.html (97%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Protocols.html (98%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Protocols/HTTPClientResponseDelegate.html (96%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Structs.html (97%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Structs/HTTPClientError.html (95%)
rename docs/{0.0.0 => master}/NIOHTTPClient/Structs/HTTPCookie.html (95%)
rename docs/{0.0.0 => master}/NIOHTTPClient/badge.svg (100%)
rename docs/{0.0.0 => master}/NIOHTTPClient/css/highlight.css (100%)
rename docs/{0.0.0 => master}/NIOHTTPClient/css/jazzy.css (100%)
rename docs/{0.0.0 => master}/NIOHTTPClient/img/carat.png (100%)
rename docs/{0.0.0 => master}/NIOHTTPClient/img/dash.png (100%)
rename docs/{0.0.0 => master}/NIOHTTPClient/img/gh.png (100%)
rename docs/{0.0.0 => master}/NIOHTTPClient/img/spinner.gif (100%)
rename docs/{0.0.0 => master}/NIOHTTPClient/index.html (99%)
rename docs/{0.0.0 => master}/NIOHTTPClient/js/jazzy.js (100%)
rename docs/{0.0.0 => master}/NIOHTTPClient/js/jazzy.search.js (100%)
rename docs/{0.0.0 => master}/NIOHTTPClient/js/jquery.min.js (100%)
rename docs/{0.0.0 => master}/NIOHTTPClient/js/lunr.min.js (100%)
rename docs/{0.0.0 => master}/NIOHTTPClient/js/typeahead.jquery.js (100%)
rename docs/{0.0.0 => master}/NIOHTTPClient/search.json (79%)
rename docs/{0.0.0 => master}/NIOHTTPClient/undocumented.json (97%)
diff --git a/docs/current/NIOHTTPClient/Classes.html b/docs/current/NIOHTTPClient/Classes.html
index a0fedbcc4..fb1b2e288 100644
--- a/docs/current/NIOHTTPClient/Classes.html
+++ b/docs/current/NIOHTTPClient/Classes.html
@@ -151,7 +151,7 @@ Declaration