Changeset 55072 in vbox for trunk/src/VBox/ValidationKit/testmanager/webui
- Timestamp:
- Apr 1, 2015 1:12:18 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99364
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/webui/wuimain.py
r52776 r55072 586 586 webutils.encodeUrlParams(dParams), 587 587 WuiMain.ksParamReportPeriodInHours) 588 for cHours in [ 2, 3, 4, 5, 6, 7, 8, 9, 12, 18, 24, 48, 72, 96, 120, 144, 168 ]: 589 sHtmlPeriodLength += ' <option value="%d"%s>%d hours</option>\n' \ 590 % (cHours, 'selected="selected"' if cHours == cHoursPerPeriod else '', cHours); 588 for cHours in [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 18, 24, 48, 72, 96, 120, 144, 168 ]: 589 sHtmlPeriodLength += ' <option value="%d"%s>%d hour%s</option>\n' \ 590 % (cHours, 'selected="selected"' if cHours == cHoursPerPeriod else '', cHours, 591 's' if cHours > 1 else ''); 591 592 sHtmlPeriodLength += ' </select>\n' \ 592 593 '</form>\n'
Note:
See TracChangeset
for help on using the changeset viewer.