Changeset 65423 in vbox for trunk/src/VBox
- Timestamp:
- Jan 24, 2017 2:40:08 PM (8 years ago)
- Location:
- trunk/src/VBox/ValidationKit/testmanager
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/testbox.py
r65350 r65423 683 683 kiSortColumn_iTestBoxScriptRev = 11; 684 684 kiSortColumn_iPythonHexVersion = 12; 685 kcMaxSortColumns = 13; 685 kiSortColumn_enmPendingCmd = 13; 686 kiSortColumn_fEnabled = 14; 687 kiSortColumn_enmState = 15; 688 kiSortColumn_tsUpdated = 16; 689 kcMaxSortColumns = 17; 686 690 kdSortColumnMap = { 687 691 0: 'TestBoxesWithStrings.sName', … … 710 714 kiSortColumn_iPythonHexVersion: 'TestBoxesWithStrings.iPythonHexVersion', 711 715 -kiSortColumn_iPythonHexVersion: 'TestBoxesWithStrings.iPythonHexVersion DESC', 716 kiSortColumn_enmPendingCmd: 'TestBoxesWithStrings.enmPendingCmd', 717 -kiSortColumn_enmPendingCmd: 'TestBoxesWithStrings.enmPendingCmd DESC', 718 kiSortColumn_fEnabled: 'TestBoxesWithStrings.fEnabled', 719 -kiSortColumn_fEnabled: 'TestBoxesWithStrings.fEnabled DESC', 720 kiSortColumn_enmState: 'TestBoxStatuses.enmState', 721 -kiSortColumn_enmState: 'TestBoxStatuses.enmState DESC', 722 kiSortColumn_tsUpdated: 'TestBoxStatuses.tsUpdated', 723 -kiSortColumn_tsUpdated: 'TestBoxStatuses.tsUpdated DESC', 712 724 }; 713 725 -
trunk/src/VBox/ValidationKit/testmanager/webui/wuiadmintestbox.py
r65350 r65423 196 196 (TestBoxLogic.kiSortColumn_sName,), 197 197 None, # LOM 198 None, # Status199 None, # Cmd198 (-TestBoxLogic.kiSortColumn_fEnabled, TestBoxLogic.kiSortColumn_enmState, -TestBoxLogic.kiSortColumn_tsUpdated,), 199 (TestBoxLogic.kiSortColumn_enmPendingCmd,), 200 200 None, # Note 201 201 (TestBoxLogic.kiSortColumn_iTestBoxScriptRev,),
Note:
See TracChangeset
for help on using the changeset viewer.