forked from AlessandroZ/LaZagne
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d13d047
commit abbfb28
Showing
50 changed files
with
680 additions
and
652 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# keyring | ||
from softwares.wallet.gnome import Gnome | ||
from softwares.wallet.kde import KDE | ||
# browsers | ||
from softwares.browsers.mozilla import Mozilla | ||
from softwares.browsers.opera import Opera | ||
# sysadmin | ||
from softwares.sysadmin.filezilla import Filezilla | ||
from softwares.sysadmin.env_variable import Env_variable | ||
# chats | ||
from softwares.chats.pidgin import Pidgin | ||
from softwares.chats.jitsi import Jitsi | ||
# wifi | ||
from softwares.wifi.wifi import Wifi | ||
# databases | ||
from softwares.databases.squirrel import Squirrel | ||
from softwares.databases.dbvis import DbVisualizer | ||
from softwares.databases.sqldeveloper import SQLDeveloper | ||
|
||
def get_categories(): | ||
category = { | ||
'chats': {'help': 'Chat clients supported'}, | ||
'sysadmin': {'help': 'SCP/SSH/FTP/FTPS clients supported'}, | ||
'database': {'help': 'SQL clients supported'}, | ||
'mails': {'help': 'Email clients supported'}, | ||
'wifi': {'help': 'Wifi'}, | ||
'browsers': {'help': 'Web browsers supported'}, | ||
'wallet': {'help': 'Windows credentials (credential manager, etc.)'} | ||
} | ||
return category | ||
|
||
def get_modules(): | ||
moduleNames = [ | ||
DbVisualizer(), | ||
Env_variable(), | ||
Filezilla(), | ||
Gnome(), | ||
Jitsi(), | ||
Mozilla(), | ||
Opera(), | ||
Pidgin(), | ||
SQLDeveloper(), | ||
Squirrel(), | ||
Wifi() | ||
] | ||
return moduleNames |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# name => Name of a class | ||
# category => windows / browsers / etc | ||
# options => dictionary | ||
# - command | ||
# - action | ||
# - dest | ||
# - help | ||
# ex: ('-s', action='store_true', dest='skype', help='skype') | ||
# options['command'] = '-s' | ||
# options['action'] = 'store_true' | ||
# options['dest'] = 'skype' | ||
# options['help'] = 'skype' | ||
|
||
class ModuleInfo(): | ||
def __init__(self, name, category, options, suboptions = []): | ||
self.name = name | ||
self.category = category | ||
self.options = options | ||
self.suboptions = suboptions | ||
|
||
def name(self): | ||
return self.name | ||
|
||
def category(self): | ||
return self.category | ||
|
||
def options(self): | ||
return self.options | ||
|
||
def suboptions(self): | ||
return self.suboptions | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.