Code

Fixed some extensions (.inx files) to cater for localization better and added two...
[inkscape.git] / share / extensions / webbrowser_relnotes.py
1 #!/usr/bin/env python 
2 import webbrowser, threading
3 url = "http://wiki.inkscape.org/wiki/index.php/ReleaseNotes046"
5 class VisitWebSiteWithoutLockingInkscape(threading.Thread):
6     def __init__(self, url):
7         self.url = url
8         threading.Thread.__init__ (self)
10     def run(self):       
11         webbrowser.open(self.url)
12         
13 vwswli = VisitWebSiteWithoutLockingInkscape(url)
14 vwswli.start()