added feedback note to all pages, css updates, page title updates
parent
ac84ef40d8
commit
ee1e3ba27e
|
@ -266,12 +266,13 @@
|
||||||
blockquote,
|
blockquote,
|
||||||
.note,
|
.note,
|
||||||
.warn,
|
.warn,
|
||||||
#enterprise-msg {
|
.enterprise-msg {
|
||||||
padding: 1.65rem 2rem .1rem 2rem;
|
padding: 1.65rem 2rem .1rem 2rem;
|
||||||
margin: 1rem 0 2rem;
|
margin: 1rem 0 2rem;
|
||||||
border-width: 0 0 0 4px;
|
border-width: 0 0 0 4px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-radius: 0 $border-radius $border-radius 0;
|
border-radius: 0 $border-radius $border-radius 0;
|
||||||
|
font-size: .95rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
|
@ -379,7 +380,7 @@
|
||||||
|
|
||||||
///////////////////////////////// Enterprise /////////////////////////////////
|
///////////////////////////////// Enterprise /////////////////////////////////
|
||||||
|
|
||||||
#enterprise-msg {
|
.enterprise-msg {
|
||||||
border-color: $article-enterprise-base;
|
border-color: $article-enterprise-base;
|
||||||
background: rgba($article-enterprise-base, .15);
|
background: rgba($article-enterprise-base, .15);
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
|
|
|
@ -15,11 +15,3 @@ InfluxDB is an open source time series database designed to handle high write an
|
||||||
This documentation is meant to help you learn how to use and leverage InfluxDB to meet your needs.
|
This documentation is meant to help you learn how to use and leverage InfluxDB to meet your needs.
|
||||||
Common use cases include infrastructure monitoring, IoT data collection, events handling and more.
|
Common use cases include infrastructure monitoring, IoT data collection, events handling and more.
|
||||||
If your use case involves time series data, InfluxDB is purpose-built to handle it.
|
If your use case involves time series data, InfluxDB is purpose-built to handle it.
|
||||||
|
|
||||||
{{% note %}}
|
|
||||||
This is an alpha release of InfluxDB v2.0.
|
|
||||||
Feedback and bug reports are welcome and encouraged both for InfluxDB and this documentation.
|
|
||||||
These are currently tracked in the InfluxData Community.
|
|
||||||
|
|
||||||
[Submit feedback](https://community.influxdata.com/c/influxdb2)
|
|
||||||
{{% /note %}}
|
|
||||||
|
|
|
@ -225,11 +225,3 @@ You are ready to [collect data](/v2.0/collect-data).
|
||||||
{{% /tab-content %}}
|
{{% /tab-content %}}
|
||||||
<!------------------------------- END UI Setup -------------------------------->
|
<!------------------------------- END UI Setup -------------------------------->
|
||||||
{{< /tabs-wrapper >}}
|
{{< /tabs-wrapper >}}
|
||||||
|
|
||||||
{{% note %}}
|
|
||||||
### Bug Reports and Feedback
|
|
||||||
Thank you for being willing to help test InfluxDB v2.0 alpha!
|
|
||||||
Feedback and bug reports are welcome and encouraged both for InfluxDB and this documentation.
|
|
||||||
|
|
||||||
[Submit feedback in the InfluxData Community](https://community.influxdata.com/c/influxdb2)
|
|
||||||
{{% /note %}}
|
|
||||||
|
|
|
@ -4,5 +4,6 @@
|
||||||
{{ partial "article/latest-version.html" . }}
|
{{ partial "article/latest-version.html" . }}
|
||||||
{{ partial "article/enterprise.html" . }}
|
{{ partial "article/enterprise.html" . }}
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
|
{{ partial "article/_alpha-feedback.html"}}
|
||||||
</article>
|
</article>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
<hr/>
|
||||||
|
<div class="note">
|
||||||
|
<h4>Bug Reports and Feedback</h4>
|
||||||
|
<p>
|
||||||
|
Thank you for being willing to help test InfluxDB v2.0 alpha!
|
||||||
|
Feedback and bug reports are welcome and encouraged both for InfluxDB and this documentation.
|
||||||
|
</p>
|
||||||
|
<p><a href="https://community.influxdata.com/c/influxdb2" target="_blank">Submit feedback in the InfluxData Community</a></p>
|
||||||
|
</div>
|
|
@ -1,13 +1,13 @@
|
||||||
{{ $enterpriseLink := "#"}}
|
{{ $enterpriseLink := "#"}}
|
||||||
{{ if ( $.Params.enterprise_all ) }}
|
{{ if ( $.Params.enterprise_all ) }}
|
||||||
<div id="enterprise-msg">
|
<div class="enterprise-msg">
|
||||||
<p>
|
<p>
|
||||||
The features and functionality discussed on this page are unique to the Enterprise edition of InfluxDB.
|
The features and functionality discussed on this page are unique to the Enterprise edition of InfluxDB.
|
||||||
<a href="{{ $enterpriseLink }}" target="_blank">Learn more about InfluxDB Enterprise</a>.
|
<a href="{{ $enterpriseLink }}" target="_blank">Learn more about InfluxDB Enterprise</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
{{ else if ( $.Params.enterprise_some ) }}
|
{{ else if ( $.Params.enterprise_some ) }}
|
||||||
<div id="enterprise-msg">
|
<div class="enterprise-msg">
|
||||||
<div>
|
<div>
|
||||||
<span class="enterprise-flag"></span>
|
<span class="enterprise-flag"></span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<meta name="description" content="{{ if .Description }}{{ .Description }}. {{ end }}">
|
<meta name="description" content="{{ if .Description }}{{ .Description }}. {{ end }}">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||||
<link rel="shortcut icon" href="/img/favicon.png" type="image/png">
|
<link rel="shortcut icon" href="/img/favicon.png" type="image/png">
|
||||||
<title>{{ if .Params.seotitle }} {{ print .Params.seotitle " | " }} {{ else if .Title }} {{ print .Title " | " }} {{ end }}InfluxData {{ if $currentVersion }}{{print $currentVersion " " }}{{ end }}Documentation</title>
|
<title>{{ if .Params.seotitle }} {{ print .Params.seotitle " | " }} {{ else if .Title }} {{ print .Title " | " }} {{ end }}InfluxDB {{ if $currentVersion }}{{print $currentVersion " " }}{{ end }}Documentation</title>
|
||||||
|
|
||||||
{{ partial "header/stylesheets.html" }}
|
{{ partial "header/stylesheets.html" }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue