Source
34
34
self.toollist = re.findall("\w+.xml", urllib2.urlopen(self.tool_url).read().decode())
35
35
except:
36
36
self.toollist = [ ]
37
37
38
38
if type(topic) != str or topic == "toc":
39
39
webbrowser.open_new_tab(self.toc_url)
40
40
elif topic == "start":
41
41
webbrowser.open_new_tab(self.start_url)
42
42
elif topic+'.xml' in self.tasklist:
43
43
webbrowser.open_new_tab(self.task_prefix+topic+"/parameters")
44
-
elif topic+'.xml' in (toollist):
44
+
elif topic+'.xml' in self.toollist:
45
45
webbrowser.open_new_tab(self.tool_prefix+topic+"/methods")
46
46
else:
47
47
webbrowser.open_new_tab(self.toc_url)
48
48
49
49
doc = __doc( )