[open-ils-commits] r11098 - in trunk/Open-ILS/web/conify/global: actor permission

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Nov 7 16:19:24 EST 2008


Author: dbs
Date: 2008-11-07 16:19:20 -0500 (Fri, 07 Nov 2008)
New Revision: 11098

Modified:
   trunk/Open-ILS/web/conify/global/actor/org_unit.html
   trunk/Open-ILS/web/conify/global/actor/org_unit_type.html
   trunk/Open-ILS/web/conify/global/permission/grp_tree.html
Log:
Make quotes in JavaScript inside attribute values work in XMLENT

Modified: trunk/Open-ILS/web/conify/global/actor/org_unit.html
===================================================================
--- trunk/Open-ILS/web/conify/global/actor/org_unit.html	2008-11-07 20:59:34 UTC (rev 11097)
+++ trunk/Open-ILS/web/conify/global/actor/org_unit.html	2008-11-07 21:19:20 UTC (rev 11098)
@@ -306,7 +306,7 @@
 									  jsId="editor_pane_opac_visible"
 									  type="checkbox"
 									  dojoType="dijit.form.CheckBox"
-									  onChange='if (current_ou) ou_list_store.setValue( current_ou, "opac_visible", this.checked ? "t" : "f" );'
+									  onChange="if (current_ou) ou_list_store.setValue( current_ou, 'opac_visible', this.checked ? 't' : 'f' );"
 									/>
 								</td>
 							</tr>
@@ -546,7 +546,7 @@
 											  jsId="billing_addr_valid"
 											  dojoType="dijit.form.CheckBox"
 											  value='t'
-											  onChange='if (current_billing_address) current_billing_address.valid( this.checked ? "t" : "f" );'
+											  onChange="if (current_billing_address) current_billing_address.valid( this.checked ? 't' : 'f' );"
 											/>
 										</td>
 									</tr>
@@ -615,7 +615,7 @@
 											  jsId="holds_addr_valid"
 											  dojoType="dijit.form.CheckBox"
 											  value='t'
-											  onChange='if (current_holds_address) current_holds_address.valid( this.checked ? "t" : "f" );'
+											  onChange="if (current_holds_address) current_holds_address.valid( this.checked ? 't' : 'f' );"
 											/>
 										</td>
 									</tr>
@@ -683,7 +683,7 @@
 											  type="checkbox"
 											  jsId="mailing_addr_valid"
 											  dojoType="dijit.form.CheckBox"
-											  onChange='if (current_mailing_address) current_mailing_address.valid( this.checked ? "t" : "f" );'
+											  onChange="if (current_mailing_address) current_mailing_address.valid( this.checked ? 't' : 'f' );"
 											/>
 										</td>
 									</tr>
@@ -751,7 +751,7 @@
 											  type="checkbox"
 											  jsId="ill_addr_valid"
 											  dojoType="dijit.form.CheckBox"
-											  onChange='if (current_ill_address) current_ill_address.valid( this.checked ? "t" : "f" );'
+											  onChange="if (current_ill_address) current_ill_address.valid( this.checked ? 't' : 'f' );"
 											/>
 										</td>
 									</tr>

Modified: trunk/Open-ILS/web/conify/global/actor/org_unit_type.html
===================================================================
--- trunk/Open-ILS/web/conify/global/actor/org_unit_type.html	2008-11-07 20:59:34 UTC (rev 11097)
+++ trunk/Open-ILS/web/conify/global/actor/org_unit_type.html	2008-11-07 21:19:20 UTC (rev 11098)
@@ -264,7 +264,7 @@
 									  jsId="editor_pane_can_have_users"
 									  type="checkbox"
 									  dojoType="dijit.form.CheckBox"
-									  onChange='if (current_type) ou_type_store.setValue( current_type, "can_have_users", this.checked ? "t" : "f" );'
+									  onChange="if (current_type) ou_type_store.setValue( current_type, 'can_have_users', this.checked ? 't' : 'f' );"
 									/>
 								</td>
 							</tr>

Modified: trunk/Open-ILS/web/conify/global/permission/grp_tree.html
===================================================================
--- trunk/Open-ILS/web/conify/global/permission/grp_tree.html	2008-11-07 20:59:34 UTC (rev 11097)
+++ trunk/Open-ILS/web/conify/global/permission/grp_tree.html	2008-11-07 21:19:20 UTC (rev 11098)
@@ -348,7 +348,7 @@
 									  jsId="editor_pane_usergroup"
 									  type="checkbox"
 									  dojoType="dijit.form.CheckBox"
-									  onChange='if (current_group) group_store.setValue( current_group, "usergroup", this.checked ? "t" : "f" );'
+									  onChange="if (current_group) group_store.setValue( current_group, 'usergroup', this.checked ? 't' : 'f' );"
 									/>
 								</td>
 							</tr>



More information about the open-ils-commits mailing list