diff options
author | Kartik Patel <kartikpatel1995@gmail.com> | 2017-06-14 02:37:06 +0530 |
---|---|---|
committer | Kartik Patel <kartikpatel1995@gmail.com> | 2017-08-22 00:37:30 -0500 |
commit | 3c989f90c1991195b793b53a28aa4c1f9c4d2d9c (patch) | |
tree | da70a5c67472591aa8f72b4e9bbf85a7afbbfd86 /grc/core/Platform.py | |
parent | efcfde0e92e8fae886754436e6ad82d58831d194 (diff) |
grc: Modifications in GRC to allow BokehGUI
grc: Updated template for bokehgui
grc: Removed import from template file
grc: Added a condition to load bokeh based on installed library
grc: Allowed display from remote PC
grc: Added default layout option
grc: Added WidgetPlacement, Sizing Mode options in Options block
grc: Add terminate handler in main function
grc: default rowspan, colspan = 1
grc: Updated Document title and session id from the parameters of Options block
grc: Layout indexing starts from 0
grc: Allowed dynamic port selection
grc: Added a URL path for flow_graph
grc: Reviews incorporated
Diffstat (limited to 'grc/core/Platform.py')
-rw-r--r-- | grc/core/Platform.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/grc/core/Platform.py b/grc/core/Platform.py index 297e8b0ae5..258f38cc62 100644 --- a/grc/core/Platform.py +++ b/grc/core/Platform.py @@ -31,7 +31,7 @@ from .Block import Block from .Port import Port from .Param import Param -from .utils import odict, extract_docs +from .utils import odict, extract_docs, hide_bokeh_gui_options_if_not_installed class Platform(Element): @@ -172,6 +172,8 @@ class Platform(Element): self._docstring_extractor.finish() # self._docstring_extractor.wait() + hide_bokeh_gui_options_if_not_installed(self.blocks['options']) + def iter_xml_files(self): """Iterator for block descriptions and category trees""" for block_path in self.config.block_paths: |