support connection config in uri

This commit is contained in:
4Oranges 2017-12-22 01:36:30 +08:00
parent adb7000949
commit 9e3c173d39
2 changed files with 16 additions and 2 deletions

View File

@ -27,7 +27,7 @@ function mergeTranslation(translation, base) {
return translation; return translation;
} }
webui.config(['$translateProvider', function ($translateProvider) { webui.config(function ($translateProvider, $locationProvider) {
$translateProvider $translateProvider
.translations('en_US', translations.en_US) .translations('en_US', translations.en_US)
.translations('nl_NL', mergeTranslation(translations.nl_NL, translations.en_US)) .translations('nl_NL', mergeTranslation(translations.nl_NL, translations.en_US))
@ -44,7 +44,12 @@ webui.config(['$translateProvider', function ($translateProvider) {
.translations('cs_CZ', mergeTranslation(translations.cs_CZ, translations.en_US)) .translations('cs_CZ', mergeTranslation(translations.cs_CZ, translations.en_US))
.useSanitizeValueStrategy('escapeParameters') .useSanitizeValueStrategy('escapeParameters')
.determinePreferredLanguage(); .determinePreferredLanguage();
}]);
$locationProvider.html5Mode({
enabled: true,
requireBase: false
});
});
$(function() { $(function() {
if (!String.prototype.startsWith) { if (!String.prototype.startsWith) {

View File

@ -19,6 +19,15 @@ function(syscall, globalTimeout, alerts, utils, rootScope, uri, authconf, filter
// try at the start, so that it is presistant even when default authconf works // try at the start, so that it is presistant even when default authconf works
if(cookieConf) configurations.unshift(cookieConf); if(cookieConf) configurations.unshift(cookieConf);
if (uri.search().host) {
configurations.unshift(uri.search());
configurations[0].auth = {
token: configurations[0].token,
user: configurations[0].username,
pass: configurations[0].password
};
}
if (['http', 'https'].indexOf(uri.protocol()) != -1 && uri.host() != 'localhost') { if (['http', 'https'].indexOf(uri.protocol()) != -1 && uri.host() != 'localhost') {
configurations.push({ configurations.push({
host: uri.host(), host: uri.host(),