]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Use HTTPS in documentation links where possible (#5915)
authorBen McCann <322311+benmccann@users.noreply.github.com>
Sat, 15 Dec 2018 10:28:17 +0000 (02:28 -0800)
committerSimon Brunel <simonbrunel@users.noreply.github.com>
Sat, 15 Dec 2018 10:28:17 +0000 (11:28 +0100)
docs/README.md
docs/axes/cartesian/time.md
docs/charts/line.md
docs/configuration/tooltip.md
docs/developers/README.md
docs/developers/contributing.md
docs/getting-started/installation.md
docs/notes/license.md

index 7cf993d3c9fe63ff3a238e5ff1da0872524a3c7f..fe0b60c5342a7670efc283b7c80047dd9558bcc3 100644 (file)
@@ -58,8 +58,8 @@ var myChart = new Chart(ctx, {
 
 Before submitting an issue or a pull request to the project, please take a moment to look over the [contributing guidelines](https://github.com/chartjs/Chart.js/blob/master/docs/developers/contributing.md) first.
 
-For support using Chart.js, please post questions with the [`chartjs` tag on Stack Overflow](http://stackoverflow.com/questions/tagged/chartjs).
+For support using Chart.js, please post questions with the [`chartjs` tag on Stack Overflow](https://stackoverflow.com/questions/tagged/chartjs).
 
 ## License
 
-Chart.js is available under the [MIT license](http://opensource.org/licenses/MIT).
+Chart.js is available under the [MIT license](https://opensource.org/licenses/MIT).
index 4f76750a4537f4c5bb7c79076a413f90d6510e92..db03a5639c185bef7bd06ffeac5768165c4a4d28 100644 (file)
@@ -19,7 +19,7 @@ The x-axis data points may additionally be specified via the `t` or `x` attribut
 
 ### Date Formats
 
-When providing data for the time scale, Chart.js supports all of the formats that Moment.js accepts. See [Moment.js docs](http://momentjs.com/docs/#/parsing/) for details.
+When providing data for the time scale, Chart.js supports all of the formats that Moment.js accepts. See [Moment.js docs](https://momentjs.com/docs/#/parsing/) for details.
 
 ## Configuration Options
 
@@ -75,7 +75,7 @@ var chart = new Chart(ctx, {
 ```
 
 ### Display Formats
-The following display formats are used to configure how different time units are formed into strings for the axis tick marks. See [moment.js](http://momentjs.com/docs/#/displaying/format/) for the allowable format strings.
+The following display formats are used to configure how different time units are formed into strings for the axis tick marks. See [moment.js](https://momentjs.com/docs/#/displaying/format/) for the allowable format strings.
 
 Name | Default | Example
 --- | --- | ---
index 8dad5efd011d20077ca0adbb456cc176352283d7..b2922afe7bf2c81a034af01b4e2a43dc1517041b 100644 (file)
@@ -162,7 +162,7 @@ When charting a lot of data, the chart render time may start to get quite large.
 
 Decimating your data will achieve the best results. When there is a lot of data to display on the graph, it doesn't make sense to show tens of thousands of data points on a graph that is only a few hundred pixels wide.
 
-There are many approaches to data decimation and selection of an algorithm will depend on your data and the results you want to achieve. For instance, [min/max](http://digital.ni.com/public.nsf/allkb/F694FFEEA0ACF282862576020075F784) decimation will preserve peaks in your data but could require up to 4 points for each pixel. This type of decimation would work well for a very noisy signal where you need to see data peaks.
+There are many approaches to data decimation and selection of an algorithm will depend on your data and the results you want to achieve. For instance, [min/max](https://digital.ni.com/public.nsf/allkb/F694FFEEA0ACF282862576020075F784) decimation will preserve peaks in your data but could require up to 4 points for each pixel. This type of decimation would work well for a very noisy signal where you need to see data peaks.
 
 ## Disable Bezier Curves
 
index 9fbc4ed00a7665e418bb4dff37e50f8d0960b39b..891d6e1e63295b81e716f0174180574e5f0d9e4e 100644 (file)
@@ -269,7 +269,7 @@ var myPieChart = new Chart(ctx, {
 });
 ```
 
-See [samples](http://www.chartjs.org/samples/) for examples on how to get started with custom tooltips.
+See [samples](https://www.chartjs.org/samples/) for examples on how to get started with custom tooltips.
 
 ## Tooltip Model
 The tooltip model contains parameters that can be used to render the tooltip.
index 3826230a6995d0ba8032cbb36315e34999b8c81d..98c7aa5ff238d060bedf3e11150c50f79f386e9c 100644 (file)
@@ -6,15 +6,15 @@ Developer features allow extending and enhancing Chart.js in many different ways
 
 Latest documentation and samples, including unreleased features, are available at:
 
- - http://www.chartjs.org/docs/master/
- - http://www.chartjs.org/samples/master/
+ - https://www.chartjs.org/docs/master/
+ - https://www.chartjs.org/samples/master/
 
 # Development releases
 
 Latest builds are available for testing at:
 
- - http://www.chartjs.org/dist/master/Chart.min.js
- - http://www.chartjs.org/dist/master/Chart.bundle.min.js
+ - https://www.chartjs.org/dist/master/Chart.min.js
+ - https://www.chartjs.org/dist/master/Chart.bundle.min.js
 
 > Note: Development builds are currently only available via HTTP, so in order to include them in [JSFiddle](http://jsfiddle.net) or [CodePen](http://codepen.io), you need to access these tools via HTTP as well.
 
@@ -29,7 +29,7 @@ Chart.js offers support for the following browsers:
 * Edge 14+
 * Safari 9+
 
-Browser support for the canvas element is available in all modern & major mobile browsers. [CanIUse](http://caniuse.com/#feat=canvas)
+Browser support for the canvas element is available in all modern & major mobile browsers. [CanIUse](https://caniuse.com/#feat=canvas)
 
 Thanks to [BrowserStack](https://browserstack.com) for allowing our team to test on thousands of browsers.
 
@@ -39,7 +39,7 @@ Version 2 has a completely different API than earlier versions.
 
 Most earlier version options have current equivalents or are the same.
 
-Please use the documentation that is available on [chartjs.org](http://www.chartjs.org/docs/) for the current version of Chart.js.
+Please use the documentation that is available on [chartjs.org](https://www.chartjs.org/docs/) for the current version of Chart.js.
 
 Please note - documentation for previous versions are available on the GitHub repo.
 
index f15e283f76cbf498b8a8ae106f8df2243119068f..13f8e4429c6e421330bdb67ff493edc586fec79e 100644 (file)
@@ -16,7 +16,7 @@ New contributions to the library are welcome, but we ask that you please follow
 
 # Building and Testing
 
-Chart.js uses <a href="http://gulpjs.com/" target="_blank">gulp</a> to build the library into a single JavaScript file.
+Chart.js uses <a href="https://gulpjs.com/" target="_blank">gulp</a> to build the library into a single JavaScript file.
 
 Firstly, we need to ensure development dependencies are installed. With node and npm installed, after cloning the Chart.js repo to a local directory, and navigating to that directory in the command line, we can run the following:
 
@@ -25,7 +25,7 @@ Firstly, we need to ensure development dependencies are installed. With node and
 > npm install -g gulp
 ```
 
-This will install the local development dependencies for Chart.js, along with a CLI for the JavaScript task runner <a href="http://gulpjs.com/" target="_blank">gulp</a>.
+This will install the local development dependencies for Chart.js, along with a CLI for the JavaScript task runner <a href="https://gulpjs.com/" target="_blank">gulp</a>.
 
 The following commands are now available from the repository root:
 
@@ -45,7 +45,7 @@ More information can be found in [gulpfile.js](https://github.com/chartjs/Chart.
 
 # Bugs and Issues
 
-Please report these on the GitHub page - at <a href="https://github.com/chartjs/Chart.js" target="_blank">github.com/chartjs/Chart.js</a>. Please do not use issues for support requests. For help using Chart.js, please take a look at the [`chartjs`](http://stackoverflow.com/questions/tagged/chartjs) tag on Stack Overflow.
+Please report these on the GitHub page - at <a href="https://github.com/chartjs/Chart.js" target="_blank">github.com/chartjs/Chart.js</a>. Please do not use issues for support requests. For help using Chart.js, please take a look at the [`chartjs`](https://stackoverflow.com/questions/tagged/chartjs) tag on Stack Overflow.
 
 Well structured, detailed bug reports are hugely valuable for the project.
 
@@ -53,6 +53,6 @@ Guidelines for reporting bugs:
 
  - Check the issue search to see if it has already been reported
  - Isolate the problem to a simple test case
- - Please include a demonstration of the bug on a website such as [JS Bin](http://jsbin.com/), [JS Fiddle](http://jsfiddle.net/), or [Codepen](http://codepen.io/pen/). ([Template](http://codepen.io/pen?template=JXVYzq))
+ - Please include a demonstration of the bug on a website such as [JS Bin](https://jsbin.com/), [JS Fiddle](https://jsfiddle.net/), or [Codepen](https://codepen.io/pen/). ([Template](https://codepen.io/pen?template=JXVYzq))
 
 Please provide any additional details associated with the bug, if it's browser or screen density specific, or only happens with a certain configuration or data.
index 00b19b059e4956a4e17f409b4850d54c36a94496..ea9daea23508102fc0ca96714723c577b5c7392b 100644 (file)
@@ -27,7 +27,7 @@ https://cdnjs.com/libraries/Chart.js
 ### jsDelivr
 [![jsdelivr](https://img.shields.io/npm/v/chart.js.svg?label=jsdelivr&style=flat-square&maxAge=600)](https://cdn.jsdelivr.net/npm/chart.js@latest/dist/) [![jsdelivr hits](https://data.jsdelivr.com/v1/package/npm/chart.js/badge)](https://www.jsdelivr.com/package/npm/chart.js)
 
-Chart.js built files are also available through [jsDelivr](http://www.jsdelivr.com/):
+Chart.js built files are also available through [jsDelivr](https://www.jsdelivr.com/):
 
 https://www.jsdelivr.com/package/npm/chart.js?path=dist
 
@@ -47,7 +47,7 @@ Files:
 * `dist/Chart.js`
 * `dist/Chart.min.js`
 
-The stand-alone build includes Chart.js as well as the color parsing library. If this version is used, you are required to include [Moment.js](http://momentjs.com/) before Chart.js for the functionality of the time axis.
+The stand-alone build includes Chart.js as well as the color parsing library. If this version is used, you are required to include [Moment.js](https://momentjs.com/) before Chart.js for the functionality of the time axis.
 
 ## Bundled Build
 Files:
index b933686df5495b0d676ae9f453b0842c75e02724..01a0a1da561716daffe6e7e337b18389a78ecd26 100644 (file)
@@ -1,3 +1,3 @@
 # License
 
-Chart.js is <a href="https://github.com/chartjs/Chart.js" target="_blank">open source</a> and available under the <a href="http://opensource.org/licenses/MIT" target="_blank">MIT license</a>.
\ No newline at end of file
+Chart.js is <a href="https://github.com/chartjs/Chart.js" target="_blank">open source</a> and available under the <a href="https://opensource.org/licenses/MIT" target="_blank">MIT license</a>.
\ No newline at end of file