Beispiel #1
0
"""Opens RegExr website that is used to create and test regular expressions."""

__context__ = 'zerodoc'

from scriptutils import open_url
open_url('http://regexr.com/')
Beispiel #2
0
 def handle_url_click(self, sender, args):
     """Callback for handling click on package website url
     """
     open_url(sender.NavigateUri.AbsoluteUri)
Beispiel #3
0
"""Opens the issue tracker on github to report bugs and issues."""

__context__ = 'zerodoc'

from scriptutils import open_url
open_url('https://github.com/eirannejad/pyrevit/issues')
Beispiel #4
0
 def handle_url_click(self, sender, args):
     open_url(sender.NavigateUri.AbsoluteUri)
Beispiel #5
0
from scriptutils import open_url
open_url('http://requestb.in/')
Beispiel #6
0
"""Opens the python AEC Slack team."""

__context__ = 'zerodoc'

from scriptutils import open_url
open_url('https://pythonaec.slack.com/')
Beispiel #7
0
"""Opens the git repository page."""

__context__ = 'zerodoc'

from scriptutils import open_url

open_url('https://github.com/eirannejad/pyRevit')
Beispiel #8
0
 def opengithubcommits(self, sender, args):
     open_url('https://github.com/eirannejad/pyRevit/commits/master')
Beispiel #9
0
 def openrevisionhistory(self, sender, args):
     open_url('http://eirannejad.github.io/pyRevit/releasenotes/')
Beispiel #10
0
"""Opens the documentation page for RevitPythonWrapper."""

__context__ = 'zerodoc'

from scriptutils import open_url

open_url('http://revitpythonwrapper.readthedocs.io/en/latest/')
Beispiel #11
0
 def opengithubrepopage(self, sender, args):
     open_url('https://github.com/eirannejad/pyRevit')
Beispiel #12
0
"""Opens the documentation page."""

__context__ = 'zerodoc'


from scriptutils import open_url
open_url('http://pyrevit.readthedocs.io/en/latest/')
Beispiel #13
0
from scriptutils import open_url
open_url('http://www.jsoneditoronline.org/')
Beispiel #14
0
"""Opens the git repository page for RevitPythonWrapper"""

__context__ = 'zerodoc'

from scriptutils import open_url

open_url('https://github.com/gtalarico/revitpythonwrapper')
Beispiel #15
0
 def handle_url_click(self, sender, args):
     open_url('https://github.com/McCulloughRT/PrintFromIndex')
Beispiel #16
0
 def opencredits(self, sender, args):
     open_url('http://eirannejad.github.io/pyRevit/credits/')
Beispiel #17
0
"""Opens the Anatomy of a Script page in the default browser."""

__context__ = 'zerodoc'

__title__ = 'Script\nAnatomy'

from scriptutils import open_url

open_url('http://eirannejad.github.io/pyRevit/anatomyofpyrevitscript/')
Beispiel #18
0
 def openkeybaseprofile(self, sender, args):
     open_url('https://keybase.io/ein')
Beispiel #19
0
"""Opens the website that is providing the icons for the tools."""

__context__ = 'zerodoc'


from scriptutils import open_url
open_url('https://icons8.com/web-app/new-icons/color')
Beispiel #20
0
"""Opens the pyRevit blog."""

from scriptutils import open_url
open_url('http://eirannejad.github.io/pyRevit/')