* [Cluster-devel] conga ./conga.spec.in.in luci/storage/form-macros
@ 2007-08-14 18:22 rmccabe
0 siblings, 0 replies; 3+ messages in thread
From: rmccabe @ 2007-08-14 18:22 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Branch: RHEL5
Changes by: rmccabe at sourceware.org 2007-08-14 18:22:52
Modified files:
. : conga.spec.in.in
luci/storage : form-macros
Log message:
fix bz250834 (storage name warning utility produces a storm of warnings which can lock your browser)
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/conga.spec.in.in.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.45.2.53&r2=1.45.2.54
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/storage/form-macros.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.17.2.8&r2=1.17.2.9
--- conga/conga.spec.in.in 2007/08/13 19:06:01 1.45.2.53
+++ conga/conga.spec.in.in 2007/08/14 18:22:51 1.45.2.54
@@ -314,7 +314,8 @@
- Fixed bz230451 (fence_xvm.key file is not automatically created. Should have a least a default)
- Fixed bz249097 (allow a space as a valid password char)
- Fixed bz250834 (ZeroDivisionError when attempting to click an empty lvm volume group)
-- Resolves: bz249097
+- Fixed bz250443 (storage name warning utility produces a storm of warnings which can lock your browser)
+- Resolves: bz249097, bz250443
- Related: bz230451
* Mon Jul 30 2007 Ryan McCabe <rmccabe@redhat.com> 0.10.0-3
--- conga/luci/storage/form-macros 2007/08/08 22:35:02 1.17.2.8
+++ conga/luci/storage/form-macros 2007/08/14 18:22:51 1.17.2.9
@@ -1068,7 +1068,7 @@
type string:text;
value prop/value;
onkeypress python:'return validate_text_keypress(this, event, 2, \'' + prop['validation']['illegal_chars'] + '\', ' + str(prop['validation']['max_length']) + ')';
- onblur python:'validate_text(this, 2, \'' + prop['validation']['illegal_chars'] + '\', \'' + prop['validation']['reserved_words'] + '\', ' + str(prop['validation']['min_length']) + ', ' + str(prop['validation']['max_length']) + ', \'' + form_submit_button_id + '\')'"/>
+ onchange python:'validate_text(this, 2, \'' + prop['validation']['illegal_chars'] + '\', \'' + prop['validation']['reserved_words'] + '\', ' + str(prop['validation']['min_length']) + ', ' + str(prop['validation']['max_length']) + ', \'' + form_submit_button_id + '\')'"/>
@@ -1078,7 +1078,7 @@
type string:text;
size string:15;
value prop/value;
- onblur python:'validate_int(this, 2, ' + str(prop['validation']['min']) + ', ' + str(prop['validation']['max']) + ', ' + str(prop['validation']['step']) + ', \'' + prop_units + '\', \'' + form_submit_button_id + '\')'"
+ onchange python:'validate_int(this, 2, ' + str(prop['validation']['min']) + ', ' + str(prop['validation']['max']) + ', ' + str(prop['validation']['step']) + ', \'' + prop_units + '\', \'' + form_submit_button_id + '\')'"
onkeypress="return validate_int_keypress(this, event, 2)"/>
(<span tal:replace="prop/validation/min"/> - <span tal:replace="prop/validation/max"/>)
<span tal:replace="prop_units"/>
@@ -1096,7 +1096,7 @@
type string:text;
size string:15;
value value;
- onblur python:'validate_float(this, 2, ' + str(minim) + ', ' + str(maxim) + ', ' + str(step) + ', \'' + units + '\', \'' + form_submit_button_id + '\')'"
+ onchange python:'validate_float(this, 2, ' + str(minim) + ', ' + str(maxim) + ', ' + str(step) + ', \'' + units + '\', \'' + form_submit_button_id + '\')'"
onkeypress="return validate_float_keypress(this, event, 2)"/>
(<span tal:replace="minim"/> - <span tal:replace="maxim"/>)
<span tal:replace="units"/>
@@ -1422,9 +1422,15 @@
return ev.which;
}
+var pending_warning = false;
+
function display_warning(el, timeout, text)
{
- alert(text);
+ if (!pending_warning) {
+ pending_warning = true;
+ alert(text);
+ pending_warning = false;
+ }
return;
var geom_obj = getGeom(el);
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Cluster-devel] conga ./conga.spec.in.in luci/storage/form-macros
@ 2007-08-15 14:38 rmccabe
0 siblings, 0 replies; 3+ messages in thread
From: rmccabe @ 2007-08-15 14:38 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Branch: RHEL5
Changes by: rmccabe at sourceware.org 2007-08-15 14:38:18
Modified files:
. : conga.spec.in.in
luci/storage : form-macros
Log message:
- Pending a proper fix for 249579, add a note telling users they can untick the "Graphical Display" checkbox to get a list of volumes that are too small to select in the display.
- Update changelog
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/conga.spec.in.in.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.45.2.54&r2=1.45.2.55
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/storage/form-macros.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.17.2.9&r2=1.17.2.10
--- conga/conga.spec.in.in 2007/08/14 18:22:51 1.45.2.54
+++ conga/conga.spec.in.in 2007/08/15 14:38:18 1.45.2.55
@@ -315,7 +315,7 @@
- Fixed bz249097 (allow a space as a valid password char)
- Fixed bz250834 (ZeroDivisionError when attempting to click an empty lvm volume group)
- Fixed bz250443 (storage name warning utility produces a storm of warnings which can lock your browser)
-- Resolves: bz249097, bz250443
+- Resolves: bz249097, bz250443, bz250834
- Related: bz230451
* Mon Jul 30 2007 Ryan McCabe <rmccabe@redhat.com> 0.10.0-3
@@ -327,6 +327,8 @@
- Fixed bz249066 (AttributeError when attempting to configure a fence device)
- Fixed bz249086 (Unable to add a new fence device to cluster)
- Fixed bz249868 (Use of failover domain not correctly shown)
+- Resolves bz245947, bz249641, bz249342, bz249291, bz249091,
+- Resolves bz249066, bz249086, bz249868
- Related: bz249351
%changelog
--- conga/luci/storage/form-macros 2007/08/14 18:22:51 1.17.2.9
+++ conga/luci/storage/form-macros 2007/08/15 14:38:18 1.17.2.10
@@ -615,7 +615,7 @@
id="graphics_checkbox_id"
tal:attributes="checked mapper/graphical_view"
onchange="var s = (this.checked)?'graphical_view':'textual_view'; singleVisibleSpan('mappings_view', s);"/>
- Graphical View
+ Graphical View <small>(Uncheck if volumes are too small to select)</small>
<span id="mappings_view"
tal:define="mappings_view_classnames mapper/mappings-view_css_classnames">
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Cluster-devel] conga ./conga.spec.in.in luci/storage/form-macros
@ 2008-07-14 21:59 rmccabe
0 siblings, 0 replies; 3+ messages in thread
From: rmccabe @ 2008-07-14 21:59 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Branch: RHEL5
Changes by: rmccabe at sourceware.org 2008-07-14 21:59:09
Modified files:
. : conga.spec.in.in
luci/storage : form-macros
Log message:
fix bz223785
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/conga.spec.in.in.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.45.2.94&r2=1.45.2.95
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/storage/form-macros.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.17.2.12&r2=1.17.2.13
--- conga/conga.spec.in.in 2008/07/14 21:52:29 1.45.2.94
+++ conga/conga.spec.in.in 2008/07/14 21:59:09 1.45.2.95
@@ -303,6 +303,7 @@
- Fix bz379461 (Conga doesn't have the option for modulename for drac fencing)
- Fix bz433089 (when adding multiple nodes the order is reversed.)
- Fix bz441581 (Don't allow both label and device for qdisk config if only one can be specified)
+- Fix bz223785 (Storage 'Display Devices by' option does not work)
* Fri Apr 18 2008 Ryan McCabe <rmccabe@redhat.com> 0.12.0-8
- Fix bz441580 (conga should install 'sg3_utils' and start service 'scsi_reserve' when scsi fencing is used)
--- conga/luci/storage/form-macros 2008/01/23 04:44:56 1.17.2.12
+++ conga/luci/storage/form-macros 2008/07/14 21:59:09 1.17.2.13
@@ -87,6 +87,7 @@
</select>
</td>
</tr>
+ <tal:comment tal:replace="nothing">
<tr>
<td>
Display Devices by
@@ -99,6 +100,7 @@
</select>
</td>
</tr>
+ </tal:comment>
</table>
</form>
</fieldset>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-07-14 21:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-14 18:22 [Cluster-devel] conga ./conga.spec.in.in luci/storage/form-macros rmccabe
-- strict thread matches above, loose matches on Subject: below --
2007-08-15 14:38 rmccabe
2008-07-14 21:59 rmccabe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).