git-svn-id: http://xe-core.googlecode.com/svn/trunk@1144 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-16 01:05:32 +00:00
parent 2efc96a061
commit 897b68879f
15 changed files with 24 additions and 6 deletions

View file

@ -28,7 +28,7 @@
<param name="nick_name" target="nick_name" />
<param name="email_address" target="email_address" />
</parameter>
<response >
<response callback_func="completeInstalled">
<tag name="error" />
<tag name="message" />
<tag name="redirect_url" />

View file

@ -26,7 +26,7 @@
<param name="nick_name" target="nick_name" />
<param name="email_address" target="email_address" />
</parameter>
<response >
<response callback_func="completeInstalled">
<tag name="error" />
<tag name="message" />
<tag name="redirect_url" />

View file

@ -20,7 +20,7 @@
<param name="nick_name" target="nick_name" />
<param name="email_address" target="email_address" />
</parameter>
<response >
<response callback_func="completeInstalled">
<tag name="error" />
<tag name="message" />
<tag name="redirect_url" />

View file

@ -1,4 +1,5 @@
<!--%import("filter/cubrid.xml")-->
<!--%import("js/install_admin.js")-->
<form action="./" method="post" onsubmit="return procFilter(this, install)">
<input type="hidden" name="db_type" value="{$db_type}" />

View file

@ -1,4 +1,5 @@
<!--%import("filter/mysql.xml")-->
<!--%import("js/install_admin.js")-->
<form action="./" method="post" onsubmit="return procFilter(this, install)">
<input type="hidden" name="db_type" value="{$db_type}" />

View file

@ -1,4 +1,5 @@
<!--%import("filter/mysql.xml")-->
<!--%import("js/install_admin.js")-->
<form action="./" method="post" onsubmit="return procFilter(this, install)">
<input type="hidden" name="db_type" value="{$db_type}" />

View file

@ -1,4 +1,5 @@
<!--%import("filter/sqlite2.xml")-->
<!--%import("js/install_admin.js")-->
<form action="./" method="post" onsubmit="return procFilter(this, install)">
<input type="hidden" name="db_type" value="{$db_type}" />

View file

@ -1,4 +1,5 @@
<!--%import("filter/sqlite2.xml")-->
<!--%import("js/install_admin.js")-->
<form action="./" method="post" onsubmit="return procFilter(this, install)">
<input type="hidden" name="db_type" value="{$db_type}" />

View file

@ -0,0 +1,7 @@
/**
* @brief 설치 완료후 실행될 함수
*/
function completeInstalled(ret_obj) {
alert(ret_obj["message"]);
location.href = "./";
}