Skip to content

Commit 4438cdd

Browse files
committed
fix: Access Kendo Resources using https
1 parent 0686371 commit 4438cdd

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

Kendo-UI-Bootstrap-Integration/src/Kendo-UI-Bootstrap-Integration/Views/Home/Index.cshtml

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
children.Add().Text("Orders").Url("#orders");
2323
children.Add().Text("Gallery").Url("#gallery");
2424
children.Add().Text("FAQ").Url("#faq");
25-
children.Add().Text("Kendo UI demos").Url("http://demos.telerik.com/kendo-ui");
25+
children.Add().Text("Kendo UI demos").Url("https://demos.telerik.com/kendo-ui");
2626
}
2727
)
2828
)
@@ -407,7 +407,7 @@
407407
.ServerPaging(true)
408408
.ServerSorting(true)
409409
.ServerFiltering(true)
410-
.Transport(t => t.Read(r => r.Url("http://demos.telerik.com/kendo-ui/service/Northwind.svc/Orders")))
410+
.Transport(t => t.Read(r => r.Url("https://demos.telerik.com/kendo-ui/service/Northwind.svc/Orders")))
411411
)
412412

413413
)
@@ -430,7 +430,7 @@
430430
.Custom()
431431
.Transport(t => t
432432
.Read(r => r
433-
.Url("http://demos.telerik.com/kendo-ui/service/meetings")
433+
.Url("https://demos.telerik.com/kendo-ui/service/meetings")
434434
.DataType("jsonp"))
435435
)
436436
.Schema(schema => schema
@@ -554,15 +554,15 @@
554554
<div>
555555
<p>Kendo UI is a HTML5, jQuery-based framework for building modern HTML apps. Kendo UI combines the best of emerging HTML5, CSS3, and JavaScript technologies with robust, cross-browser techniques to deliver a framework that is both powerfully rich and broadly compatible with older browsers.</p>
556556
<p>Kendo UI combines everything that a developer needs to build a rich JavaScript app, eliminating the traditional challenge of manually researching and combining all of the needed plug-ins, frameworks, and libraries needed to build apps. Kendo UI includes rich UI controls for desktop, mobile and data vizualization, a JavaScript DataSource, fast Templates, cross-device Drag and Drop API, Globalization, Validation and MVVM framework extensions, and more.</p>
557-
<p><a href="http://www.telerik.com/download/kendo-ui-complete">Download Kendo UI</a> and experience the difference today</p>
557+
<p><a href="https://www.telerik.com/download/kendo-ui-complete">Download Kendo UI</a> and experience the difference today</p>
558558
</div></text>);
559559
panelbar.Add().Text("Who should use Kendo UI?")
560560
.Encoded(false)
561561
.Content(@<text>
562562
<div>
563563
<p>Kendo UI is a HTML5, jQuery-based framework for building modern HTML apps. Kendo UI combines the best of emerging HTML5, CSS3, and JavaScript technologies with robust, cross-browser techniques to deliver a framework that is both powerfully rich and broadly compatible with older browsers.</p>
564564
<p>Kendo UI combines everything that a developer needs to build a rich JavaScript app, eliminating the traditional challenge of manually researching and combining all of the needed plug-ins, frameworks, and libraries needed to build apps. Kendo UI includes rich UI controls for desktop, mobile and data vizualization, a JavaScript DataSource, fast Templates, cross-device Drag and Drop API, Globalization, Validation and MVVM framework extensions, and more.</p>
565-
<p><a href="http://www.telerik.com/download/kendo-ui-complete">Download Kendo UI</a> and experience the difference today</p>
565+
<p><a href="https://www.telerik.com/download/kendo-ui-complete">Download Kendo UI</a> and experience the difference today</p>
566566
</div></text>);
567567
panelbar.Add().Text("What are Kendo UI widgets?")
568568
.Encoded(false)
@@ -585,11 +585,11 @@
585585
.Content(@<text>
586586
<div>
587587
<p>Kendo UI is a pure JavaScript framework, so using Kendo UI is as simple as referencing JavaScript and CSS resources on your page. Once Kendo UI is configured on your page, the rich API gives you everything you need to initialize and configure an application.</p>
588-
<p>To learn more about using and installing Kendo UI, visit the Kendo UI&nbsp;<a href="http://demos.telerik.com/kendo-ui">online demos</a>.</p>
588+
<p>To learn more about using and installing Kendo UI, visit the Kendo UI&nbsp;<a href="https://demos.telerik.com/kendo-ui">online demos</a>.</p>
589589
</div></text>);
590590
}
591591
)
592592
)
593593
</section>
594-
<footer>Copyright &copy; 2013 <a href="http://telerik.com/">Telerik Inc</a>. All rights reserved.</footer>
594+
<footer>Copyright &copy; 2013 <a href="https://telerik.com/">Telerik Inc</a>. All rights reserved.</footer>
595595
</div>

Kendo-UI-Bootstrap-Integration/src/Kendo-UI-Bootstrap-Integration/Views/Shared/_Layout.cshtml

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<title>Kendo UI &hearts; Twitter Bootstrap: Responsive demo</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
66
<link href="~/css/bootstrap.min.css" rel="stylesheet" />
7-
<link rel="stylesheet" href="http://cdn.kendostatic.com/2016.2.714/styles/kendo.common-bootstrap.min.css" />
8-
<link rel="stylesheet" href="http://cdn.kendostatic.com/2016.2.714/styles/kendo.bootstrap.min.css" />
9-
<link rel="stylesheet" href="http://cdn.kendostatic.com/2016.2.714/styles/kendo.dataviz.min.css" />
10-
<link rel="stylesheet" href="http://cdn.kendostatic.com/2016.2.714/styles/kendo.dataviz.bootstrap.min.css" />
11-
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
12-
<script src="http://cdn.kendostatic.com/2016.2.714/js/kendo.all.min.js"></script>
13-
<script src="http://cdn.kendostatic.com/2016.2.714/js/kendo.timezones.min.js"></script>
14-
<script src="http://cdn.kendostatic.com/2016.2.714/js/kendo.aspnetmvc.min.js"></script>
7+
<link rel="stylesheet" href="https://cdn.kendostatic.com/2016.2.714/styles/kendo.common-bootstrap.min.css" />
8+
<link rel="stylesheet" href="https://cdn.kendostatic.com/2016.2.714/styles/kendo.bootstrap.min.css" />
9+
<link rel="stylesheet" href="https://cdn.kendostatic.com/2016.2.714/styles/kendo.dataviz.min.css" />
10+
<link rel="stylesheet" href="https://cdn.kendostatic.com/2016.2.714/styles/kendo.dataviz.bootstrap.min.css" />
11+
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
12+
<script src="https://cdn.kendostatic.com/2016.2.714/js/kendo.all.min.js"></script>
13+
<script src="https://cdn.kendostatic.com/2016.2.714/js/kendo.timezones.min.js"></script>
14+
<script src="https://cdn.kendostatic.com/2016.2.714/js/kendo.aspnetmvc.min.js"></script>
1515
<script src="~/js/theme-chooser.js"></script>
1616
<link rel="stylesheet" href="~/css/styles.css" />
1717
<!--[if lt IE 9]>

Kendo-UI-Bootstrap-Integration/src/Kendo-UI-Bootstrap-Integration/wwwroot/css/styles.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@font-face {
22
font-family: "Kendo UI";
3-
src: url("http://cdn.kendostatic.com/2013.3.1030/styles/images/kendoui.woff") format("woff"),
4-
url("http://cdn.kendostatic.com/2013.3.1030/styles/images/kendoui.ttf") format("truetype");
3+
src: url("https://cdn.kendostatic.com/2017.3.913/styles/images/kendoui.woff") format("woff"),
4+
url("https://cdn.kendostatic.com/2017.3.913/styles/images/kendoui.ttf") format("truetype");
55
}
66

77
body:before
@@ -111,7 +111,7 @@ header .k-dropdown-wrap .k-select {
111111
}
112112

113113
header .k-dropdown .k-i-arrow-s {
114-
background-image: url("http://cdn.kendostatic.com/2013.2.918/styles/Bootstrap/sprite.png");
114+
background-image: url("https://cdn.kendostatic.com/2017.3.913/styles/Bootstrap/sprite.png");
115115
background-position: -16px -32px;
116116
}
117117

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## ASP.NET Core with Twitter Bootstrap - Responsive demo
22

3-
This demo page shows how to use [UI for ASP.NET Core](http://www.telerik.com/aspnet-core-ui) alongside [Twitter Bootstrap](http://getbootstrap.com/).
3+
This demo page shows how to use [UI for ASP.NET Core](https://www.telerik.com/aspnet-core-ui) alongside [Twitter Bootstrap](https://getbootstrap.com/).
44

55
The grid layout and responsive CSS is provided by Bootstrap, and widgets are provided by Kendo UI. To see the responsive features, you can resize the page or customize it using the pickers on top.
66

0 commit comments

Comments
 (0)