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

__context__ = 'zerodoc'

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

__context__ = 'zerodoc'

from scriptutils import open_url

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

__context__ = 'zerodoc'

from scriptutils import open_url

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

__context__ = 'zerodoc'


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

__context__ = 'zerodoc'

from scriptutils import open_url

open_url('https://github.com/gtalarico/revitpythonwrapper')
示例#15
0
文件: script.py 项目: kidasse/pyRevit
 def handle_url_click(self, sender, args):
     open_url('https://github.com/McCulloughRT/PrintFromIndex')
示例#16
0
 def opencredits(self, sender, args):
     open_url('http://eirannejad.github.io/pyRevit/credits/')
示例#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/')
示例#18
0
 def openkeybaseprofile(self, sender, args):
     open_url('https://keybase.io/ein')
示例#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')
示例#20
0
"""Opens the pyRevit blog."""

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