Changeset 83338 in vbox for trunk/src/VBox/ValidationKit/testmanager/webui/wuiadmin.py
- Timestamp:
- Mar 19, 2020 5:51:47 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/webui/wuiadmin.py
r82968 r83338 158 158 ksActionSchedGroupEdit = 'SchedGroupEdit'; 159 159 ksActionSchedGroupEditPost = 'SchedGroupEditPost'; 160 ksActionSchedQueueList = 'SchedQueueList'; 160 161 ## @} 161 162 … … 299 300 300 301 # 301 # Scheduling Group a ctions302 # Scheduling Group and Queue actions 302 303 # 303 304 self._dDispatch[self.ksActionSchedGroupList] = self._actionSchedGroupList; … … 309 310 self._dDispatch[self.ksActionSchedGroupEditPost] = self._actionSchedGroupEditPost; 310 311 self._dDispatch[self.ksActionSchedGroupDoRemove] = self._actionSchedGroupDoRemove; 312 self._dDispatch[self.ksActionSchedQueueList] = self._actionSchedQueueList; 311 313 312 314 … … 354 356 [ 'New testbox', self._sActionUrlBase + self.ksActionTestBoxAdd, True ], 355 357 [ 'New scheduling group', self._sActionUrlBase + self.ksActionSchedGroupAdd, True ], 358 [ 'View scheduling queues', self._sActionUrlBase + self.ksActionSchedQueueList, False ], 356 359 [ 'Regenerate all scheduling queues', self._sActionUrlBase + self.ksActionTestBoxesRegenQueues, True ], 357 360 ] … … 637 640 return self._actionGenericDoRemove(SchedGroupLogic, SchedGroupData.ksParam_idSchedGroup, self.ksActionSchedGroupList) 638 641 642 def _actionSchedQueueList(self): 643 """ Action wrapper. """ 644 from testmanager.core.schedqueue import SchedQueueLogic; 645 from testmanager.webui.wuiadminschedqueue import WuiAdminSchedQueueList; 646 return self._actionGenericListing(SchedQueueLogic, WuiAdminSchedQueueList); 639 647 640 648 def _actionRegenQueuesCommon(self): … … 741 749 742 750 # Test Group actions 751 743 752 def _actionTestGroupList(self): 744 753 """ Action wrapper. """
Note:
See TracChangeset
for help on using the changeset viewer.