mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
suspended the addDirectory function, since it s not working properly yet (no hierarchy created, download not working, etc)
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4138 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
753804eee8
commit
1dfa0c4155
@ -328,7 +328,10 @@ void SearchDialog::download()
|
|||||||
{
|
{
|
||||||
item = itemsForDownload.at(i);
|
item = itemsForDownload.at(i);
|
||||||
// call the download
|
// call the download
|
||||||
if (!item->text(SR_HASH_COL).isEmpty() || !item->childCount())
|
//
|
||||||
|
if (item->text(SR_HASH_COL).isEmpty()) // we have a folder
|
||||||
|
downloadDirectory(item, tr(""));
|
||||||
|
else
|
||||||
{
|
{
|
||||||
std::cerr << "SearchDialog::download() Calling File Request";
|
std::cerr << "SearchDialog::download() Calling File Request";
|
||||||
std::cerr << std::endl;
|
std::cerr << std::endl;
|
||||||
@ -337,10 +340,7 @@ void SearchDialog::download()
|
|||||||
std::string hash = item->text(SR_HASH_COL).toStdString();
|
std::string hash = item->text(SR_HASH_COL).toStdString();
|
||||||
getSourceFriendsForHash(hash,srcIds) ;
|
getSourceFriendsForHash(hash,srcIds) ;
|
||||||
|
|
||||||
if(!rsFiles -> FileRequest((item->text(SR_NAME_COL)).toStdString(),
|
if(!rsFiles -> FileRequest((item->text(SR_NAME_COL)).toStdString(), hash, (item->text(SR_SIZE_COL)).toULongLong(), "", RS_FILE_HINTS_NETWORK_WIDE, srcIds))
|
||||||
hash,
|
|
||||||
(item->text(SR_SIZE_COL)).toULongLong(),
|
|
||||||
"", RS_FILE_HINTS_NETWORK_WIDE, srcIds))
|
|
||||||
attemptDownloadLocal = true ;
|
attemptDownloadLocal = true ;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -349,8 +349,6 @@ void SearchDialog::download()
|
|||||||
std::cout << *it << "-" << std::endl ;
|
std::cout << *it << "-" << std::endl ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else // we have a folder
|
|
||||||
downloadDirectory(item, tr(""));
|
|
||||||
}
|
}
|
||||||
if (attemptDownloadLocal)
|
if (attemptDownloadLocal)
|
||||||
QMessageBox::information(0, tr("Download Notice"), tr("Skipping Local Files"));
|
QMessageBox::information(0, tr("Download Notice"), tr("Skipping Local Files"));
|
||||||
@ -830,6 +828,8 @@ void SearchDialog::insertDirectory(const std::string &txt, qulonglong searchId,
|
|||||||
|
|
||||||
void SearchDialog::insertDirectory(const std::string &txt, qulonglong searchId, const DirDetails &dir)
|
void SearchDialog::insertDirectory(const std::string &txt, qulonglong searchId, const DirDetails &dir)
|
||||||
{
|
{
|
||||||
|
return ; // Remove this statement to allow adding directories to the search results.
|
||||||
|
|
||||||
QString sid_hexa = QString::number(searchId,16) ;
|
QString sid_hexa = QString::number(searchId,16) ;
|
||||||
QTreeWidgetItem *child = new QTreeWidgetItem(ui.searchResultWidget);
|
QTreeWidgetItem *child = new QTreeWidgetItem(ui.searchResultWidget);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user