From e3a9e13428f5d323d553492def9cf761a327196f Mon Sep 17 00:00:00 2001 From: dean-t Date: Tue, 1 Mar 2016 17:44:34 -0700 Subject: [PATCH] Dean first commit --- .idea/.name | 1 + .idea/encodings.xml | 6 ++ .idea/misc.xml | 14 ++++ .idea/modules.xml | 8 ++ .idea/sampleShell.iml | 11 +++ .idea/vcs.xml | 6 ++ .idea/workspace.xml | 174 +++++++++++++++++++++++++++++++++++++++ src/sampleShelldriver.py | 2 +- 8 files changed, 221 insertions(+), 1 deletion(-) create mode 100644 .idea/.name create mode 100644 .idea/encodings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/sampleShell.iml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..272a39a --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +sampleShell \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..97626ba --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..df245c4 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..47c38d0 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/sampleShell.iml b/.idea/sampleShell.iml new file mode 100644 index 0000000..6711606 --- /dev/null +++ b/.idea/sampleShell.iml @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..229dbb0 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1456879037048 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/sampleShelldriver.py b/src/sampleShelldriver.py index 63fbb21..cc7ef79 100644 --- a/src/sampleShelldriver.py +++ b/src/sampleShelldriver.py @@ -26,7 +26,7 @@ def example_command(self, context, user_param1, user_param2): :type context: cloudshell.shell.core.driver_context.ResourceCommandContext """ result = self._helper_method(user_param1) - return result + return "Dean is awesome!" # An example command that that supports cancellation def example_command_with_cancellation(self, context, cancellation_token, user_param1):