Changeset 1746
- Timestamp:
- 12/02/08 10:04:50 (1 month ago)
- Files:
-
- trunk/CHANGES (modified) (1 diff)
- trunk/opsview-web/root/admin/contact/edit_form_fields (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/CHANGES
r1738 r1746 9 9 Fixed installation on Redhat platforms, where a fresh install shows post install errors 10 10 Removed java dependency for opsview-core, instead relying on opsview-reports to provide 11 If realm != local, then hide the Atom feed details on the contact page as this does not use the realm of the contact to authenticate 11 12 12 13 2.14.1 17th November 2008 trunk/opsview-web/root/admin/contact/edit_form_fields
r1498 r1746 57 57 default => realms.default, 58 58 labels => realms.labels, 59 onchange => "if (this.value == 'local') { Element.show('password_details') } else { Element.hide('password_details')}",59 onchange => "if (this.value == 'local') { Element.show('password_details'); Element.show('web_feed_details'); } else { Element.hide('password_details'); Element.hide('web_feed_details'); }", 60 60 help_keyword => "authentication_realm", 61 61 ); … … 63 63 64 64 IF object.realm && object.realm != "local"; 65 hide_ passwords= "style='display:none'";66 END; 67 68 %]<div id="password_details" [% hide_ passwords%]>[%65 hide_non_local_realm = "style='display:none'"; 66 END; 67 68 %]<div id="password_details" [% hide_non_local_realm %]>[% 69 69 70 70 IF !clone && object.password; … … 200 200 ); 201 201 202 %]</div>[% 202 %]</div> 203 <div id="web_feed_details" [% hide_non_local_realm %]> 204 [% 203 205 204 206 checkbox( … … 251 253 ); 252 254 253 %]</div></div> 255 %]</div></div></div> 254 256 255 257 <script type="text/javascript">
