Codebase list python-faraday / debian/1.0.16-0kali1
Import new upstream release * Import new upstream release * Refresh patch remove-unwanted-checks Sophie Brun 8 years ago
3 changed file(s) with 18 addition(s) and 12 deletion(s). Raw diff Collapse all Expand all
0 python-faraday (1.0.16-0kali1) kali-dev; urgency=medium
1
2 * Import new upstream release
3 * Refresh patch remove-unwanted-checks
4
5 -- Sophie Brun <[email protected]> Mon, 21 Dec 2015 10:36:53 +0100
6
07 python-faraday (1.0.15-0kali1) kali-dev; urgency=medium
18
29 * Import new upstream release
2323 Files: views/reports/_attachments/script/angular-cookies.js
2424 views/reports/_attachments/script/angular.js
2525 views/reports/_attachments/script/angular.min.js
26 Copyright: 2010-2014 Google, Inc. http://angularjs.org
26 views/reports/_attachments/script/angular.mocks.js
27 Copyright: 2010-2015 Google, Inc. http://angularjs.org
2728 License: MIT
2829
2930 Files: views/reports/_attachments/script/jquery.qtip.js
77 import json
88
99 from utils.logs import getLogger, setUpLogger
10 @@ -190,42 +189,6 @@ def query_user_bool(question, default=Tr
11 "(or 'y' or 'n').\n")
10 @@ -199,42 +198,6 @@ def query_user_bool(question, default=Tr
11 "(or 'y' or 'n').\n")
1212
1313
1414 -def checkDependencies():
3737 - try:
3838 - __import__(module[0])
3939 - except ImportError:
40 - if query_user_bool("Missing module %s." \
40 - if query_user_bool("Missing module %s."
4141 - " Do you wish to install it?" % module[0]):
4242 - pip.main(['install', "%s==%s" %
4343 - (module[0], module[1]), '--user'])
5050
5151 def startProfiler(app, output, depth):
5252 """Profiler handler.
53 @@ -493,39 +456,6 @@ _/ ____\_____ ____________ __| _/__
54 print(Fore.RESET + Back.RESET + Style.RESET_ALL)
53 @@ -525,39 +488,6 @@ _/ ____\_____ ____________ __| _/__
5554 logger.info("Starting Faraday IDE.")
55
5656
5757 -def update():
5858 - """Updates Faraday IDE.
9090
9191 def checkCouchUrl():
9292 import requests
93 @@ -542,29 +472,7 @@ def checkCouchUrl():
93 @@ -574,29 +504,6 @@ def checkCouchUrl():
9494 # Non fatal error
9595 pass
9696
116116 - except Exception as e:
117117 - getLogger("launcher").error("It seems that something's wrong with your version\nPlease contact customer support")
118118 - exit(-1)
119 -
120 +
119 -
121120
122121 def init():
123122 """Initializes what is needed before starting.
124 @@ -587,21 +495,12 @@ def main():
123 @@ -623,20 +530,12 @@ def main():
125124 """
126125
127126 init()
129128 - printBanner()
130129 - logger.info("Dependencies met.")
131130 - if args.cert_path:
132 - os.environ['REQUESTS_CA_BUNDLE'] = args.cert_path
131 - os.environ[REQUESTS_CA_BUNDLE_VAR] = args.cert_path
133132 - checkConfiguration()
134133 - setConf()
135134 - checkCouchUrl()
136135 - checkVersion()
137 - setUpLogger()
138136 - update()
139137 - checkUpdates()
140138 - startFaraday()