Move to HTTPS

gh-pages
Christoph Oberhofer 10 years ago
parent 8a706d31c3
commit d3679430d7

@ -1,5 +1,6 @@
name: QuaggaJS name: QuaggaJS
markdown: kramdown markdown: kramdown
baseurl: /quaggaJS baseurl: /quaggaJS
url: https://serratus.github.io
exclude: [node_modules] exclude: [node_modules]

@ -11,6 +11,7 @@
<meta name="keywords" content="barcode, javascript, canvas, computer vision, image processing, ean, code128" /> <meta name="keywords" content="barcode, javascript, canvas, computer vision, image processing, ean, code128" />
<meta name="robots" content="index,follow" /> <meta name="robots" content="index,follow" />
<link rel="canonical" href="{{ site.url }}{{ page.url }}" />
<link rel="stylesheet" href="{{ site.baseurl }}/stylesheets/styles.css"> <link rel="stylesheet" href="{{ site.baseurl }}/stylesheets/styles.css">
<link rel="stylesheet" href="{{ site.baseurl }}/stylesheets/example.css"> <link rel="stylesheet" href="{{ site.baseurl }}/stylesheets/example.css">
<link rel="stylesheet" href="{{ site.baseurl }}/stylesheets/pygment_trac.css"> <link rel="stylesheet" href="{{ site.baseurl }}/stylesheets/pygment_trac.css">
@ -18,6 +19,12 @@
<!--[if lt IE 9]> <!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]--> <![endif]-->
<script>
var host = "{{ site.url }}";
if ((host == window.location.host) && (window.location.protocol != "https:")) {
window.location.protocol = "https";
}
</script>
<script> <script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),

@ -23,7 +23,7 @@ access to the user's camera stream. Although the code relies on heavy image-
processing even recent smartphones are capable of locating and decoding processing even recent smartphones are capable of locating and decoding
barcodes in real-time. barcodes in real-time.
Try some [examples](http://serratus.github.io/quaggaJS/examples) and check out Try some [examples](https://serratus.github.io/quaggaJS/examples) and check out
the blog post ([How barcode-localization works in QuaggaJS][oberhofer_co_how]) the blog post ([How barcode-localization works in QuaggaJS][oberhofer_co_how])
if you want to dive deeper into this topic. if you want to dive deeper into this topic.
@ -717,5 +717,5 @@ introduced to the API.
[upc_wiki]: http://en.wikipedia.org/wiki/Universal_Product_Code [upc_wiki]: http://en.wikipedia.org/wiki/Universal_Product_Code
[ean_8_wiki]: http://en.wikipedia.org/wiki/EAN-8 [ean_8_wiki]: http://en.wikipedia.org/wiki/EAN-8
[oberhofer_co_how]: http://www.oberhofer.co/how-barcode-localization-works-in-quaggajs/ [oberhofer_co_how]: http://www.oberhofer.co/how-barcode-localization-works-in-quaggajs/
[github_examples]: http://serratus.github.io/quaggaJS/examples [github_examples]: https://serratus.github.io/quaggaJS/examples
[i2of5_wiki]: https://en.wikipedia.org/wiki/Interleaved_2_of_5 [i2of5_wiki]: https://en.wikipedia.org/wiki/Interleaved_2_of_5

Loading…
Cancel
Save