Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
<label>Use scope and import wrapper</label>
<description><![CDATA[
This enables a scope module and and import wrapper.<br>
An scope module is an encapsulated module containing all openHAB jsr223 objects and can be imported with <code>import scope</code><br>
A scope module is an encapsulated module containing all openHAB jsr223 objects and can be imported with <code>import scope</code><br>
Additionally you can run an import like <code>from org.openhab.core import OpenHAB</code>
]]></description>
<default>true</default>
<advanced>true</advanced>
</parameter>
<parameter name="helperEnabled" type="boolean" required="true" groupName="environment">
<label>Install openHAB Python helper modules and keep it updated (requires scope module)</label>
<label>Install openHAB Python helper modules and keep them updated (requires scope module)</label>
<description><![CDATA[
Deploy and update openHAB Python helper modules like rule, logger, Registry, Timer etc...<br>
If disabled, the openHAB Python helper module can be installed manually by copying it to /conf/automation/python/lib/openhab"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ automation.config.pythonscripting.group.environment.label = Python Environment
automation.config.pythonscripting.group.environment.description = This group defines Python's environment.
automation.config.pythonscripting.group.system.label = System Behavior
automation.config.pythonscripting.group.system.description = This group defines Python's system behavior.
automation.config.pythonscripting.helperEnabled.label = Install openHAB Python helper modules and keep it updated (requires scope module)
automation.config.pythonscripting.helperEnabled.label = Install openHAB Python helper modules and keep them updated (requires scope module)
automation.config.pythonscripting.helperEnabled.description = Deploy and update openHAB Python helper modules like rule, logger, Registry, Timer etc...<br> If disabled, the openHAB Python helper module can be installed manually by copying it to /conf/automation/python/lib/openhab"
automation.config.pythonscripting.injectionEnabled.label = Inject scope and helper objects into UI based rules (requires helper modules)
automation.config.pythonscripting.injectionEnabled.description = This injects the scope module and core helper Registry and logger into UI based rules.
Expand All @@ -23,4 +23,4 @@ automation.config.pythonscripting.injectionEnabled.option.0 = Disable auto injec
automation.config.pythonscripting.jythonEmulation.label = Enable Jython emulation
automation.config.pythonscripting.jythonEmulation.description = This enables Jython emulation in GraalPy. It is strongly recommended to update code to GraalPy and Python 3 as the emulation can have performance degradation. For tips and instructions, please refer to <a href="https://www.graalvm.org/latest/reference-manual/python/Modern-Python-on-JVM">Jython Migration Guide</a>.
automation.config.pythonscripting.scopeEnabled.label = Use scope and import wrapper
automation.config.pythonscripting.scopeEnabled.description = This enables a scope module and and import wrapper.<br> An scope module is an encapsulated module containing all openHAB jsr223 objects and can be imported with <code>import scope</code><br> Additionally you can run an import like <code>from org.openhab.core import OpenHAB</code>
automation.config.pythonscripting.scopeEnabled.description = This enables a scope module and and import wrapper.<br> A scope module is an encapsulated module containing all openHAB jsr223 objects and can be imported with <code>import scope</code><br> Additionally you can run an import like <code>from org.openhab.core import OpenHAB</code>
Loading