当前位置: 首页>>代码示例>>C++>>正文


C++ ApiError::httpErrorCode方法代码示例

本文整理汇总了C++中ApiError::httpErrorCode方法的典型用法代码示例。如果您正苦于以下问题:C++ ApiError::httpErrorCode方法的具体用法?C++ ApiError::httpErrorCode怎么用?C++ ApiError::httpErrorCode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ApiError的用法示例。


在下文中一共展示了ApiError::httpErrorCode方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: onCreateDefaultRepoFailure

void InitVirtualDriveDialog::onCreateDefaultRepoFailure(const ApiError& error)
{
    if (error.type() == ApiError::HTTP_ERROR && error.httpErrorCode() == 404) {
        fail(tr("Failed to create default library:\n\n"
                "The server version must be 2.1 or higher to support this."));
    } else {
        fail(tr("Failed to create default library:\n%1").arg(error.toString()));
    }
}
开发者ID:BillTheBest,项目名称:seafile-client,代码行数:9,代码来源:init-vdrive-dialog.cpp

示例2: onLogoutDeviceRequestFailed

void AccountView::onLogoutDeviceRequestFailed(const ApiError& error)
{
    LogoutDeviceRequest *req = (LogoutDeviceRequest *)QObject::sender();
    req->deleteLater();
    QString msg;
    if (error.httpErrorCode() == 404) {
        msg = tr("Logging out is not supported on your server (version too low).");
    } else {
        msg = tr("Failed to remove information on server: %1").arg(error.toString());
    }
    seafApplet->warningBox(msg, this);
}
开发者ID:Geosparc,项目名称:seafile-client,代码行数:12,代码来源:account-view.cpp

示例3: refreshFailed

void ActivitiesTab::refreshFailed(const ApiError& error)
{
    QString text;
    if (error.type() == ApiError::HTTP_ERROR
        && error.httpErrorCode() == 404) {
        text = tr("File Activities are only supported in Seafile Server Professional Edition.");
    } else {
        QString link = QString("<a style=\"color:#777\" href=\"#\">%1</a>").arg(tr("retry"));
        text = tr("Failed to get actvities information. "
                  "Please %1").arg(link);
    }

    loading_failed_text_->setText(text);

    mStack->setCurrentIndex(INDEX_LOADING_FAILED_VIEW);
}
开发者ID:Geosparc,项目名称:seafile-client,代码行数:16,代码来源:activities-tab.cpp

示例4: loginFailed

void LoginDialog::loginFailed(const ApiError& error)
{
    switch (error.type()) {
    case ApiError::SSL_ERROR:
        onSslErrors(error.sslReply(), error.sslErrors());
        break;
    case ApiError::NETWORK_ERROR:
        onNetworkError(error.networkError(), error.networkErrorString());
        break;
    case ApiError::HTTP_ERROR:
        onHttpError(error.httpErrorCode());
    default:
        // impossible
        break;
    }
}
开发者ID:haidian6672,项目名称:seafile-client,代码行数:16,代码来源:login-dialog.cpp

示例5: getCommitDetailsFailed

void EventDetailsDialog::getCommitDetailsFailed(const ApiError& error)
{
    ServerRepo repo = RepoService::instance()->getRepo(event_.repo_id);

    if (!repo.isValid()) {
        return;
    }

    if (repo.encrypted &&
        error.type() == ApiError::HTTP_ERROR &&
        error.httpErrorCode() == 400) {

        SetRepoPasswordDialog dialog(repo, this);

        if (dialog.exec() == QDialog::Accepted) {
            sendRequest();
        } else {
            reject();
        }
    }
}
开发者ID:DevCybran,项目名称:seafile-client,代码行数:21,代码来源:event-details-dialog.cpp


注:本文中的ApiError::httpErrorCode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。