#19692159 improve install UI

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8311 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ovclas 2011-04-14 08:42:57 +00:00
parent 9076974a59
commit f71f5b564e
48 changed files with 1555 additions and 4097 deletions

View file

@ -1,3 +1,27 @@
/**
* @brief DB정보 Setting후 실행될 함수
*/
function completeDBSetting(ret_obj) {
if(ret_obj['error'] != 0) {
alert(ret_obj['message']);
return;
} else {
location.href = "./index.php?act=dispInstallConfigForm";
}
}
/**
* @brief Rewrite module, Time-zone Setting 실행될 함수
*/
function completeConfigSetting(ret_obj) {
if(ret_obj['error'] != 0) {
alert(ret_obj['message']);
return;
} else {
location.href = "./index.php?act=dispInstallManagerForm";
}
}
/**
* @brief 설치 완료후 실행될 함수
*/
@ -85,7 +109,7 @@ function completeGetFtpInfo(ret_obj)
arr.pop();
arr.push("");
target = arr.join("/");
list = list + "<li><a href='#ftpSetup' onclick=\"getFTPList('"+target+"')\">../</a></li>";
list = list + "<li><a href='#ftpSetup' style='color:#fff; text-decoration:underline;' onclick=\"getFTPList('"+target+"')\">../</a></li>";
}
for(var i=0;i<ret_obj['list']['item'].length;i++)
@ -101,10 +125,10 @@ function completeGetFtpInfo(ret_obj)
}
else
{
list = list + "<li><a href='#ftpSetup' onclick=\"getFTPList('"+pwd+v+"')\">"+v+"</a></li>";
list = list + "<li><a href='#ftpSetup' style='color:#fff; text-decoration:underline;' onclick=\"getFTPList('"+pwd+v+"')\">"+v+"</a></li>";
}
}
list = "<td><ul>"+list+"</ul></td>";
//list = "<td><ul>"+list+"</ul></td>";
e.append(jQuery(list));
}