|
|
@ -1001,14 +1001,13 @@ void MainWindow::anchorClickedHandler(const QUrl & link) { |
|
|
|
url.parse_query(params); |
|
|
|
url.parse_query(params); |
|
|
|
const std::string page = params["page"]; |
|
|
|
const std::string page = params["page"]; |
|
|
|
const std::string cmd = params["cmd"]; |
|
|
|
const std::string cmd = params["cmd"]; |
|
|
|
if(page == "sam_session") { |
|
|
|
if (page == "sam_session") { |
|
|
|
const std::string samID = params["sam_id"]; |
|
|
|
|
|
|
|
pageWithBackButton->show(); |
|
|
|
pageWithBackButton->show(); |
|
|
|
textBrowser->hide(); |
|
|
|
textBrowser->hide(); |
|
|
|
std::stringstream s; |
|
|
|
std::stringstream s; |
|
|
|
i2p::http::ShowSAMSession (s, samID); |
|
|
|
i2p::http::ShowSAMSession (s, params["sam_id"]); |
|
|
|
childTextBrowser->setHtml(QString::fromStdString(s.str())); |
|
|
|
childTextBrowser->setHtml(QString::fromStdString(s.str())); |
|
|
|
} else if(page == "local_destination") { |
|
|
|
} else if (page == "local_destination") { |
|
|
|
std::string b32 = params["b32"]; |
|
|
|
std::string b32 = params["b32"]; |
|
|
|
currentLocalDestinationB32 = b32; |
|
|
|
currentLocalDestinationB32 = b32; |
|
|
|
pageWithBackButton->show(); |
|
|
|
pageWithBackButton->show(); |
|
|
@ -1017,6 +1016,12 @@ void MainWindow::anchorClickedHandler(const QUrl & link) { |
|
|
|
std::string strstd = currentLocalDestinationB32; |
|
|
|
std::string strstd = currentLocalDestinationB32; |
|
|
|
i2p::http::ShowLocalDestination(s,strstd,0); |
|
|
|
i2p::http::ShowLocalDestination(s,strstd,0); |
|
|
|
childTextBrowser->setHtml(QString::fromStdString(s.str())); |
|
|
|
childTextBrowser->setHtml(QString::fromStdString(s.str())); |
|
|
|
|
|
|
|
} else if (page == "i2cp_local_destination") { |
|
|
|
|
|
|
|
pageWithBackButton->show(); |
|
|
|
|
|
|
|
textBrowser->hide(); |
|
|
|
|
|
|
|
std::stringstream s; |
|
|
|
|
|
|
|
i2p::http::ShowI2CPLocalDestination (s, params["i2cp_id"]); |
|
|
|
|
|
|
|
childTextBrowser->setHtml(QString::fromStdString(s.str())); |
|
|
|
} else if(cmd == "closestream") { |
|
|
|
} else if(cmd == "closestream") { |
|
|
|
std::string b32 = params["b32"]; |
|
|
|
std::string b32 = params["b32"]; |
|
|
|
uint32_t streamID = std::stoul(params["streamID"], nullptr); |
|
|
|
uint32_t streamID = std::stoul(params["streamID"], nullptr); |
|
|
|