mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
Fix url scheme (#2994)
This commit is contained in:
committed by
Arik Fraimovich
parent
719fc41dd1
commit
6e836795b2
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
@@ -8,7 +8,7 @@
|
||||
#
|
||||
#####################################################################
|
||||
|
||||
**Got an idea for a new feature?** Check if it isn't on the roadmap already: http://bit.ly/redash-roadmap and start a new discussion in the features category: https://discuss.redash.io/c/feature-requests 🌟.
|
||||
**Got an idea for a new feature?** Check if it isn't on the roadmap already: https://bit.ly/redash-roadmap and start a new discussion in the features category: https://discuss.redash.io/c/feature-requests 🌟.
|
||||
|
||||
Found a bug? Please fill out the sections below... thank you 👍
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ The following is a set of guidelines for contributing to Redash. These are guide
|
||||
- [Feature Roadmap](https://trello.com/b/b2LUHU7A/redash-roadmap)
|
||||
- [Feature Requests](https://discuss.redash.io/c/feature-requests)
|
||||
- [Documentation](https://redash.io/help/)
|
||||
- [Blog](http://blog.redash.io/)
|
||||
- [Blog](https://blog.redash.io/)
|
||||
- [Twitter](https://twitter.com/getredash)
|
||||
|
||||
---
|
||||
@@ -67,7 +67,7 @@ The project's documentation can be found at [https://redash.io/help/](https://re
|
||||
|
||||
### Release Method
|
||||
|
||||
We publish a stable release every ~2 months, although the goal is to get to a stable release every month. You can see the change log on [GitHub releases page](http://github.com/getredash/redash/releases).
|
||||
We publish a stable release every ~2 months, although the goal is to get to a stable release every month. You can see the change log on [GitHub releases page](https://github.com/getredash/redash/releases).
|
||||
|
||||
Every build of the master branch updates the latest *RC release*. These releases are usually stable, but might contain regressions and therefore recommended for "advanced users" only.
|
||||
|
||||
@@ -75,4 +75,4 @@ When we release a new stable release, we also update the *latest* Docker image t
|
||||
|
||||
## Code of Conduct
|
||||
|
||||
This project adheres to the Contributor Covenant [code of conduct](http://redash.io/community/code_of_conduct). By participating, you are expected to uphold this code. Please report unacceptable behavior to team@redash.io.
|
||||
This project adheres to the Contributor Covenant [code of conduct](https://redash.io/community/code_of_conduct). By participating, you are expected to uphold this code. Please report unacceptable behavior to team@redash.io.
|
||||
|
||||
@@ -16,7 +16,7 @@ Today **_Redash_** has support for querying multiple databases, including: Redsh
|
||||
|
||||
**_Redash_** consists of two parts:
|
||||
|
||||
1. **Query Editor**: think of [JS Fiddle](http://jsfiddle.net) for SQL queries. It's your way to share data in the organization in an open way, by sharing both the dataset and the query that generated it. This way everyone can peer review not only the resulting dataset but also the process that generated it. Also it's possible to fork it and generate new datasets and reach new insights.
|
||||
1. **Query Editor**: think of [JS Fiddle](https://jsfiddle.net) for SQL queries. It's your way to share data in the organization in an open way, by sharing both the dataset and the query that generated it. This way everyone can peer review not only the resulting dataset but also the process that generated it. Also it's possible to fork it and generate new datasets and reach new insights.
|
||||
2. **Visualizations and Dashboards**: once you have a dataset, you can create different visualizations out of it, and then combine several visualizations into a single dashboard. Currently Redash supports charts, pivot table, cohorts and [more](https://redash.io/help/user-guide/visualizations/visualization-types).
|
||||
|
||||
<img src="https://raw.githubusercontent.com/getredash/website/8e820cd02c73a8ddf4f946a9d293c54fd3fb08b9/website/_assets/images/redash-anim.gif" width="80%"/>
|
||||
|
||||
@@ -18,12 +18,12 @@ export function Footer({ clientConfig, currentUser }) {
|
||||
|
||||
return (
|
||||
<div id="footer">
|
||||
<a href="http://redash.io">Redash</a> {version}
|
||||
<a href="https://redash.io">Redash</a> {version}
|
||||
{newVersionString}
|
||||
•
|
||||
<a href="https://redash.io/help/">Documentation</a>
|
||||
•
|
||||
<a href="http://github.com/getredash/redash">Contribute</a>
|
||||
<a href="https://github.com/getredash/redash">Contribute</a>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ exports[`Footer renders 1`] = `
|
||||
id="footer"
|
||||
>
|
||||
<a
|
||||
href="http://redash.io"
|
||||
href="https://redash.io"
|
||||
>
|
||||
Redash
|
||||
</a>
|
||||
@@ -26,7 +26,7 @@ exports[`Footer renders 1`] = `
|
||||
</a>
|
||||
•
|
||||
<a
|
||||
href="http://github.com/getredash/redash"
|
||||
href="https://github.com/getredash/redash"
|
||||
>
|
||||
Contribute
|
||||
</a>
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
<div ng-if="$ctrl.loaded && $ctrl.showEmptyState" class="col-md-9 list-content">
|
||||
<div ng-if="($ctrl.currentPage == 'all') && ($ctrl.searchText.length == 0 || $ctrl.searchText === undefined)">
|
||||
<empty-state icon="zmdi zmdi-view-quilt" description="See the big picture" show-dashboard-step="true" illustration="dashboard"
|
||||
help-link="http://help.redash.io/category/22-dashboards"></empty-state>
|
||||
help-link="https://help.redash.io/category/22-dashboards"></empty-state>
|
||||
</div>
|
||||
|
||||
<big-message ng-if="($ctrl.currentPage == 'favorites') && ($ctrl.searchTerm === undefined || $ctrl.searchTerm.length == 0) && $ctrl.selectedTags.size === 0"
|
||||
|
||||
@@ -23,5 +23,5 @@
|
||||
<div class="text-center">
|
||||
<a href="https://redash.io"><img ng-src="{{$ctrl.logoUrl}}" width="38"/></a>
|
||||
</div>
|
||||
Powered by <a href="http://redash.io/?ref=public-dashboard">Redash</a>
|
||||
Powered by <a href="https://redash.io/?ref=public-dashboard">Redash</a>
|
||||
</div>
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
<div ng-if="$ctrl.loaded && $ctrl.showEmptyState" class="col-md-9 list-content">
|
||||
<div ng-switch="$ctrl.emptyType">
|
||||
<div ng-switch-when="default">
|
||||
<empty-state icon="fa fa-code" illustration="query" description="Getting the data from your datasources." help-link="http://help.redash.io/category/21-querying"></empty-state>
|
||||
<empty-state icon="fa fa-code" illustration="query" description="Getting the data from your datasources." help-link="https://help.redash.io/category/21-querying"></empty-state>
|
||||
</div>
|
||||
|
||||
<div ng-switch-when="my" class="tiled bg-white p-15">
|
||||
|
||||
@@ -349,7 +349,7 @@
|
||||
<div class="form-group">
|
||||
<label for="chart-editor-datetime-format">
|
||||
Date/Time Values Format
|
||||
<span class="m-l-5" uib-popover-html="'Format <a href="http://momentjs.com/docs/#/displaying/format/" target="_blank">specs.</a>'"
|
||||
<span class="m-l-5" uib-popover-html="'Format <a href="https://momentjs.com/docs/#/displaying/format/" target="_blank">specs.</a>'"
|
||||
popover-trigger="'click outsideClick'">
|
||||
<i class="fa fa-question-circle"></i>
|
||||
</span>
|
||||
|
||||
@@ -38,7 +38,7 @@ function mapRenderer() {
|
||||
const mapControls = L.control.layers().addTo(map);
|
||||
const layers = {};
|
||||
const tileLayer = L.tileLayer('//{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors',
|
||||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
|
||||
}).addTo(map);
|
||||
|
||||
function getBounds() {
|
||||
|
||||
@@ -78,7 +78,7 @@
|
||||
<label for="table-editor-{{ column.name }}-datetime-format">
|
||||
Date/Time format
|
||||
<span class="m-l-5"
|
||||
uib-popover-html="'Format <a href="http://momentjs.com/docs/#/displaying/format/" target="_blank">specs.</a>'"
|
||||
uib-popover-html="'Format <a href="https://momentjs.com/docs/#/displaying/format/" target="_blank">specs.</a>'"
|
||||
popover-trigger="'click outsideClick'"><i class="fa fa-question-circle"></i></span>
|
||||
</label>
|
||||
<input class="form-control" ng-model="column.dateTimeFormat" ng-model-options="{ allowInvalid: true, debounce: 200 }"
|
||||
|
||||
@@ -119,7 +119,7 @@ def sp_initiated(org_slug=None):
|
||||
|
||||
# NOTE:
|
||||
# I realize I _technically_ don't need to set Cache-Control or Pragma:
|
||||
# http://stackoverflow.com/a/5494469
|
||||
# https://stackoverflow.com/a/5494469
|
||||
# However, Section 3.2.3.2 of the SAML spec suggests they are set:
|
||||
# http://docs.oasis-open.org/security/saml/v2.0/saml-bindings-2.0-os.pdf
|
||||
# We set those headers here as a "belt and suspenders" approach,
|
||||
|
||||
@@ -239,9 +239,9 @@ class Redshift(PostgreSQL):
|
||||
|
||||
def _get_tables(self, schema):
|
||||
# Use svv_columns to include internal & external (Spectrum) tables and views data for Redshift
|
||||
# http://docs.aws.amazon.com/redshift/latest/dg/r_SVV_COLUMNS.html
|
||||
# https://docs.aws.amazon.com/redshift/latest/dg/r_SVV_COLUMNS.html
|
||||
# Use PG_GET_LATE_BINDING_VIEW_COLS to include schema for late binding views data for Redshift
|
||||
# http://docs.aws.amazon.com/redshift/latest/dg/PG_GET_LATE_BINDING_VIEW_COLS.html
|
||||
# https://docs.aws.amazon.com/redshift/latest/dg/PG_GET_LATE_BINDING_VIEW_COLS.html
|
||||
query = """
|
||||
WITH tables AS (
|
||||
SELECT DISTINCT table_name,
|
||||
|
||||
@@ -212,7 +212,7 @@ DESTINATIONS = distinct(enabled_destinations + additional_destinations)
|
||||
|
||||
EVENT_REPORTING_WEBHOOKS = array_from_string(os.environ.get("REDASH_EVENT_REPORTING_WEBHOOKS", ""))
|
||||
|
||||
# Support for Sentry (http://getsentry.com/). Just set your Sentry DSN to enable it:
|
||||
# Support for Sentry (https://getsentry.com/). Just set your Sentry DSN to enable it:
|
||||
SENTRY_DSN = os.environ.get("REDASH_SENTRY_DSN", "")
|
||||
|
||||
# Client side toggles:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<footer id="footer">
|
||||
<a href="http://redash.io">Redash</a> <span ng-bind="version"></span> <small ng-if="newVersionAvailable" ng-cloak class="ng-cloak"><a href="http://version.redash.io/">(New Redash version available)</a></small>
|
||||
<a href="https://redash.io">Redash</a> <span ng-bind="version"></span> <small ng-if="newVersionAvailable" ng-cloak class="ng-cloak"><a href="https://version.redash.io/">(New Redash version available)</a></small>
|
||||
•
|
||||
<a href="https://redash.io/help/">Documentation</a>
|
||||
•
|
||||
<a href="http://github.com/getredash/redash">Contribute</a>
|
||||
<a href="https://github.com/getredash/redash">Contribute</a>
|
||||
</footer>
|
||||
|
||||
Reference in New Issue
Block a user