Removed example using the + operator for string concatenation, since we should only be recommending parameterized logging. I also removed the string formatting example, since this could cause confusion when using Items with UoM.
Signed-off-by: Scott Rushworth <openhab@5iver.com>
* Fix start.sh debug command
Signed-off-by: Tim Roberts <troberts@bigfoot.com>
* Added to VSCode settings
Signed-off-by: Tim Roberts <timmarkroberts@gmail.com>
* Added settings.json and references to it
Signed-off-by: Tim Roberts <timmarkroberts@gmail.com>
* Fix typos
Signed-off-by: Tim Roberts <timmarkroberts@gmail.com>
* update security.md
added some reverse proxy setting in order make websocket's working again see [NGINX as a WebSocket Proxy](https://www.nginx.com/blog/websocket-nginx/).
...
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
...
After doing this - local openhab installation was able to talk to my private openhab cloud services again (docker:opehab --> internet --> myserver --> docker:nginx proxy --> docker:myopenhab-cloud-service)
Signed-off-by: Kekspackung <github.sven@kekspackung.de>
Signed-off-by: Kekspackung <45968725+Kekspackung@users.noreply.github.com>
* Added tabulation
Signed-off-by: Jerome Luckenbach <github@luckenba.ch>
Co-authored-by: Jerome Luckenbach <github@luckenba.ch>
* [exec-action] Clarify the use of @@ for exec command line
Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
* [exec-action] provided an example for both the simple case and one with space.
Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
* [exec-action] Split paragraph.
Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
* Fixed one line per sentence
Signed-off-by: Jerome Luckenbach <github@luckenba.ch>
* Added custom container
Signed-off-by: Jerome Luckenbach <github@luckenba.ch>
Co-authored-by: Jerome Luckenbach <github@luckenba.ch>
* Update Unit of Measurements with new Units from openhab-core SmartHomeUnits class.
Signed-off-by: Stewart Cossey <stewart.cossey@gmail.com>
* Update UoM documentation to include binary prefixes and some additional tweaks.
Add Binary Prefixes table.
Change some unit text styling.
Change prefix Value column to Factor.
Tweak some formatting.
Modify a sentence to mention BinaryPrefix.
Signed-off-by: Stewart Cossey <stewart.cossey@gmail.com>
* Add mm/h notation.
Signed-off-by: Stewart Cossey <stewart.cossey@gmail.com>
* Added section about "Internationalization of Discovery Services"
- Added section about "Internationalization of Discovery Services"
Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>
* Added section about "Discovery Results"
- Added section about "Discovery Results"
Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>
* Update developers/utils/i18n.md
Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>
* Update developers/utils/i18n.md
Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>
* [http-actions] Add documentation on new Http actions with headers
Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
* [http-actions] Add an example for HTTP action
Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
* [http-actions] Simplify example
Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
It was brought to my attention that the sentence on line 278 was not clear. I've rewritten it to address the confusion.
Signed-off-by: Richard Koshak <rlkoshak@gmail.com>
- Added information about `ItemStatePredictedEvent` and `GroupItemStateChangedEvent`
- Applied some linter
Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>
All Java classes in the org.eclipse.smarthome.automation package have been moved to the org.openhab.core.automation package.
Signed-off-by: Wouter Born <github@maindrain.net>
I believe I got the URL correct. The root path to the schemas is https://openhab.org/schemas which is at the same level as the root `docs`. I don't know for sure that the relative path used here will work or not.
Signed-off-by: Rich Koshak <rlkoshak@gmail.com>
The Android app sends `ON` or `OFF`. Depending on the binding, `ON` can stand for "latest non-zero brightness" or for `100`.
Signed-off-by: mueller-ma <mueller-ma@users.noreply.github.com>