diff --git a/config.toml b/config.toml index d18f9974580844989d0efe9df0e1cbe17639378f..15ea47f8f61ef35db94ce109c9e4d80f5ecf31ce 100644 --- a/config.toml +++ b/config.toml @@ -1,3 +1,2 @@ baseurl = "http://iot.eclipse.org" - paginate = 6 \ No newline at end of file diff --git a/layouts/index.html b/layouts/index.html index 9f2cc66978e3d70f341c6ae48b77ff99aae32297..2135a15cab33ec89efb6eec55838a569c2e1017e 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -279,9 +279,12 @@ {{ end }} {{ end }} + </div> + <p> + <a href="/events" class="btn btn-primary">More Events...</a> + </p> - </div> </section> <!-- .upcoming-events --> </div> diff --git a/layouts/section/events.html b/layouts/section/events.html index 1560633b724326f38346e404d2452ace24ebf656..5202c89afb2f9c1218a1ea66c9fd2b49ed76f90f 100644 --- a/layouts/section/events.html +++ b/layouts/section/events.html @@ -28,6 +28,10 @@ ga('send', 'pageview'); </script> + +<!-- RSS --> +<link rel="alternate" type="application/rss+xml" title="RSS" href="index.xml"> + </head> <body> @@ -116,7 +120,9 @@ <div class="col-sm-4"> <a href="{{ .Params.link }}" target="_blank"> - <div class="upcoming-events-item"> + + + <div class="upcoming-events-item {{ if (lt .Date.Unix .Now.Unix) }} past {{ end }}"> <h3> {{ .Title }}<br> diff --git a/layouts/section/news.html b/layouts/section/news.html index e6758b06cbc4fb5682b90f8f40b60090fbbddeac..37dbaed743c7725818bc6d58116b70f4bf47b121 100644 --- a/layouts/section/news.html +++ b/layouts/section/news.html @@ -28,6 +28,10 @@ ga('send', 'pageview'); </script> + +<!-- RSS --> +<link rel="alternate" type="application/rss+xml" title="RSS" href="index.xml"> + </head> <body> @@ -116,12 +120,11 @@ {{ range .Paginator.Pages }} - <div> - <a href="{{ .Params.link }}"> + <div style="margin-bottom:40px;"> <h2 class="purple">{{ .Title }}</h2> <p>{{ .Content }} </p> + <a href="{{ .Params.link }}"><button class="btn btn-default">Read more...</button> </a> - <p class="date">{{ dateFormat "Jan 2, 2006" .Date }} </p> </div> {{ end }} diff --git a/layouts/section/resources.html b/layouts/section/resources.html index 0597fc24a61da428931839e3280f2977e0c6c0a5..ac0b8d3c40e3ddaafc0ce257cd25a3e46d3dd61a 100644 --- a/layouts/section/resources.html +++ b/layouts/section/resources.html @@ -28,6 +28,9 @@ ga('send', 'pageview'); </script> + +<!-- RSS --> +<link rel="alternate" type="application/rss+xml" title="RSS" href="index.xml"> </head> <body> @@ -116,7 +119,7 @@ {{ range .Paginator.Pages }} - <div> + <div style="margin-bottom:40px;"> <h2 class="purple">{{ .Title }}</h2> <p>{{ .Content }} </p> <a href="{{ .Params.link }}"><button class="btn btn-default">Read more...</button> diff --git a/public/assets/css/bootstrap.css b/public/assets/css/bootstrap.css index 5ed3f490c9412eb3c23813f2e431acde1dd33031..022107d118195ccd9fac4c896acb0a532c5f4aa6 100644 --- a/public/assets/css/bootstrap.css +++ b/public/assets/css/bootstrap.css @@ -4324,8 +4324,7 @@ main.main { background-image: url(../images/heading-latest_news-icon.png); } main.main section.second .latest-news .latest-news-item { border-bottom: 1px solid #c2c2c2; - padding-bottom: 10px; - margin-bottom: 20px; } + padding-bottom: 10px; } main.main section.second .latest-news .latest-news-item h3 { font-size: 18px; } main.main section.second .latest-news .latest-news-item p { @@ -4334,7 +4333,6 @@ main.main { color: #6eb553; font-size: 12px; } main.main section.second .latest-news .latest-news-item:last-of-type { - margin-bottom: 35px; border-bottom: 0px; } main.main section.second .featured-articles h2 { background-image: url(../images/heading-featured.png); } @@ -4457,6 +4455,8 @@ main.main { background-image: url(../images/heading-upcoming_events.png); } main.main .upcoming-events h2 span { background-image: url(../images/heading-upcoming_events-icon.png); } + main.main .upcoming-events .past { + opacity: 0.5; } main.main .upcoming-events .upcoming-events-item { text-align: center; color: whitesmoke; diff --git a/public/assets/stylesheets/theme/_main.scss b/public/assets/stylesheets/theme/_main.scss index 947f918e010e74d090291c2d865a63f5154fd84a..9d194f3182dc1bf281dbb355e859c0cb4c638726 100644 --- a/public/assets/stylesheets/theme/_main.scss +++ b/public/assets/stylesheets/theme/_main.scss @@ -119,7 +119,7 @@ main.main { .latest-news-item { border-bottom: 1px solid darken($white, 20%); padding-bottom: 10px; - margin-bottom: 20px; + // margin-bottom: 20px; h3 { font-size: 18px; } @@ -132,7 +132,7 @@ main.main { } } .latest-news-item:last-of-type { - margin-bottom: 35px; + // margin-bottom: 35px; border-bottom: 0px; } } @@ -313,12 +313,18 @@ main.main { // events page .upcoming-events { - h2 { + h2 { background-image: url(../images/heading-upcoming_events.png); span { background-image: url(../images/heading-upcoming_events-icon.png); } + } + + .past { + opacity: 0.5; + } + .upcoming-events-item { text-align: center; color: $white; diff --git a/public/events/index.html b/public/events/index.html index 9797b45e9acc3570f56dd5f48055801262b29f29..e73e6f069b9e8b93017746406b4a5f202ccb9ef4 100644 --- a/public/events/index.html +++ b/public/events/index.html @@ -28,6 +28,10 @@ ga('send', 'pageview'); </script> + + +<link rel="alternate" type="application/rss+xml" title="RSS" href="index.xml"> + </head> <body> @@ -116,7 +120,9 @@ <div class="col-sm-4"> <a href="http://solidcon.com/solid2015" target="_blank"> - <div class="upcoming-events-item"> + + + <div class="upcoming-events-item "> <h3> O'Reilly SOLID<br> @@ -131,7 +137,9 @@ <div class="col-sm-4"> <a href="http://iotworldevent.com/" target="_blank"> - <div class="upcoming-events-item"> + + + <div class="upcoming-events-item "> <h3> IoT World<br> @@ -146,7 +154,9 @@ <div class="col-sm-4"> <a href="http://www.iot-devcon.com/" target="_blank"> - <div class="upcoming-events-item"> + + + <div class="upcoming-events-item "> <h3> IoT DevCon<br> @@ -161,7 +171,9 @@ <div class="col-sm-4"> <a href="http://iotcon.de/2015se/" target="_blank"> - <div class="upcoming-events-item"> + + + <div class="upcoming-events-item past "> <h3> IoT Conference – Spring<br> @@ -176,7 +188,9 @@ <div class="col-sm-4"> <a href="http://iotday.dd-eclipse.de/" target="_blank"> - <div class="upcoming-events-item"> + + + <div class="upcoming-events-item past "> <h3> Eclipse Day Dresden<br> @@ -191,7 +205,9 @@ <div class="col-sm-4"> <a href="http://www.eclipsecon.org/na2015" target="_blank"> - <div class="upcoming-events-item"> + + + <div class="upcoming-events-item past "> <h3> EclipseCon NA 2015<br> @@ -270,9 +286,6 @@ $('#other-members').shuffle(); }); </script> -<script>document.write('<script src="http://' - + (location.host || 'localhost').split(':')[0] - + ':1313/livereload.js?mindelay=10"></' - + 'script>')</script></body> +</body> </html> diff --git a/public/events/index.xml b/public/events/index.xml index 9d9afb2010a24cd1ce74769ece019c8ae9914005..c5e4cc9cb0c8b5e58978ecf95a3f9865951a680a 100644 --- a/public/events/index.xml +++ b/public/events/index.xml @@ -2,63 +2,63 @@ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>Events on </title> - <link>http://localhost:1313/events/</link> + <link>http://iot.eclipse.org/events/</link> <description>Recent content in Events on </description> <generator>Hugo -- gohugo.io</generator> <lastBuildDate>Tue, 23 Jun 2015 16:12:42 +0100</lastBuildDate> - <atom:link href="http://localhost:1313/events/index.xml" rel="self" type="application/rss+xml" /> + <atom:link href="http://iot.eclipse.org/events/index.xml" rel="self" type="application/rss+xml" /> <item> <title>O'Reilly SOLID</title> - <link>http://localhost:1313/events/2015-06-23-solidcon/</link> + <link>http://iot.eclipse.org/events/2015-06-23-solidcon/</link> <pubDate>Tue, 23 Jun 2015 16:12:42 +0100</pubDate> - <guid>http://localhost:1313/events/2015-06-23-solidcon/</guid> + <guid>http://iot.eclipse.org/events/2015-06-23-solidcon/</guid> <description></description> </item> <item> <title>IoT World</title> - <link>http://localhost:1313/events/2015-05-12-iot-world/</link> + <link>http://iot.eclipse.org/events/2015-05-12-iot-world/</link> <pubDate>Tue, 12 May 2015 16:12:42 +0100</pubDate> - <guid>http://localhost:1313/events/2015-05-12-iot-world/</guid> + <guid>http://iot.eclipse.org/events/2015-05-12-iot-world/</guid> <description></description> </item> <item> <title>IoT DevCon</title> - <link>http://localhost:1313/events/2015-05-06-iot-devcon/</link> + <link>http://iot.eclipse.org/events/2015-05-06-iot-devcon/</link> <pubDate>Wed, 06 May 2015 16:12:42 +0100</pubDate> - <guid>http://localhost:1313/events/2015-05-06-iot-devcon/</guid> + <guid>http://iot.eclipse.org/events/2015-05-06-iot-devcon/</guid> <description></description> </item> <item> <title>IoT Conference – Spring</title> - <link>http://localhost:1313/events/2015-03-23-iot-conference/</link> + <link>http://iot.eclipse.org/events/2015-03-23-iot-conference/</link> <pubDate>Mon, 23 Mar 2015 16:12:42 +0100</pubDate> - <guid>http://localhost:1313/events/2015-03-23-iot-conference/</guid> + <guid>http://iot.eclipse.org/events/2015-03-23-iot-conference/</guid> <description></description> </item> <item> <title>Eclipse Day Dresden</title> - <link>http://localhost:1313/events/2015-03-18-eclipse-day-dresden/</link> + <link>http://iot.eclipse.org/events/2015-03-18-eclipse-day-dresden/</link> <pubDate>Wed, 18 Mar 2015 00:00:00 +0000</pubDate> - <guid>http://localhost:1313/events/2015-03-18-eclipse-day-dresden/</guid> + <guid>http://iot.eclipse.org/events/2015-03-18-eclipse-day-dresden/</guid> <description></description> </item> <item> <title>EclipseCon NA 2015</title> - <link>http://localhost:1313/events/2015-03-09-eclipsecon2015/</link> + <link>http://iot.eclipse.org/events/2015-03-09-eclipsecon2015/</link> <pubDate>Mon, 09 Mar 2015 00:00:00 +0000</pubDate> - <guid>http://localhost:1313/events/2015-03-09-eclipsecon2015/</guid> + <guid>http://iot.eclipse.org/events/2015-03-09-eclipsecon2015/</guid> <description></description> </item> diff --git a/public/events/page/1/index.html b/public/events/page/1/index.html index 039c1136714ba62d96ed9b04994881ac3841d8fd..950a5f21c200d8f91c560535be371ba6cab3a9f5 100644 --- a/public/events/page/1/index.html +++ b/public/events/page/1/index.html @@ -1 +1 @@ -<!DOCTYPE html><html><head><link rel="canonical" href="http://localhost:1313/events/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0;url=http://localhost:1313/events/" /></head></html> \ No newline at end of file +<!DOCTYPE html><html><head><link rel="canonical" href="http://iot.eclipse.org/events/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0;url=http://iot.eclipse.org/events/" /></head></html> \ No newline at end of file diff --git a/public/index.html b/public/index.html index 496f367f68aec34cac331740aa112e4bde01873b..8489fa744aca1146c82e8bf16ded4b278e2425f8 100644 --- a/public/index.html +++ b/public/index.html @@ -345,9 +345,12 @@ + </div> + <p> + <a href="/events" class="btn btn-primary">More Events...</a> + </p> - </div> </section> </div> @@ -479,8 +482,8 @@ <div class="col-md-4 col-xs-6" style="padding:20px 60px; display:none;"> <div style="height: 120px; display:table-cell; vertical-align:middle;"> - <a href="http://eclipse.org/membership/showMember.php?member_id=817" target="_blank"> - <img src="/assets/images/members/logo-itemis.png" class="img-responsive" style="max-height:110px"> + <a href="http://eclipse.org/membership/showMember.php?member_id=1108" target="_blank"> + <img src="/assets/images/members/logo-laas.png" class="img-responsive" style="max-height:110px"> </a> </div> </div> @@ -489,8 +492,8 @@ <div class="col-md-4 col-xs-6" style="padding:20px 60px; display:none;"> <div style="height: 120px; display:table-cell; vertical-align:middle;"> - <a href="http://eclipse.org/membership/showMember.php?member_id=1108" target="_blank"> - <img src="/assets/images/members/logo-laas.png" class="img-responsive" style="max-height:110px"> + <a href="http://eclipse.org/membership/showMember.php?member_id=817" target="_blank"> + <img src="/assets/images/members/logo-itemis.png" class="img-responsive" style="max-height:110px"> </a> </div> </div> @@ -499,8 +502,8 @@ <div class="col-md-4 col-xs-6" style="padding:20px 60px; display:none;"> <div style="height: 120px; display:table-cell; vertical-align:middle;"> - <a href="http://eclipse.org/membership/showMember.php?member_id=1151" target="_blank"> - <img src="/assets/images/members/logo-litmus.png" class="img-responsive" style="max-height:110px"> + <a href="http://eclipse.org/membership/showMember.php?member_id=1101" target="_blank"> + <img src="/assets/images/members/logo-m2m-alliance.png" class="img-responsive" style="max-height:110px"> </a> </div> </div> @@ -509,8 +512,8 @@ <div class="col-md-4 col-xs-6" style="padding:20px 60px; display:none;"> <div style="height: 120px; display:table-cell; vertical-align:middle;"> - <a href="http://eclipse.org/membership/showMember.php?member_id=1101" target="_blank"> - <img src="/assets/images/members/logo-m2m-alliance.png" class="img-responsive" style="max-height:110px"> + <a href="http://eclipse.org/membership/showMember.php?member_id=1151" target="_blank"> + <img src="/assets/images/members/logo-litmus.png" class="img-responsive" style="max-height:110px"> </a> </div> </div> @@ -619,9 +622,6 @@ -<script>document.write('<script src="http://' - + (location.host || 'localhost').split(':')[0] - + ':1313/livereload.js?mindelay=10"></' - + 'script>')</script></body> +</body> </html> diff --git a/public/index.xml b/public/index.xml index d0c09cbc1bcd11f012adc5b76afd027d7a862aa0..005200abf995a8241152e6c18c263169fafe52ee 100644 --- a/public/index.xml +++ b/public/index.xml @@ -2,36 +2,36 @@ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title></title> - <link>http://localhost:1313/</link> + <link>http://iot.eclipse.org/</link> <description>Recent content on </description> <generator>Hugo -- gohugo.io</generator> - <atom:link href="http://localhost:1313/index.xml" rel="self" type="application/rss+xml" /> + <atom:link href="http://iot.eclipse.org/index.xml" rel="self" type="application/rss+xml" /> <item> <title></title> - <link>http://localhost:1313/working-group/dummy/</link> + <link>http://iot.eclipse.org/working-group/dummy/</link> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> - <guid>http://localhost:1313/working-group/dummy/</guid> + <guid>http://iot.eclipse.org/working-group/dummy/</guid> <description></description> </item> <item> <title>MQTT Essentials: Part 1 – Introducing MQTT</title> - <link>http://localhost:1313/resources/2014-02-01-mqtt-essentials-1/</link> + <link>http://iot.eclipse.org/resources/2014-02-01-mqtt-essentials-1/</link> <pubDate>Sun, 01 Feb 2015 15:54:26 +0100</pubDate> - <guid>http://localhost:1313/resources/2014-02-01-mqtt-essentials-1/</guid> + <guid>http://iot.eclipse.org/resources/2014-02-01-mqtt-essentials-1/</guid> <description><p>Welcome to the first part of MQTT Essentials. A blog series about the core features and concepts in the MQTT protocol. This post introduces the MQTT Essentials series and what we’ll cover on the blog in 2015…</p> </description> </item> <item> <title>Announcing the Open IoT Challenge</title> - <link>http://localhost:1313/news/2015-02-09-announcing-open-iot-challenge/</link> + <link>http://iot.eclipse.org/news/2015-02-09-announcing-open-iot-challenge/</link> <pubDate>Mon, 09 Feb 2015 16:28:26 -0700</pubDate> - <guid>http://localhost:1313/news/2015-02-09-announcing-open-iot-challenge/</guid> + <guid>http://iot.eclipse.org/news/2015-02-09-announcing-open-iot-challenge/</guid> <description><p>2014 is almost over, and one of the first big events for Eclipse IoT next year will be EclipseCon 2015, March 9-12 in Burlingame, California. If you haven’t seen the EclipseCon program already, I highly…</p> </description> @@ -39,20 +39,20 @@ If you haven’t seen the EclipseCon program already, I highly…</p> <item> <title>Case Study MQTT: Why Open Source and Open Standards Drives Adoption</title> - <link>http://localhost:1313/news/2015-03-04-case-study-mqtt/</link> + <link>http://iot.eclipse.org/news/2015-03-04-case-study-mqtt/</link> <pubDate>Wed, 04 Mar 2015 00:00:00 +0000</pubDate> - <guid>http://localhost:1313/news/2015-03-04-case-study-mqtt/</guid> + <guid>http://iot.eclipse.org/news/2015-03-04-case-study-mqtt/</guid> <description><p>For the last 3 years, we have been talking about why IoT needs open source and open standards to be successful. We are now seeing great examples of why this is so true and why open communities will lead IoT adoption…</p> </description> </item> <item> <title>2lemetry</title> - <link>http://localhost:1313/member/2lemetry/</link> + <link>http://iot.eclipse.org/member/2lemetry/</link> <pubDate>Sun, 08 Mar 2015 15:31:13 -0700</pubDate> - <guid>http://localhost:1313/member/2lemetry/</guid> + <guid>http://iot.eclipse.org/member/2lemetry/</guid> <description><p>2lemetry is an IoT platform and solutions company that powers the connected enterprise, tying people, processes, data and devices together—transforming raw data into real-time actionable intelligence.</p> <p>2lemetry&rsquo;s ThingFabric platform acts as an IoT version of Enterprise Application Integration (EAI) middleware solutions, providing device connectivity at scale, cross-communication, data brokering and storage. We also help companies make sense of the captured data by offering actionable data intelligence through predictive computational models and a configurable rules engine. @@ -64,10 +64,10 @@ The ThingFabric platform has a unique protocol-agnostic architecture that enable <item> <title>Actuate</title> - <link>http://localhost:1313/member/actuate/</link> + <link>http://iot.eclipse.org/member/actuate/</link> <pubDate>Sun, 08 Mar 2015 15:31:14 -0700</pubDate> - <guid>http://localhost:1313/member/actuate/</guid> + <guid>http://iot.eclipse.org/member/actuate/</guid> <description><p>In 2004, Actuate co-founded &ndash; and continues as its sole sponsor – the top-level Eclipse BIRT Project – an open source, Java-based IDE. BIRT is used as a workbench by more than 3.5 million developers around the globe, to reduce development time and significantly improve the efficacy of their customer-facing applications. BIRT has been downloaded over 13 million times since its inception. Please visit developer.actuate.com.</p> <p>On the commercial side, Actuate provides BIRT Designer Pro™ and BIRT iHub™ deployment software – to developers and IT departments of mid-size to global-brand enterprises, as well as to ISVs/OEMs. These organizations use BIRT to build scalable, secure solutions that provide valuable insights from data, and improve brand loyalty. These customers have delivered personalized analytics and insights to more than 200 million of their own customers, partners and employees.</p> @@ -78,20 +78,20 @@ The ThingFabric platform has a unique protocol-agnostic architecture that enable <item> <title>Bitreactive</title> - <link>http://localhost:1313/member/bitreactive/</link> + <link>http://iot.eclipse.org/member/bitreactive/</link> <pubDate>Sun, 08 Mar 2015 15:31:15 -0700</pubDate> - <guid>http://localhost:1313/member/bitreactive/</guid> + <guid>http://iot.eclipse.org/member/bitreactive/</guid> <description><p>Bitreactive makes Reactive Blocks, a tool designed to accelerate and simplify M2M and IoT software development. Its benefits are especially well suited for applications that run autonomously on gateways. Functionality that is often used is provided by dedicated building blocks, for instance for protocols like MQTT or Modbus, access to data collection APIs or processing and buffering of data. The tool checks if applications work correctly with regard to their behavior, and detects a range of errors automatically that are hard to find by traditional testing.</p> </description> </item> <item> <title>Bosch Software Innovations</title> - <link>http://localhost:1313/member/bosch/</link> + <link>http://iot.eclipse.org/member/bosch/</link> <pubDate>Sun, 08 Mar 2015 15:31:15 -0700</pubDate> - <guid>http://localhost:1313/member/bosch/</guid> + <guid>http://iot.eclipse.org/member/bosch/</guid> <description><p>Bosch Software Innovations GmbH, the Bosch Group&rsquo;s software and systems house, designs, develops, and operates innovative software and system solutions that help our customers around the world both in the Internet of Things and in the traditional enterprise environment. We place particular focus on the topics of mobility, energy, manufacturing, and smart home.</p> <p>The focus of the Eclipse Vorto project, which has been proposed by Bosch Software Innovations, is the standardization of so called information models. These information models are abstract descriptions of real world devices.</p> @@ -102,19 +102,19 @@ The ThingFabric platform has a unique protocol-agnostic architecture that enable <item> <title>Canonical</title> - <link>http://localhost:1313/member/canonical/</link> + <link>http://iot.eclipse.org/member/canonical/</link> <pubDate>Sun, 08 Mar 2015 15:31:16 -0700</pubDate> - <guid>http://localhost:1313/member/canonical/</guid> + <guid>http://iot.eclipse.org/member/canonical/</guid> <description></description> </item> <item> <title>dc-square</title> - <link>http://localhost:1313/member/dcsquare/</link> + <link>http://iot.eclipse.org/member/dcsquare/</link> <pubDate>Sun, 08 Mar 2015 15:31:16 -0700</pubDate> - <guid>http://localhost:1313/member/dcsquare/</guid> + <guid>http://iot.eclipse.org/member/dcsquare/</guid> <description><p>dc-square is a company based in Southern Germany building software solutions for the Internet of Things. Our product HiveMQ is a MQTT broker for the enterprise, which makes it possible to connect thousands and millions of devices over wired or wireless networks with very efficient bandwidth usage and push technology. Our focus is on providing IoT building blocks for the enterprise and advice on, consult on or implement IoT solutions for companies around them. Therefore HiveMQ is build from the ground up with security, scalability and extensibility in mind. HiveMQ has an open plugin system for customizations of general behavior and permissions as well as the possibility to cluster and bridge with other instances for high availability and high scalability scenarios. All our solutions are perfectly suitable for running in the Cloud (Amazon, Azure) as well as on own infrastructure.</p> <p>dc-square is very engaged in promoting and supporting open IoT technologies at national and international conferences and magazines with talks and articles about Eclipse IoT technologies.</p> @@ -123,19 +123,19 @@ The ThingFabric platform has a unique protocol-agnostic architecture that enable <item> <title>Deutsche Telekom</title> - <link>http://localhost:1313/member/dtag/</link> + <link>http://iot.eclipse.org/member/dtag/</link> <pubDate>Sun, 08 Mar 2015 15:31:17 -0700</pubDate> - <guid>http://localhost:1313/member/dtag/</guid> + <guid>http://iot.eclipse.org/member/dtag/</guid> <description></description> </item> <item> <title>Eurotech</title> - <link>http://localhost:1313/member/eurotech/</link> + <link>http://iot.eclipse.org/member/eurotech/</link> <pubDate>Sun, 08 Mar 2015 15:31:17 -0700</pubDate> - <guid>http://localhost:1313/member/eurotech/</guid> + <guid>http://iot.eclipse.org/member/eurotech/</guid> <description><p>Eurotech believes in open, standards-based systems to deliver on the promise of the Internet of Things, and works with world-class partners and organizations to evangelize that strategy, including as a founding member of the IoT Working Group in the Eclipse Foundation and OASIS MQTT Technical Committee. Eurotech has contributed the Kura project to the Eclipse Foundation and actively participates in many associated projects and activities.</p> <p>Eurotech solutions combine software, application framework, hardware, and device cloud services that drive business success. A global leader in connecting distributed devices that make up the Internet of Things, Eurotech collaborates with progressive customers, partners, and integrators to bring rugged, reliable and cost effective device and data management solutions to market. Combining technology excellence with domain expertise allows Eurotech to meet the needs of key market segments including healthcare, security, transportation, energy, and industrial.</p> @@ -144,10 +144,10 @@ The ThingFabric platform has a unique protocol-agnostic architecture that enable <item> <title>GadgetKeeper</title> - <link>http://localhost:1313/member/gadgetkeeper/</link> + <link>http://iot.eclipse.org/member/gadgetkeeper/</link> <pubDate>Sun, 08 Mar 2015 15:31:18 -0700</pubDate> - <guid>http://localhost:1313/member/gadgetkeeper/</guid> + <guid>http://iot.eclipse.org/member/gadgetkeeper/</guid> <description><p>GadgetKeeper is an Internet Of Things platform allowing the rapid creation if IoT solutions to connect your sensors, devices, equipment (&ldquo;Things&rdquo;) with people and systems.</p> <p>GadgetKeeper&rsquo;s technology eliminates complexity by simplifying and standardizing the way information is managed and exchanged so that physical and virtual assets and services can work together as one integrated system.</p> @@ -158,19 +158,19 @@ The ThingFabric platform has a unique protocol-agnostic architecture that enable <item> <title>IBM</title> - <link>http://localhost:1313/member/ibm/</link> + <link>http://iot.eclipse.org/member/ibm/</link> <pubDate>Sun, 08 Mar 2015 15:31:18 -0700</pubDate> - <guid>http://localhost:1313/member/ibm/</guid> + <guid>http://iot.eclipse.org/member/ibm/</guid> <description></description> </item> <item> <title>IBH SYSTEMS</title> - <link>http://localhost:1313/member/ibh/</link> + <link>http://iot.eclipse.org/member/ibh/</link> <pubDate>Sun, 08 Mar 2015 15:31:18 -0700</pubDate> - <guid>http://localhost:1313/member/ibh/</guid> + <guid>http://iot.eclipse.org/member/ibh/</guid> <description><p>IBH SYSTEMS GmbH is the lead developer of the Eclipse SCADA system, a true open source SCADA platform.</p> <p>Eclipse SCADA offers a fully featured SCADA platform from the integration of field devices, over middleware functionality, to HMI components. It provides a communication abstraction layer, monitoring and archival services, a visual interface and a sophisticated system to configure complex SCADA installations. As the lead developer, IBH SYSTEMS GmbH offers consulting, custom development and integration for Eclipse SCADA.</p> diff --git a/public/member/index.xml b/public/member/index.xml index bd22170529b12443d638d5e321facb1f327d0944..f8c68fb4f1c4cda26e494ad3d909d7030dc7de79 100644 --- a/public/member/index.xml +++ b/public/member/index.xml @@ -2,18 +2,18 @@ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>Members on </title> - <link>http://localhost:1313/member/</link> + <link>http://iot.eclipse.org/member/</link> <description>Recent content in Members on </description> <generator>Hugo -- gohugo.io</generator> <lastBuildDate>Sun, 08 Mar 2015 15:31:22 -0700</lastBuildDate> - <atom:link href="http://localhost:1313/member/index.xml" rel="self" type="application/rss+xml" /> + <atom:link href="http://iot.eclipse.org/member/index.xml" rel="self" type="application/rss+xml" /> <item> <title>Sierra Wireless</title> - <link>http://localhost:1313/member/sierra/</link> + <link>http://iot.eclipse.org/member/sierra/</link> <pubDate>Sun, 08 Mar 2015 15:31:22 -0700</pubDate> - <guid>http://localhost:1313/member/sierra/</guid> + <guid>http://iot.eclipse.org/member/sierra/</guid> <description><p>Sierra Wireless is the global leader in machine-to-machine (M2M) devices and cloud services, delivering intelligent wireless solutions that simplify the connected world. We offer the industry&rsquo;s most comprehensive portfolio of 2G, 3G and 4G embedded modules and gateways, seamlessly integrated with our secure M2M cloud services.</p> <p>Sierra Wireless is deeply involved in the Eclipse IoT community: we founded the IoT Working Group, and are contributing to several projects including Wakaama, Californium, LDT,… The Eclipse IoT technologies are also used in our AirVantage M2M Cloud.</p> @@ -22,10 +22,10 @@ <item> <title>openHAB UG</title> - <link>http://localhost:1313/member/openhab/</link> + <link>http://iot.eclipse.org/member/openhab/</link> <pubDate>Sun, 08 Mar 2015 15:31:21 -0700</pubDate> - <guid>http://localhost:1313/member/openhab/</guid> + <guid>http://iot.eclipse.org/member/openhab/</guid> <description><p>openHAB UG (haftungsbeschränkt) is the company behind the open-source home automation solution openHAB and believes that an open-source stack is the only right answer for home gateways. openHAB UG therefore initiated the Eclipse SmartHome project and is the lead developer behind it.</p> <p>The Eclipse SmartHome project is a framework that allows building smart home solutions that have a strong focus on heterogeneous environments, i.e. solutions that deal with the integration of different protocols or standards. Its purpose is to provide a uniform access to devices and information and to facilitate different kinds of interactions with them.</p> @@ -34,46 +34,46 @@ <item> <title>Litmus Automation</title> - <link>http://localhost:1313/member/litmus/</link> + <link>http://iot.eclipse.org/member/litmus/</link> <pubDate>Sun, 08 Mar 2015 15:31:20 -0700</pubDate> - <guid>http://localhost:1313/member/litmus/</guid> + <guid>http://iot.eclipse.org/member/litmus/</guid> <description></description> </item> <item> <title>M2M Alliance</title> - <link>http://localhost:1313/member/m2m-alliance/</link> + <link>http://iot.eclipse.org/member/m2m-alliance/</link> <pubDate>Sun, 08 Mar 2015 15:31:20 -0700</pubDate> - <guid>http://localhost:1313/member/m2m-alliance/</guid> + <guid>http://iot.eclipse.org/member/m2m-alliance/</guid> <description></description> </item> <item> <title>LAAS-CNRS</title> - <link>http://localhost:1313/member/laas/</link> + <link>http://iot.eclipse.org/member/laas/</link> <pubDate>Sun, 08 Mar 2015 15:31:19 -0700</pubDate> - <guid>http://localhost:1313/member/laas/</guid> + <guid>http://iot.eclipse.org/member/laas/</guid> <description></description> </item> <item> <title>itemis</title> - <link>http://localhost:1313/member/itemis/</link> + <link>http://iot.eclipse.org/member/itemis/</link> <pubDate>Sun, 08 Mar 2015 15:31:19 -0700</pubDate> - <guid>http://localhost:1313/member/itemis/</guid> + <guid>http://iot.eclipse.org/member/itemis/</guid> <description></description> </item> <item> <title>GadgetKeeper</title> - <link>http://localhost:1313/member/gadgetkeeper/</link> + <link>http://iot.eclipse.org/member/gadgetkeeper/</link> <pubDate>Sun, 08 Mar 2015 15:31:18 -0700</pubDate> - <guid>http://localhost:1313/member/gadgetkeeper/</guid> + <guid>http://iot.eclipse.org/member/gadgetkeeper/</guid> <description><p>GadgetKeeper is an Internet Of Things platform allowing the rapid creation if IoT solutions to connect your sensors, devices, equipment (&ldquo;Things&rdquo;) with people and systems.</p> <p>GadgetKeeper&rsquo;s technology eliminates complexity by simplifying and standardizing the way information is managed and exchanged so that physical and virtual assets and services can work together as one integrated system.</p> @@ -84,10 +84,10 @@ <item> <title>IBH SYSTEMS</title> - <link>http://localhost:1313/member/ibh/</link> + <link>http://iot.eclipse.org/member/ibh/</link> <pubDate>Sun, 08 Mar 2015 15:31:18 -0700</pubDate> - <guid>http://localhost:1313/member/ibh/</guid> + <guid>http://iot.eclipse.org/member/ibh/</guid> <description><p>IBH SYSTEMS GmbH is the lead developer of the Eclipse SCADA system, a true open source SCADA platform.</p> <p>Eclipse SCADA offers a fully featured SCADA platform from the integration of field devices, over middleware functionality, to HMI components. It provides a communication abstraction layer, monitoring and archival services, a visual interface and a sophisticated system to configure complex SCADA installations. As the lead developer, IBH SYSTEMS GmbH offers consulting, custom development and integration for Eclipse SCADA.</p> @@ -96,28 +96,28 @@ <item> <title>IBM</title> - <link>http://localhost:1313/member/ibm/</link> + <link>http://iot.eclipse.org/member/ibm/</link> <pubDate>Sun, 08 Mar 2015 15:31:18 -0700</pubDate> - <guid>http://localhost:1313/member/ibm/</guid> + <guid>http://iot.eclipse.org/member/ibm/</guid> <description></description> </item> <item> <title>Deutsche Telekom</title> - <link>http://localhost:1313/member/dtag/</link> + <link>http://iot.eclipse.org/member/dtag/</link> <pubDate>Sun, 08 Mar 2015 15:31:17 -0700</pubDate> - <guid>http://localhost:1313/member/dtag/</guid> + <guid>http://iot.eclipse.org/member/dtag/</guid> <description></description> </item> <item> <title>Eurotech</title> - <link>http://localhost:1313/member/eurotech/</link> + <link>http://iot.eclipse.org/member/eurotech/</link> <pubDate>Sun, 08 Mar 2015 15:31:17 -0700</pubDate> - <guid>http://localhost:1313/member/eurotech/</guid> + <guid>http://iot.eclipse.org/member/eurotech/</guid> <description><p>Eurotech believes in open, standards-based systems to deliver on the promise of the Internet of Things, and works with world-class partners and organizations to evangelize that strategy, including as a founding member of the IoT Working Group in the Eclipse Foundation and OASIS MQTT Technical Committee. Eurotech has contributed the Kura project to the Eclipse Foundation and actively participates in many associated projects and activities.</p> <p>Eurotech solutions combine software, application framework, hardware, and device cloud services that drive business success. A global leader in connecting distributed devices that make up the Internet of Things, Eurotech collaborates with progressive customers, partners, and integrators to bring rugged, reliable and cost effective device and data management solutions to market. Combining technology excellence with domain expertise allows Eurotech to meet the needs of key market segments including healthcare, security, transportation, energy, and industrial.</p> @@ -126,19 +126,19 @@ <item> <title>Canonical</title> - <link>http://localhost:1313/member/canonical/</link> + <link>http://iot.eclipse.org/member/canonical/</link> <pubDate>Sun, 08 Mar 2015 15:31:16 -0700</pubDate> - <guid>http://localhost:1313/member/canonical/</guid> + <guid>http://iot.eclipse.org/member/canonical/</guid> <description></description> </item> <item> <title>dc-square</title> - <link>http://localhost:1313/member/dcsquare/</link> + <link>http://iot.eclipse.org/member/dcsquare/</link> <pubDate>Sun, 08 Mar 2015 15:31:16 -0700</pubDate> - <guid>http://localhost:1313/member/dcsquare/</guid> + <guid>http://iot.eclipse.org/member/dcsquare/</guid> <description><p>dc-square is a company based in Southern Germany building software solutions for the Internet of Things. Our product HiveMQ is a MQTT broker for the enterprise, which makes it possible to connect thousands and millions of devices over wired or wireless networks with very efficient bandwidth usage and push technology. Our focus is on providing IoT building blocks for the enterprise and advice on, consult on or implement IoT solutions for companies around them. Therefore HiveMQ is build from the ground up with security, scalability and extensibility in mind. HiveMQ has an open plugin system for customizations of general behavior and permissions as well as the possibility to cluster and bridge with other instances for high availability and high scalability scenarios. All our solutions are perfectly suitable for running in the Cloud (Amazon, Azure) as well as on own infrastructure.</p> <p>dc-square is very engaged in promoting and supporting open IoT technologies at national and international conferences and magazines with talks and articles about Eclipse IoT technologies.</p> @@ -147,20 +147,20 @@ <item> <title>Bitreactive</title> - <link>http://localhost:1313/member/bitreactive/</link> + <link>http://iot.eclipse.org/member/bitreactive/</link> <pubDate>Sun, 08 Mar 2015 15:31:15 -0700</pubDate> - <guid>http://localhost:1313/member/bitreactive/</guid> + <guid>http://iot.eclipse.org/member/bitreactive/</guid> <description><p>Bitreactive makes Reactive Blocks, a tool designed to accelerate and simplify M2M and IoT software development. Its benefits are especially well suited for applications that run autonomously on gateways. Functionality that is often used is provided by dedicated building blocks, for instance for protocols like MQTT or Modbus, access to data collection APIs or processing and buffering of data. The tool checks if applications work correctly with regard to their behavior, and detects a range of errors automatically that are hard to find by traditional testing.</p> </description> </item> <item> <title>Bosch Software Innovations</title> - <link>http://localhost:1313/member/bosch/</link> + <link>http://iot.eclipse.org/member/bosch/</link> <pubDate>Sun, 08 Mar 2015 15:31:15 -0700</pubDate> - <guid>http://localhost:1313/member/bosch/</guid> + <guid>http://iot.eclipse.org/member/bosch/</guid> <description><p>Bosch Software Innovations GmbH, the Bosch Group&rsquo;s software and systems house, designs, develops, and operates innovative software and system solutions that help our customers around the world both in the Internet of Things and in the traditional enterprise environment. We place particular focus on the topics of mobility, energy, manufacturing, and smart home.</p> <p>The focus of the Eclipse Vorto project, which has been proposed by Bosch Software Innovations, is the standardization of so called information models. These information models are abstract descriptions of real world devices.</p> diff --git a/public/news/index.html b/public/news/index.html index 26be0149b4260b6df44b52c5e25d776b30427894..48481c54656fe8eb50a8b155381d862eb83f9809 100644 --- a/public/news/index.html +++ b/public/news/index.html @@ -28,6 +28,10 @@ ga('send', 'pageview'); </script> + + +<link rel="alternate" type="application/rss+xml" title="RSS" href="index.xml"> + </head> <body> @@ -116,36 +120,33 @@ - <div> - <a href="http://blog.benjamin-cabe.com/2015/03/19/the-open-iot-challenge-projects-are-way-cool"> + <div style="margin-bottom:40px;"> <h2 class="purple">The Open IoT Challenge projects are way cool</h2> <p><p>There are only a few days left for the participants to the Open IoT Challenge to wrap up their projects and share the final results of what they have achieved over the course of the last couple months…</p> </p> + <a href="http://blog.benjamin-cabe.com/2015/03/19/the-open-iot-challenge-projects-are-way-cool"><button class="btn btn-default">Read more...</button> </a> - <p class="date">Mar 19, 2015 </p> </div> - <div> - <a href="https://ianskerrett.wordpress.com/2015/03/04/case-study-mqtt-why-open-source-and-open-standards-drives-adoption/"> + <div style="margin-bottom:40px;"> <h2 class="purple">Case Study MQTT: Why Open Source and Open Standards Drives Adoption</h2> <p><p>For the last 3 years, we have been talking about why IoT needs open source and open standards to be successful. We are now seeing great examples of why this is so true and why open communities will lead IoT adoption…</p> </p> + <a href="https://ianskerrett.wordpress.com/2015/03/04/case-study-mqtt-why-open-source-and-open-standards-drives-adoption/"><button class="btn btn-default">Read more...</button> </a> - <p class="date">Mar 4, 2015 </p> </div> - <div> - <a href="http://blog.benjamin-cabe.com/2014/12/11/announcing-the-open-iot-challenge"> + <div style="margin-bottom:40px;"> <h2 class="purple">Announcing the Open IoT Challenge</h2> <p><p>2014 is almost over, and one of the first big events for Eclipse IoT next year will be EclipseCon 2015, March 9-12 in Burlingame, California. If you haven’t seen the EclipseCon program already, I highly…</p> </p> + <a href="http://blog.benjamin-cabe.com/2014/12/11/announcing-the-open-iot-challenge"><button class="btn btn-default">Read more...</button> </a> - <p class="date">Feb 9, 2015 </p> </div> @@ -218,9 +219,6 @@ If you haven’t seen the EclipseCon program already, I highly…</p> $('#other-members').shuffle(); }); </script> -<script>document.write('<script src="http://' - + (location.host || 'localhost').split(':')[0] - + ':1313/livereload.js?mindelay=10"></' - + 'script>')</script></body> +</body> </html> diff --git a/public/news/index.xml b/public/news/index.xml index d040593eebbaeca0a78ea58af5197fb509214bab..6fc6f8e2a27445962ae83378447d6cab99e9a537 100644 --- a/public/news/index.xml +++ b/public/news/index.xml @@ -2,38 +2,38 @@ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>News on </title> - <link>http://localhost:1313/news/</link> + <link>http://iot.eclipse.org/news/</link> <description>Recent content in News on </description> <generator>Hugo -- gohugo.io</generator> <lastBuildDate>Thu, 19 Mar 2015 00:00:00 +0000</lastBuildDate> - <atom:link href="http://localhost:1313/news/index.xml" rel="self" type="application/rss+xml" /> + <atom:link href="http://iot.eclipse.org/news/index.xml" rel="self" type="application/rss+xml" /> <item> <title>The Open IoT Challenge projects are way cool</title> - <link>http://localhost:1313/news/2015-03-19-the-open-iot-challenge-project-are-way-cool/</link> + <link>http://iot.eclipse.org/news/2015-03-19-the-open-iot-challenge-project-are-way-cool/</link> <pubDate>Thu, 19 Mar 2015 00:00:00 +0000</pubDate> - <guid>http://localhost:1313/news/2015-03-19-the-open-iot-challenge-project-are-way-cool/</guid> + <guid>http://iot.eclipse.org/news/2015-03-19-the-open-iot-challenge-project-are-way-cool/</guid> <description><p>There are only a few days left for the participants to the Open IoT Challenge to wrap up their projects and share the final results of what they have achieved over the course of the last couple months…</p> </description> </item> <item> <title>Case Study MQTT: Why Open Source and Open Standards Drives Adoption</title> - <link>http://localhost:1313/news/2015-03-04-case-study-mqtt/</link> + <link>http://iot.eclipse.org/news/2015-03-04-case-study-mqtt/</link> <pubDate>Wed, 04 Mar 2015 00:00:00 +0000</pubDate> - <guid>http://localhost:1313/news/2015-03-04-case-study-mqtt/</guid> + <guid>http://iot.eclipse.org/news/2015-03-04-case-study-mqtt/</guid> <description><p>For the last 3 years, we have been talking about why IoT needs open source and open standards to be successful. We are now seeing great examples of why this is so true and why open communities will lead IoT adoption…</p> </description> </item> <item> <title>Announcing the Open IoT Challenge</title> - <link>http://localhost:1313/news/2015-02-09-announcing-open-iot-challenge/</link> + <link>http://iot.eclipse.org/news/2015-02-09-announcing-open-iot-challenge/</link> <pubDate>Mon, 09 Feb 2015 16:28:26 -0700</pubDate> - <guid>http://localhost:1313/news/2015-02-09-announcing-open-iot-challenge/</guid> + <guid>http://iot.eclipse.org/news/2015-02-09-announcing-open-iot-challenge/</guid> <description><p>2014 is almost over, and one of the first big events for Eclipse IoT next year will be EclipseCon 2015, March 9-12 in Burlingame, California. If you haven’t seen the EclipseCon program already, I highly…</p> </description> diff --git a/public/news/page/1/index.html b/public/news/page/1/index.html index e2383841381f5367c83be769d70440feaca842de..051ede0f84eafc3eaa4cdb6996f32ebc9bf71949 100644 --- a/public/news/page/1/index.html +++ b/public/news/page/1/index.html @@ -1 +1 @@ -<!DOCTYPE html><html><head><link rel="canonical" href="http://localhost:1313/news/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0;url=http://localhost:1313/news/" /></head></html> \ No newline at end of file +<!DOCTYPE html><html><head><link rel="canonical" href="http://iot.eclipse.org/news/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0;url=http://iot.eclipse.org/news/" /></head></html> \ No newline at end of file diff --git a/public/resources/index.html b/public/resources/index.html index 4f72679a7c034d6a59fbcad5b879a027f08378ef..1be7ea5e5b4cffabcdedcbb5bf1f7f0feddf42c7 100644 --- a/public/resources/index.html +++ b/public/resources/index.html @@ -28,6 +28,9 @@ ga('send', 'pageview'); </script> + + +<link rel="alternate" type="application/rss+xml" title="RSS" href="index.xml"> </head> <body> @@ -116,7 +119,7 @@ - <div> + <div style="margin-bottom:40px;"> <h2 class="purple">Open IoT Stack for Java Tutorial</h2> <p><p>Using Eclipse Kura, MQTT and CoAP to build a smart greenhouse. Java is almost 20 years old, and has over the years gathered a very large community of developers that in turn fostered an even larger ecosystem of open-source components and frameworks.</p> @@ -129,7 +132,7 @@ Java is almost 20 years old, and has over the years gathered a very large commun - <div> + <div style="margin-bottom:40px;"> <h2 class="purple">MQTT Essentials: Part 1 – Introducing MQTT</h2> <p><p>Welcome to the first part of MQTT Essentials. A blog series about the core features and concepts in the MQTT protocol. This post introduces the MQTT Essentials series and what we’ll cover on the blog in 2015…</p> </p> @@ -207,9 +210,6 @@ Java is almost 20 years old, and has over the years gathered a very large commun $('#other-members').shuffle(); }); </script> -<script>document.write('<script src="http://' - + (location.host || 'localhost').split(':')[0] - + ':1313/livereload.js?mindelay=10"></' - + 'script>')</script></body> +</body> </html> diff --git a/public/resources/index.xml b/public/resources/index.xml index 9d3d654fdb7378eb6d76707b4bfae15de79154e8..8a23ad1bb7a7cc0508e0158a7fa54b933ed3557a 100644 --- a/public/resources/index.xml +++ b/public/resources/index.xml @@ -2,18 +2,18 @@ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>Resources on </title> - <link>http://localhost:1313/resources/</link> + <link>http://iot.eclipse.org/resources/</link> <description>Recent content in Resources on </description> <generator>Hugo -- gohugo.io</generator> <lastBuildDate>Tue, 24 Mar 2015 15:54:26 +0100</lastBuildDate> - <atom:link href="http://localhost:1313/resources/index.xml" rel="self" type="application/rss+xml" /> + <atom:link href="http://iot.eclipse.org/resources/index.xml" rel="self" type="application/rss+xml" /> <item> <title>Open IoT Stack for Java Tutorial</title> - <link>http://localhost:1313/resources/2014-03-24-java-tutorial/</link> + <link>http://iot.eclipse.org/resources/2014-03-24-java-tutorial/</link> <pubDate>Tue, 24 Mar 2015 15:54:26 +0100</pubDate> - <guid>http://localhost:1313/resources/2014-03-24-java-tutorial/</guid> + <guid>http://iot.eclipse.org/resources/2014-03-24-java-tutorial/</guid> <description><p>Using Eclipse Kura, MQTT and CoAP to build a smart greenhouse. Java is almost 20 years old, and has over the years gathered a very large community of developers that in turn fostered an even larger ecosystem of open-source components and frameworks.</p> @@ -23,10 +23,10 @@ Java is almost 20 years old, and has over the years gathered a very large commun <item> <title>MQTT Essentials: Part 1 – Introducing MQTT</title> - <link>http://localhost:1313/resources/2014-02-01-mqtt-essentials-1/</link> + <link>http://iot.eclipse.org/resources/2014-02-01-mqtt-essentials-1/</link> <pubDate>Sun, 01 Feb 2015 15:54:26 +0100</pubDate> - <guid>http://localhost:1313/resources/2014-02-01-mqtt-essentials-1/</guid> + <guid>http://iot.eclipse.org/resources/2014-02-01-mqtt-essentials-1/</guid> <description><p>Welcome to the first part of MQTT Essentials. A blog series about the core features and concepts in the MQTT protocol. This post introduces the MQTT Essentials series and what we’ll cover on the blog in 2015…</p> </description> </item> diff --git a/public/resources/page/1/index.html b/public/resources/page/1/index.html index 2b712956631359b5e68cba8bee2038bde9063718..c7b1c25e93db57c1fb6f448ecb48f402ef3e2dd7 100644 --- a/public/resources/page/1/index.html +++ b/public/resources/page/1/index.html @@ -1 +1 @@ -<!DOCTYPE html><html><head><link rel="canonical" href="http://localhost:1313/resources/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0;url=http://localhost:1313/resources/" /></head></html> \ No newline at end of file +<!DOCTYPE html><html><head><link rel="canonical" href="http://iot.eclipse.org/resources/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0;url=http://iot.eclipse.org/resources/" /></head></html> \ No newline at end of file diff --git a/public/sitemap.xml b/public/sitemap.xml index 88bf1c05640d32060a963b7469307fd4dd38d640..7fd7b0a9541f55a3d6140966b09998892eb02039 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -2,152 +2,152 @@ <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> - <loc>http://localhost:1313/</loc> + <loc>http://iot.eclipse.org/</loc> <lastmod>2015-06-23T16:12:42+01:00</lastmod> <priority>0</priority> </url> <url> - <loc>http://localhost:1313/working-group/dummy/</loc> + <loc>http://iot.eclipse.org/working-group/dummy/</loc> </url> <url> - <loc>http://localhost:1313/resources/2014-02-01-mqtt-essentials-1/</loc> + <loc>http://iot.eclipse.org/resources/2014-02-01-mqtt-essentials-1/</loc> <lastmod>2015-02-01T15:54:26+01:00</lastmod> </url> <url> - <loc>http://localhost:1313/news/2015-02-09-announcing-open-iot-challenge/</loc> + <loc>http://iot.eclipse.org/news/2015-02-09-announcing-open-iot-challenge/</loc> <lastmod>2015-02-09T16:28:26-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/news/2015-03-04-case-study-mqtt/</loc> + <loc>http://iot.eclipse.org/news/2015-03-04-case-study-mqtt/</loc> <lastmod>2015-03-04T00:00:00+00:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/2lemetry/</loc> + <loc>http://iot.eclipse.org/member/2lemetry/</loc> <lastmod>2015-03-08T15:31:13-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/actuate/</loc> + <loc>http://iot.eclipse.org/member/actuate/</loc> <lastmod>2015-03-08T15:31:14-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/bitreactive/</loc> + <loc>http://iot.eclipse.org/member/bitreactive/</loc> <lastmod>2015-03-08T15:31:15-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/bosch/</loc> + <loc>http://iot.eclipse.org/member/bosch/</loc> <lastmod>2015-03-08T15:31:15-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/canonical/</loc> + <loc>http://iot.eclipse.org/member/canonical/</loc> <lastmod>2015-03-08T15:31:16-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/dcsquare/</loc> + <loc>http://iot.eclipse.org/member/dcsquare/</loc> <lastmod>2015-03-08T15:31:16-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/dtag/</loc> + <loc>http://iot.eclipse.org/member/dtag/</loc> <lastmod>2015-03-08T15:31:17-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/eurotech/</loc> + <loc>http://iot.eclipse.org/member/eurotech/</loc> <lastmod>2015-03-08T15:31:17-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/gadgetkeeper/</loc> + <loc>http://iot.eclipse.org/member/gadgetkeeper/</loc> <lastmod>2015-03-08T15:31:18-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/ibm/</loc> + <loc>http://iot.eclipse.org/member/ibm/</loc> <lastmod>2015-03-08T15:31:18-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/ibh/</loc> + <loc>http://iot.eclipse.org/member/ibh/</loc> <lastmod>2015-03-08T15:31:18-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/itemis/</loc> + <loc>http://iot.eclipse.org/member/laas/</loc> <lastmod>2015-03-08T15:31:19-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/laas/</loc> + <loc>http://iot.eclipse.org/member/itemis/</loc> <lastmod>2015-03-08T15:31:19-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/litmus/</loc> + <loc>http://iot.eclipse.org/member/m2m-alliance/</loc> <lastmod>2015-03-08T15:31:20-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/m2m-alliance/</loc> + <loc>http://iot.eclipse.org/member/litmus/</loc> <lastmod>2015-03-08T15:31:20-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/openhab/</loc> + <loc>http://iot.eclipse.org/member/openhab/</loc> <lastmod>2015-03-08T15:31:21-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/member/sierra/</loc> + <loc>http://iot.eclipse.org/member/sierra/</loc> <lastmod>2015-03-08T15:31:22-07:00</lastmod> </url> <url> - <loc>http://localhost:1313/events/2015-03-09-eclipsecon2015/</loc> + <loc>http://iot.eclipse.org/events/2015-03-09-eclipsecon2015/</loc> <lastmod>2015-03-09T00:00:00+00:00</lastmod> </url> <url> - <loc>http://localhost:1313/events/2015-03-18-eclipse-day-dresden/</loc> + <loc>http://iot.eclipse.org/events/2015-03-18-eclipse-day-dresden/</loc> <lastmod>2015-03-18T00:00:00+00:00</lastmod> </url> <url> - <loc>http://localhost:1313/news/2015-03-19-the-open-iot-challenge-project-are-way-cool/</loc> + <loc>http://iot.eclipse.org/news/2015-03-19-the-open-iot-challenge-project-are-way-cool/</loc> <lastmod>2015-03-19T00:00:00+00:00</lastmod> </url> <url> - <loc>http://localhost:1313/events/2015-03-23-iot-conference/</loc> + <loc>http://iot.eclipse.org/events/2015-03-23-iot-conference/</loc> <lastmod>2015-03-23T16:12:42+01:00</lastmod> </url> <url> - <loc>http://localhost:1313/resources/2014-03-24-java-tutorial/</loc> + <loc>http://iot.eclipse.org/resources/2014-03-24-java-tutorial/</loc> <lastmod>2015-03-24T15:54:26+01:00</lastmod> </url> <url> - <loc>http://localhost:1313/events/2015-05-06-iot-devcon/</loc> + <loc>http://iot.eclipse.org/events/2015-05-06-iot-devcon/</loc> <lastmod>2015-05-06T16:12:42+01:00</lastmod> </url> <url> - <loc>http://localhost:1313/events/2015-05-12-iot-world/</loc> + <loc>http://iot.eclipse.org/events/2015-05-12-iot-world/</loc> <lastmod>2015-05-12T16:12:42+01:00</lastmod> </url> <url> - <loc>http://localhost:1313/events/2015-06-23-solidcon/</loc> + <loc>http://iot.eclipse.org/events/2015-06-23-solidcon/</loc> <lastmod>2015-06-23T16:12:42+01:00</lastmod> </url> diff --git a/public/working-group/index.html b/public/working-group/index.html index 0241c43c88462ad5a330d383124f3acf1b650d34..fd8434a6a24224cd7b77a8a69bf2a07ccbd79d37 100644 --- a/public/working-group/index.html +++ b/public/working-group/index.html @@ -225,15 +225,15 @@ </div> </div> - <div class="row members-info" id="member-litmus"> + <div class="row members-info" id="member-m2m-alliance"> <div class="col-md-2 col-md-offset-1 mb-logo"> - <a href="http://eclipse.org/membership/showMember.php?member_id=1151"> - <img src="/images/ecosystem/logo-litmus.png" alt="Litmus Automation" class="img-responsive" /> + <a href="http://eclipse.org/membership/showMember.php?member_id=1101"> + <img src="/images/ecosystem/logo-m2m-alliance.png" alt="M2M Alliance" class="img-responsive" /> </a> </div> <div class="col-md-8 col-md-offset-1 mb-info"> <div class="mb-info-container"> - <h2>Litmus Automation </h2> + <h2>M2M Alliance </h2> </div> <div> @@ -242,15 +242,15 @@ </div> </div> - <div class="row members-info" id="member-m2m-alliance"> + <div class="row members-info" id="member-litmus"> <div class="col-md-2 col-md-offset-1 mb-logo"> - <a href="http://eclipse.org/membership/showMember.php?member_id=1101"> - <img src="/images/ecosystem/logo-m2m-alliance.png" alt="M2M Alliance" class="img-responsive" /> + <a href="http://eclipse.org/membership/showMember.php?member_id=1151"> + <img src="/images/ecosystem/logo-litmus.png" alt="Litmus Automation" class="img-responsive" /> </a> </div> <div class="col-md-8 col-md-offset-1 mb-info"> <div class="mb-info-container"> - <h2>M2M Alliance </h2> + <h2>Litmus Automation </h2> </div> <div> @@ -259,15 +259,15 @@ </div> </div> - <div class="row members-info" id="member-itemis"> + <div class="row members-info" id="member-laas"> <div class="col-md-2 col-md-offset-1 mb-logo"> - <a href="http://eclipse.org/membership/showMember.php?member_id=817"> - <img src="/images/ecosystem/logo-itemis.png" alt="itemis" class="img-responsive" /> + <a href="http://eclipse.org/membership/showMember.php?member_id=1108"> + <img src="/images/ecosystem/logo-laas.png" alt="LAAS-CNRS" class="img-responsive" /> </a> </div> <div class="col-md-8 col-md-offset-1 mb-info"> <div class="mb-info-container"> - <h2>itemis </h2> + <h2>LAAS-CNRS </h2> </div> <div> @@ -276,15 +276,15 @@ </div> </div> - <div class="row members-info" id="member-laas"> + <div class="row members-info" id="member-itemis"> <div class="col-md-2 col-md-offset-1 mb-logo"> - <a href="http://eclipse.org/membership/showMember.php?member_id=1108"> - <img src="/images/ecosystem/logo-laas.png" alt="LAAS-CNRS" class="img-responsive" /> + <a href="http://eclipse.org/membership/showMember.php?member_id=817"> + <img src="/images/ecosystem/logo-itemis.png" alt="itemis" class="img-responsive" /> </a> </div> <div class="col-md-8 col-md-offset-1 mb-info"> <div class="mb-info-container"> - <h2>LAAS-CNRS </h2> + <h2>itemis </h2> </div> <div> @@ -560,9 +560,6 @@ The ThingFabric platform has a unique protocol-agnostic architecture that enable $('#other-members').shuffle(); }); </script> -<script>document.write('<script src="http://' - + (location.host || 'localhost').split(':')[0] - + ':1313/livereload.js?mindelay=10"></' - + 'script>')</script></body> +</body> </html> diff --git a/public/working-group/index.xml b/public/working-group/index.xml index 50c84f692fd9f68ae9a82c4cda509e0add119563..ebf1dc9741ba57a9e6d03c669d30d3fbf5c0b0aa 100644 --- a/public/working-group/index.xml +++ b/public/working-group/index.xml @@ -2,17 +2,17 @@ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>Working-Groups on </title> - <link>http://localhost:1313/working-group/</link> + <link>http://iot.eclipse.org/working-group/</link> <description>Recent content in Working-Groups on </description> <generator>Hugo -- gohugo.io</generator> - <atom:link href="http://localhost:1313/working-group/index.xml" rel="self" type="application/rss+xml" /> + <atom:link href="http://iot.eclipse.org/working-group/index.xml" rel="self" type="application/rss+xml" /> <item> <title></title> - <link>http://localhost:1313/working-group/dummy/</link> + <link>http://iot.eclipse.org/working-group/dummy/</link> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> - <guid>http://localhost:1313/working-group/dummy/</guid> + <guid>http://iot.eclipse.org/working-group/dummy/</guid> <description></description> </item> diff --git a/static/assets/css/bootstrap.css b/static/assets/css/bootstrap.css index 5ed3f490c9412eb3c23813f2e431acde1dd33031..022107d118195ccd9fac4c896acb0a532c5f4aa6 100644 --- a/static/assets/css/bootstrap.css +++ b/static/assets/css/bootstrap.css @@ -4324,8 +4324,7 @@ main.main { background-image: url(../images/heading-latest_news-icon.png); } main.main section.second .latest-news .latest-news-item { border-bottom: 1px solid #c2c2c2; - padding-bottom: 10px; - margin-bottom: 20px; } + padding-bottom: 10px; } main.main section.second .latest-news .latest-news-item h3 { font-size: 18px; } main.main section.second .latest-news .latest-news-item p { @@ -4334,7 +4333,6 @@ main.main { color: #6eb553; font-size: 12px; } main.main section.second .latest-news .latest-news-item:last-of-type { - margin-bottom: 35px; border-bottom: 0px; } main.main section.second .featured-articles h2 { background-image: url(../images/heading-featured.png); } @@ -4457,6 +4455,8 @@ main.main { background-image: url(../images/heading-upcoming_events.png); } main.main .upcoming-events h2 span { background-image: url(../images/heading-upcoming_events-icon.png); } + main.main .upcoming-events .past { + opacity: 0.5; } main.main .upcoming-events .upcoming-events-item { text-align: center; color: whitesmoke; diff --git a/static/assets/stylesheets/theme/_main.scss b/static/assets/stylesheets/theme/_main.scss index 947f918e010e74d090291c2d865a63f5154fd84a..9d194f3182dc1bf281dbb355e859c0cb4c638726 100644 --- a/static/assets/stylesheets/theme/_main.scss +++ b/static/assets/stylesheets/theme/_main.scss @@ -119,7 +119,7 @@ main.main { .latest-news-item { border-bottom: 1px solid darken($white, 20%); padding-bottom: 10px; - margin-bottom: 20px; + // margin-bottom: 20px; h3 { font-size: 18px; } @@ -132,7 +132,7 @@ main.main { } } .latest-news-item:last-of-type { - margin-bottom: 35px; + // margin-bottom: 35px; border-bottom: 0px; } } @@ -313,12 +313,18 @@ main.main { // events page .upcoming-events { - h2 { + h2 { background-image: url(../images/heading-upcoming_events.png); span { background-image: url(../images/heading-upcoming_events-icon.png); } + } + + .past { + opacity: 0.5; + } + .upcoming-events-item { text-align: center; color: $white;