mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 04:24:09 +00:00
Merge pull request #365 from xiaoyifang/fix/wiki-request
fix:wikipedia url request
This commit is contained in:
commit
7273f84682
|
@ -617,6 +617,10 @@ void MediaWikiArticleRequest::requestFinished( QNetworkReply * r )
|
||||||
// Add url scheme to other urls like "//xxx"
|
// Add url scheme to other urls like "//xxx"
|
||||||
articleString.replace( " href=\"//", " href=\"" + wikiUrl.scheme() + "://" );
|
articleString.replace( " href=\"//", " href=\"" + wikiUrl.scheme() + "://" );
|
||||||
|
|
||||||
|
// Add url scheme to other urls like embed css background: url("//upload.wikimedia.org/wikipedia/commons/6/65/Lock-green.svg")right 0.1em center/9px no-repeat
|
||||||
|
articleString.replace( "url(\"//", "url(\"" + wikiUrl.scheme() + "://" );
|
||||||
|
|
||||||
|
|
||||||
// Fix urls in "srcset" attribute
|
// Fix urls in "srcset" attribute
|
||||||
pos = 0;
|
pos = 0;
|
||||||
QRegularExpression regSrcset( R"( srcset\s*=\s*"/[^"]+")" );
|
QRegularExpression regSrcset( R"( srcset\s*=\s*"/[^"]+")" );
|
||||||
|
|
Loading…
Reference in a new issue