mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 15:24:05 +00:00
* Make "search" audio links be bound by the current group.
This commit is contained in:
parent
c2977cf9a1
commit
8e43a81592
|
@ -132,13 +132,46 @@ void ArticleView::linkClicked( QUrl const & url )
|
||||||
else
|
else
|
||||||
if ( url.scheme() == "bres" || url.scheme() == "gdau" )
|
if ( url.scheme() == "bres" || url.scheme() == "gdau" )
|
||||||
{
|
{
|
||||||
vector< char > data;
|
|
||||||
|
|
||||||
// Download it
|
// Download it
|
||||||
|
|
||||||
|
vector< char > data;
|
||||||
|
bool found = false;
|
||||||
|
|
||||||
|
|
||||||
|
if ( url.scheme() == "gdau" && url.host() == "search" && groups.size() )
|
||||||
|
{
|
||||||
|
// Since searches should be limited to current group, we just do them
|
||||||
|
// here ourselves since otherwise we'd need to pass group id to netmgr
|
||||||
|
// and it should've been having knowledge of the current groups, too.
|
||||||
|
|
||||||
|
QString currentGroup = getGroup( ui.definition->url() );
|
||||||
|
|
||||||
|
for( unsigned x = 0; x < groups.size(); ++x )
|
||||||
|
if ( groups[ x ].name == currentGroup )
|
||||||
|
{
|
||||||
|
for( unsigned y = 0; y < groups[ x ].dictionaries.size(); ++y )
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
groups[ x ].dictionaries[ y ]->getResource(
|
||||||
|
url.path().mid( 1 ).toUtf8().data(), data );
|
||||||
|
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
catch( Dictionary::exNoSuchResource & )
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
QString contentType;
|
QString contentType;
|
||||||
|
|
||||||
if ( !articleNetMgr.getResource( url, data, contentType ) )
|
if ( !found && !articleNetMgr.getResource( url, data, contentType ) )
|
||||||
{
|
{
|
||||||
QMessageBox::critical( this, tr( "GoldenDict" ), tr( "The referenced resource doesn't exist." ) );
|
QMessageBox::critical( this, tr( "GoldenDict" ), tr( "The referenced resource doesn't exist." ) );
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue