@@ -482,6 +482,15 @@ def handle_invocation_time(self, line, invocation):
482
482
"%Y-%m-%d, %H:%M:%S"
483
483
)
484
484
485
+ def handle_invocation_inputs (self , line , date ):
486
+ pass
487
+
488
+ def handle_invocation_outputs (self , line , date ):
489
+ pass
490
+
491
+ def handle_visualization (self , line , date ):
492
+ pass
493
+
485
494
def handle_dataset_type (self , line , hda ):
486
495
self .extend_history_dataset_rendering_data (hda , "ext" , hda .ext , "*Unknown dataset type*" )
487
496
@@ -743,6 +752,15 @@ def handle_invocation_time(self, line, invocation):
743
752
content = literal_via_fence (invocation .create_time .strftime ("%Y-%m-%d, %H:%M:%S" ))
744
753
return (content , True )
745
754
755
+ def handle_invocation_inputs (self , line , date ):
756
+ return ("*Invocation inputs not implemented*" , True )
757
+
758
+ def handle_invocation_outputs (self , line , date ):
759
+ return ("*Invocation outputs not implemented*" , True )
760
+
761
+ def handle_visualization (self , line , date ):
762
+ return ("*Visualization inputs not implemented*" , True )
763
+
746
764
def handle_dataset_name (self , line , hda ):
747
765
if hda .name :
748
766
content = literal_via_fence (hda .name )
0 commit comments