├── html ├── openweathermap │ ├── weather-icons-master │ │ ├── _builder │ │ │ ├── csv │ │ │ │ ├── temp.csv │ │ │ │ ├── time.csv │ │ │ │ ├── direction.csv │ │ │ │ ├── beaufort.csv │ │ │ │ ├── misc.csv │ │ │ │ ├── day.csv │ │ │ │ ├── wind.csv │ │ │ │ ├── neutral.csv │ │ │ │ └── night.csv │ │ │ ├── wbuilder │ │ │ ├── wind-degrees.edn │ │ │ ├── templates.edn │ │ │ ├── day.edn │ │ │ ├── misc.edn │ │ │ ├── moon.edn │ │ │ ├── time.edn │ │ │ ├── night.edn │ │ │ ├── neutral.edn │ │ │ ├── beaufort.edn │ │ │ ├── direction.edn │ │ │ └── wind.edn │ │ ├── .npmignore │ │ ├── .gitignore │ │ ├── _docs │ │ │ ├── gh-pages │ │ │ │ ├── CNAME │ │ │ │ ├── css │ │ │ │ │ └── img │ │ │ │ │ │ └── sky.jpg │ │ │ │ ├── favicons │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ ├── mstile-150x150.png │ │ │ │ │ ├── mstile-310x150.png │ │ │ │ │ ├── mstile-70x70.png │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ ├── apple-touch-icon-57x57.png │ │ │ │ │ ├── apple-touch-icon-60x60.png │ │ │ │ │ └── apple-touch-icon-precomposed.png │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── font │ │ │ │ │ ├── weathericons-regular-webfont.eot │ │ │ │ │ ├── weathericons-regular-webfont.ttf │ │ │ │ │ ├── weathericons-regular-webfont.woff │ │ │ │ │ └── weathericons-regular-webfont.woff2 │ │ │ │ └── browserconfig.xml │ │ │ ├── less │ │ │ │ ├── bootstrap-includes.less │ │ │ │ ├── font-awesome │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ ├── larger.less │ │ │ │ │ ├── list.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ ├── stacked.less │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ ├── path.less │ │ │ │ │ ├── animated.less │ │ │ │ │ └── mixins.less │ │ │ │ ├── bootstrap │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── center-block.less │ │ │ │ │ │ ├── size.less │ │ │ │ │ │ ├── opacity.less │ │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ │ ├── background-variant.less │ │ │ │ │ │ ├── labels.less │ │ │ │ │ │ ├── resize.less │ │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ │ ├── alerts.less │ │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ │ ├── border-radius.less │ │ │ │ │ │ ├── reset-text.less │ │ │ │ │ │ ├── pagination.less │ │ │ │ │ │ ├── panels.less │ │ │ │ │ │ ├── hide-text.less │ │ │ │ │ │ ├── list-group.less │ │ │ │ │ │ ├── clearfix.less │ │ │ │ │ │ ├── table-row.less │ │ │ │ │ │ └── image.less │ │ │ │ │ ├── wells.less │ │ │ │ │ ├── breadcrumbs.less │ │ │ │ │ ├── responsive-embed.less │ │ │ │ │ ├── component-animations.less │ │ │ │ │ ├── close.less │ │ │ │ │ ├── thumbnails.less │ │ │ │ │ ├── utilities.less │ │ │ │ │ ├── pager.less │ │ │ │ │ ├── media.less │ │ │ │ │ └── jumbotron.less │ │ │ │ ├── styles.less │ │ │ │ └── variables.less │ │ │ ├── font-source │ │ │ │ ├── artwork │ │ │ │ │ ├── tsunami.ai │ │ │ │ │ ├── cloud pieces.ai │ │ │ │ │ └── icon template.ai │ │ │ │ └── weathericons-regular.otf │ │ │ └── jade │ │ │ │ ├── icon-list-direction.jade │ │ │ │ ├── icon-list-time.jade │ │ │ │ └── icon-list-beaufort.jade │ │ ├── font │ │ │ ├── weathericons-regular-webfont.eot │ │ │ ├── weathericons-regular-webfont.ttf │ │ │ ├── weathericons-regular-webfont.woff │ │ │ └── weathericons-regular-webfont.woff2 │ │ ├── less │ │ │ ├── weather-icons-wind.less │ │ │ ├── weather-icons-wind.min.less │ │ │ ├── icon-variables │ │ │ │ ├── variables-direction.less │ │ │ │ ├── variables-time.less │ │ │ │ ├── variables-beaufort.less │ │ │ │ ├── variables-misc.less │ │ │ │ ├── variables-wind-names.less │ │ │ │ ├── variables-day.less │ │ │ │ └── variables-neutral.less │ │ │ ├── icon-classes │ │ │ │ ├── classes-wind.less │ │ │ │ ├── classes-direction.less │ │ │ │ ├── classes-time.less │ │ │ │ ├── classes-beaufort.less │ │ │ │ └── classes-misc.less │ │ │ ├── weather-icons-variables.less │ │ │ ├── weather-icons-classes.less │ │ │ ├── weather-icons.min.less │ │ │ └── mappings │ │ │ │ └── wi-forecast-io.less │ │ ├── sass │ │ │ ├── weather-icons-wind.scss │ │ │ ├── weather-icons-wind.min.scss │ │ │ ├── icon-variables │ │ │ │ ├── variables-direction.scss │ │ │ │ ├── variables-time.scss │ │ │ │ ├── variables-beaufort.scss │ │ │ │ ├── variables-misc.scss │ │ │ │ ├── variables-wind-names.scss │ │ │ │ ├── variables-day.scss │ │ │ │ └── variables-neutral.scss │ │ │ ├── icon-classes │ │ │ │ ├── classes-wind.scss │ │ │ │ ├── classes-direction.scss │ │ │ │ ├── classes-time.scss │ │ │ │ ├── classes-beaufort.scss │ │ │ │ └── classes-misc.scss │ │ │ ├── weather-icons-variables.scss │ │ │ ├── weather-icons-classes.scss │ │ │ ├── weather-icons.min.scss │ │ │ ├── mappings │ │ │ │ └── wi-forecast-io.scss │ │ │ └── weather-icons.scss │ │ ├── svg │ │ │ ├── wi-small-craft-advisory.svg │ │ │ ├── wi-storm-warning.svg │ │ │ ├── wi-gale-warning.svg │ │ │ ├── wi-moon-first-quarter.svg │ │ │ ├── wi-moon-third-quarter.svg │ │ │ ├── wi-hurricane-warning.svg │ │ │ ├── wi-moon-waning-crescent-1.svg │ │ │ ├── wi-moon-waxing-gibbous-2.svg │ │ │ ├── wi-moon-waning-crescent-2.svg │ │ │ ├── wi-moon-waning-gibbous-5 .svg │ │ │ ├── wi-moon-waxing-crescent-5.svg │ │ │ ├── wi-moon-waxing-crescent-6 .svg │ │ │ ├── wi-moon-waning-crescent-3.svg │ │ │ ├── wi-moon-waning-gibbous-6.svg │ │ │ ├── wi-moon-waxing-gibbous-1.svg │ │ │ ├── wi-moon-waning-crescent-4 .svg │ │ │ ├── wi-na.svg │ │ │ ├── wi-moon-full.svg │ │ │ ├── wi-moon-waning-gibbous-4.svg │ │ │ ├── wi-moon-alt-new.svg │ │ │ ├── wi-moon-waxing-gibbous-3.svg │ │ │ ├── wi-moon-waning-crescent-5.svg │ │ │ ├── wi-moon-waxing-gibbous-4 .svg │ │ │ ├── wi-moon-waxing-crescent-3.svg │ │ │ ├── wi-moon-waning-gibbous-2.svg │ │ │ ├── wi-moon-waxing-crescent-4.svg │ │ │ ├── wi-moon-waxing-gibbous-5.svg │ │ │ ├── wi-moon-waxing-gibbous-6.svg │ │ │ ├── wi-moon-waning-gibbous-3.svg │ │ │ ├── wi-moon-waning-gibbous-1.svg │ │ │ ├── wi-moon-waxing-crescent-2.svg │ │ │ ├── wi-thermometer-internal.svg │ │ │ ├── wi-raindrop.svg │ │ │ ├── wi-direction-down-right.svg │ │ │ ├── wi-direction-up-left.svg │ │ │ ├── wi-direction-up-right.svg │ │ │ ├── wi-moon-waxing-crescent-1.svg │ │ │ ├── wi-moon-waning-crescent-6.svg │ │ │ ├── wi-direction-left.svg │ │ │ ├── wi-lightning.svg │ │ │ ├── wi-direction-down.svg │ │ │ ├── wi-direction-up.svg │ │ │ ├── wi-degrees.svg │ │ │ ├── wi-direction-down-left.svg │ │ │ ├── wi-direction-right.svg │ │ │ ├── wi-moon-alt-first-quarter.svg │ │ │ ├── wi-moon-alt-third-quarter.svg │ │ │ ├── wi-moon-alt-waxing-crescent-1.svg │ │ │ ├── wi-moon-alt-waxing-crescent-2.svg │ │ │ ├── wi-moon-alt-waxing-crescent-5.svg │ │ │ ├── wi-moon-alt-waning-crescent-2.svg │ │ │ ├── wi-moon-alt-waxing-crescent-3.svg │ │ │ ├── wi-moon-alt-waxing-crescent-6 .svg │ │ │ ├── wi-moon-alt-waning-crescent-3.svg │ │ │ ├── wi-moon-alt-waxing-crescent-4.svg │ │ │ ├── wi-moon-alt-waning-crescent-1.svg │ │ │ ├── wi-moon-alt-waning-gibbous-6.svg │ │ │ ├── wi-moon-alt-waxing-gibbous-1.svg │ │ │ ├── wi-lunar-eclipse.svg │ │ │ ├── wi-moon-alt-waning-crescent-6.svg │ │ │ ├── wi-moon-alt-waning-crescent-4.svg │ │ │ ├── wi-moon-alt-waning-crescent-5.svg │ │ │ ├── wi-moon-alt-waxing-gibbous-2.svg │ │ │ ├── wi-moon-alt-waxing-gibbous-4.svg │ │ │ ├── wi-moon-alt-waxing-gibbous-5.svg │ │ │ ├── wi-moon-alt-waning-gibbous-5.svg │ │ │ ├── wi-moon-alt-waning-gibbous-4.svg │ │ │ ├── wi-moon-new.svg │ │ │ ├── wi-moon-alt-full.svg │ │ │ ├── wi-moon-alt-waxing-gibbous-3.svg │ │ │ ├── wi-refresh-alt.svg │ │ │ ├── wi-moon-alt-waning-gibbous-1.svg │ │ │ ├── wi-moon-alt-waning-gibbous-3.svg │ │ │ ├── wi-moon-alt-waning-gibbous-2.svg │ │ │ ├── wi-time-6.svg │ │ │ ├── wi-smog.svg │ │ │ ├── wi-refresh.svg │ │ │ ├── wi-thermometer-exterior.svg │ │ │ ├── wi-wind-deg.svg │ │ │ ├── wi-moon-alt-waxing-gibbous-6 .svg │ │ │ ├── wi-time-12.svg │ │ │ ├── wi-cloud.svg │ │ │ ├── wi-fahrenheit.svg │ │ │ ├── wi-night-clear.svg │ │ │ ├── wi-raindrops.svg │ │ │ ├── wi-time-5.svg │ │ │ ├── wi-time-7.svg │ │ │ ├── wi-time-4.svg │ │ │ ├── wi-time-8.svg │ │ │ ├── wi-time-9.svg │ │ │ ├── wi-moonrise.svg │ │ │ ├── wi-time-2.svg │ │ │ └── wi-time-3.svg │ │ ├── package.json │ │ └── bower.json │ └── images │ │ ├── feel.png │ │ ├── wind.png │ │ └── humidity.png ├── images │ └── ct100 │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── drop.png │ │ ├── idle.png │ │ ├── cooling.png │ │ ├── heating.png │ │ └── running.png ├── readme.txt ├── index.html └── css │ └── visualizationStyle.css ├── transform ├── thermostatFanState.map ├── MPInputs.map ├── de.map ├── en.map ├── thermostatFanMode.map ├── thermostatOpState.map ├── CtoF.js ├── humidex.scale ├── thermostatMode.map └── readme.txt ├── sounds ├── barking.mp3 └── doorbell.mp3 ├── icons └── classic │ ├── speedtest_new.png │ ├── speedtest_next5.png │ ├── speedtest_network.png │ ├── speedtest_reload2.png │ ├── speedtest_upload.png │ ├── speedtest_analytics8.png │ ├── speedtest_download.png │ ├── speedtest_problem4.png │ └── readme.txt ├── services ├── mapdb.cfg ├── readme.txt ├── basicui.cfg ├── rrd4j.cfg ├── influxdb.cfg ├── weather.cfg └── openhabcloud.cfg ├── things ├── home.things ├── readme.txt └── mqtt-bridge.things ├── rules └── readme.txt ├── items ├── readme.txt ├── speedtest.items └── sequencer.items ├── sitemaps └── readme.txt ├── scripts └── readme.txt ├── tags └── readme.txt ├── persistence ├── readme.txt ├── rrd4j.persist ├── mapdb.persist └── influxdb.persist ├── README.md └── LICENSE /html/openweathermap/weather-icons-master/_builder/csv/temp.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/.npmignore: -------------------------------------------------------------------------------- 1 | /_builder 2 | /_docs 3 | -------------------------------------------------------------------------------- /transform/thermostatFanState.map: -------------------------------------------------------------------------------- 1 | 0=Idle 2 | 1=Running 3 | 2=Running High 4 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/.gitignore: -------------------------------------------------------------------------------- 1 | config.codekit 2 | *.sass-cache* -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/CNAME: -------------------------------------------------------------------------------- 1 | weathericons.io 2 | -------------------------------------------------------------------------------- /transform/MPInputs.map: -------------------------------------------------------------------------------- 1 | 1=NA 2 | 2=BT 3 | 3=DJ 4 | 4=NA 5 | 5=CAST 6 | 6=CD 7 | -------------------------------------------------------------------------------- /transform/de.map: -------------------------------------------------------------------------------- 1 | CLOSED=zu 2 | OPEN=offen 3 | NULL=undefiniert 4 | UNDEF=unbekannt 5 | -------------------------------------------------------------------------------- /transform/en.map: -------------------------------------------------------------------------------- 1 | CLOSED=closed 2 | OPEN=open 3 | NULL=undefined 4 | UNDEF=unknown 5 | -------------------------------------------------------------------------------- /sounds/barking.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/sounds/barking.mp3 -------------------------------------------------------------------------------- /sounds/doorbell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/sounds/doorbell.mp3 -------------------------------------------------------------------------------- /html/images/ct100/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/images/ct100/0.png -------------------------------------------------------------------------------- /html/images/ct100/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/images/ct100/1.png -------------------------------------------------------------------------------- /html/images/ct100/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/images/ct100/2.png -------------------------------------------------------------------------------- /html/images/ct100/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/images/ct100/3.png -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap-includes.less: -------------------------------------------------------------------------------- 1 | @import "bootstrap/bootstrap.less"; -------------------------------------------------------------------------------- /html/images/ct100/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/images/ct100/drop.png -------------------------------------------------------------------------------- /html/images/ct100/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/images/ct100/idle.png -------------------------------------------------------------------------------- /html/images/ct100/cooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/images/ct100/cooling.png -------------------------------------------------------------------------------- /html/images/ct100/heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/images/ct100/heating.png -------------------------------------------------------------------------------- /html/images/ct100/running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/images/ct100/running.png -------------------------------------------------------------------------------- /icons/classic/speedtest_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/icons/classic/speedtest_new.png -------------------------------------------------------------------------------- /icons/classic/speedtest_next5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/icons/classic/speedtest_next5.png -------------------------------------------------------------------------------- /html/openweathermap/images/feel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/images/feel.png -------------------------------------------------------------------------------- /html/openweathermap/images/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/images/wind.png -------------------------------------------------------------------------------- /icons/classic/speedtest_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/icons/classic/speedtest_network.png -------------------------------------------------------------------------------- /icons/classic/speedtest_reload2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/icons/classic/speedtest_reload2.png -------------------------------------------------------------------------------- /icons/classic/speedtest_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/icons/classic/speedtest_upload.png -------------------------------------------------------------------------------- /transform/thermostatFanMode.map: -------------------------------------------------------------------------------- 1 | 0=Auto Low 2 | 1=On Low 3 | 2=Auto High 4 | 3=On High 5 | 4=Unknown 6 | 5=Unknown 7 | 6=Circulate 8 | -------------------------------------------------------------------------------- /icons/classic/speedtest_analytics8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/icons/classic/speedtest_analytics8.png -------------------------------------------------------------------------------- /icons/classic/speedtest_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/icons/classic/speedtest_download.png -------------------------------------------------------------------------------- /icons/classic/speedtest_problem4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/icons/classic/speedtest_problem4.png -------------------------------------------------------------------------------- /html/openweathermap/images/humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/images/humidity.png -------------------------------------------------------------------------------- /transform/thermostatOpState.map: -------------------------------------------------------------------------------- 1 | 0=Idle 2 | 1=Heating 3 | 2=Cooling 4 | 3=Fan Only 5 | 4=Pending Heat 6 | 5=Pending Cool 7 | 6=Vent / Economizer 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/wbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_builder/wbuilder -------------------------------------------------------------------------------- /transform/CtoF.js: -------------------------------------------------------------------------------- 1 | (function(i) { 2 | if(input >= 0) 3 | { 4 | return input * 1.8 + 32; 5 | } 6 | else 7 | { 8 | return null; 9 | } 10 | })(input) 11 | -------------------------------------------------------------------------------- /transform/humidex.scale: -------------------------------------------------------------------------------- 1 | [-40..20]=not significant 2 | [20..29]=comfortable 3 | [29..38]=some discomfort 4 | [38..45]=avoid exertion 5 | [45..54]=dangerous 6 | [54..100]=heat stroke imminent 7 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/css/img/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/css/img/sky.jpg -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/font-source/artwork/tsunami.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/font-source/artwork/tsunami.ai -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/favicon.ico -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/font/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/font/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/font/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/font/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/font/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/font/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/font/weathericons-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/font/weathericons-regular-webfont.woff2 -------------------------------------------------------------------------------- /services/mapdb.cfg: -------------------------------------------------------------------------------- 1 | # the commit interval in seconds (optional, default to '5') 2 | #commitinterval=5 3 | 4 | # issue a commit even if the state did not change (optional, defaults to 'false') 5 | #commitsamestate=false 6 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/font-source/artwork/cloud pieces.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/font-source/artwork/cloud pieces.ai -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/font-source/artwork/icon template.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/font-source/artwork/icon template.ai -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/font-source/weathericons-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/font-source/weathericons-regular.otf -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/font-awesome/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /things/home.things: -------------------------------------------------------------------------------- 1 | Thing ntp:ntp:local [ hostname="pool.ntp.org" ] 2 | Thing astro:moon:local [ geolocation="39.7262901,-75.0084047", interval=300 ] 3 | Thing astro:sun:local [ geolocation="39.7262901,-75.0084047", interval=300 ] -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /transform/thermostatMode.map: -------------------------------------------------------------------------------- 1 | 0=Off 2 | 1=Heat 3 | 2=Cool 4 | 3=Auto 5 | 4=Aux Heat 6 | 5=Resume 7 | 6=Fan Only 8 | 7=Furnace 9 | 8=Dry Air 10 | 9=Moist Air 11 | 10=Auto Changeover 12 | 11=Heat Econ 13 | 12=Cool Econ 14 | 13=Away 15 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/font/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/font/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/font/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/font/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/font/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/font/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/font/weathericons-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/font/weathericons-regular-webfont.woff2 -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkpsu/openhab2-conf-bartus/HEAD/html/openweathermap/weather-icons-master/_docs/gh-pages/favicons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /rules/readme.txt: -------------------------------------------------------------------------------- 1 | Your rules go here. 2 | All rule files have to have the ".rules" file extension and must follow a special syntax. 3 | 4 | Check out the openHAB documentation for more details: 5 | https://www.openhab.org/docs/configuration/rules-dsl.html 6 | -------------------------------------------------------------------------------- /items/readme.txt: -------------------------------------------------------------------------------- 1 | Your item definitions go here. 2 | All items files have to have the ".items" file extension and must follow a special syntax. 3 | 4 | Check out the openHAB documentation for more details: 5 | https://www.openhab.org/docs/configuration/items.html 6 | -------------------------------------------------------------------------------- /sitemaps/readme.txt: -------------------------------------------------------------------------------- 1 | Your sitemap definitions go here. 2 | All sitemap files have to have the ".sitemap" file extension and must follow a special syntax. 3 | 4 | Check out the openHAB documentation for more details: 5 | https://www.openhab.org/docs/ui/sitemaps.html 6 | -------------------------------------------------------------------------------- /things/readme.txt: -------------------------------------------------------------------------------- 1 | Your thing definitions go here. 2 | All thing files have to have the ".things" file extension and must follow a special syntax. 3 | 4 | Check out the openHAB documentation for more details: 5 | https://www.openhab.org/docs/configuration/things.html 6 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/csv/time.csv: -------------------------------------------------------------------------------- 1 | time-1, f08a 2 | time-2, f08b 3 | time-3, f08c 4 | time-4, f08d 5 | time-5, f08e 6 | time-6, f08f 7 | time-7, f090 8 | time-8, f091 9 | time-9, f092 10 | time-10, f093 11 | time-11, f094 12 | time-12, f089 -------------------------------------------------------------------------------- /scripts/readme.txt: -------------------------------------------------------------------------------- 1 | Your scripts go here. 2 | All script files have to have the ".script" file extension and must follow a special syntax. 3 | 4 | Check out the openHAB documentation for more details: 5 | https://www.openhab.org/docs/configuration/rules-dsl.html#scripts 6 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/csv/direction.csv: -------------------------------------------------------------------------------- 1 | direction-up, f058 2 | direction-up-right, f057 3 | direction-right, f04d 4 | direction-down-right, f088 5 | direction-down, f044 6 | direction-down-left, f043 7 | direction-left, f048 8 | direction-up-left, f087 -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /tags/readme.txt: -------------------------------------------------------------------------------- 1 | Your semantic tag definitions go here. 2 | All semantic tag files have to have the ".yaml" file extension and must follow a special syntax. 3 | 4 | Check out the openHAB documentation for more details: 5 | https://www.openhab.org/docs/configuration/semantictags.html 6 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /persistence/readme.txt: -------------------------------------------------------------------------------- 1 | Your persistence configuration goes here. 2 | All persistence files have to have the ".persist" file extension and must follow a special syntax. 3 | 4 | Check out the openHAB documentation for more details: 5 | https://www.openhab.org/docs/configuration/persistence.html 6 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/weather-icons-wind.less: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.less"; 2 | @import "icon-variables/variables-wind-names.less"; 3 | @import "icon-classes/classes-wind.less"; 4 | @import "icon-classes/classes-wind-degrees.less"; 5 | @import "icon-classes/classes-wind-aliases.less"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/weather-icons-wind.scss: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.scss"; 2 | @import "icon-variables/variables-wind-names.scss"; 3 | @import "icon-classes/classes-wind.scss"; 4 | @import "icon-classes/classes-wind-degrees.scss"; 5 | @import "icon-classes/classes-wind-aliases.scss"; -------------------------------------------------------------------------------- /html/readme.txt: -------------------------------------------------------------------------------- 1 | Serve your own static html pages or resources from here. 2 | Files stored in this folder will be available through the HTTP server of openHAB, e.g. "http://device-address:8080/static/image.png". 3 | Resources for sitemap elements (image, video,...) can also be provided though this folder. 4 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/weather-icons-wind.min.less: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.less"; 2 | @import "icon-variables/variables-wind-names.less"; 3 | @import "icon-classes/classes-wind.less"; 4 | @import "icon-classes/classes-wind-degrees.less"; 5 | @import "icon-classes/classes-wind-aliases.less"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/weather-icons-wind.min.scss: -------------------------------------------------------------------------------- 1 | @import "weather-icons-core.scss"; 2 | @import "icon-variables/variables-wind-names.scss"; 3 | @import "icon-classes/classes-wind.scss"; 4 | @import "icon-classes/classes-wind-degrees.scss"; 5 | @import "icon-classes/classes-wind-aliases.scss"; -------------------------------------------------------------------------------- /transform/readme.txt: -------------------------------------------------------------------------------- 1 | Transformations like map or jsonpath can utilize configuration files with data definitions. 2 | These files have their specific file extensions and syntax definition. 3 | 4 | Check out the openHAB documentation for more details: 5 | https://www.openhab.org/docs/configuration/transformations.html 6 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/icon-variables/variables-direction.less: -------------------------------------------------------------------------------- 1 | @direction-up: "\f058"; 2 | @direction-up-right: "\f057"; 3 | @direction-right: "\f04d"; 4 | @direction-down-right: "\f088"; 5 | @direction-down: "\f044"; 6 | @direction-down-left: "\f043"; 7 | @direction-left: "\f048"; 8 | @direction-up-left: "\f087"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/icon-variables/variables-direction.scss: -------------------------------------------------------------------------------- 1 | $direction-up: "\f058"; 2 | $direction-up-right: "\f057"; 3 | $direction-right: "\f04d"; 4 | $direction-down-right: "\f088"; 5 | $direction-down: "\f044"; 6 | $direction-down-left: "\f043"; 7 | $direction-left: "\f048"; 8 | $direction-up-left: "\f087"; -------------------------------------------------------------------------------- /icons/classic/readme.txt: -------------------------------------------------------------------------------- 1 | Your additional icons go here. 2 | Icons can be provided as png (32x32) or preferably as svg files. 3 | ClassicUI and BasicUI can be configured to accept svg (default) or png icons. 4 | 5 | Check out the openHAB documentation for more details: 6 | https://www.openhab.org/docs/configuration/items.html#icons 7 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/styles.less: -------------------------------------------------------------------------------- 1 | @import "bootstrap-includes.less"; 2 | @import "font-awesome/font-awesome.less"; 3 | 4 | //@import "../../less/weather-icons.less"; 5 | @import "variables.less"; 6 | @import "mixins.less"; 7 | @import "cheatsheet.less"; 8 | @import "main.less"; 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/icon-variables/variables-time.less: -------------------------------------------------------------------------------- 1 | @time-1: "\f08a"; 2 | @time-2: "\f08b"; 3 | @time-3: "\f08c"; 4 | @time-4: "\f08d"; 5 | @time-5: "\f08e"; 6 | @time-6: "\f08f"; 7 | @time-7: "\f090"; 8 | @time-8: "\f091"; 9 | @time-9: "\f092"; 10 | @time-10: "\f093"; 11 | @time-11: "\f094"; 12 | @time-12: "\f089"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/icon-variables/variables-time.scss: -------------------------------------------------------------------------------- 1 | $time-1: "\f08a"; 2 | $time-2: "\f08b"; 3 | $time-3: "\f08c"; 4 | $time-4: "\f08d"; 5 | $time-5: "\f08e"; 6 | $time-6: "\f08f"; 7 | $time-7: "\f090"; 8 | $time-8: "\f091"; 9 | $time-9: "\f092"; 10 | $time-10: "\f093"; 11 | $time-11: "\f094"; 12 | $time-12: "\f089"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /services/readme.txt: -------------------------------------------------------------------------------- 1 | Your service configurations will reside here. 2 | All configuration files have to have the ".cfg" file extension. 3 | Service configuration files are automatically created as soon as you install an add-on that can be configured. 4 | 5 | Check out the openHAB documentation for more details: 6 | https://www.openhab.org/docs/configuration/services.html 7 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/csv/beaufort.csv: -------------------------------------------------------------------------------- 1 | wind-beaufort-0, f0b7 2 | wind-beaufort-1, f0b8 3 | wind-beaufort-2, f0b9 4 | wind-beaufort-3, f0ba 5 | wind-beaufort-4, f0bb 6 | wind-beaufort-5, f0bc 7 | wind-beaufort-6, f0bd 8 | wind-beaufort-7, f0be 9 | wind-beaufort-8, f0bf 10 | wind-beaufort-9, f0c0 11 | wind-beaufort-10, f0c1 12 | wind-beaufort-11, f0c2 13 | wind-beaufort-12, f0c3 -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/gh-pages/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | #da532c 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/icon-classes/classes-wind.scss: -------------------------------------------------------------------------------- 1 | // Wind Variables 2.0 2 | 3 | $wind: "\f0b1"; 4 | 5 | .#{$wi-css-prefix}-wind:before { content: $wind; } 6 | 7 | @mixin wind-rotate( $val: 0deg ) { 8 | -webkit-transform: rotate($val); 9 | -moz-transform: rotate($val); 10 | -ms-transform: rotate($val); 11 | -o-transform: rotate($val); 12 | transform: rotate($val); 13 | } 14 | 15 | @import "classes-wind-degrees.scss"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/icon-classes/classes-wind.less: -------------------------------------------------------------------------------- 1 | // Wind Variables 2.0 2 | 3 | @wind: "\f0b1"; 4 | 5 | .@{wi-css-prefix}-wind:before { content: @wind; } 6 | .wind-rotate(@degrees) { 7 | -webkit-transform: rotate(@degrees); 8 | -moz-transform: rotate(@degrees); 9 | -ms-transform: rotate(@degrees); 10 | -o-transform: rotate(@degrees); 11 | transform: rotate(@degrees); 12 | } 13 | 14 | @import "classes-wind-degrees.less"; -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- 1 | 2 |

openHAB user provided static content

3 |

Serve your own static html pages or resources from here. Files stored in the openHAB configuration subfolder html will be available through the HTTP server of openHAB, e.g. http://device-address:8080/static/image.png.

4 |

Resources for sitemap elements (image, video,...) can also be provided though this folder.

5 | 6 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/icon-variables/variables-beaufort.less: -------------------------------------------------------------------------------- 1 | @wind-beaufort-0: "\f0b7"; 2 | @wind-beaufort-1: "\f0b8"; 3 | @wind-beaufort-2: "\f0b9"; 4 | @wind-beaufort-3: "\f0ba"; 5 | @wind-beaufort-4: "\f0bb"; 6 | @wind-beaufort-5: "\f0bc"; 7 | @wind-beaufort-6: "\f0bd"; 8 | @wind-beaufort-7: "\f0be"; 9 | @wind-beaufort-8: "\f0bf"; 10 | @wind-beaufort-9: "\f0c0"; 11 | @wind-beaufort-10: "\f0c1"; 12 | @wind-beaufort-11: "\f0c2"; 13 | @wind-beaufort-12: "\f0c3"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/icon-variables/variables-beaufort.scss: -------------------------------------------------------------------------------- 1 | $wind-beaufort-0: "\f0b7"; 2 | $wind-beaufort-1: "\f0b8"; 3 | $wind-beaufort-2: "\f0b9"; 4 | $wind-beaufort-3: "\f0ba"; 5 | $wind-beaufort-4: "\f0bb"; 6 | $wind-beaufort-5: "\f0bc"; 7 | $wind-beaufort-6: "\f0bd"; 8 | $wind-beaufort-7: "\f0be"; 9 | $wind-beaufort-8: "\f0bf"; 10 | $wind-beaufort-9: "\f0c0"; 11 | $wind-beaufort-10: "\f0c1"; 12 | $wind-beaufort-11: "\f0c2"; 13 | $wind-beaufort-12: "\f0c3"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/weather-icons-variables.less: -------------------------------------------------------------------------------- 1 | @import "icon-variables/variables-beaufort.less"; 2 | @import "icon-variables/variables-time.less"; 3 | @import "icon-variables/variables-moon.less"; 4 | @import "icon-variables/variables-direction.less"; 5 | @import "icon-variables/variables-day.less"; 6 | @import "icon-variables/variables-night.less"; 7 | @import "icon-variables/variables-neutral.less"; 8 | @import "icon-variables/variables-misc.less"; 9 | 10 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/weather-icons-variables.scss: -------------------------------------------------------------------------------- 1 | @import 'icon-variables/variables-beaufort.scss'; 2 | @import 'icon-variables/variables-time.scss'; 3 | @import 'icon-variables/variables-moon.scss'; 4 | @import 'icon-variables/variables-direction.scss'; 5 | @import 'icon-variables/variables-day.scss'; 6 | @import 'icon-variables/variables-night.scss'; 7 | @import 'icon-variables/variables-neutral.scss'; 8 | @import 'icon-variables/variables-misc.scss'; 9 | 10 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/font-awesome/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/weather-icons-classes.less: -------------------------------------------------------------------------------- 1 | @import "icon-classes/classes-day.less"; 2 | @import "icon-classes/classes-night.less"; 3 | @import "icon-classes/classes-neutral.less"; 4 | @import "icon-classes/classes-misc.less"; 5 | @import "icon-classes/classes-moon.less"; 6 | @import "icon-classes/classes-moon-aliases.less"; 7 | @import "icon-classes/classes-time.less"; 8 | @import "icon-classes/classes-direction.less"; 9 | @import "icon-classes/classes-beaufort.less"; 10 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/weather-icons-classes.scss: -------------------------------------------------------------------------------- 1 | @import "icon-classes/classes-day.scss"; 2 | @import "icon-classes/classes-night.scss"; 3 | @import "icon-classes/classes-neutral.scss"; 4 | @import "icon-classes/classes-misc.scss"; 5 | @import "icon-classes/classes-moon.scss"; 6 | @import "icon-classes/classes-moon-aliases.scss"; 7 | @import "icon-classes/classes-time.scss"; 8 | @import "icon-classes/classes-direction.scss"; 9 | @import "icon-classes/classes-beaufort.scss"; 10 | -------------------------------------------------------------------------------- /html/css/visualizationStyle.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | overflow: hidden; 4 | width: inherit; 5 | height: inherit; 6 | margin: 0px; 7 | } 8 | 9 | #chart { 10 | margin: 0px; 11 | align-content: middle; 12 | } 13 | .ggl-tooltip { 14 | border: 1px solid #E0E0E0; 15 | font-family: Arial, Helvetica; 16 | font-size: 10pt; 17 | padding: 12px 12px 12px 12px; 18 | } 19 | 20 | .ggl-tooltip div { 21 | padding-top: 6px; 22 | } 23 | 24 | .ggl-tooltip span { 25 | font-weight: bold; 26 | } -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/variables.less: -------------------------------------------------------------------------------- 1 | // Font Stuff 2 | 3 | @copy: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif; 4 | @white: hsl(0, 0%, 100%); 5 | @black: hsl(0, 0%, 0%); 6 | @red: hsl(0, 100%, 50%); 7 | 8 | @ultraLight: 200; 9 | @light: 300; 10 | @normal: 400; 11 | @semibold: 500; 12 | @bold: 700; 13 | @extraBold: 800; 14 | @blackBold: 900; 15 | 16 | 17 | @purple: hsl(288, 36%, 47%); -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | .responsive-visibility() { 6 | display: block !important; 7 | table& { display: table !important; } 8 | tr& { display: table-row !important; } 9 | th&, 10 | td& { display: table-cell !important; } 11 | } 12 | 13 | .responsive-invisibility() { 14 | display: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /things/mqtt-bridge.things: -------------------------------------------------------------------------------- 1 | Bridge mqtt:broker:MQTTBroker "Mosquitto MQTT Broker" [ 2 | host="192.168.2.249", 3 | secure=false, 4 | port=1883, 5 | qos=0, 6 | retain=false, 7 | clientid="openHAB-mqtt-bridge.things", 8 | //certificate="", 9 | //certificatepin=false, 10 | //publickey="", 11 | //publickeypin=false, 12 | keep_alive_time=30000, 13 | reconnect_time=60000, 14 | //lastwill_message="", 15 | //lastwill_qos=1, 16 | //lastwill_topic="", 17 | username="", 18 | password="" 19 | ] -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-small-craft-advisory.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/csv/misc.csv: -------------------------------------------------------------------------------- 1 | alien, f075 2 | celsius, f03c 3 | fahrenheit, f045 4 | degrees, f042 5 | thermometer, f055 6 | thermometer-exterior, f053 7 | thermometer-internal, f054 8 | cloud-down, f03d 9 | cloud-up, f040 10 | cloud-refresh, f03e 11 | horizon, f047 12 | horizon-alt, f046 13 | sunrise, f051 14 | sunset, f052 15 | moonrise, f0c9 16 | moonset, f0ca 17 | refresh, f04c 18 | refresh-alt, f04b 19 | umbrella, f084 20 | barometer,f079 21 | humidity,f07a 22 | na,f07b 23 | train,f0cb -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/font-awesome/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "weather-icons", 3 | "version": "2.0.10", 4 | "description": "222 weather themed icons inspired by Font Awesome and ready for Bootstrap", 5 | "scripts": {}, 6 | "authors": [ 7 | "Erik Flowers " 8 | ], 9 | "license": "MIT", 10 | "dependencies": {}, 11 | "devDependencies": {}, 12 | "homepage": "http://erikflowers.github.io/weather-icons/", 13 | "keywords": [ 14 | "css", "icon-font", "weather", "icon", "icons" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-storm-warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /services/basicui.cfg: -------------------------------------------------------------------------------- 1 | # Defines the UI theme. 2 | # 3 | #theme=default 4 | 5 | # Defines whether UI renders icons for the widgets or not. 6 | # 7 | #enableIcons=true 8 | 9 | # When enabled, changes the layout so that more widgets can fit on the screen. 10 | # 11 | #condensedLayout=false 12 | 13 | # Displays all widget states in uppercase. 14 | # 15 | #capitalizeValues=false 16 | 17 | # Play audio sent to the web audio sink. 18 | # 19 | #webAudio=false 20 | 21 | # The sitemap to show if no parameter is passed. 22 | # 23 | #defaultSitemap= 24 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-gale-warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/icon-classes/classes-direction.less: -------------------------------------------------------------------------------- 1 | .wi-direction-up:before {content: @direction-up;} 2 | .wi-direction-up-right:before {content: @direction-up-right;} 3 | .wi-direction-right:before {content: @direction-right;} 4 | .wi-direction-down-right:before {content: @direction-down-right;} 5 | .wi-direction-down:before {content: @direction-down;} 6 | .wi-direction-down-left:before {content: @direction-down-left;} 7 | .wi-direction-left:before {content: @direction-left;} 8 | .wi-direction-up-left:before {content: @direction-up-left;} -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/icon-classes/classes-direction.scss: -------------------------------------------------------------------------------- 1 | .wi-direction-up:before {content: $direction-up;} 2 | .wi-direction-up-right:before {content: $direction-up-right;} 3 | .wi-direction-right:before {content: $direction-right;} 4 | .wi-direction-down-right:before {content: $direction-down-right;} 5 | .wi-direction-down:before {content: $direction-down;} 6 | .wi-direction-down-left:before {content: $direction-down-left;} 7 | .wi-direction-left:before {content: $direction-left;} 8 | .wi-direction-up-left:before {content: $direction-up-left;} -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/font-awesome/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/icon-classes/classes-time.less: -------------------------------------------------------------------------------- 1 | .wi-time-1:before {content: @time-1;} 2 | .wi-time-2:before {content: @time-2;} 3 | .wi-time-3:before {content: @time-3;} 4 | .wi-time-4:before {content: @time-4;} 5 | .wi-time-5:before {content: @time-5;} 6 | .wi-time-6:before {content: @time-6;} 7 | .wi-time-7:before {content: @time-7;} 8 | .wi-time-8:before {content: @time-8;} 9 | .wi-time-9:before {content: @time-9;} 10 | .wi-time-10:before {content: @time-10;} 11 | .wi-time-11:before {content: @time-11;} 12 | .wi-time-12:before {content: @time-12;} -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/icon-classes/classes-time.scss: -------------------------------------------------------------------------------- 1 | .wi-time-1:before {content: $time-1;} 2 | .wi-time-2:before {content: $time-2;} 3 | .wi-time-3:before {content: $time-3;} 4 | .wi-time-4:before {content: $time-4;} 5 | .wi-time-5:before {content: $time-5;} 6 | .wi-time-6:before {content: $time-6;} 7 | .wi-time-7:before {content: $time-7;} 8 | .wi-time-8:before {content: $time-8;} 9 | .wi-time-9:before {content: $time-9;} 10 | .wi-time-10:before {content: $time-10;} 11 | .wi-time-11:before {content: $time-11;} 12 | .wi-time-12:before {content: $time-12;} -------------------------------------------------------------------------------- /services/rrd4j.cfg: -------------------------------------------------------------------------------- 1 | # please note that currently the first archive in each RRD defines the consolidation 2 | # function (e.g. AVERAGE) used by OpenHAB, thus only one consolidation function is 3 | # fully supported 4 | # 5 | # default_numeric and default_other are internally defined defnames and are used as 6 | # defaults when no other defname applies 7 | 8 | #.def=[ABSOLUTE|COUNTER|DERIVE|GAUGE],,[|U],[|U], 9 | #.archives=[AVERAGE|MIN|MAX|LAST|FIRST|TOTAL],,, 10 | #.items= 11 | -------------------------------------------------------------------------------- /services/influxdb.cfg: -------------------------------------------------------------------------------- 1 | # The database URL, e.g. http://127.0.0.1:8086 or https://127.0.0.1:8084 . 2 | # Defaults to: http://127.0.0.1:8086 3 | url=http://192.168.2.249:8086 4 | 5 | # The name of the database user, e.g. openhab. 6 | # Defaults to: openhab 7 | user=openhab 8 | 9 | # The password of the database user. 10 | password=habopen 11 | 12 | # The name of the database, e.g. openhab. 13 | # Defaults to: openhab 14 | db=openhab_db 15 | 16 | # The retention policy to be used, needs to configured in InfluxDB 17 | # Till v0.13: 'default', since v1.0: 'autogen' 18 | retentionPolicy=autogen -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-first-quarter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-third-quarter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/font-awesome/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-hurricane-warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-bottom-right-radius: @radius; 9 | border-top-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-bottom-left-radius: @radius; 17 | border-top-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/reset-text.less: -------------------------------------------------------------------------------- 1 | .reset-text() { 2 | font-family: @font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: @line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/wind-degrees.edn: -------------------------------------------------------------------------------- 1 | {:columns [direction label code] 2 | :outputs 3 | [{:name "../less/icon-classes/classes-wind-degrees.less" 4 | :before ".@{wi-css-prefix}-wind-default { \n" 5 | :join "}\n" 6 | :row [\ \ \& "." direction "-" label "-deg {.wind-rotate(" code "deg);"] 7 | :after "} \n}"} 8 | 9 | {:name "../sass/icon-classes/classes-wind-degrees.scss" 10 | :before ".#{$wi-css-prefix}-wind-default { \n" 11 | :join "}\n" 12 | :row [\ \ \& "." direction "-" label "-deg {@include wind-rotate(" code "deg);"] 13 | :after "} \n}"} 14 | 15 | ]} 16 | -------------------------------------------------------------------------------- /persistence/rrd4j.persist: -------------------------------------------------------------------------------- 1 | // persistence strategies have a name and a definition and are referred to in the "Items" section 2 | Strategies { 3 | // for rrd charts, we need a cron strategy 4 | everyMinute : "0 * * * * ?" 5 | everyHour : "0 0 * * * ?" 6 | everyDay : "0 0 0 * * ?" 7 | default = everyChange 8 | } 9 | 10 | Items { 11 | //* : strategy = everyChange, restoreOnStartup 12 | 13 | TempSensors*,HumSensors*,Speedtest_Chart* : strategy = everyMinute, restoreOnStartup 14 | Weather* : strategy = everyChange, restoreOnStartup 15 | Lights*, gGarage, gHVAC, Configuration* : strategy = everyChange, restoreOnStartup 16 | } 17 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/font-awesome/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waning-crescent-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waxing-gibbous-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/icon-variables/variables-misc.less: -------------------------------------------------------------------------------- 1 | @alien: "\f075"; 2 | @celsius: "\f03c"; 3 | @fahrenheit: "\f045"; 4 | @degrees: "\f042"; 5 | @thermometer: "\f055"; 6 | @thermometer-exterior: "\f053"; 7 | @thermometer-internal: "\f054"; 8 | @cloud-down: "\f03d"; 9 | @cloud-up: "\f040"; 10 | @cloud-refresh: "\f03e"; 11 | @horizon: "\f047"; 12 | @horizon-alt: "\f046"; 13 | @sunrise: "\f051"; 14 | @sunset: "\f052"; 15 | @moonrise: "\f0c9"; 16 | @moonset: "\f0ca"; 17 | @refresh: "\f04c"; 18 | @refresh-alt: "\f04b"; 19 | @umbrella: "\f084"; 20 | @barometer: "\f079"; 21 | @humidity: "\f07a"; 22 | @na: "\f07b"; 23 | @train: "\f0cb"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/icon-variables/variables-misc.scss: -------------------------------------------------------------------------------- 1 | $alien: "\f075"; 2 | $celsius: "\f03c"; 3 | $fahrenheit: "\f045"; 4 | $degrees: "\f042"; 5 | $thermometer: "\f055"; 6 | $thermometer-exterior: "\f053"; 7 | $thermometer-internal: "\f054"; 8 | $cloud-down: "\f03d"; 9 | $cloud-up: "\f040"; 10 | $cloud-refresh: "\f03e"; 11 | $horizon: "\f047"; 12 | $horizon-alt: "\f046"; 13 | $sunrise: "\f051"; 14 | $sunset: "\f052"; 15 | $moonrise: "\f0c9"; 16 | $moonset: "\f0ca"; 17 | $refresh: "\f04c"; 18 | $refresh-alt: "\f04b"; 19 | $umbrella: "\f084"; 20 | $barometer: "\f079"; 21 | $humidity: "\f07a"; 22 | $na: "\f07b"; 23 | $train: "\f0cb"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waning-crescent-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waning-gibbous-5 .svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/csv/day.csv: -------------------------------------------------------------------------------- 1 | day-sunny, f00d 2 | day-cloudy, f002 3 | day-cloudy-gusts, f000 4 | day-cloudy-windy, f001 5 | day-fog, f003 6 | day-hail, f004 7 | day-haze, f0b6 8 | day-lightning, f005 9 | day-rain, f008 10 | day-rain-mix, f006 11 | day-rain-wind, f007 12 | day-showers, f009 13 | day-sleet, f0b2 14 | day-sleet-storm, f068 15 | day-snow, f00a 16 | day-snow-thunderstorm, f06b 17 | day-snow-wind, f065 18 | day-sprinkle, f00b 19 | day-storm-showers, f00e 20 | day-sunny-overcast, f00c 21 | day-thunderstorm, f010 22 | day-windy, f085 23 | solar-eclipse, f06e 24 | hot, f072 25 | day-cloudy-high,f07d 26 | day-light-wind,f0c4 -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waxing-crescent-5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waxing-crescent-6 .svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/pagination.less: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | line-height: @line-height; 10 | } 11 | &:first-child { 12 | > a, 13 | > span { 14 | .border-left-radius(@border-radius); 15 | } 16 | } 17 | &:last-child { 18 | > a, 19 | > span { 20 | .border-right-radius(@border-radius); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waning-crescent-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waning-gibbous-6.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/icon-variables/variables-wind-names.less: -------------------------------------------------------------------------------- 1 | @n: "\f0b1"; 2 | @nne: "\f0b1"; 3 | @ne: "\f0b1"; 4 | @ene: "\f0b1"; 5 | @e: "\f0b1"; 6 | @ese: "\f0b1"; 7 | @se: "\f0b1"; 8 | @sse: "\f0b1"; 9 | @s: "\f0b1"; 10 | @ssw: "\f0b1"; 11 | @sw: "\f0b1"; 12 | @wsw: "\f0b1"; 13 | @w: "\f0b1"; 14 | @wnw: "\f0b1"; 15 | @nw: "\f0b1"; 16 | @nnw: "\f0b1"; 17 | @n: "\f0b1"; 18 | @nne: "\f0b1"; 19 | @ne: "\f0b1"; 20 | @ene: "\f0b1"; 21 | @e: "\f0b1"; 22 | @ese: "\f0b1"; 23 | @se: "\f0b1"; 24 | @sse: "\f0b1"; 25 | @s: "\f0b1"; 26 | @ssw: "\f0b1"; 27 | @sw: "\f0b1"; 28 | @wsw: "\f0b1"; 29 | @w: "\f0b1"; 30 | @wnw: "\f0b1"; 31 | @nw: "\f0b1"; 32 | @nnw: "\f0b1"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/icon-variables/variables-wind-names.scss: -------------------------------------------------------------------------------- 1 | $n: "\f0b1"; 2 | $nne: "\f0b1"; 3 | $ne: "\f0b1"; 4 | $ene: "\f0b1"; 5 | $e: "\f0b1"; 6 | $ese: "\f0b1"; 7 | $se: "\f0b1"; 8 | $sse: "\f0b1"; 9 | $s: "\f0b1"; 10 | $ssw: "\f0b1"; 11 | $sw: "\f0b1"; 12 | $wsw: "\f0b1"; 13 | $w: "\f0b1"; 14 | $wnw: "\f0b1"; 15 | $nw: "\f0b1"; 16 | $nnw: "\f0b1"; 17 | $n: "\f0b1"; 18 | $nne: "\f0b1"; 19 | $ne: "\f0b1"; 20 | $ene: "\f0b1"; 21 | $e: "\f0b1"; 22 | $ese: "\f0b1"; 23 | $se: "\f0b1"; 24 | $sse: "\f0b1"; 25 | $s: "\f0b1"; 26 | $ssw: "\f0b1"; 27 | $sw: "\f0b1"; 28 | $wsw: "\f0b1"; 29 | $w: "\f0b1"; 30 | $wnw: "\f0b1"; 31 | $nw: "\f0b1"; 32 | $nnw: "\f0b1"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waxing-gibbous-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waning-crescent-4 .svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-na.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-full.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waning-gibbous-4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-new.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waxing-gibbous-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/templates.edn: -------------------------------------------------------------------------------- 1 | {:columns [label code] 2 | :outputs 3 | [{:name "weather-icons-variables.less" 4 | :before "@wi-icon-glyphs:\n" 5 | :join ",\n" 6 | :row [\" label \" " " \" \\ code \"] 7 | :after ";"} 8 | 9 | {:name "weather-icons-variables.scss" 10 | :before "$wi-icon-glyphs: (\n" 11 | :join ",\n" 12 | :row [\" label \" \: " " \" \\ code \"] 13 | :after "\n)"} 14 | 15 | {:name "../icon-list.jade" 16 | :before "" 17 | :join "\n" 18 | :row [".icon-wrap" "\n" 19 | " .icon &#x" code \; "\n" 20 | " .icon-name wi-" label "\n" 21 | " .icon_unicode " code \ ""] 22 | :after ""}]} 23 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid @well-border; 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (will be removed in v4) 10 | .hide-text() { 11 | font: ~"0/0" a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | .text-hide() { 20 | .hide-text(); 21 | } 22 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waning-crescent-5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waxing-gibbous-4 .svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /services/weather.cfg: -------------------------------------------------------------------------------- 1 | # The apikey for the different weather providers, at least one must be specified 2 | # Note: Hamweather requires two apikeys: client_id=apikey, client_secret=apikey2 3 | #apikey.ForecastIo= 4 | #apikey.OpenWeatherMap= 5 | #apikey.WorldWeatherOnline= 6 | #apikey.Wunderground= 7 | #apikey.Hamweather= 8 | #apikey2.Hamweather= 9 | #apikey.Meteoblue= 10 | 11 | #location..name= 12 | #location..latitude= (not required for Yahoo provider) 13 | #location..longitude= (not required for Yahoo provider) 14 | #location..woeid= (required for Yahoo provider) 15 | #location..provider= 16 | #location..language= 17 | #location..updateInterval= 18 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waxing-crescent-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waning-gibbous-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waxing-crescent-4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a&, 9 | button& { 10 | color: @color; 11 | 12 | .list-group-item-heading { 13 | color: inherit; 14 | } 15 | 16 | &:hover, 17 | &:focus { 18 | color: @color; 19 | background-color: darken(@background, 5%); 20 | } 21 | &.active, 22 | &.active:hover, 23 | &.active:focus { 24 | color: #fff; 25 | background-color: @color; 26 | border-color: @color; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waxing-gibbous-5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waxing-gibbous-6.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | .clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/font-awesome/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waning-gibbous-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: @breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: @breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/csv/wind.csv: -------------------------------------------------------------------------------- 1 | towards,n,f0b1,0 2 | towards,nne,f0b1,23 3 | towards,ne,f0b1,45 4 | towards,ene,f0b1,68 5 | towards,e,f0b1,90 6 | towards,ese,f0b1,113 7 | towards,se,f0b1,135 8 | towards,sse,f0b1,158 9 | towards,s,f0b1,180 10 | towards,ssw,f0b1,203 11 | towards,sw,f0b1,225 12 | towards,wsw,f0b1,248 13 | towards,w,f0b1,270 14 | towards,wnw,f0b1,293 15 | towards,nw,f0b1,313 16 | towards,nnw,f0b1,336 17 | from,n,f0b1,180 18 | from,nne,f0b1,203 19 | from,ne,f0b1,225 20 | from,ene,f0b1,248 21 | from,e,f0b1,270 22 | from,ese,f0b1,293 23 | from,se,f0b1,313 24 | from,sse,f0b1,336 25 | from,s,f0b1,0 26 | from,ssw,f0b1,23 27 | from,sw,f0b1,45 28 | from,wsw,f0b1,68 29 | from,w,f0b1,90 30 | from,wnw,f0b1,113 31 | from,nw,f0b1,135 32 | from,nnw,f0b1,158 -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/responsive-embed.less: -------------------------------------------------------------------------------- 1 | // Embeds responsive 2 | // 3 | // Credit: Nicolas Gallagher and SUIT CSS. 4 | 5 | .embed-responsive { 6 | position: relative; 7 | display: block; 8 | height: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | 12 | .embed-responsive-item, 13 | iframe, 14 | embed, 15 | object, 16 | video { 17 | position: absolute; 18 | top: 0; 19 | left: 0; 20 | bottom: 0; 21 | height: 100%; 22 | width: 100%; 23 | border: 0; 24 | } 25 | } 26 | 27 | // Modifier class for 16:9 aspect ratio 28 | .embed-responsive-16by9 { 29 | padding-bottom: 56.25%; 30 | } 31 | 32 | // Modifier class for 4:3 aspect ratio 33 | .embed-responsive-4by3 { 34 | padding-bottom: 75%; 35 | } 36 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/font-awesome/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waning-gibbous-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waxing-crescent-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "weather-icons", 3 | "version": "2.0.10", 4 | "homepage": "http://erikflowers.github.io/weather-icons/", 5 | "keywords": [ 6 | "css", "icon-font", "weather", "icon", "icons" 7 | ], 8 | "authors": [ 9 | "Erik Flowers " 10 | ], 11 | "description": "222 weather themed icons inspired by Font Awesome and ready for Bootstrap", 12 | "license": "MIT", 13 | "main": [ 14 | "./css/weather-icons.css", 15 | "./css/weather-icons.min.css", 16 | "./css/weather-icons-wind.css", 17 | "./css/weather-icons-wind.min.css", 18 | "./font/*", 19 | "./less/weather-icons.less", 20 | "./sass/weather-icons.scss" 21 | ], 22 | "ignore": [ 23 | "_builder/", 24 | "_docs/", 25 | "font-source/" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/icon-variables/variables-day.less: -------------------------------------------------------------------------------- 1 | @day-sunny: "\f00d"; 2 | @day-cloudy: "\f002"; 3 | @day-cloudy-gusts: "\f000"; 4 | @day-cloudy-windy: "\f001"; 5 | @day-fog: "\f003"; 6 | @day-hail: "\f004"; 7 | @day-haze: "\f0b6"; 8 | @day-lightning: "\f005"; 9 | @day-rain: "\f008"; 10 | @day-rain-mix: "\f006"; 11 | @day-rain-wind: "\f007"; 12 | @day-showers: "\f009"; 13 | @day-sleet: "\f0b2"; 14 | @day-sleet-storm: "\f068"; 15 | @day-snow: "\f00a"; 16 | @day-snow-thunderstorm: "\f06b"; 17 | @day-snow-wind: "\f065"; 18 | @day-sprinkle: "\f00b"; 19 | @day-storm-showers: "\f00e"; 20 | @day-sunny-overcast: "\f00c"; 21 | @day-thunderstorm: "\f010"; 22 | @day-windy: "\f085"; 23 | @solar-eclipse: "\f06e"; 24 | @hot: "\f072"; 25 | @day-cloudy-high: "\f07d"; 26 | @day-light-wind: "\f0c4"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/icon-variables/variables-day.scss: -------------------------------------------------------------------------------- 1 | $day-sunny: "\f00d"; 2 | $day-cloudy: "\f002"; 3 | $day-cloudy-gusts: "\f000"; 4 | $day-cloudy-windy: "\f001"; 5 | $day-fog: "\f003"; 6 | $day-hail: "\f004"; 7 | $day-haze: "\f0b6"; 8 | $day-lightning: "\f005"; 9 | $day-rain: "\f008"; 10 | $day-rain-mix: "\f006"; 11 | $day-rain-wind: "\f007"; 12 | $day-showers: "\f009"; 13 | $day-sleet: "\f0b2"; 14 | $day-sleet-storm: "\f068"; 15 | $day-snow: "\f00a"; 16 | $day-snow-thunderstorm: "\f06b"; 17 | $day-snow-wind: "\f065"; 18 | $day-sprinkle: "\f00b"; 19 | $day-storm-showers: "\f00e"; 20 | $day-sunny-overcast: "\f00c"; 21 | $day-thunderstorm: "\f010"; 22 | $day-windy: "\f085"; 23 | $solar-eclipse: "\f06e"; 24 | $hot: "\f072"; 25 | $day-cloudy-high: "\f07d"; 26 | $day-light-wind: "\f0c4"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-thermometer-internal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/csv/neutral.csv: -------------------------------------------------------------------------------- 1 | cloud, f041 2 | cloudy, f013 3 | cloudy-gusts, f011 4 | cloudy-windy, f012 5 | fog, f014 6 | hail, f015 7 | rain, f019 8 | rain-mix, f017 9 | rain-wind, f018 10 | showers, f01a 11 | sleet, f0b5 12 | snow, f01b 13 | sprinkle, f01c 14 | storm-showers, f01d 15 | thunderstorm, f01e 16 | snow-wind, f064 17 | snow, f01b 18 | smog, f074 19 | smoke, f062 20 | lightning, f016 21 | raindrops, f04e 22 | raindrop,f078 23 | dust, f063 24 | snowflake-cold, f076 25 | windy, f021 26 | strong-wind, f050 27 | sandstorm,f082 28 | earthquake,f0c6 29 | fire,f0c7 30 | flood,f07c 31 | meteor, f071 32 | tsunami,f0c5 33 | volcano,f0c8 34 | hurricane, f073 35 | tornado, f056 36 | small-craft-advisory,f0cc 37 | gale-warning,f0cd 38 | storm-warning,f0ce 39 | hurricane-warning,f0cf 40 | wind-direction,f0b1 -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-raindrop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/icon-classes/classes-beaufort.less: -------------------------------------------------------------------------------- 1 | .wi-wind-beaufort-0:before {content: @wind-beaufort-0;} 2 | .wi-wind-beaufort-1:before {content: @wind-beaufort-1;} 3 | .wi-wind-beaufort-2:before {content: @wind-beaufort-2;} 4 | .wi-wind-beaufort-3:before {content: @wind-beaufort-3;} 5 | .wi-wind-beaufort-4:before {content: @wind-beaufort-4;} 6 | .wi-wind-beaufort-5:before {content: @wind-beaufort-5;} 7 | .wi-wind-beaufort-6:before {content: @wind-beaufort-6;} 8 | .wi-wind-beaufort-7:before {content: @wind-beaufort-7;} 9 | .wi-wind-beaufort-8:before {content: @wind-beaufort-8;} 10 | .wi-wind-beaufort-9:before {content: @wind-beaufort-9;} 11 | .wi-wind-beaufort-10:before {content: @wind-beaufort-10;} 12 | .wi-wind-beaufort-11:before {content: @wind-beaufort-11;} 13 | .wi-wind-beaufort-12:before {content: @wind-beaufort-12;} -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/icon-classes/classes-beaufort.scss: -------------------------------------------------------------------------------- 1 | .wi-wind-beaufort-0:before {content: $wind-beaufort-0;} 2 | .wi-wind-beaufort-1:before {content: $wind-beaufort-1;} 3 | .wi-wind-beaufort-2:before {content: $wind-beaufort-2;} 4 | .wi-wind-beaufort-3:before {content: $wind-beaufort-3;} 5 | .wi-wind-beaufort-4:before {content: $wind-beaufort-4;} 6 | .wi-wind-beaufort-5:before {content: $wind-beaufort-5;} 7 | .wi-wind-beaufort-6:before {content: $wind-beaufort-6;} 8 | .wi-wind-beaufort-7:before {content: $wind-beaufort-7;} 9 | .wi-wind-beaufort-8:before {content: $wind-beaufort-8;} 10 | .wi-wind-beaufort-9:before {content: $wind-beaufort-9;} 11 | .wi-wind-beaufort-10:before {content: $wind-beaufort-10;} 12 | .wi-wind-beaufort-11:before {content: $wind-beaufort-11;} 13 | .wi-wind-beaufort-12:before {content: $wind-beaufort-12;} -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-direction-down-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /persistence/mapdb.persist: -------------------------------------------------------------------------------- 1 | // persistence strategies have a name and a definition and are referred to in the "Items" section 2 | Strategies { 3 | // for rrd charts, we need a cron strategy 4 | everyMinute : "0 * * * * ?" 5 | everyHour : "0 0 * * * ?" 6 | everyDay : "0 0 0 * * ?" 7 | default = everyChange 8 | } 9 | 10 | Items { 11 | //* : strategy = everyChange, restoreOnStartup 12 | 13 | LightingScenes*,LEDStrips*,Status*,Configuration*,Sequencer*,HASP* : strategy = everyUpdate, restoreOnStartup 14 | 15 | gLEDStrip_Outdoor,gLEDStrip_Outdoor_Power,gLEDStrip_Outdoor_FX,gLEDStrip_Outdoor_Color,gLEDStrip_Outdoor_Speed,gLEDStrip_Outdoor_Intensity : strategy = everyUpdate 16 | gLEDStrip_Kitchen,gLEDStrip_Kitchen_Power,gLEDStrip_Kitchen_FX,gLEDStrip_Kitchen_Color,gLEDStrip_Kitchen_Speed,gLEDStrip_Kitchen_Intensity : strategy = everyUpdate 17 | 18 | 19 | } -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-direction-up-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-direction-up-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waxing-crescent-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-waning-crescent-6.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /persistence/influxdb.persist: -------------------------------------------------------------------------------- 1 | // persistence strategies have a name and a definition and are referred to in the "Items" section 2 | Strategies { 3 | // for rrd charts, we need a cron strategy 4 | everyMinute : "0 * * * * ?" 5 | everyHour : "0 0 * * * ?" 6 | everyDay : "0 0 0 * * ?" 7 | default = everyChange 8 | } 9 | 10 | Items { 11 | //* : strategy = everyChange, restoreOnStartup 12 | 13 | Weather_Chart*,TempSensors*,HumSensors*,Speedtest_Chart*,gHVAC*,gHVACStatus*,gSolar*,AmbiMate_Test*,PowerMeters* : strategy = everyMinute, restoreOnStartup 14 | Weather*,Weather_Chart_Period,Temp_Chart_Period,Temp_Chart_Period_2,Hum_Chart_Period,Speedtest_Chart_Period,AmbiMate_Motion : strategy = everyChange, restoreOnStartup 15 | localCurrentTemperature,localCurrentPressure,localCurrentHumidity,localCurrentWindSpeed : strategy = everyMinute, restoreOnStartup 16 | } 17 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/jade/icon-list-direction.jade: -------------------------------------------------------------------------------- 1 | .icon-wrap 2 | .icon  3 | .icon-name wi-direction-up 4 | .icon_unicode f058 5 | .icon-wrap 6 | .icon  7 | .icon-name wi-direction-up-right 8 | .icon_unicode f057 9 | .icon-wrap 10 | .icon  11 | .icon-name wi-direction-right 12 | .icon_unicode f04d 13 | .icon-wrap 14 | .icon  15 | .icon-name wi-direction-down-right 16 | .icon_unicode f088 17 | .icon-wrap 18 | .icon  19 | .icon-name wi-direction-down 20 | .icon_unicode f044 21 | .icon-wrap 22 | .icon  23 | .icon-name wi-direction-down-left 24 | .icon_unicode f043 25 | .icon-wrap 26 | .icon  27 | .icon-name wi-direction-left 28 | .icon_unicode f048 29 | .icon-wrap 30 | .icon  31 | .icon-name wi-direction-up-left 32 | .icon_unicode f087 -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-direction-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-lightning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | // Heads up! 6 | // 7 | // We don't use the `.opacity()` mixin here since it causes a bug with text 8 | // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. 9 | 10 | .fade { 11 | opacity: 0; 12 | .transition(opacity .15s linear); 13 | &.in { 14 | opacity: 1; 15 | } 16 | } 17 | 18 | .collapse { 19 | display: none; 20 | 21 | &.in { display: block; } 22 | tr&.in { display: table-row; } 23 | tbody&.in { display: table-row-group; } 24 | } 25 | 26 | .collapsing { 27 | position: relative; 28 | height: 0; 29 | overflow: hidden; 30 | .transition-property(~"height, visibility"); 31 | .transition-duration(.35s); 32 | .transition-timing-function(ease); 33 | } 34 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/font-awesome/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-direction-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # openhab2-conf-bartus 2 | My openHAB2 configuration files 3 | 4 | Sharing my configuration for others to get an idea about actual openHAB production systems. 5 | 6 | # WARNING # 7 | 8 | If you want to do this with your own openHAB configuration, please be VERY CAREFUL to prevent sharing your personal/secret information, such as: 9 | 10 | ### Wifi credentials (SSID/password) 11 | ### Account Password (MyQ, etc..) 12 | ### API keys (Nest, etc...) 13 | ### Location (location items, weather forecast location, etc...) 14 | 15 | Use GITIGNORE files to properly hide those files from your GitHub repo. 16 | 17 | Be AWARE that even if you delete the file from your repo after accidentally uploading it, the information is STILL THERE (GitHub keeps revision history). The ONLY way to get rid of the information is to DELETE the repo and start over!!! 18 | 19 | https://www.youtube.com/c/BKHobby 20 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/table-row.less: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | .table-row-variant(@state; @background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table > thead > tr, 7 | .table > tbody > tr, 8 | .table > tfoot > tr { 9 | > td.@{state}, 10 | > th.@{state}, 11 | &.@{state} > td, 12 | &.@{state} > th { 13 | background-color: @background; 14 | } 15 | } 16 | 17 | // Hover states for `.table-hover` 18 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 19 | .table-hover > tbody > tr { 20 | > td.@{state}:hover, 21 | > th.@{state}:hover, 22 | &.@{state}:hover > td, 23 | &:hover > .@{state}, 24 | &.@{state}:hover > th { 25 | background-color: darken(@background, 5%); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-direction-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-degrees.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /services/openhabcloud.cfg: -------------------------------------------------------------------------------- 1 | ############################## openHAB Cloud Connector ############################# 2 | 3 | # The URL of the openHAB Cloud service to connect to. 4 | # Optional, default is set to the service offered by the openHAB Foundation 5 | # (https://myopenhab.org/) 6 | #baseURL= 7 | 8 | # Defines the mode in which you want to operate the connector. 9 | # Possible values are: 10 | # - notification: Only push notifications are enabled, no remote access is allowed. 11 | # - remote: Push notifications and remote access are enabled. 12 | # Optional, default is 'remote'. 13 | #mode= 14 | 15 | # A comma-separated list of items to be exposed to external services like IFTTT. 16 | # Events of those items are pushed to the openHAB Cloud and commands received for 17 | # these items from the openHAB Cloud service are accepted and sent to the local bus. 18 | # Optional, default is an empty list. 19 | #expose= 20 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-direction-down-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/font-awesome/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-direction-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/close.less: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: (@font-size-base * 1.5); 9 | font-weight: @close-font-weight; 10 | line-height: 1; 11 | color: @close-color; 12 | text-shadow: @close-text-shadow; 13 | .opacity(.2); 14 | 15 | &:hover, 16 | &:focus { 17 | color: @close-color; 18 | text-decoration: none; 19 | cursor: pointer; 20 | .opacity(.5); 21 | } 22 | 23 | // Additional properties for button version 24 | // iOS requires the button element instead of an anchor tag. 25 | // If you want the anchor version, it requires `href="#"`. 26 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile 27 | button& { 28 | padding: 0; 29 | cursor: pointer; 30 | background: transparent; 31 | border: 0; 32 | -webkit-appearance: none; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- 1 | // 2 | // Thumbnails 3 | // -------------------------------------------------- 4 | 5 | 6 | // Mixin and adjust the regular image class 7 | .thumbnail { 8 | display: block; 9 | padding: @thumbnail-padding; 10 | margin-bottom: @line-height-computed; 11 | line-height: @line-height-base; 12 | background-color: @thumbnail-bg; 13 | border: 1px solid @thumbnail-border; 14 | border-radius: @thumbnail-border-radius; 15 | .transition(border .2s ease-in-out); 16 | 17 | > img, 18 | a > img { 19 | &:extend(.img-responsive); 20 | margin-left: auto; 21 | margin-right: auto; 22 | } 23 | 24 | // Add a hover state for linked versions only 25 | a&:hover, 26 | a&:focus, 27 | a&.active { 28 | border-color: @link-color; 29 | } 30 | 31 | // Image captions 32 | .caption { 33 | padding: @thumbnail-caption-padding; 34 | color: @thumbnail-caption-color; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-first-quarter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-third-quarter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waxing-crescent-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waxing-crescent-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waxing-crescent-5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waning-crescent-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waxing-crescent-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waxing-crescent-6 .svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/weather-icons.min.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Weather Icons 2.0 3 | * Updated August 1, 2015 4 | * Weather themed icons for Bootstrap 5 | * Author - Erik Flowers - erik@helloerik.com 6 | * Email: erik@helloerik.com 7 | * Twitter: http://twitter.com/Erik_UX 8 | * ------------------------------------------------------------------------------ 9 | * Maintained at http://erikflowers.github.io/weather-icons 10 | * 11 | * License 12 | * ------------------------------------------------------------------------------ 13 | * - Font licensed under SIL OFL 1.1 - 14 | * http://scripts.sil.org/OFL 15 | * - CSS, SCSS and LESS are licensed under MIT License - 16 | * http://opensource.org/licenses/mit-license.html 17 | * - Documentation licensed under CC BY 3.0 - 18 | * http://creativecommons.org/licenses/by/3.0/ 19 | * - Inspired by and works great as a companion with Font Awesome 20 | * "Font Awesome by Dave Gandy - http://fontawesome.io" 21 | */ 22 | 23 | @import "weather-icons.less"; 24 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/weather-icons.min.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Weather Icons 2.0.8 3 | * Updated September 19, 2015 4 | * Weather themed icons for Bootstrap 5 | * Author - Erik Flowers - erik@helloerik.com 6 | * Email: erik@helloerik.com 7 | * Twitter: http://twitter.com/Erik_UX 8 | * ------------------------------------------------------------------------------ 9 | * Maintained at http://erikflowers.github.io/weather-icons 10 | * 11 | * License 12 | * ------------------------------------------------------------------------------ 13 | * - Font licensed under SIL OFL 1.1 - 14 | * http://scripts.sil.org/OFL 15 | * - CSS, SCSS and LESS are licensed under MIT License - 16 | * http://opensource.org/licenses/mit-license.html 17 | * - Documentation licensed under CC BY 3.0 - 18 | * http://creativecommons.org/licenses/by/3.0/ 19 | * - Inspired by and works great as a companion with Font Awesome 20 | * "Font Awesome by Dave Gandy - http://fontawesome.io" 21 | */ 22 | 23 | @import 'weather-icons.scss'; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waning-crescent-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waxing-crescent-4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waning-crescent-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waning-gibbous-6.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/icon-variables/variables-neutral.less: -------------------------------------------------------------------------------- 1 | @cloud: "\f041"; 2 | @cloudy: "\f013"; 3 | @cloudy-gusts: "\f011"; 4 | @cloudy-windy: "\f012"; 5 | @fog: "\f014"; 6 | @hail: "\f015"; 7 | @rain: "\f019"; 8 | @rain-mix: "\f017"; 9 | @rain-wind: "\f018"; 10 | @showers: "\f01a"; 11 | @sleet: "\f0b5"; 12 | @snow: "\f01b"; 13 | @sprinkle: "\f01c"; 14 | @storm-showers: "\f01d"; 15 | @thunderstorm: "\f01e"; 16 | @snow-wind: "\f064"; 17 | @snow: "\f01b"; 18 | @smog: "\f074"; 19 | @smoke: "\f062"; 20 | @lightning: "\f016"; 21 | @raindrops: "\f04e"; 22 | @raindrop: "\f078"; 23 | @dust: "\f063"; 24 | @snowflake-cold: "\f076"; 25 | @windy: "\f021"; 26 | @strong-wind: "\f050"; 27 | @sandstorm: "\f082"; 28 | @earthquake: "\f0c6"; 29 | @fire: "\f0c7"; 30 | @flood: "\f07c"; 31 | @meteor: "\f071"; 32 | @tsunami: "\f0c5"; 33 | @volcano: "\f0c8"; 34 | @hurricane: "\f073"; 35 | @tornado: "\f056"; 36 | @small-craft-advisory: "\f0cc"; 37 | @gale-warning: "\f0cd"; 38 | @storm-warning: "\f0ce"; 39 | @hurricane-warning: "\f0cf"; 40 | @wind-direction: "\f0b1"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/icon-variables/variables-neutral.scss: -------------------------------------------------------------------------------- 1 | $cloud: "\f041"; 2 | $cloudy: "\f013"; 3 | $cloudy-gusts: "\f011"; 4 | $cloudy-windy: "\f012"; 5 | $fog: "\f014"; 6 | $hail: "\f015"; 7 | $rain: "\f019"; 8 | $rain-mix: "\f017"; 9 | $rain-wind: "\f018"; 10 | $showers: "\f01a"; 11 | $sleet: "\f0b5"; 12 | $snow: "\f01b"; 13 | $sprinkle: "\f01c"; 14 | $storm-showers: "\f01d"; 15 | $thunderstorm: "\f01e"; 16 | $snow-wind: "\f064"; 17 | $snow: "\f01b"; 18 | $smog: "\f074"; 19 | $smoke: "\f062"; 20 | $lightning: "\f016"; 21 | $raindrops: "\f04e"; 22 | $raindrop: "\f078"; 23 | $dust: "\f063"; 24 | $snowflake-cold: "\f076"; 25 | $windy: "\f021"; 26 | $strong-wind: "\f050"; 27 | $sandstorm: "\f082"; 28 | $earthquake: "\f0c6"; 29 | $fire: "\f0c7"; 30 | $flood: "\f07c"; 31 | $meteor: "\f071"; 32 | $tsunami: "\f0c5"; 33 | $volcano: "\f0c8"; 34 | $hurricane: "\f073"; 35 | $tornado: "\f056"; 36 | $small-craft-advisory: "\f0cc"; 37 | $gale-warning: "\f0cd"; 38 | $storm-warning: "\f0ce"; 39 | $hurricane-warning: "\f0cf"; 40 | $wind-direction: "\f0b1"; -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waxing-gibbous-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-lunar-eclipse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waning-crescent-6.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/utilities.less: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Floats 7 | // ------------------------- 8 | 9 | .clearfix { 10 | .clearfix(); 11 | } 12 | .center-block { 13 | .center-block(); 14 | } 15 | .pull-right { 16 | float: right !important; 17 | } 18 | .pull-left { 19 | float: left !important; 20 | } 21 | 22 | 23 | // Toggling content 24 | // ------------------------- 25 | 26 | // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 27 | .hide { 28 | display: none !important; 29 | } 30 | .show { 31 | display: block !important; 32 | } 33 | .invisible { 34 | visibility: hidden; 35 | } 36 | .text-hide { 37 | .text-hide(); 38 | } 39 | 40 | 41 | // Hide from screenreaders and browsers 42 | // 43 | // Credit: HTML5 Boilerplate 44 | 45 | .hidden { 46 | display: none !important; 47 | } 48 | 49 | 50 | // For Affix plugin 51 | // ------------------------- 52 | 53 | .affix { 54 | position: fixed; 55 | } 56 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waning-crescent-4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /items/speedtest.items: -------------------------------------------------------------------------------- 1 | Group gSpeedtest 2 | Group Speedtest_Chart (gSpeedtest) 3 | Number Speedtest_Chart_Period "Speedtest Chart Period" 4 | 5 | 6 | 7 | String SpeedtestSummary "Speedtest [%s]" (gSpeedtest) 8 | Number:Time SpeedtestResultPing "Ping [%.3f ms]" (gSpeedtest,Speedtest_Chart) {unit="ms"} 9 | Number:DataTransferRate SpeedtestResultDown "Downlink [%.2f Mbit/s]" (gSpeedtest,Speedtest_Chart) {unit="Mbit/s"} 10 | Number:DataTransferRate SpeedtestResultUp "Uplink [%.2f Mbit/s]" (gSpeedtest,Speedtest_Chart) {unit="Mbit/s"} 11 | String SpeedtestRunning "Speedtest running ... [%s]" (gSpeedtest) 12 | Switch SpeedtestRerun "Start manually" (gSpeedtest) 13 | DateTime SpeedtestResultDate "Last executed [%1$tY.%1$tm.%1$td, %1$tH:%1$tM]" (gSpeedtest) 14 | 15 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waning-crescent-5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/font-awesome/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | .fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | .fa-icon-rotate(@degrees, @rotation) { 15 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation); 16 | -webkit-transform: rotate(@degrees); 17 | -ms-transform: rotate(@degrees); 18 | transform: rotate(@degrees); 19 | } 20 | 21 | .fa-icon-flip(@horiz, @vert, @rotation) { 22 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1); 23 | -webkit-transform: scale(@horiz, @vert); 24 | -ms-transform: scale(@horiz, @vert); 25 | transform: scale(@horiz, @vert); 26 | } 27 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waxing-gibbous-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waxing-gibbous-4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waxing-gibbous-5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/day.edn: -------------------------------------------------------------------------------- 1 | {:columns [label code] 2 | :outputs 3 | [{:name "../less/icon-variables/variables-day.less" 4 | :before "" 5 | :join ";\n" 6 | :row [\@ label \: " " \" \\ code \"] 7 | :after ";"} 8 | 9 | 10 | {:name "../sass/icon-variables/variables-day.scss" 11 | :before "" 12 | :join ";\n" 13 | :row [\$ label \: " " \" \\ code \"] 14 | :after ";"} 15 | 16 | 17 | {:name "../less/icon-classes/classes-day.less" 18 | :before "" 19 | :join "\n" 20 | :row [".wi-" label ":before {content: @" label ";}"] 21 | :after ""} 22 | 23 | 24 | {:name "../sass/icon-classes/classes-day.scss" 25 | :before "" 26 | :join "\n" 27 | :row [".wi-" label ":before {content: $" label ";}"] 28 | :after ""} 29 | 30 | 31 | {:name "../_docs/jade/icon-list-day.jade" 32 | :before "" 33 | :join "\n" 34 | :row [".icon-wrap" "\n" 35 | " .icon &#x" code \; "\n" 36 | " .icon-name wi-" label "\n" 37 | " .icon_unicode " code \ ""] 38 | :after ""} 39 | ]} 40 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waning-gibbous-5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/misc.edn: -------------------------------------------------------------------------------- 1 | {:columns [label code] 2 | :outputs 3 | [{:name "../less/icon-variables/variables-misc.less" 4 | :before "" 5 | :join ";\n" 6 | :row [\@ label \: " " \" \\ code \"] 7 | :after ";"} 8 | 9 | 10 | {:name "../sass/icon-variables/variables-misc.scss" 11 | :before "" 12 | :join ";\n" 13 | :row [\$ label \: " " \" \\ code \"] 14 | :after ";"} 15 | 16 | 17 | {:name "../less/icon-classes/classes-misc.less" 18 | :before "" 19 | :join "\n" 20 | :row [".wi-" label ":before {content: @" label ";}"] 21 | :after ""} 22 | 23 | 24 | {:name "../sass/icon-classes/classes-misc.scss" 25 | :before "" 26 | :join "\n" 27 | :row [".wi-" label ":before {content: $" label ";}"] 28 | :after ""} 29 | 30 | 31 | {:name "../_docs/jade/icon-list-misc.jade" 32 | :before "" 33 | :join "\n" 34 | :row [".icon-wrap" "\n" 35 | " .icon &#x" code \; "\n" 36 | " .icon-name wi-" label "\n" 37 | " .icon_unicode " code \ ""] 38 | :after ""} 39 | ]} 40 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/moon.edn: -------------------------------------------------------------------------------- 1 | {:columns [label code] 2 | :outputs 3 | [{:name "../less/icon-variables/variables-moon.less" 4 | :before "" 5 | :join ";\n" 6 | :row [\@ label \: " " \" \\ code \"] 7 | :after ";"} 8 | 9 | 10 | {:name "../sass/icon-variables/variables-moon.scss" 11 | :before "" 12 | :join ";\n" 13 | :row [\$ label \: " " \" \\ code \"] 14 | :after ";"} 15 | 16 | 17 | {:name "../less/icon-classes/classes-moon.less" 18 | :before "" 19 | :join "\n" 20 | :row [".wi-" label ":before {content: @" label ";}"] 21 | :after ""} 22 | 23 | 24 | {:name "../sass/icon-classes/classes-moon.scss" 25 | :before "" 26 | :join "\n" 27 | :row [".wi-" label ":before {content: $" label ";}"] 28 | :after ""} 29 | 30 | 31 | {:name "../_docs/jade/icon-list-moon.jade" 32 | :before "" 33 | :join "\n" 34 | :row [".icon-wrap" "\n" 35 | " .icon &#x" code \; "\n" 36 | " .icon-name wi-" label "\n" 37 | " .icon_unicode " code \ ""] 38 | :after ""} 39 | ]} 40 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/time.edn: -------------------------------------------------------------------------------- 1 | {:columns [label code] 2 | :outputs 3 | [{:name "../less/icon-variables/variables-time.less" 4 | :before "" 5 | :join ";\n" 6 | :row [\@ label \: " " \" \\ code \"] 7 | :after ";"} 8 | 9 | 10 | {:name "../sass/icon-variables/variables-time.scss" 11 | :before "" 12 | :join ";\n" 13 | :row [\$ label \: " " \" \\ code \"] 14 | :after ";"} 15 | 16 | 17 | {:name "../less/icon-classes/classes-time.less" 18 | :before "" 19 | :join "\n" 20 | :row [".wi-" label ":before {content: @" label ";}"] 21 | :after ""} 22 | 23 | 24 | {:name "../sass/icon-classes/classes-time.scss" 25 | :before "" 26 | :join "\n" 27 | :row [".wi-" label ":before {content: $" label ";}"] 28 | :after ""} 29 | 30 | 31 | {:name "../_docs/jade/icon-list-time.jade" 32 | :before "" 33 | :join "\n" 34 | :row [".icon-wrap" "\n" 35 | " .icon &#x" code \; "\n" 36 | " .icon-name wi-" label "\n" 37 | " .icon_unicode " code \ ""] 38 | :after ""} 39 | ]} 40 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/night.edn: -------------------------------------------------------------------------------- 1 | {:columns [label code] 2 | :outputs 3 | [{:name "../less/icon-variables/variables-night.less" 4 | :before "" 5 | :join ";\n" 6 | :row [\@ label \: " " \" \\ code \"] 7 | :after ";"} 8 | 9 | 10 | {:name "../sass/icon-variables/variables-night.scss" 11 | :before "" 12 | :join ";\n" 13 | :row [\$ label \: " " \" \\ code \"] 14 | :after ";"} 15 | 16 | 17 | {:name "../less/icon-classes/classes-night.less" 18 | :before "" 19 | :join "\n" 20 | :row [".wi-" label ":before {content: @" label ";}"] 21 | :after ""} 22 | 23 | 24 | {:name "../sass/icon-classes/classes-night.scss" 25 | :before "" 26 | :join "\n" 27 | :row [".wi-" label ":before {content: $" label ";}"] 28 | :after ""} 29 | 30 | 31 | {:name "../_docs/jade/icon-list-night.jade" 32 | :before "" 33 | :join "\n" 34 | :row [".icon-wrap" "\n" 35 | " .icon &#x" code \; "\n" 36 | " .icon-name wi-" label "\n" 37 | " .icon_unicode " code \ ""] 38 | :after ""} 39 | ]} 40 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waning-gibbous-4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-new.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-full.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 B K 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/neutral.edn: -------------------------------------------------------------------------------- 1 | {:columns [label code] 2 | :outputs 3 | [{:name "../less/icon-variables/variables-neutral.less" 4 | :before "" 5 | :join ";\n" 6 | :row [\@ label \: " " \" \\ code \"] 7 | :after ";"} 8 | 9 | 10 | {:name "../sass/icon-variables/variables-neutral.scss" 11 | :before "" 12 | :join ";\n" 13 | :row [\$ label \: " " \" \\ code \"] 14 | :after ";"} 15 | 16 | 17 | {:name "../less/icon-classes/classes-neutral.less" 18 | :before "" 19 | :join "\n" 20 | :row [".wi-" label ":before {content: @" label ";}"] 21 | :after ""} 22 | 23 | 24 | {:name "../sass/icon-classes/classes-neutral.scss" 25 | :before "" 26 | :join "\n" 27 | :row [".wi-" label ":before {content: $" label ";}"] 28 | :after ""} 29 | 30 | 31 | {:name "../_docs/jade/icon-list-neutral.jade" 32 | :before "" 33 | :join "\n" 34 | :row [".icon-wrap" "\n" 35 | " .icon &#x" code \; "\n" 36 | " .icon-name wi-" label "\n" 37 | " .icon_unicode " code \ ""] 38 | :after ""} 39 | ]} 40 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waxing-gibbous-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-refresh-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/beaufort.edn: -------------------------------------------------------------------------------- 1 | {:columns [label code] 2 | :outputs 3 | [{:name "../less/icon-variables/variables-beaufort.less" 4 | :before "" 5 | :join ";\n" 6 | :row [\@ label \: " " \" \\ code \"] 7 | :after ";"} 8 | 9 | 10 | {:name "../sass/icon-variables/variables-beaufort.scss" 11 | :before "" 12 | :join ";\n" 13 | :row [\$ label \: " " \" \\ code \"] 14 | :after ";"} 15 | 16 | 17 | {:name "../less/icon-classes/classes-beaufort.less" 18 | :before "" 19 | :join "\n" 20 | :row [".wi-" label ":before {content: @" label ";}"] 21 | :after ""} 22 | 23 | 24 | {:name "../sass/icon-classes/classes-beaufort.scss" 25 | :before "" 26 | :join "\n" 27 | :row [".wi-" label ":before {content: $" label ";}"] 28 | :after ""} 29 | 30 | 31 | {:name "../_docs/jade/icon-list-beaufort.jade" 32 | :before "" 33 | :join "\n" 34 | :row [".icon-wrap" "\n" 35 | " .icon &#x" code \; "\n" 36 | " .icon-name wi-" label "\n" 37 | " .icon_unicode " code \ ""] 38 | :after ""} 39 | ]} 40 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/direction.edn: -------------------------------------------------------------------------------- 1 | {:columns [label code] 2 | :outputs 3 | [{:name "../less/icon-variables/variables-direction.less" 4 | :before "" 5 | :join ";\n" 6 | :row [\@ label \: " " \" \\ code \"] 7 | :after ";"} 8 | 9 | 10 | {:name "../sass/icon-variables/variables-direction.scss" 11 | :before "" 12 | :join ";\n" 13 | :row [\$ label \: " " \" \\ code \"] 14 | :after ";"} 15 | 16 | 17 | {:name "../less/icon-classes/classes-direction.less" 18 | :before "" 19 | :join "\n" 20 | :row [".wi-" label ":before {content: @" label ";}"] 21 | :after ""} 22 | 23 | 24 | {:name "../sass/icon-classes/classes-direction.scss" 25 | :before "" 26 | :join "\n" 27 | :row [".wi-" label ":before {content: $" label ";}"] 28 | :after ""} 29 | 30 | 31 | {:name "../_docs/jade/icon-list-direction.jade" 32 | :before "" 33 | :join "\n" 34 | :row [".icon-wrap" "\n" 35 | " .icon &#x" code \; "\n" 36 | " .icon-name wi-" label "\n" 37 | " .icon_unicode " code \ ""] 38 | :after ""} 39 | ]} 40 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/wind.edn: -------------------------------------------------------------------------------- 1 | {:columns [direction label code degree] 2 | :outputs 3 | [{:name "../less/icon-variables/variables-wind-names.less" 4 | :before "" 5 | :join ";\n" 6 | :row [\@ label \: " " \" \\ code \"] 7 | :after ";"} 8 | 9 | 10 | {:name "../sass/icon-variables/variables-wind-names.scss" 11 | :before "" 12 | :join ";\n" 13 | :row [\$ label \: " " \" \\ code \"] 14 | :after ";"} 15 | 16 | {:name "../_docs/jade/icon-list-wind.jade" 17 | :before "" 18 | :join "\n" 19 | :row [".icon-wrap" "\n" 20 | " i.wi.wi-wind." direction "-" degree "-deg\n" 21 | " .icon-name wi-wind." direction "-" degree "-deg\n" 22 | " .icon_unicode " code \ ""] 23 | :after ""} 24 | 25 | {:name "../_docs/jade/icon-list-wind-cardinal.jade" 26 | :before "" 27 | :join "\n" 28 | :row [".icon-wrap" "\n" 29 | " i.wi.wi-wind.wi-" direction "-" label "\n" 30 | " .icon-name wi-" direction "-" label "\n" 31 | " .icon_unicode " code \ ""] 32 | :after ""} 33 | 34 | 35 | 36 | ]} 37 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/jade/icon-list-time.jade: -------------------------------------------------------------------------------- 1 | .icon-wrap 2 | .icon  3 | .icon-name wi-time-1 4 | .icon_unicode f08a 5 | .icon-wrap 6 | .icon  7 | .icon-name wi-time-2 8 | .icon_unicode f08b 9 | .icon-wrap 10 | .icon  11 | .icon-name wi-time-3 12 | .icon_unicode f08c 13 | .icon-wrap 14 | .icon  15 | .icon-name wi-time-4 16 | .icon_unicode f08d 17 | .icon-wrap 18 | .icon  19 | .icon-name wi-time-5 20 | .icon_unicode f08e 21 | .icon-wrap 22 | .icon  23 | .icon-name wi-time-6 24 | .icon_unicode f08f 25 | .icon-wrap 26 | .icon  27 | .icon-name wi-time-7 28 | .icon_unicode f090 29 | .icon-wrap 30 | .icon  31 | .icon-name wi-time-8 32 | .icon_unicode f091 33 | .icon-wrap 34 | .icon  35 | .icon-name wi-time-9 36 | .icon_unicode f092 37 | .icon-wrap 38 | .icon  39 | .icon-name wi-time-10 40 | .icon_unicode f093 41 | .icon-wrap 42 | .icon  43 | .icon-name wi-time-11 44 | .icon_unicode f094 45 | .icon-wrap 46 | .icon  47 | .icon-name wi-time-12 48 | .icon_unicode f089 -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/icon-classes/classes-misc.less: -------------------------------------------------------------------------------- 1 | .wi-alien:before {content: @alien;} 2 | .wi-celsius:before {content: @celsius;} 3 | .wi-fahrenheit:before {content: @fahrenheit;} 4 | .wi-degrees:before {content: @degrees;} 5 | .wi-thermometer:before {content: @thermometer;} 6 | .wi-thermometer-exterior:before {content: @thermometer-exterior;} 7 | .wi-thermometer-internal:before {content: @thermometer-internal;} 8 | .wi-cloud-down:before {content: @cloud-down;} 9 | .wi-cloud-up:before {content: @cloud-up;} 10 | .wi-cloud-refresh:before {content: @cloud-refresh;} 11 | .wi-horizon:before {content: @horizon;} 12 | .wi-horizon-alt:before {content: @horizon-alt;} 13 | .wi-sunrise:before {content: @sunrise;} 14 | .wi-sunset:before {content: @sunset;} 15 | .wi-moonrise:before {content: @moonrise;} 16 | .wi-moonset:before {content: @moonset;} 17 | .wi-refresh:before {content: @refresh;} 18 | .wi-refresh-alt:before {content: @refresh-alt;} 19 | .wi-umbrella:before {content: @umbrella;} 20 | .wi-barometer:before {content: @barometer;} 21 | .wi-humidity:before {content: @humidity;} 22 | .wi-na:before {content: @na;} 23 | .wi-train:before {content: @train;} -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/icon-classes/classes-misc.scss: -------------------------------------------------------------------------------- 1 | .wi-alien:before {content: $alien;} 2 | .wi-celsius:before {content: $celsius;} 3 | .wi-fahrenheit:before {content: $fahrenheit;} 4 | .wi-degrees:before {content: $degrees;} 5 | .wi-thermometer:before {content: $thermometer;} 6 | .wi-thermometer-exterior:before {content: $thermometer-exterior;} 7 | .wi-thermometer-internal:before {content: $thermometer-internal;} 8 | .wi-cloud-down:before {content: $cloud-down;} 9 | .wi-cloud-up:before {content: $cloud-up;} 10 | .wi-cloud-refresh:before {content: $cloud-refresh;} 11 | .wi-horizon:before {content: $horizon;} 12 | .wi-horizon-alt:before {content: $horizon-alt;} 13 | .wi-sunrise:before {content: $sunrise;} 14 | .wi-sunset:before {content: $sunset;} 15 | .wi-moonrise:before {content: $moonrise;} 16 | .wi-moonset:before {content: $moonset;} 17 | .wi-refresh:before {content: $refresh;} 18 | .wi-refresh-alt:before {content: $refresh-alt;} 19 | .wi-umbrella:before {content: $umbrella;} 20 | .wi-barometer:before {content: $barometer;} 21 | .wi-humidity:before {content: $humidity;} 22 | .wi-na:before {content: $na;} 23 | .wi-train:before {content: $train;} -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waning-gibbous-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/pager.less: -------------------------------------------------------------------------------- 1 | // 2 | // Pager pagination 3 | // -------------------------------------------------- 4 | 5 | 6 | .pager { 7 | padding-left: 0; 8 | margin: @line-height-computed 0; 9 | list-style: none; 10 | text-align: center; 11 | &:extend(.clearfix all); 12 | li { 13 | display: inline; 14 | > a, 15 | > span { 16 | display: inline-block; 17 | padding: 5px 14px; 18 | background-color: @pager-bg; 19 | border: 1px solid @pager-border; 20 | border-radius: @pager-border-radius; 21 | } 22 | 23 | > a:hover, 24 | > a:focus { 25 | text-decoration: none; 26 | background-color: @pager-hover-bg; 27 | } 28 | } 29 | 30 | .next { 31 | > a, 32 | > span { 33 | float: right; 34 | } 35 | } 36 | 37 | .previous { 38 | > a, 39 | > span { 40 | float: left; 41 | } 42 | } 43 | 44 | .disabled { 45 | > a, 46 | > a:hover, 47 | > a:focus, 48 | > span { 49 | color: @pager-disabled-color; 50 | background-color: @pager-bg; 51 | cursor: @cursor-disabled; 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waning-gibbous-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waning-gibbous-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/less/mappings/wi-forecast-io.less: -------------------------------------------------------------------------------- 1 | .@{wi-css-prefix}-forecast-io-clear-day:before { content: @day-sunny ; } 2 | .@{wi-css-prefix}-forecast-io-clear-night:before { content: @night-clear ; } 3 | .@{wi-css-prefix}-forecast-io-rain:before { content: @rain ; } 4 | .@{wi-css-prefix}-forecast-io-snow:before { content: @snow ; } 5 | .@{wi-css-prefix}-forecast-io-sleet:before { content: @sleet ; } 6 | .@{wi-css-prefix}-forecast-io-wind:before { content: @strong-wind ; } 7 | .@{wi-css-prefix}-forecast-io-fog:before { content: @fog ; } 8 | .@{wi-css-prefix}-forecast-io-cloudy:before { content: @cloudy ; } 9 | .@{wi-css-prefix}-forecast-io-partly-cloudy-day:before { content: @day-cloudy ; } 10 | .@{wi-css-prefix}-forecast-io-partly-cloudy-night:before { content: @night-cloudy ; } 11 | .@{wi-css-prefix}-forecast-io-hail:before { content: @hail ; } 12 | .@{wi-css-prefix}-forecast-io-thunderstorm:before { content: @thunderstorm ; } 13 | .@{wi-css-prefix}-forecast-io-tornado:before { content: @tornado ; } -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-time-6.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/mappings/wi-forecast-io.scss: -------------------------------------------------------------------------------- 1 | .#{$wi-css-prefix}-forecast-io-clear-day:before { content: $day-sunny ; } 2 | .#{$wi-css-prefix}-forecast-io-clear-night:before { content: $night-clear ; } 3 | .#{$wi-css-prefix}-forecast-io-rain:before { content: $rain ; } 4 | .#{$wi-css-prefix}-forecast-io-snow:before { content: $snow ; } 5 | .#{$wi-css-prefix}-forecast-io-sleet:before { content: $sleet ; } 6 | .#{$wi-css-prefix}-forecast-io-wind:before { content: $strong-wind ; } 7 | .#{$wi-css-prefix}-forecast-io-fog:before { content: $fog ; } 8 | .#{$wi-css-prefix}-forecast-io-cloudy:before { content: $cloudy ; } 9 | .#{$wi-css-prefix}-forecast-io-partly-cloudy-day:before { content: $day-cloudy ; } 10 | .#{$wi-css-prefix}-forecast-io-partly-cloudy-night:before { content: $night-cloudy ; } 11 | .#{$wi-css-prefix}-forecast-io-hail:before { content: $hail ; } 12 | .#{$wi-css-prefix}-forecast-io-thunderstorm:before { content: $thunderstorm ; } 13 | .#{$wi-css-prefix}-forecast-io-tornado:before { content: $tornado ; } -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_builder/csv/night.csv: -------------------------------------------------------------------------------- 1 | night-clear, f02e 2 | night-alt-cloudy, f086 3 | night-alt-cloudy-gusts, f022 4 | night-alt-cloudy-windy, f023 5 | night-alt-hail, f024 6 | night-alt-lightning, f025 7 | night-alt-rain, f028 8 | night-alt-rain-mix, f026 9 | night-alt-rain-wind, f027 10 | night-alt-showers, f029 11 | night-alt-sleet, f0b4 12 | night-alt-sleet-storm, f06a 13 | night-alt-snow, f02a 14 | night-alt-snow-thunderstorm, f06d 15 | night-alt-snow-wind, f067 16 | night-alt-sprinkle, f02b 17 | night-alt-storm-showers, f02c 18 | night-alt-thunderstorm, f02d 19 | night-cloudy, f031 20 | night-cloudy-gusts, f02f 21 | night-cloudy-windy, f030 22 | night-fog, f04a 23 | night-hail, f032 24 | night-lightning, f033 25 | night-partly-cloudy, f083 26 | night-rain, f036 27 | night-rain-mix, f034 28 | night-rain-wind, f035 29 | night-showers, f037 30 | night-sleet, f0b3 31 | night-sleet-storm, f069 32 | night-snow, f038 33 | night-snow-thunderstorm, f06c 34 | night-snow-wind, f066 35 | night-sprinkle, f039 36 | night-storm-showers, f03a 37 | night-thunderstorm, f03b 38 | lunar-eclipse, f070 39 | stars, f077 40 | storm-showers, f01d 41 | thunderstorm, f01e 42 | night-alt-cloudy-high,f07e 43 | night-cloudy-high,f080 44 | night-alt-partly-cloudy,f081 -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/media.less: -------------------------------------------------------------------------------- 1 | .media { 2 | // Proper spacing between instances of .media 3 | margin-top: 15px; 4 | 5 | &:first-child { 6 | margin-top: 0; 7 | } 8 | } 9 | 10 | .media, 11 | .media-body { 12 | zoom: 1; 13 | overflow: hidden; 14 | } 15 | 16 | .media-body { 17 | width: 10000px; 18 | } 19 | 20 | .media-object { 21 | display: block; 22 | 23 | // Fix collapse in webkit from max-width: 100% and display: table-cell. 24 | &.img-thumbnail { 25 | max-width: none; 26 | } 27 | } 28 | 29 | .media-right, 30 | .media > .pull-right { 31 | padding-left: 10px; 32 | } 33 | 34 | .media-left, 35 | .media > .pull-left { 36 | padding-right: 10px; 37 | } 38 | 39 | .media-left, 40 | .media-right, 41 | .media-body { 42 | display: table-cell; 43 | vertical-align: top; 44 | } 45 | 46 | .media-middle { 47 | vertical-align: middle; 48 | } 49 | 50 | .media-bottom { 51 | vertical-align: bottom; 52 | } 53 | 54 | // Reset margins on headings for tighter default spacing 55 | .media-heading { 56 | margin-top: 0; 57 | margin-bottom: 5px; 58 | } 59 | 60 | // Media list variation 61 | // 62 | // Undo default ul/ol styles 63 | .media-list { 64 | padding-left: 0; 65 | list-style: none; 66 | } 67 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-smog.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /items/sequencer.items: -------------------------------------------------------------------------------- 1 | Group Sequencer_Items (Sequencer) 2 | Group Sequencer_Step "Sequencer Steps" (Sequencer_Items) 3 | 4 | Switch Sequencer_Start "Sequencer Start" (Sequencer_Items) 5 | Number Sequencer_CurrentStep "Current Step [%d]" (Sequencer_Items) 6 | Switch Sequencer_Reset "Sequencer Stop/Reset" (Sequencer_Items) 7 | Number Sequencer_Step_Time "Sequencer Step Time" (Sequencer_Items) 8 | 9 | Number Sequencer_Step1_Value "Sequencer Step 1" (Sequencer_Step) 10 | Number Sequencer_Step2_Value "Sequencer Step 2" (Sequencer_Step) 11 | Number Sequencer_Step3_Value "Sequencer Step 3" (Sequencer_Step) 12 | Number Sequencer_Step4_Value "Sequencer Step 4" (Sequencer_Step) 13 | Number Sequencer_Step5_Value "Sequencer Step 5" (Sequencer_Step) 14 | Number Sequencer_Step6_Value "Sequencer Step 6" (Sequencer_Step) 15 | Number Sequencer_Step7_Value "Sequencer Step 7" (Sequencer_Step) 16 | Number Sequencer_Step8_Value "Sequencer Step 8" (Sequencer_Step) 17 | Number Sequencer_Step9_Value "Sequencer Step 9" (Sequencer_Step) 18 | Number Sequencer_Step10_Value "Sequencer Step 10" (Sequencer_Step) 19 | // Add more step items if needed 20 | 21 | Number Sequencer_Output "Sequencer Output [%d]" (Sequencer_Items) // This is the action item (which receives each step value as command) 22 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/mixins/image.less: -------------------------------------------------------------------------------- 1 | // Image Mixins 2 | // - Responsive image 3 | // - Retina image 4 | 5 | 6 | // Responsive image 7 | // 8 | // Keep images from scaling beyond the width of their parents. 9 | .img-responsive(@display: block) { 10 | display: @display; 11 | max-width: 100%; // Part 1: Set a maximum relative to the parent 12 | height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching 13 | } 14 | 15 | 16 | // Retina image 17 | // 18 | // Short retina mixin for setting background-image and -size. Note that the 19 | // spelling of `min--moz-device-pixel-ratio` is intentional. 20 | .img-retina(@file-1x; @file-2x; @width-1x; @height-1x) { 21 | background-image: url("@{file-1x}"); 22 | 23 | @media 24 | only screen and (-webkit-min-device-pixel-ratio: 2), 25 | only screen and ( min--moz-device-pixel-ratio: 2), 26 | only screen and ( -o-min-device-pixel-ratio: 2/1), 27 | only screen and ( min-device-pixel-ratio: 2), 28 | only screen and ( min-resolution: 192dpi), 29 | only screen and ( min-resolution: 2dppx) { 30 | background-image: url("@{file-2x}"); 31 | background-size: @width-1x @height-1x; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-refresh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-thermometer-exterior.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-wind-deg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moon-alt-waxing-gibbous-6 .svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-time-12.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-fahrenheit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-night-clear.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-raindrops.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-time-5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-time-7.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-time-4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-time-8.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-time-9.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-moonrise.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-time-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/svg/wi-time-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/jade/icon-list-beaufort.jade: -------------------------------------------------------------------------------- 1 | .icon-wrap 2 | .icon  3 | .icon-name wi-wind-beaufort-0 4 | .icon_unicode f0b7 5 | .icon-wrap 6 | .icon  7 | .icon-name wi-wind-beaufort-1 8 | .icon_unicode f0b8 9 | .icon-wrap 10 | .icon  11 | .icon-name wi-wind-beaufort-2 12 | .icon_unicode f0b9 13 | .icon-wrap 14 | .icon  15 | .icon-name wi-wind-beaufort-3 16 | .icon_unicode f0ba 17 | .icon-wrap 18 | .icon  19 | .icon-name wi-wind-beaufort-4 20 | .icon_unicode f0bb 21 | .icon-wrap 22 | .icon  23 | .icon-name wi-wind-beaufort-5 24 | .icon_unicode f0bc 25 | .icon-wrap 26 | .icon  27 | .icon-name wi-wind-beaufort-6 28 | .icon_unicode f0bd 29 | .icon-wrap 30 | .icon  31 | .icon-name wi-wind-beaufort-7 32 | .icon_unicode f0be 33 | .icon-wrap 34 | .icon  35 | .icon-name wi-wind-beaufort-8 36 | .icon_unicode f0bf 37 | .icon-wrap 38 | .icon  39 | .icon-name wi-wind-beaufort-9 40 | .icon_unicode f0c0 41 | .icon-wrap 42 | .icon  43 | .icon-name wi-wind-beaufort-10 44 | .icon_unicode f0c1 45 | .icon-wrap 46 | .icon  47 | .icon-name wi-wind-beaufort-11 48 | .icon_unicode f0c2 49 | .icon-wrap 50 | .icon  51 | .icon-name wi-wind-beaufort-12 52 | .icon_unicode f0c3 -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/_docs/less/bootstrap/jumbotron.less: -------------------------------------------------------------------------------- 1 | // 2 | // Jumbotron 3 | // -------------------------------------------------- 4 | 5 | 6 | .jumbotron { 7 | padding-top: @jumbotron-padding; 8 | padding-bottom: @jumbotron-padding; 9 | margin-bottom: @jumbotron-padding; 10 | color: @jumbotron-color; 11 | background-color: @jumbotron-bg; 12 | 13 | h1, 14 | .h1 { 15 | color: @jumbotron-heading-color; 16 | } 17 | 18 | p { 19 | margin-bottom: (@jumbotron-padding / 2); 20 | font-size: @jumbotron-font-size; 21 | font-weight: 200; 22 | } 23 | 24 | > hr { 25 | border-top-color: darken(@jumbotron-bg, 10%); 26 | } 27 | 28 | .container &, 29 | .container-fluid & { 30 | border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container 31 | } 32 | 33 | .container { 34 | max-width: 100%; 35 | } 36 | 37 | @media screen and (min-width: @screen-sm-min) { 38 | padding-top: (@jumbotron-padding * 1.6); 39 | padding-bottom: (@jumbotron-padding * 1.6); 40 | 41 | .container &, 42 | .container-fluid & { 43 | padding-left: (@jumbotron-padding * 2); 44 | padding-right: (@jumbotron-padding * 2); 45 | } 46 | 47 | h1, 48 | .h1 { 49 | font-size: @jumbotron-heading-font-size; 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /html/openweathermap/weather-icons-master/sass/weather-icons.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Weather Icons 2.0 3 | * Updated August 1, 2015 4 | * Weather themed icons for Bootstrap 5 | * Author - Erik Flowers - erik@helloerik.com 6 | * Email: erik@helloerik.com 7 | * Twitter: http://twitter.com/Erik_UX 8 | * ------------------------------------------------------------------------------ 9 | * Maintained at http://erikflowers.github.io/weather-icons 10 | * 11 | * License 12 | * ------------------------------------------------------------------------------ 13 | * - Font licensed under SIL OFL 1.1 - 14 | * http://scripts.sil.org/OFL 15 | * - CSS, LESS and SCSS are licensed under MIT License - 16 | * http://opensource.org/licenses/mit-license.html 17 | * - Documentation licensed under CC BY 3.0 - 18 | * http://creativecommons.org/licenses/by/3.0/ 19 | * - Inspired by and works great as a companion with Font Awesome 20 | * "Font Awesome by Dave Gandy - http://fontawesome.io" 21 | */ 22 | 23 | @import 'weather-icons-core.scss'; 24 | @import 'weather-icons-variables.scss'; 25 | @import 'weather-icons-classes.scss'; 26 | // Mappings to various APIs 27 | @import "mappings/wi-yahoo.scss"; 28 | @import "mappings/wi-forecast-io.scss"; 29 | @import "mappings/wi-wmo4680.scss"; 30 | @import "mappings/wi-owm.scss"; 31 | @import "mappings/wi-wunderground.scss"; --------------------------------------------------------------------------------