eric6/E5Gui/E5SingleApplication.py

changeset 7849
70e464748aaa
parent 7780
41420f82c0ac
child 7923
91e843545d9a
equal deleted inserted replaced
7848:97e9b5cc51dc 7849:70e464748aaa
160 """ 160 """
161 Private method to open a file in the application server. 161 Private method to open a file in the application server.
162 162
163 @param fname name of file to be opened (string) 163 @param fname name of file to be opened (string)
164 """ 164 """
165 self.sendCommand(SAOpenFile, [Utilities.normabspath(fname)]) 165 self.sendCommand(SAOpenFile, [os.path.abspath(fname)])
166 166
167 def __openProject(self, pfname): 167 def __openProject(self, pfname):
168 """ 168 """
169 Private method to open a project in the application server. 169 Private method to open a project in the application server.
170 170
171 @param pfname name of the projectfile to be opened (string) 171 @param pfname name of the projectfile to be opened (string)
172 """ 172 """
173 self.sendCommand(SAOpenProject, [Utilities.normabspath(pfname)]) 173 self.sendCommand(SAOpenProject, [os.path.abspath(pfname)])
174 174
175 def __openMultiProject(self, pfname): 175 def __openMultiProject(self, pfname):
176 """ 176 """
177 Private method to open a project in the application server. 177 Private method to open a project in the application server.
178 178
179 @param pfname name of the projectfile to be opened (string) 179 @param pfname name of the projectfile to be opened (string)
180 """ 180 """
181 self.sendCommand(SAOpenMultiProject, [Utilities.normabspath(pfname)]) 181 self.sendCommand(SAOpenMultiProject, [os.path.abspath(pfname)])
182 182
183 def __sendArguments(self, argsStr): 183 def __sendArguments(self, argsStr):
184 """ 184 """
185 Private method to set the command arguments in the application server. 185 Private method to set the command arguments in the application server.
186 186

eric ide

mercurial