Index: branches/unlabeled/unlabeled-1.1.2/core/admin_templates/incs/blocks.tpl =================================================================== diff -u -r6899 -r6912 --- branches/unlabeled/unlabeled-1.1.2/core/admin_templates/incs/blocks.tpl (.../blocks.tpl) (revision 6899) +++ branches/unlabeled/unlabeled-1.1.2/core/admin_templates/incs/blocks.tpl (.../blocks.tpl) (revision 6912) @@ -13,7 +13,7 @@ Index: branches/unlabeled/unlabeled-1.1.2/core/admin_templates/users/admins_list.tpl =================================================================== diff -u --- branches/unlabeled/unlabeled-1.1.2/core/admin_templates/users/admins_list.tpl (revision 0) +++ branches/unlabeled/unlabeled-1.1.2/core/admin_templates/users/admins_list.tpl (revision 6912) @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + +
+ +
+ + + + \ No newline at end of file Index: branches/unlabeled/unlabeled-1.9.18/core/kernel/utility/debugger/debugger.js =================================================================== diff -u -r6147 -r6912 --- branches/unlabeled/unlabeled-1.9.18/core/kernel/utility/debugger/debugger.js (.../debugger.js) (revision 6147) +++ branches/unlabeled/unlabeled-1.9.18/core/kernel/utility/debugger/debugger.js (.../debugger.js) (revision 6912) @@ -66,8 +66,9 @@ this.busyRequest = false; // window.$Debugger = this; // this should be uncommented in case if debugger variable is not $Debugger - window.onscroll = function(ev) { window.$Debugger.Resize(ev); } - window.onresize = function(ev) { window.$Debugger.Resize(ev); } + this.AddEvent(window, 'scroll', function (ev) { window.$Debugger.Resize(ev); }); + this.AddEvent(window, 'resize', function (ev) { window.$Debugger.Resize(ev); }); +// this.AddEvent(window, 'keydown', function (ev) { window.$Debugger.KeyDown(ev); }); // don't work in IE document.onkeydown = function(ev) { window.$Debugger.KeyDown(ev); } } @@ -278,3 +279,11 @@ $arguments_layer.style.display = ($arguments_layer.style.display == 'none') ? 'block' : 'none'; } +Debugger.prototype.AddEvent = function (el, evname, func) { + var $status = false; + if (document.all) { + $status = el.attachEvent('on' + evname, func); + } else { + $status = el.addEventListener(evname, func, true); + } +} \ No newline at end of file Index: branches/unlabeled/unlabeled-1.3.2/core/install/install_schema.sql =================================================================== diff -u -r6900 -r6912 --- branches/unlabeled/unlabeled-1.3.2/core/install/install_schema.sql (.../install_schema.sql) (revision 6900) +++ branches/unlabeled/unlabeled-1.3.2/core/install/install_schema.sql (.../install_schema.sql) (revision 6912) @@ -3,6 +3,22 @@ # ALTER TABLE ThemeFiles ADD FileFound TINYINT UNSIGNED NOT NULL DEFAULT '0'; # ALTER TABLE ThemeFiles ADD INDEX (FileFound); +CREATE TABLE CustomField ( + CustomFieldId int(11) NOT NULL auto_increment, + Type int(11) NOT NULL default '0', + FieldName varchar(255) NOT NULL default '', + FieldLabel varchar(40) default NULL, + Heading varchar(60) default NULL, + Prompt varchar(60) default NULL, + ElementType varchar(50) NOT NULL default '', + ValueList varchar(255) default NULL, + DisplayOrder int(11) NOT NULL default '0', + OnGeneralTab tinyint(4) NOT NULL default '0', + IsSystem tinyint(3) unsigned NOT NULL default '0', + PRIMARY KEY (CustomFieldId), + KEY Type (Type) +); + CREATE TABLE ConfigurationAdmin ( VariableName varchar(80) NOT NULL default '', heading varchar(255) default NULL, Index: branches/unlabeled/unlabeled-1.1.2/core/admin_templates/incs/grid_blocks.tpl =================================================================== diff -u -r6904 -r6912 --- branches/unlabeled/unlabeled-1.1.2/core/admin_templates/incs/grid_blocks.tpl (.../grid_blocks.tpl) (revision 6904) +++ branches/unlabeled/unlabeled-1.1.2/core/admin_templates/incs/grid_blocks.tpl (.../grid_blocks.tpl) (revision 6912) @@ -95,12 +95,12 @@ - + - +
" id="">">img/itemicons/">
@@ -118,35 +118,35 @@ - + - +
" id="">">img/itemicons/">
- + - +
">img/itemicons/">
- + - +
" id="">">img/itemicons/">
Index: branches/unlabeled/unlabeled-1.1.2/core/admin_templates/regional/languages_edit.tpl =================================================================== diff -u -r6734 -r6912 --- branches/unlabeled/unlabeled-1.1.2/core/admin_templates/regional/languages_edit.tpl (.../languages_edit.tpl) (revision 6734) +++ branches/unlabeled/unlabeled-1.1.2/core/admin_templates/regional/languages_edit.tpl (.../languages_edit.tpl) (revision 6912) @@ -1,3 +1,4 @@ + Index: branches/unlabeled/unlabeled-1.1.2/core/admin_templates/users/admins_edit.tpl =================================================================== diff -u --- branches/unlabeled/unlabeled-1.1.2/core/admin_templates/users/admins_edit.tpl (revision 0) +++ branches/unlabeled/unlabeled-1.1.2/core/admin_templates/users/admins_edit.tpl (revision 6912) @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+ + + \ No newline at end of file