@@ -147,42 +147,79 @@ need to be handled on the main thread. See in-depth discussion below.
147147
148148 void insertProxyFactory( QNetworkProxyFactory *factory /Transfer/ );
149149%Docstring
150- insert a factory into the proxy factories list
150+ Inserts a ``factory`` into the proxy factories list.
151+
152+ Ownership of ``factory`` is transferred to the manager.
153+
154+ .. seealso:: :py:func:`removeProxyFactory`
155+
156+ .. seealso:: :py:func:`proxyFactories`
151157%End
152158
153159 void removeProxyFactory( QNetworkProxyFactory *factory /TransferBack/ );
154160%Docstring
155- remove a factory from the proxy factories list
161+ Removes a ``factory`` from the proxy factories list.
162+
163+ .. seealso:: :py:func:`insertProxyFactory`
164+
165+ .. seealso:: :py:func:`proxyFactories`
156166%End
157167
158168 const QList<QNetworkProxyFactory *> proxyFactories() const;
159169%Docstring
160- retrieve proxy factory list
170+ Returns a list of proxy factories used by the manager.
171+
172+ .. seealso:: :py:func:`insertProxyFactory`
173+
174+ .. seealso:: :py:func:`proxyFactories`
161175%End
162176
163177 const QNetworkProxy &fallbackProxy() const;
164178%Docstring
165- retrieve fall back proxy (for urls that no factory returned proxies for)
179+ Returns the fallback proxy used by the manager.
180+
181+ The fallback proxy is used for URLs which no other proxy factory returned proxies for.
182+
183+ .. seealso:: :py:func:`proxyFactories`
184+
185+ .. seealso:: :py:func:`setFallbackProxyAndExcludes`
166186%End
167187
168188 QStringList excludeList() const;
169189%Docstring
170- retrieve exclude list (urls shouldn't use the fallback proxy)
190+ Returns the proxy exclude list.
191+
192+ This list consists of the beginning of URL strings which will not use the fallback proxy.
193+
194+ .. seealso:: :py:func:`fallbackProxy`
195+
196+ .. seealso:: :py:func:`setFallbackProxyAndExcludes`
171197%End
172198
173199 void setFallbackProxyAndExcludes( const QNetworkProxy &proxy, const QStringList &excludes );
174200%Docstring
175- Sets fallback proxy and URL that shouldn't use it.
201+ Sets the fallback ``proxy`` and URLs which shouldn't use it.
202+
203+ The fallback proxy is used for URLs which no other proxy factory returned proxies for.
204+ The ``excludes`` list specifies the beginning of URL strings which will not use this fallback proxy.
205+
206+ .. seealso:: :py:func:`fallbackProxy`
207+
208+ .. seealso:: :py:func:`excludeList`
176209%End
177210
178211 static QString cacheLoadControlName( QNetworkRequest::CacheLoadControl control );
179212%Docstring
180- Gets name for QNetworkRequest.CacheLoadControl
213+ Returns the name for QNetworkRequest.CacheLoadControl.
214+
215+ .. seealso:: :py:func:`cacheLoadControlFromName`
181216%End
182217
183218 static QNetworkRequest::CacheLoadControl cacheLoadControlFromName( const QString &name );
184219%Docstring
185- Gets QNetworkRequest.CacheLoadControl from name
220+ Returns QNetworkRequest.CacheLoadControl from a ``name``.
221+
222+ .. seealso:: :py:func:`cacheLoadControlName`
186223%End
187224
188225 void setupDefaultProxyAndCache( Qt::ConnectionType connectionType = Qt::BlockingQueuedConnection );
@@ -196,7 +233,7 @@ for the constructor of this class.
196233
197234 bool useSystemProxy() const;
198235%Docstring
199- Returns whether the system proxy should be used
236+ Returns whether the system proxy should be used.
200237%End
201238
202239 signals:
0 commit comments