Exemplo n.º 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/')
Exemplo n.º 2
0
 def handle_url_click(self, sender, args):
     """Callback for handling click on package website url
     """
     open_url(sender.NavigateUri.AbsoluteUri)
Exemplo n.º 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')
Exemplo n.º 4
0
 def handle_url_click(self, sender, args):
     open_url(sender.NavigateUri.AbsoluteUri)
Exemplo n.º 5
0
from scriptutils import open_url
open_url('http://requestb.in/')
Exemplo n.º 6
0
"""Opens the python AEC Slack team."""

__context__ = 'zerodoc'

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

__context__ = 'zerodoc'

from scriptutils import open_url

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

__context__ = 'zerodoc'

from scriptutils import open_url

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

__context__ = 'zerodoc'


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

__context__ = 'zerodoc'

from scriptutils import open_url

open_url('https://github.com/gtalarico/revitpythonwrapper')
Exemplo n.º 15
0
 def handle_url_click(self, sender, args):
     open_url('https://github.com/McCulloughRT/PrintFromIndex')
Exemplo n.º 16
0
 def opencredits(self, sender, args):
     open_url('http://eirannejad.github.io/pyRevit/credits/')
Exemplo n.º 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/')
Exemplo n.º 18
0
 def openkeybaseprofile(self, sender, args):
     open_url('https://keybase.io/ein')
Exemplo n.º 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')
Exemplo n.º 20
0
"""Opens the pyRevit blog."""

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