Skip to content

chore: update links (http=https) #12911

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 27, 2022
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 .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ Project maintainers have the right and responsibility to remove, edit, or reject

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.

This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
This Code of Conduct is adapted from the [Contributor Covenant](https://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Hi! I'm really excited that you are interested in contributing to Vue.js. Before

## Development Setup

You will need [Node.js](http://nodejs.org) **version 12+** and [pnpm](https://pnpm.io/).
You will need [Node.js](https://nodejs.org) **version 12+** and [pnpm](https://pnpm.io/).

After cloning the repo, run:

Expand Down
4 changes: 2 additions & 2 deletions examples/classic/todomvc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ <h1>todos</h1>
</section>
<footer class="info">
<p>Double-click to edit a todo</p>
<p>Written by <a href="http://evanyou.me">Evan You</a></p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
<p>Written by <a href="https://evanyou.me">Evan You</a></p>
<p>Part of <a href="https://todomvc.com">TodoMVC</a></p>
</footer>

<script>
Expand Down
4 changes: 2 additions & 2 deletions examples/classic/todomvc/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ Here are some links you may find helpful:

Get help from other Vue.js users:

* [Vue.js official forum](http://forum.vuejs.org)
* [Vue.js official forum](https://forum.vuejs.org)
* [Vue.js on Twitter](https://twitter.com/vuejs)
* [Vue.js on Gitter](https://gitter.im/vuejs/vue)

_If you have other helpful links to share, or find any of the links above no longer work, please [let us know](https://github.com/tastejs/todomvc/issues)._

## Credit

This TodoMVC application was created by [Evan You](http://evanyou.me).
This TodoMVC application was created by [Evan You](https://evanyou.me).
2 changes: 1 addition & 1 deletion src/compiler/parser/html-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export function parseHTML(html, options: HTMLParserOptions) {
}
}

// http://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment
// https://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment
if (conditionalComment.test(html)) {
const conditionalEnd = html.indexOf(']>')

Expand Down
2 changes: 1 addition & 1 deletion src/platforms/web/util/element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function isUnknownElement(tag: string): boolean {
}
const el = document.createElement(tag)
if (tag.indexOf('-') > -1) {
// http://stackoverflow.com/a/28210364/1070244
// https://stackoverflow.com/a/28210364/1070244
return (unknownElementCache[tag] =
el.constructor === window.HTMLUnknownElement ||
el.constructor === window.HTMLElement)
Expand Down