Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/vt/logz/logz_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func StartHTMLTable(w http.ResponseWriter) {
}
</style>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>

<script type="text/javascript">
$.fn.sortableByColumn = function() {
Expand Down
6 changes: 3 additions & 3 deletions go/vt/servenv/jquery.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package servenv

// JQueryIncludes is the include to use to be able to use jquery and jquery-ui
const JQueryIncludes = `
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
`
2 changes: 1 addition & 1 deletion go/vt/vtctl/vtctl.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ COMMAND ARGUMENT DEFINITIONS
of decimal numbers, each with optional fraction and a unit
suffix, such as "300ms" or "1h45m". See the definition of the
Go language's <a
href="http://golang.org/pkg/time/#ParseDuration">ParseDuration</a>
href="https://golang.org/pkg/time/#ParseDuration">ParseDuration</a>
function for more details. Note that, in practice, the value
should be a positively signed value.

Expand Down
6 changes: 3 additions & 3 deletions java/client/src/main/java/io/vitess/mysql/DateTime.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static Time parseTime(String value) throws ParseException {
* Parse a MySQL TIME format into a {@link Time} with the given {@link Calendar}.
*
* <p>The range for TIME values is '-838:59:59.000000' to '838:59:59.000000'
* <a href="http://dev.mysql.com/doc/refman/5.6/en/time.html">[1]</a>.
* <a href="https://dev.mysql.com/doc/refman/5.6/en/time.html">[1]</a>.
*
* <p>Note that this is meant to parse only valid values, assumed to be
* returned by MySQL. Results are undefined for invalid input.
Expand Down Expand Up @@ -178,7 +178,7 @@ public static String formatTime(Time value) {
* Format a {@link Time} as a MySQL TIME with the given {@link Calendar}.
*
* <p>The range for TIME values is '-838:59:59.000000' to '838:59:59.000000'
* <a href="http://dev.mysql.com/doc/refman/5.6/en/time.html">[1]</a>.
* <a href="https://dev.mysql.com/doc/refman/5.6/en/time.html">[1]</a>.
* We don't enforce that range, but we do print >24 hours rather than wrapping around to the next
* day.
*/
Expand Down Expand Up @@ -223,7 +223,7 @@ public static Timestamp parseTimestamp(String value) throws ParseException {
*
* <p>The format is 'YYYY-MM-DD HH:MM:SS[.fraction]' where the fraction
* can be up to 6 digits.
* <a href="http://dev.mysql.com/doc/refman/5.6/en/datetime.html">[1]</a>.
* <a href="https://dev.mysql.com/doc/refman/5.6/en/datetime.html">[1]</a>.
*
* <p>Note that this is meant to parse only valid values, assumed to be
* returned by MySQL. Results are undefined for invalid input.
Expand Down