the old "www/layout/<admin/frontend>/<template name>/..." layout is deprecated. new layout: www/layout/<admin|frontend>/<cache/css/images/javascript>/ The layout/<admin/frontend> is symlinked to www/<admin|frontend>/layout templates and lang are moved to includes www/includes/template/<admin/frontend> www/includes/lang/<admin/frontend> and no longer symlinked to any public facing folders The language po files have already been moved to 4dev/lang/<admin|frontend>/
17 lines
537 B
JavaScript
17 lines
537 B
JavaScript
/* vim: set fileencoding=utf-8 expandtab! shiftwidth=2 : */
|
|
/* modified version of firebugx.js which can cope with
|
|
* firebug 1.2+ and the webkit console */
|
|
|
|
var ConsoleSetup = function() {
|
|
if (!window.console)
|
|
window.console = {};
|
|
|
|
var names = ['log', 'debug', 'info', 'warn', 'error', 'assert', 'dir', 'dirxml', 'group', 'groupEnd', 'time', 'timeEnd', 'count', 'trace', 'profile', 'profileEnd'];
|
|
|
|
for (var i = 0; i < names.length; ++i) {
|
|
if (!window.console[names[i]]) {
|
|
window.console[names[i]] = function() {};
|
|
}
|
|
}
|
|
}();
|