Skip to content

Commit e3b3eef

Browse files
committed
Https migration
Https migration
1 parent ac9f3f7 commit e3b3eef

9 files changed

+20
-20
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Developer Tools
2-
Free Developer Tools Developed by Fromdev http://tools.fromdev.com/
2+
Free Developer Tools Developed by Fromdev https://tools.fromdev.com/
33

44
This is open source collection of developer tools that can be run on browser. The vision is to have a online tools website where all small tools can be present for developers or freelancers. Most of these tools are developed in JavaScript since we want them to run directly inside the browser.
55

@@ -22,7 +22,7 @@ I have two key things that keep me motivated and help these tool running.
2222
# How To Test Your Changes
2323
1. We use [Jasmine](https://jasmine.github.io/) for doing unit testing on any Javascript functions and utilities.
2424
2. Add test cases in project for every new code in JavaScript.
25-
3. Run [SpecRunner.html](http://tools.fromdev.com/test/SpecRunner.html) to see your tests passing.
25+
3. Run [SpecRunner.html](https://tools.fromdev.com/test/SpecRunner.html) to see your tests passing.
2626
4. Add a new Spec file in <code>test/spec</code> folder for any new JavaScript file you contribute.
2727

2828

_includes/header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<li><a class="buttons plain" href="https://fromdev.github.io/tools/meta-tag-generator.html">Meta Tags</a></li>
1414
<li><a class="buttons plain" href="https://fromdev.github.io/tools/secure-password-generator.html">Password Tool</a></li>
1515
<li><a class="buttons plain" href="https://fromdev.github.io/tools/memorable-secure-password-generator.html">Easy Password</a></li>
16-
<li><a class="buttons plain" href="http://tools.fromdev.com/jquery-quickstart-snippet.html">jQuery Grabber</a></li>
16+
<li><a class="buttons plain" href="https://tools.fromdev.com/jquery-quickstart-snippet.html">jQuery Grabber</a></li>
1717
</ul>
1818
<ul>
1919
<li><a class="buttons github" href="https://github.com/fromdev/tools">View On GitHub</a></li>

_includes/theme-bottom-js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
<script src="http://tools.fromdev.com/plugins/jQuery/jquery-2.2.3.min.js"></script>
2-
<script src="http://tools.fromdev.com/plugins/jQueryUI/jquery-ui.min.js"></script>
1+
<script src="https://tools.fromdev.com/plugins/jQuery/jquery-2.2.3.min.js"></script>
2+
<script src="https://tools.fromdev.com/plugins/jQueryUI/jquery-ui.min.js"></script>
33
<script>
44
$.widget.bridge('uibutton', $.ui.button);
55
</script>
66
<!-- Bootstrap 3.3.6 -->
7-
<script src="http://tools.fromdev.com/bootstrap/js/bootstrap.min.js"></script>
7+
<script src="https://tools.fromdev.com/bootstrap/js/bootstrap.min.js"></script>
88
<!-- SlimScroll -->
9-
<script src="http://tools.fromdev.com/plugins/slimScroll/jquery.slimscroll.min.js"></script>
9+
<script src="https://tools.fromdev.com/plugins/slimScroll/jquery.slimscroll.min.js"></script>
1010
<!-- FastClick -->
11-
<script src="http://tools.fromdev.com/plugins/fastclick/fastclick.min.js"></script>
11+
<script src="https://tools.fromdev.com/plugins/fastclick/fastclick.min.js"></script>
1212
<!-- AdminLTE App -->
13-
<script src="http://tools.fromdev.com/dist/js/app.min.js"></script>
13+
<script src="https://tools.fromdev.com/dist/js/app.min.js"></script>
1414
<script>
1515
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
1616
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),

_includes/theme-css

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!-- Bootstrap 3.3.6 -->
2-
<link rel="stylesheet" href="http://tools.fromdev.com/bootstrap/css/bootstrap.min.css">
2+
<link rel="stylesheet" href="https://tools.fromdev.com/bootstrap/css/bootstrap.min.css">
33
<!-- Font Awesome -->
44
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
55
<!-- Ionicons -->
66
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
77
<!-- Theme style -->
8-
<link rel="stylesheet" href="http://tools.fromdev.com/dist/css/AdminLTE.min.css">
9-
<link rel="stylesheet" href="http://tools.fromdev.com/dist/css/skins/skin-green.min.css">
8+
<link rel="stylesheet" href="https://tools.fromdev.com/dist/css/AdminLTE.min.css">
9+
<link rel="stylesheet" href="https://tools.fromdev.com/dist/css/skins/skin-green.min.css">

contact.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h3 class="text-green" id="success-messsage"></h3>
4040
<div class="form">
4141
<script type="text/javascript">
4242
var submitted = false;
43-
</script><iframe id="hidden_iframe" name="hidden_iframe" onload="if(submitted){window.location='http://tools.fromdev.com/contact.html?success=y';}" style="display: none;"></iframe>
43+
</script><iframe id="hidden_iframe" name="hidden_iframe" onload="if(submitted){window.location='https://tools.fromdev.com/contact.html?success=y';}" style="display: none;"></iframe>
4444
<form name="contact-form" action="https://docs.google.com/a/fromdev.com/forms/d/e/1FAIpQLSfSRWi5KNcNy7PbBL0NdYwjH2Aaq4p4vlYL5NIv5AzlxGlpig/formResponse" target="hidden_iframe" method="POST" id="mG61Hd" onsubmit="submitted=true;">
4545

4646
<p></p>

html-link-extractor.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ <h3 class="box-title">My HTML Document Has Duplicate Links. What Can You Do?</h3
165165
<script src="plugins/selectOnFocus/jquery.selectOnFocus.min.js"></script>
166166
<script src="javascripts/fromdev-utils.js"></script>
167167
<script>
168-
var baseUrl = 'http://tools.fromdev.com/';
168+
var baseUrl = 'https://tools.fromdev.com/';
169169
var cleanLinks = function(arr, originalText) {
170170
var cleanLinks = [];
171171
$.each(arr, function(i, el) {

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<html>
66

77
<head>
8-
<link rel="canonical" href="http://tools.fromdev.com">
8+
<link rel="canonical" href="https://tools.fromdev.com">
99
{% include common-meta %}
1010
{% feed_meta %}
1111
<title>{{ page.title }}</title>

javascript-escape-unescape.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ <h3 class="box-title">Is JavaScript String Escape Same As escape() function in J
184184
</div>
185185
<!-- /.box-header -->
186186
<div class="box-body">
187-
<p> The JavaScript <code>escape()</code> function is not same as JavaScript string literal escaping. The JavaScript <code>escape()</code> function is a deprecated (since JavaScript 1.5) function that was used for <a href="http://tools.fromdev.com/url-encode-decode.html" alt="URL Encoding and Decoding online" title="URL Encoding and Decoding online">URL encoding</a>. It is recommended to use <code>encodeURI()</code> instead. </p>
187+
<p> The JavaScript <code>escape()</code> function is not same as JavaScript string literal escaping. The JavaScript <code>escape()</code> function is a deprecated (since JavaScript 1.5) function that was used for <a href="https://tools.fromdev.com/url-encode-decode.html" alt="URL Encoding and Decoding online" title="URL Encoding and Decoding online">URL encoding</a>. It is recommended to use <code>encodeURI()</code> instead. </p>
188188
</div>
189189
<!-- /.box-body -->
190190
</div>

math/multiplication/levels/1.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ <h2 id="message"></h2>
103103
{% include theme-bottom-js %}
104104

105105
</body>
106-
<script type="text/javascript" src="http://tools.fromdev.com/javascripts/json2.js"></script>
107-
<script type="text/javascript" src="http://tools.fromdev.com/javascripts/fromdev-utils.js?v=2"></script>
108-
<script type="text/javascript" src="http://tools.fromdev.com/math/javascript/MultiplicationProblem.js?v=12"></script>
109-
<script type="text/javascript" src="http://tools.fromdev.com/math/javascript/Levels.js?v=30"></script>
106+
<script type="text/javascript" src="https://tools.fromdev.com/javascripts/json2.js"></script>
107+
<script type="text/javascript" src="https://tools.fromdev.com/javascripts/fromdev-utils.js?v=2"></script>
108+
<script type="text/javascript" src="https://tools.fromdev.com/math/javascript/MultiplicationProblem.js?v=12"></script>
109+
<script type="text/javascript" src="https://tools.fromdev.com/math/javascript/Levels.js?v=30"></script>
110110

111111
<script type="text/javascript">
112112
Array.prototype.last = function(x) { return this[this.length - Math.abs(x || 1)]; };

0 commit comments

Comments
 (0)