Skip to content

Commit

Permalink
chore: update GitHub repo link
Browse files Browse the repository at this point in the history
`wycats/handlebars.js` => `handlebars-lang/handlebars.js`
  • Loading branch information
ilharp authored and jaylinski committed Jul 25, 2023
1 parent e215ab2 commit 521bd2c
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions src/.vuepress/config-using-babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default {
"/contributing/": ["", "interactive-examples.md", "button-links.md"],
},
displayAllHeaders: false,
repo: "wycats/handlebars.js",
repo: "handlebars-lang/handlebars.js",
lastUpdated: "Last Updated",
editLinks: true,
editLinkText: "Propose a change to this page!",
Expand Down Expand Up @@ -86,15 +86,15 @@ export default {
"/zh/contributing/": ["", "interactive-examples.md", "button-links.md"],
},
displayAllHeaders: false,
repo: "wycats/handlebars.js",
repo: "handlebars-lang/handlebars.js",
lastUpdated: "最后更新",
editLinks: true,
editLinkText: "向这个页面提交更改!",
docsRepo: "handlebars-lang/docs",
docsDir: "src/zh",
},
},
repo: "wycats/handlebars.js",
repo: "handlebars-lang/handlebars.js",
docsRepo: "handlebars-lang/docs",
docsDir: "src",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ ${this.$props.urlForSharing}
# Question
`;
document.location.href = `https://github.com/wycats/handlebars.js/issues/new?body=${encodeURIComponent(issueBody)}`;
document.location.href = `https://github.com/handlebars-lang/handlebars.js/issues/new?body=${encodeURIComponent(issueBody)}`;
},
fileBug() {
const issueBody = `
Expand All @@ -76,7 +76,7 @@ ${this.$props.urlForSharing}
# Expected outcome
# Actual outcome`;
document.location.href = `https://github.com/wycats/handlebars.js/issues/new?body=${encodeURIComponent(issueBody)}`;
document.location.href = `https://github.com/handlebars-lang/handlebars.js/issues/new?body=${encodeURIComponent(issueBody)}`;
},
reportSecurityIssue() {
const body = `
Expand Down
2 changes: 1 addition & 1 deletion src/api-reference/runtime-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The function 'Handlebars.compile' and 'Handlebars.precompile' create a function.
execution.
- `allowCallsToHelperMissing` (since 4.3.0, insecure): If set to `true`, calls like `{{helperMissing}}` and
`{{blockHelperMissing}}` will be allowed. Please note that this allows template authors to fabricate templates for
Remote Code Execution on the environment running Handlebars (see https://github.com/wycats/handlebars.js/issues/1558)
Remote Code Execution on the environment running Handlebars (see https://github.com/handlebars-lang/handlebars.js/issues/1558)

:::

Expand Down
8 changes: 4 additions & 4 deletions src/contributing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
Handlebars is an open-source project. There is no _"documentation department"_ that keeps the docs up-to-date. This
documentation site requires your help to be a good and helpful site.

[Release notes](https://github.com/wycats/handlebars.js/blob/master/release-notes.md)<br>
[Issues with label 'docs-needed'](https://github.com/wycats/handlebars.js/issues?q=is%3Aopen+is%3Aissue+label%3Adocs-needed)<br>
[Release notes](https://github.com/handlebars-lang/handlebars.js/blob/master/release-notes.md)<br>
[Issues with label 'docs-needed'](https://github.com/handlebars-lang/handlebars.js/issues?q=is%3Aopen+is%3Aissue+label%3Adocs-needed)<br>
[The old Handlebars website](https://handlebars-archive.knappi.org)

The following sections should help you help us improve the documentation.
Expand Down Expand Up @@ -59,8 +59,8 @@ In addition to all those extensions, this site adds some custom Vue-components t
## What can I contribute?

- **Look for issues labeled as
[docs-needed](https://github.com/wycats/handlebars.js/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3Adocs-needed+) in the
[handlebars.js](https://github.com/wycats/handlebars.js)-repository.** Those are issues that describe something that
[docs-needed](https://github.com/handlebars-lang/handlebars.js/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3Adocs-needed+) in the
[handlebars.js](https://github.com/handlebars-lang/handlebars.js)-repository.** Those are issues that describe something that
should be documented.
- **Propose and submit new content.** If you are unsure about your proposal, you can create an issue before submitting a
pull-request. This might save you from wasting time.
Expand Down
2 changes: 1 addition & 1 deletion src/guide/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ helpers such as `{{#if}}` do not.

In this example all of the above reference the same prefix value even though they are located within different blocks.
This behavior is new as of Handlebars 4; the
[release notes](https://github.com/wycats/handlebars.js/blob/master/release-notes.md) discuss the prior behavior as well
[release notes](https://github.com/handlebars-lang/handlebars.js/blob/master/release-notes.md) discuss the prior behavior as well
as the migration plan. Handlebars also allows for name conflict resolution between helpers and data fields via a this
reference:

Expand Down
2 changes: 1 addition & 1 deletion src/zh/api-reference/runtime-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
- `allowCallsToHelperMissing` (从 4.3.0 开始, 不安全):如果设置为 `true`,类似 `{{helperMissing}}`
`{{blockHelperMissing}}` 的调用将会被允许。请注意,这允许模版作者假造模版并在运行 Handlebars 的环境下远程执行代码。(
https://github.com/wycats/handlebars.js/issues/1558)
https://github.com/handlebars-lang/handlebars.js/issues/1558)

:::

Expand Down
8 changes: 4 additions & 4 deletions src/zh/contributing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

Handlebars 是一个开源项目。没有 _“文档部门”_ 使文档保持最新。 Handlebars 文档站需要你的帮助才能变得更加优秀.

[发行说明](https://github.com/wycats/handlebars.js/blob/master/release-notes.md)<br>
[带有 'docs-needed' 标签的 Issues](https://github.com/wycats/handlebars.js/issues?q=is%3Aopen+is%3Aissue+label%3Adocs-needed)<br>
[发行说明](https://github.com/handlebars-lang/handlebars.js/blob/master/release-notes.md)<br>
[带有 'docs-needed' 标签的 Issues](https://github.com/handlebars-lang/handlebars.js/issues?q=is%3Aopen+is%3Aissue+label%3Adocs-needed)<br>
[Handlebars 网站(旧](https://handlebars-archive.knappi.org)

以下各节将帮助你帮助我们改进文档。
Expand Down Expand Up @@ -51,8 +51,8 @@ markdown。markdown-it 实现了 CommonMark 语法。

## 我能贡献什么?

- **[handlebars.js](https://github.com/wycats/handlebars.js) 存储库中寻找标记为
[docs-needed](https://github.com/wycats/handlebars.js/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3Adocs-needed+) 的内
- **[handlebars.js](https://github.com/handlebars-lang/handlebars.js) 存储库中寻找标记为
[docs-needed](https://github.com/handlebars-lang/handlebars.js/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3Adocs-needed+) 的内
**。这些 Issues 描述了一些应当出现在文档中的内容。
- **提出并提交新内容。** 如果不确定的话,可以先提出 Issue,然后再提交 Pull Requests。这样可以节省你的时间。
- **改善现有内容。** 你可以提出导航栏的改进建议,修正错别字,改善语言并纠正错误内容。
Expand Down
2 changes: 1 addition & 1 deletion src/zh/guide/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Handlebars 同时支持一个已弃用的 `/` 语法,因此你可以将上面
```

在此示例中,以上所有引用相同的前缀值,即使它们位于不同的块中也是如此。这样的行为是从 Handlebars 4 开始的,
[发行说明](https://github.com/wycats/handlebars.js/blob/master/release-notes.md) 也讨论了先前的行为作为迁移计划。
[发行说明](https://github.com/handlebars-lang/handlebars.js/blob/master/release-notes.md) 也讨论了先前的行为作为迁移计划。
Handlebars 还允许通过 this 来解决助手和数据字段之间的名称冲突。参考:

:::
Expand Down

0 comments on commit 521bd2c

Please sign in to comment.