source: CPL/oasis3-mct/branches/OASIS3-MCT_2.0_branch/util/oasisgui/library/DATA/pluginscripts/no_plugin.py

Last change on this file was 4775, checked in by aclsce, 5 years ago
  • Imported oasis3-mct from Cerfacs svn server (not suppotred anymore).

The version has been extracted from https://oasis3mct.cerfacs.fr/svn/branches/OASIS3-MCT_2.0_branch/oasis3-mct@1818

File size: 904 bytes
Line 
1import os,XDR
2
3class no_plugin(XDR.Plugin):
4   
5    def __init__(self,typePlugin):
6        XDR.Plugin.__init__(self, typePlugin)
7   
8   
9    def sendDirectory(self,directory):
10        print "sendDirectory with firectory  :",directory
11       
12    def executeDistantCommand(self,command,exec_directory,appli,flags=[]):
13        print "executeDistantCommand with arguments :"
14        print "command : ",command
15        print "exec_directory : ",exec_directory
16        print "flags : ",flags
17        print "Warning : executeDistantCommand no_plugin selected, nothing gonna be done here..."
18       
19    def retrieveDirectory(self,directory):
20        print "Warning : retrieveDirectory no_plugin selected, nothing gonna be done here..."
21        pass
22   
23    def removeDirectory(self,directory):
24        print "Warning : removeDirectory no_plugin selected, nothing gonna be done here..."
25        pass
26   
Note: See TracBrowser for help on using the repository browser.