You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2019/10/27 07:13:05 UTC

[incubator-iotdb-website] 03/03: Add disclaimer

This is an automated email from the ASF dual-hosted git repository.

hxd pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb-website.git

commit 2d9fe9d77debc58422c85a381f07de1e4ccd5bcf
Author: samperson1997 <sz...@mails.tsinghua.edu.cn>
AuthorDate: Sun Oct 27 14:39:31 2019 +0800

    Add disclaimer
---
 index.html                     | 21 +++++++++++++++++++--
 src/components/FooterFixed.vue | 34 ++++++++++++++++++++--------------
 2 files changed, 39 insertions(+), 16 deletions(-)

diff --git a/index.html b/index.html
index 6d1cb9f..9a6eeab 100644
--- a/index.html
+++ b/index.html
@@ -11,11 +11,15 @@
 <div id="app"></div>
 <!-- built files will be auto injected -->
 <noscript>
-  <div class="container" style="padding: 5% 20% 0 5%">
+  <div class="container" style="padding: 3% 20% 0 5%">
     <div class="row">
       <h2>Apache IoTDB (incubating) (Database for Internet of Things)</h2>
       <p>
-        Apache IoTDB (incubating) (Database for Internet of Things) is an integrated data management engine designed for timeseries data. It provides users with services for data collection, storage and analysis. Due to its light-weight architecture, high performance and rich feature set together with its deep integration with Apache Hadoop and Spark, Apache IoTDB (incubating) can meet the requirements of massive data storage, high-speed data ingestion and complex data analysis in the Io [...]
+        Apache IoTDB (incubating) (Database for Internet of Things) is an integrated data management engine designed for
+        timeseries data. It provides users with services for data collection, storage and analysis. Due to its
+        light-weight architecture, high performance and rich feature set together with its deep integration with Apache
+        Hadoop and Spark, Apache IoTDB (incubating) can meet the requirements of massive data storage, high-speed data
+        ingestion and complex data analysis in the IoT industrial fields.
       </p>
       <h2 class="download-title">Release Version</h2>
       <ul>
@@ -60,6 +64,19 @@
         <br>
         Please use a modern website to get the full version of the website.
       </p>
+      <p style="color: #AAA">
+        Disclaimer: Apache IoTDB (incubating) (Database for Internet of Things) is an effort undergoing incubation at
+        The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly
+        accepted projects until a further review indicates that the infrastructure, communications, and decision making
+        process have stabilized in a manner consistent with other successful ASF projects. While incubation status is
+        not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has
+        yet to be fully endorsed by the ASF.
+        <br>
+        <span style="font-weight: 500">
+        Copyright © 2019 The Apache Software Foundation. Apache and the Apache feather logo are trademarks of The Apache
+        Software Foundation
+        </span>
+      </p>
     </div>
   </div>
 </noscript>
diff --git a/src/components/FooterFixed.vue b/src/components/FooterFixed.vue
index 2c81726..6cd16fc 100644
--- a/src/components/FooterFixed.vue
+++ b/src/components/FooterFixed.vue
@@ -1,7 +1,12 @@
 <template>
   <footer class="footer">
     <div class="container">
-      <span>Copyright © 2019 The Apache Software Foundation. Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</span>
+      <p style="color: #AAA">
+        Disclaimer: Apache IoTDB (incubating) (Database for Internet of Things) is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the complet [...]
+      </p>
+      <p style="text-align: center">
+        Copyright © 2019 The Apache Software Foundation. Apache and the Apache feather logo are trademarks of The Apache Software Foundation
+      </p>
     </div>
   </footer>
 </template>
@@ -20,31 +25,32 @@
     position: absolute;
     bottom: 0;
     width: 100%;
-    padding-top: 10px;
-    padding-bottom: 10px;
-    text-align:center;
-    color:#fff;
-    background:#222222;
+    color: #fff;
+    background: #222222;
+    padding: 10px;
   }
-  @media (min-width: 992px){
+
+  @media (min-width: 992px) {
     body {
-      margin-bottom: 40px; /* Margin bottom by footer height */
+      margin-bottom: 140px; /* Margin bottom by footer height */
     }
   }
-  @media (min-width: 499px){
+
+  @media (min-width: 499px) {
     body {
-      margin-bottom: 60px; /* Margin bottom by footer height */
+      margin-bottom: 160px; /* Margin bottom by footer height */
     }
   }
-  @media (min-width: 355px){
+
+  @media (min-width: 355px) {
     body {
-      margin-bottom: 80px; /* Margin bottom by footer height */
+      margin-bottom: 180px; /* Margin bottom by footer height */
     }
   }
 
-  @media (min-width: 200px){
+  @media (min-width: 200px) {
     body {
-      margin-bottom: 120px; /* Margin bottom by footer height */
+      margin-bottom: 220px; /* Margin bottom by footer height */
     }
   }
 </style>