Skip to content

Commit

Permalink
Fix markdown errors due to configuration changes (openhab#1908)
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Luckenbach <[email protected]>

Signed-off-by: Jerome Luckenbach <[email protected]>
  • Loading branch information
Confectrician authored Nov 6, 2022
1 parent 6e1b443 commit 53cdcdf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configuration/blockly/rules-blockly-before-using.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Please read them carefully before asking questions in the forum.
## **OpenHAB Configuration Files**

Some openHAB blocks rely on particular configuration files found in the openHAB configuration folder.
This folder is referred to as $OPENHAB_CONF in this page, and the location of this folder for your setup can be found via the UI: _Help & About_ -> _Technical Information_ -> _Configuration folder_.
This folder is referred to as $OPENHAB\_CONF in this page, and the location of this folder for your setup can be found via the UI: _Help & About_ -> _Technical Information_ -> _Configuration folder_.

- via mounting the files shares from the server to your client-PC.
In the main UI as an admin you can go to _Help & About_ and will have the different folder locations under _Technical information_.
Expand Down
4 changes: 2 additions & 2 deletions developers/bindings/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Only Things with status (cf. [Thing Status](../../concepts/things.html#thing-sta
To achieve that, the status must be reported to the framework via the callback or `BaseThingHandler.updateStatus(...)` for convenience.
Furthermore, the framework expects `initialize()` to be non-blocking and to return quickly.
For longer running initializations, the implementation has to take care of scheduling a separate job which must guarantee to set the status eventually.
Also, please note that the framework expects the `initialize()` method to handle anticipated error situations gracefully and set the thing to _OFFLINE_ with the corresponding status detail (e.g. _COMMUNICATION_ERROR_ or _CONFIGURATION_ERROR_ including a meaningful description) instead of throwing exceptions.
Also, please note that the framework expects the `initialize()` method to handle anticipated error situations gracefully and set the thing to _OFFLINE_ with the corresponding status detail (e.g. _COMMUNICATION\_ERROR_ or _CONFIGURATION\_ERROR_ including a meaningful description) instead of throwing exceptions.

If the `Thing` is not initializable the configuration can be updated via `ThingHandler.handleConfigurationUpdate(Map)`.
The binding has to notify the `ThingManager` about the updated configuration by a callback.
Expand Down Expand Up @@ -170,7 +170,7 @@ Therefore, the method `ThingHandler.bridgeStatusChanged(ThingStatusInfo)` must b
(this method is not called for a bridge status updated through the bridge initialization itself).
If the Thing of this handler does not have a Bridge, this method is never called.

If the bridge status has changed to OFFLINE, the status of the handled thing must also be updated to _OFFLINE_ with detail _BRIDGE_OFFLINE_.
If the bridge status has changed to OFFLINE, the status of the handled thing must also be updated to _OFFLINE_ with detail _BRIDGE\_OFFLINE_.
If the bridge returns to _ONLINE_, the thing status must be changed at least to _OFFLINE_ with detail _NONE_ or to another thing specific status.

### Configuration
Expand Down

0 comments on commit 53cdcdf

Please sign in to comment.