Virtual Site 생성시 도메인 단위(서브도메인 또는 독립 도메인)이 아닌 ID 형식으로 생성 가능하도록 기능 개선.

SID 로 불리는 이 사이트ID는 MID와 중복이 불가능함.


git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6051 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-04-08 10:10:17 +00:00
parent 40e1740839
commit bb97446dfc
40 changed files with 313 additions and 189 deletions

View file

@ -18,6 +18,7 @@ function exec_xml(module, act, params, callback_func, response_tags, callback_fu
}
oXml.addParam("module", module);
oXml.addParam("act", act);
if(typeof(xeSid)!='undefined') oXml.addParam('sid', xeSid);
if(typeof(response_tags)=="undefined" || response_tags.length<1) response_tags = new Array('error','message');
@ -429,6 +430,7 @@ $.exec_json = function(action,data,func){
}
$.extend(data,{module:action[0],act:action[1]});
if(typeof(xeSid)!='undefined') $.extend(data,{sid:xeSid});
$.ajax({
type:"POST"
,dataType:"json"

View file

@ -124,6 +124,7 @@
$lang->file = 'file';
$lang->mid = 'Module Name';
$lang->sid = 'Site Name';
$lang->layout = 'Layout';
$lang->widget = 'Widget';
$lang->module = 'Module';

View file

@ -123,6 +123,7 @@
$lang->file = 'file';
$lang->mid = 'ID del Módulo';
$lang->sid = 'Site Name';
$lang->layout = 'Composición';
$lang->widget = 'Widget';
$lang->module = 'Módulo';

View file

@ -124,6 +124,7 @@
$lang->file = 'file';
$lang->mid = 'Nom';
$lang->sid = 'Site Name';
$lang->layout = 'Mise en Page';
$lang->widget = 'Gadget';
$lang->module = 'Module';

View file

@ -124,6 +124,7 @@
$lang->file = 'file';
$lang->mid = 'Module Name';
$lang->sid = 'Site Name';
$lang->layout = 'Layout';
$lang->widget = 'Widget';
$lang->module = 'Modul';

View file

@ -124,6 +124,7 @@
$lang->file = 'ファイル';
$lang->mid = 'モジュール名';
$lang->sid = 'Site Name';
$lang->layout = 'レイアウト';
$lang->widget = 'ウィジェット';
$lang->module = 'モジュール';

View file

@ -124,6 +124,7 @@
$lang->file = '파일';
$lang->mid = '모듈이름';
$lang->sid = '가상 사이트 이름';
$lang->layout = '레이아웃';
$lang->widget = '위젯 ';
$lang->module = '모듈';

View file

@ -122,6 +122,7 @@
$lang->order_desc = 'спустится';
$lang->mid = 'Имя Модуля';
$lang->sid = 'Site Name';
$lang->layout = 'Лейаут';
$lang->widget = 'Виджет';
$lang->module = 'Модуль';

View file

@ -124,6 +124,7 @@
$lang->file = '文件';
$lang->mid = '模块名称';
$lang->sid = 'Site Name';
$lang->layout = '布局';
$lang->widget = '控件 ';
$lang->module = '模块';

View file

@ -124,6 +124,7 @@
$lang->file = '檔案';
$lang->mid = '模組名稱';
$lang->sid = 'Site Name';
$lang->layout = '版面';
$lang->widget = '控件 ';
$lang->module = '模組';

View file

@ -52,6 +52,7 @@
<script type="text/javascript">//<![CDATA[
var current_url = "{$current_url}";
var request_uri = "{$request_uri}";
<!--@if($sid)-->var xeSid = "{$sid}";<!--@end-->
var current_mid = "{$mid}";
var waiting_message = "{$lang->msg_call_server}";
var ssl_actions = new Array(<!--@if(count($ssl_actions))-->"{implode('","',$ssl_actions)}"<!--@end-->);