=== modified file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/plugin/chart.js' --- dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/plugin/chart.js 2013-10-14 11:39:50 +0000 +++ dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/plugin/chart.js 2013-10-14 13:30:51 +0000 @@ -2484,7 +2484,7 @@ }; requests.push({ - url: config.url + '/api/system/info.jsonp', + url: config.url + '/api/system/context.jsonp', success: function(r) { init.contextPath = r.contextPath; fn(); @@ -2540,6 +2540,8 @@ return; } + config.id = config.id || config.uid; + return true; }; === modified file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/plugin/map.js' --- dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/plugin/map.js 2013-10-13 21:03:02 +0000 +++ dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/plugin/map.js 2013-10-14 13:12:00 +0000 @@ -4074,7 +4074,7 @@ }; requests.push({ - url: config.url + '/api/system/info.jsonp', + url: config.url + '/api/system/context.jsonp', success: function(r) { init.contextPath = r.contextPath; fn(); === modified file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/plugin/table.js' --- dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/plugin/table.js 2013-10-14 11:39:50 +0000 +++ dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/plugin/table.js 2013-10-14 13:30:51 +0000 @@ -2797,7 +2797,7 @@ }; requests.push({ - url: config.url + '/api/system/info.jsonp', + url: config.url + '/api/system/context.jsonp', success: function(r) { init.contextPath = r.contextPath; fn(); @@ -2858,6 +2858,8 @@ return; } + config.id = config.id || config.uid; + return true; }; === modified file 'dhis-2/dhis-web/dhis-web-mapping/src/main/webapp/dhis-web-mapping/app/scripts/plugin.js' --- dhis-2/dhis-web/dhis-web-mapping/src/main/webapp/dhis-web-mapping/app/scripts/plugin.js 2013-10-13 21:03:02 +0000 +++ dhis-2/dhis-web/dhis-web-mapping/src/main/webapp/dhis-web-mapping/app/scripts/plugin.js 2013-10-14 13:12:00 +0000 @@ -35,7 +35,7 @@ }; requests.push({ - url: config.url + '/api/system/info.jsonp', + url: config.url + '/api/system/context.jsonp', success: function(r) { init.contextPath = r.contextPath; fn(); === modified file 'dhis-2/dhis-web/dhis-web-pivot/src/main/webapp/dhis-web-pivot/app/scripts/plugin.js' --- dhis-2/dhis-web/dhis-web-pivot/src/main/webapp/dhis-web-pivot/app/scripts/plugin.js 2013-10-13 21:03:02 +0000 +++ dhis-2/dhis-web/dhis-web-pivot/src/main/webapp/dhis-web-pivot/app/scripts/plugin.js 2013-10-14 13:30:51 +0000 @@ -57,7 +57,7 @@ }; requests.push({ - url: config.url + '/api/system/info.jsonp', + url: config.url + '/api/system/context.jsonp', success: function(r) { init.contextPath = r.contextPath; fn(); @@ -118,6 +118,8 @@ return; } + config.id = config.id || config.uid; + return true; }; === modified file 'dhis-2/dhis-web/dhis-web-visualizer/src/main/webapp/dhis-web-visualizer/app/scripts/plugin.js' --- dhis-2/dhis-web/dhis-web-visualizer/src/main/webapp/dhis-web-visualizer/app/scripts/plugin.js 2013-10-13 21:03:02 +0000 +++ dhis-2/dhis-web/dhis-web-visualizer/src/main/webapp/dhis-web-visualizer/app/scripts/plugin.js 2013-10-14 13:30:51 +0000 @@ -44,7 +44,7 @@ }; requests.push({ - url: config.url + '/api/system/info.jsonp', + url: config.url + '/api/system/context.jsonp', success: function(r) { init.contextPath = r.contextPath; fn(); @@ -100,6 +100,8 @@ return; } + config.id = config.id || config.uid; + return true; };