mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 15:25:09 +02:00
* jQuery: changed $ to $j to work around mootools use in Joomla templates and other js code in imported projects
required to change $ --> $j: phpgwapi/* jdots/* etemplate/* stylite/* felamimail/* admin/* news_admin/* projectmanager/* importexport/* infolog/* ranking/* required, but not automatic: importexport/setup/etemplates.inc.php phpgwapi/js/jquery/* negative, not to touch or revert later: phpgwapi/inc/savant2/Savant2/Savant2_Compiler_basic.php: '(\$(.+))' => 'print $1', phpgwapi/js/dhtmlxtree/libCompiler/core.js sitemgr/* phpfreechat/* gallery/* activesync/include/smb.php: '^\tIPC\\\$(.*)[ ]+IPC' => 'skip', etemplate/inc/class.bo_merge.inc.php: if ($this->table_plugins && preg_match_all('/\\$\\$table\\/([A-Za-z0-9_]+)\\$\\$(.*?)\\$\\$endtable\\$\\$/s',$content,$matches,PREG_SET_ORDER)) find phpgwapi jdots etemplate stylite felamimail admin news_admin projectmanager importexport infolog ranking \ \( -name '*.php' -o -name '*.js' \) -exec grep -q '\$(' {} \; -print \ -exec sed -i '' 's|\$(|$j(|g' {} \; svn revert phpgwapi/inc/savant2/Savant2/Savant2_Compiler_basic.php phpgwapi/js/dhtmlxtree/libCompiler/core.js \ importexport/setup/etemplates.inc.php phpgwapi/js/jquery/jquery.js etemplate/inc/class.bo_merge.inc.php additional changes: phpgwapi/js/jquery/jquery.js: window.$ --> window.$j phpgwapi/js/egw_json.js:291 this.request = $j.ajax({url: this.url, jdots/templates/jdots/head.tpl:59 $j(document).ready(function() { phpgwapi/js/egw_action/egw_grid_view.js: $.browser --> $j.browser importexport/setup/etemplates.inc.php: etemplate editor importexport.wizard_basic_export_csv.choose_fields onclick of check icon changed phpgwapi/js/egw_action/tests/*.html phpgwapi/js/egw_action/tests/js/jquery.js: window.$ --> window.$j
This commit is contained in:
@ -10,14 +10,14 @@ var permission_prompt;
|
||||
* Check to see if admin has taken away access to a category
|
||||
*/
|
||||
function check_owner(element_id) {
|
||||
var checkboxes = $(':checkbox', document.getElementById(element_id));
|
||||
var all_users = $(document.getElementById(element_id + '[0]'));
|
||||
var checkboxes = $j(':checkbox', document.getElementById(element_id));
|
||||
var all_users = $j(document.getElementById(element_id + '[0]'));
|
||||
|
||||
// If they checked all users, uncheck the others
|
||||
if(all_users.length > 0 && all_users.attr("checked")) {
|
||||
checkboxes.attr("checked",false);
|
||||
all_users.attr("checked", true);
|
||||
checkboxes = $(':checkbox', document.getElementById(element_id)).filter(':checked');
|
||||
checkboxes = $j(':checkbox', document.getElementById(element_id)).filter(':checked');
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -27,17 +27,17 @@ function check_owner(element_id) {
|
||||
var checkbox = checkboxes.filter('[value="'+cat_original_owner[i]+'"]');
|
||||
if(checkbox.filter(':checked').length == 0 && checkbox.get(0) != undefined) {
|
||||
diff.push(cat_original_owner[i]);
|
||||
labels.push($(checkbox.get(0).nextSibling).text());
|
||||
labels.push($j(checkbox.get(0).nextSibling).text());
|
||||
}
|
||||
}
|
||||
|
||||
// Single selection?
|
||||
if(checkboxes.length == 0) {
|
||||
var new_group = $(document.getElementById(element_id));
|
||||
var new_group = $j(document.getElementById(element_id));
|
||||
if(new_group.attr('value') != 0 && cat_original_owner.length > 0) {
|
||||
diff.push(cat_original_owner[0]);
|
||||
var selector = 'option[value="'+cat_original_owner[0]+'"]';
|
||||
labels.push("\n"+$(selector, new_group).text());
|
||||
labels.push("\n"+$j(selector, new_group).text());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user