This is an automated email from the ASF dual-hosted git repository.
hxd pushed a commit to branch site
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
The following commit(s) were added to refs/heads/site by this push:
new 3746070 correct basic info of the website metadata
3746070 is described below
commit 37460706966593d7be081816e2429fae6d947373
Author: xiangdong huang <[email protected]>
AuthorDate: Mon Mar 30 15:58:14 2020 +0800
correct basic info of the website metadata
---
site/src/main/.vuepress/components/Valine.vue | 55 ---------------------------
site/src/main/package.json | 22 ++++++-----
2 files changed, 12 insertions(+), 65 deletions(-)
diff --git a/site/src/main/.vuepress/components/Valine.vue
b/site/src/main/.vuepress/components/Valine.vue
deleted file mode 100644
index 5067388..0000000
--- a/site/src/main/.vuepress/components/Valine.vue
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
-* Licensed to the Apache Software Foundation (ASF) under one
-* or more contributor license agreements. See the NOTICE file
-* distributed with this work for additional information
-* regarding copyright ownership. The ASF licenses this file
-* to you under the Apache License, Version 2.0 (the
-* "License"); you may not use this file except in compliance
-* with the License. You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-<template>
- <div>
- <div id="vcomments"></div>
- </div>
-
-</template>
-
-<script>
-export default {
- name: 'Valine',
- mounted: function(){
- // require window
- const Valine = require('valine');
- if (typeof window !== 'undefined') {
- this.window = window
- window.AV = require('leancloud-storage')
-
- }
-
- new Valine({
- el: '#vcomments' ,
- appId: 'R1Qyeuv2BEooSWSVB2HmJyB7-gzGzoHsz',// your appId
- appKey: 'GGneEbK7wGIhef7CVnUScHH7', // your appKey
- notify:false,
- verify:false,
- avatar:'mm',
- placeholder: 'Please enter comments!' ,
- path:window.location.pathname,
- });
- },
-}
-</script>
-<style>
-#vcomments{
- margin-top:100px;
-}
-</style>
\ No newline at end of file
diff --git a/site/src/main/package.json b/site/src/main/package.json
index 1d3515d..f03e146 100644
--- a/site/src/main/package.json
+++ b/site/src/main/package.json
@@ -1,7 +1,7 @@
{
- "name": "IoTDB",
+ "name": "Apache IoTDB (incubating)",
"version": "1.0.0",
- "description": "Blogs built with vuepress",
+ "description": "Apache IoTDB (incubating) Website",
"main": "index.js",
"scripts": {
"dev": "vuepress dev src",
@@ -13,17 +13,19 @@
"url": ""
},
"keywords": [
- "JavaScript",
- "vue",
- "mkdown",
- "blog"
+ "IoTDB",
+ "Time Series Data",
+ "Database",
+ "NoSQL",
+ "TSDB",
+ "Time Series Database"
],
- "author": "IoTDB",
- "license": "ISC",
+ "author": "Apache IoTDB (incubating)",
+ "license": "Apache License 2.0",
"bugs": {
- "url": "https://github.com"
+ "url": "https://github.com/apache/incubator-iotdb"
},
- "homepage": "https://github.com/",
+ "homepage": "https://iotdb.apache.org",
"devDependencies": {
"gh-pages": "^2.0.1",
"vuepress": "^0.14.9"