def main(): name = ShowQueue.init_log() ryw_view.print_header_logo() queueName = DeleteRepReq.get_queue_name() if not queueName: ryw.give_bad_news( 'DelQueueData.py: failed to get current selection file name.', logging.error) DisplaySelection.exit_now(1) queueSel = ProcessDownloadReq.get_reqs(queueName) if not queueSel or len(queueSel) == 0: ryw.give_bad_news( 'DelQueueData.py: there is nothing in the selection.', logging.error) DisplaySelection.exit_now(1) success = DelSearchAll.delete_all(queueSel) if success: ryw.give_news('All these objects have been removed.', logging.info) else: ryw.give_bad_news('DelQueueData.py: an error occurred.', logging.error) DisplaySelection.exit_now(0)
def main(): name = ShowQueue.init_log() ryw_view.print_header_logo() rfpath = ThisSelToCurrSel.get_file_path(allowNullSearchFile=True) if not rfpath: ryw.give_bad_news( 'DelSelData.py: no selection file name found.', logging.error) DisplaySelection.exit_now(1) selection = ProcessDownloadReq.get_reqs(rfpath) if not selection or len(selection) == 0: ryw.give_bad_news( 'DelSelData.py: there is nothing in the selection.', logging.error) DisplaySelection.exit_now(1) success = DelSearchAll.delete_all(selection) if success: ryw.give_news('All these objects have been removed.', logging.info) else: ryw.give_bad_news('DelSelData.py: an error occurred.', logging.error) DisplaySelection.exit_now(0)