Skip to content

Commit 5aea668

Browse files
committed
Implement placeholders for relocated container types
1 parent bb1ede9 commit 5aea668

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

lib/galaxy/managers/markdown_util.py

+18
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,15 @@ def handle_invocation_time(self, line, invocation):
482482
"%Y-%m-%d, %H:%M:%S"
483483
)
484484

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+
485494
def handle_dataset_type(self, line, hda):
486495
self.extend_history_dataset_rendering_data(hda, "ext", hda.ext, "*Unknown dataset type*")
487496

@@ -743,6 +752,15 @@ def handle_invocation_time(self, line, invocation):
743752
content = literal_via_fence(invocation.create_time.strftime("%Y-%m-%d, %H:%M:%S"))
744753
return (content, True)
745754

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+
746764
def handle_dataset_name(self, line, hda):
747765
if hda.name:
748766
content = literal_via_fence(hda.name)

0 commit comments

Comments
 (0)