mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 00:32:15 +09:00
기본 마이그레이션용 XML및 ttxml에 대해 importing 100% 가능하도록 수정. importer 0.2 commit
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3947 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
1b8c765148
commit
c37932cc71
27 changed files with 1593 additions and 1294 deletions
|
|
@ -55,6 +55,8 @@ function xml_response_filter(oXml, callback_func, response_tags, callback_func_a
|
|||
|
||||
callback_func(ret_obj, response_tags, callback_func_arg, fo_obj);
|
||||
|
||||
oXml.clear();
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
@ -67,6 +69,7 @@ function xml_handler() {
|
|||
this.params = new Array();
|
||||
|
||||
this.reset = xml_handlerReset;
|
||||
this.clear = xml_handlerClear;
|
||||
this.getXmlHttp = zGetXmlHttp;
|
||||
this.request = xml_handlerRequest;
|
||||
this.setPath = xml_handlerSetPath;
|
||||
|
|
@ -123,6 +126,10 @@ function xml_handlerReset() {
|
|||
this.params = new Array();
|
||||
}
|
||||
|
||||
function xml_handlerClear() {
|
||||
this.obj_xmlHttp = null;
|
||||
}
|
||||
|
||||
function xml_handlerAddParam(key, val) {
|
||||
this.params[key] = val;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue