unify names

This commit is contained in:
chrys
2017-04-24 22:40:18 +02:00
parent d08c7d772e
commit 5f1d6f4350
85 changed files with 322 additions and 321 deletions

View File

@@ -19,14 +19,14 @@ class command():
return
print('--------------')
print('default')
print('load new',self.env['screenData']['newApplication'])
print('load new',self.env['screen']['newApplication'])
print('--------------')
def unload(self):
return
print('--------------')
print('default')
print('unload old',self.env['screenData']['oldApplication'])
print('unload old',self.env['screen']['oldApplication'])
print('--------------')
def setCallback(self, callback):

View File

@@ -18,13 +18,13 @@ class command():
def load(self):
print('--------------')
print('agetty')
print('load new',self.env['screenData']['newApplication'])
print('load new',self.env['screen']['newApplication'])
print('--------------')
def unload(self):
print('--------------')
print('agetty')
print('unload old',self.env['screenData']['oldApplication'])
print('unload old',self.env['screen']['oldApplication'])
print('--------------')
def setCallback(self, callback):

View File

@@ -18,13 +18,13 @@ class command():
def load(self):
print('--------------')
print('bash')
print('load new',self.env['screenData']['newApplication'])
print('load new',self.env['screen']['newApplication'])
print('--------------')
def unload(self):
print('--------------')
print('bash')
print('unload old',self.env['screenData']['oldApplication'])
print('unload old',self.env['screen']['oldApplication'])
print('--------------')
def setCallback(self, callback):

View File

@@ -18,13 +18,13 @@ class command():
def load(self):
print('--------------')
print('vim')
print('load new',self.env['screenData']['newApplication'])
print('load new',self.env['screen']['newApplication'])
print('--------------')
def unload(self):
print('--------------')
print('vim')
print('unload old',self.env['screenData']['oldApplication'])
print('unload old',self.env['screen']['oldApplication'])
print('--------------')
def setCallback(self, callback):