增加 welcome-file 以支持 Tomcat 7 下根路径可以被 map 到 LoginServlet。
[jibu.git] / jibu-web / jibu-core-extjs / src / main / webapp / ext-ux / msg-bus.js
bloba98e77b3eb3c3dc619d5d48bf38852ef2c4ce04c
1 Ext.ns('jibu.msg');
2 jibu.msg.bus = function(all,resp){
3     if (resp.getResponseHeader('Content-type')=='application/json;charset=UTF-8'){
4         var data = Ext.util.JSON.decode(resp.responseText);
5         if (data.message) {
6             jibu.msg.show(data.message,data.success);
7         }
8     } else {
9         resp.responseText='';
10         window.location = 'Login.x?ci=logout&reason=sessionExpired';
11     }
13 Ext.Ajax.on('requestcomplete', jibu.msg.bus, this);