Sorry, but the requested page could not be found.
zh/guide/drivers/Seafile #366
Replies: 1 comment 1 reply
-
配置好后访问缺报如下的错,seafile服务器版本:9.0.16 HTMLescape for msgs which contain variable like 'path' error_msg = HTMLescape(parsed_resp.error || parsed_resp.error_msg || parsed_resp.detail); } else { error_msg = gettext("Failed. Please check the network."); } return error_msg; } function ajaxErrorHandler(xhr, textStatus, errorThrown) { var error_msg = prepareAjaxErrorMsg(xhr); feedback(error_msg, 'error'); } (function() { var lang_context = $('#lang-context'), lang_selector = $('#lang-context-selector'); // for pages without '#lang', such as 'help' pages if ($('#lang').length == 0) { return; } lang_context.parent().css({'position':'relative'}); if ($('#header').is(':visible')) { // for login page lang_selector.css({ 'top': lang_context.position().top + lang_context.height() + 5, 'right': 0 }); } var setLangSelectorMaxHeight = function() { if ($('#header').is(':visible')) { // for login page $('.sf-popover-con', lang_selector).css({ 'max-height': $(window).height() - lang_selector.offset().top - 12 }); } }; $(window).on('resize', function() { if (lang_selector.is(':visible')) { setLangSelectorMaxHeight(); } }); lang_context.on('click', function() { lang_selector.toggleClass('hide'); if (lang_selector.is(':visible')) { setLangSelectorMaxHeight(); } return false; }); $(document).on('click', function(e) { var element = e.target || e.srcElement; if (element.id != 'lang-context-selector' && element.id != 'lang-context') { lang_selector.addClass('hide'); } }); })(); if ($('.side-nav').length) { $('#logo').addClass('hidden-sm-down'); $('#js-toggle-side-nav').removeClass('hide'); } $('#js-toggle-side-nav').on('click', function() { $('.side-nav').addClass('side-nav-shown'); $('').modal({ overlayClose: true, onClose: function() { $('.side-nav').removeClass('side-nav-shown'); $.modal.close(); }}); $('#simplemodal-container').css({'display':'none'}); return false; }); $('.js-close-side-nav').on('click', function() { $('.side-nav').removeClass('side-nav-shown'); return false; }); </script>
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
zh/guide/drivers/Seafile
Seafile 是以资料库为单位进行版本控制和同步的开源云盘。 使用本驱动可以挂载 Seafile 的资料库到 Alist,已支持访问加密资料库。 根文件夹路径 1、如果未设置资料库ID(RepoId),则该配置可指定要访问的资料库的名称与子路径,默认为根路径:/,表示展示所有资料库。假设你有一个资料库名为 example,如果你只想挂载该资料库的内容...
https://alist.nn.ci/zh/guide/drivers/Seafile.html
Beta Was this translation helpful? Give feedback.
All reactions