css 및 js 호출순서 조정기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2009-03-06 05:33:56 +00:00
parent 4f380d9c48
commit 61851f1dfe
2149 changed files with 109090 additions and 18689 deletions

View file

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<module>
<grants />
<permissions />
<actions>
<action name="dispKrzipAdminConfig" type="view" admin_index="true" standalone="true" />
<action name="procKrzipAdminInsertConfig" type="controller" standalone="true" />

View file

@ -15,10 +15,6 @@
* @brief 설치시 추가 작업이 필요할시 구현
**/
function moduleInstall() {
// action forward에 등록 (관리자 모드에서 사용하기 위함)
$oModuleController = &getController('module');
$oModuleController->insertActionForward('krzip', 'view', 'dispKrzipAdminConfig');
return new Object();
}

View file

@ -6,17 +6,17 @@
**/
// 일반 단어들
$lang->krzip = "한국 우편번호";
$lang->krzip_server_hostname = "우편번호 검사 서버의 이름";
$lang->krzip_server_port = "우편번호 검사 서버 포트";
$lang->krzip_server_query = "우편번호 검사 서버 경로";
$lang->krzip = '한국 우편번호';
$lang->krzip_server_hostname = '우편번호 검사 서버의 이름';
$lang->krzip_server_port = '우편번호 검사 서버 포트';
$lang->krzip_server_query = '우편번호 검사 서버 경로';
// 설명문
$lang->about_krzip_server_hostname = "우편번호를 검사하여 결과 목록을 가져올 서버의 도메인을 입력해주세요";
$lang->about_krzip_server_port = "우편번호를 검사서버의 포트 번호를 입력해주세요";
$lang->about_krzip_server_query = "우편번호를 검사서버에 요청할 query url을 입력해 주세요";
$lang->about_krzip_server_hostname = '우편번호를 검사하여 결과 목록을 가져올 서버의 도메인을 입력해주세요';
$lang->about_krzip_server_port = '우편번호를 검사서버의 포트 번호를 입력해주세요';
$lang->about_krzip_server_query = '우편번호를 검사서버에 요청할 query url을 입력해 주세요';
// 에러 메세지들
$lang->msg_not_exists_addr = "검색하려는 대상이 없습니다";
$lang->msg_fail_to_socket_open = "우편번호 검색 대상 서버 접속이 실패하였습니다";
$lang->msg_not_exists_addr = '검색하려는 대상이 없습니다';
$lang->msg_fail_to_socket_open = '우편번호 검색 대상 서버 접속이 실패하였습니다';
?>

View file

@ -1,9 +1,9 @@
<!--%import("filter/insert_config.xml")-->
<h3>{$lang->krzip} <span class="gray">{$lang->cmd_management}</span></h3>
<h3 class="xeAdmin">{$lang->krzip} <span class="gray">{$lang->cmd_management}</span></h3>
<form action="./" method="get" onsubmit="return procFilter(this, insert_config)">
<table cellspacing="0" class="adminTable gap1">
<table cellspacing="0" class="rowTable">
<tr>
<th scope="col"><div>{$lang->krzip_server_hostname}</div></th>
<td>
@ -26,9 +26,9 @@
</td>
</tr>
<tr class="row2">
<td colspan="2" class="right">
<span class="button"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
</td>
<th colspan="2" class="button">
<span class="button black strong"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
</th>
</tr>
</table>
</form>