Skip to content

Commit 5761ba9

Browse files
Change links to new location (#86)
* Migrate to swiftlang repo This fixes some 404s and dead links * Delete .vscode/launch.json
1 parent 8950edf commit 5761ba9

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

.github/ISSUE_TEMPLATE/BUG_REPORT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ the behavior was correct in addition to your current version.
2222

2323
### Checklist
2424
- [ ] If possible, I've reproduced the issue using the `main` branch of this package.
25-
- [ ] This issue hasn't been addressed in an [existing GitHub issue](https://github.com/apple/swift-docc-plugin/issues).
25+
- [ ] This issue hasn't been addressed in an [existing GitHub issue](https://github.com/swiftlang/swift-docc-plugin/issues).
2626

2727
### Expected behavior
2828
Describe what you expected to happen.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ contact_links:
1717
url: https://forums.swift.org/c/development/swift-docc
1818
about: Ask and answer questions about Swift-DocC
1919
- name: Documentation
20-
url: https://apple.github.io/swift-docc-plugin/documentation/swiftdoccplugin/
20+
url: https://swiftlang.github.io/swift-docc-plugin/documentation/swiftdoccplugin/
2121
about: Read about how to use the Swift-DocC Plugin in your projects

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ from the community.
3535
### Contributing Code and Documentation
3636

3737
Before contributing code or documentation to the Swift-DocC plugin,
38-
we encourage you to first open a [GitHub issue](https://github.com/apple/swift-docc-plugin/issues/new/choose).
38+
we encourage you to first open a [GitHub issue](https://github.com/swiftlang/swift-docc-plugin/issues/new/choose).
3939
This will allow us to provide feedback on the proposed change.
4040
However, this is not a requirement. If your contribution is small in scope,
4141
feel free to open a PR without first creating an issue.
@@ -63,7 +63,7 @@ on [Swift.org](https://www.swift.org/download/#snapshots).
6363
1. Checkout this repository using:
6464

6565
```bash
66-
git clone [email protected]:apple/swift-docc-plugin.git
66+
git clone [email protected]:swiftlang/swift-docc-plugin.git
6767
```
6868

6969
2. Navigate to the root of your cloned repository with:

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ let package = Package(
2121
.plugin(name: "Swift-DocC Preview", targets: ["Swift-DocC Preview"]),
2222
],
2323
dependencies: [
24-
.package(url: "https://github.com/apple/swift-docc-symbolkit", from: "1.0.0"),
24+
.package(url: "https://github.com/swiftlang/swift-docc-symbolkit", from: "1.0.0"),
2525
],
2626
targets: [
2727
.plugin(

Plugins/SharedPackagePluginExtensions/PackageManager+getSymbolGraphsForDocC.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ extension PackageManager {
6464
case .skipSynthesizedSymbols:
6565
symbolGraphOptions.includeSynthesized = false
6666
default:
67-
fatalError("error: unknown PluginFlag (\(customSymbolGraphOption.parsedValues.joined(separator: ", "))) detected in symbol graph generation - please create an issue at https://github.com/apple/swift-docc-plugin")
67+
fatalError("error: unknown PluginFlag (\(customSymbolGraphOption.parsedValues.joined(separator: ", "))) detected in symbol graph generation - please create an issue at https://github.com/swiftlang/swift-docc-plugin")
6868
}
6969
}
7070

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ documentation for SwiftPM libraries and executables.
66
## Usage
77

88
Please see
9-
[the plugin's documentation](https://apple.github.io/swift-docc-plugin/documentation/swiftdoccplugin/)
9+
[the plugin's documentation](https://swiftlang.github.io/swift-docc-plugin/documentation/swiftdoccplugin/)
1010
for more detailed usage instructions.
1111

1212
### Adding the Swift-DocC Plugin as a Dependency
@@ -18,7 +18,7 @@ let package = Package(
1818
// name, platforms, products, etc.
1919
dependencies: [
2020
// other dependencies
21-
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.1.0"),
21+
.package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.1.0"),
2222
],
2323
targets: [
2424
// targets
@@ -84,16 +84,16 @@ swift package --disable-sandbox preview-documentation --product OtherFramework
8484

8585
For details on how to best build documentation for hosting online and a specific
8686
tutorial for publishing to GitHub Pages, please see
87-
[the plugin's documentation](https://apple.github.io/swift-docc-plugin/documentation/swiftdoccplugin/).
87+
[the plugin's documentation](https://swiftlang.github.io/swift-docc-plugin/documentation/swiftdoccplugin/).
8888

8989
## Bug Reports and Feature Requests
9090

9191
### Submitting a Bug Report
9292

9393
The Swift-DocC plugin tracks all bug reports with
94-
[GitHub Issues](https://github.com/apple/swift-docc-plugin/issues).
94+
[GitHub Issues](https://github.com/swiftlang/swift-docc-plugin/issues).
9595
When you submit a bug report we ask that you follow the
96-
[provided template](https://github.com/apple/swift-docc-plugin/issues/new?template=BUG_REPORT.md)
96+
[provided template](https://github.com/swiftlang/swift-docc-plugin/issues/new?template=BUG_REPORT.md)
9797
and provide as many details as possible.
9898

9999
If you can confirm that the bug occurs when using the latest commit of the Swift-DocC plugin
@@ -102,7 +102,7 @@ from the `main` branch, that will help us track down the bug faster.
102102
### Submitting a Feature Request
103103

104104
For feature requests, please feel free to file a
105-
[GitHub issue](https://github.com/apple/swift-docc-plugin/issues/new?template=FEATURE_REQUEST.md)
105+
[GitHub issue](https://github.com/swiftlang/swift-docc-plugin/issues/new?template=FEATURE_REQUEST.md)
106106
or start a discussion on the [Swift Forums](https://forums.swift.org/c/development/swift-docc).
107107

108108
Don't hesitate to submit a feature request if you see a way

Sources/SwiftDocCPluginDocumentation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
user-facing documentation about using the Swift-DocC plugin from the command-line.
55

66
The documentation content in the `SwiftDocCPlugin.docc` catalog is published on GitHub pages
7-
at https://apple.github.io/swift-docc-plugin/documentation/swiftdoccplugin via the
7+
at https://swiftlang.github.io/swift-docc-plugin/documentation/swiftdoccplugin via the
88
[`bin/update-gh-pages-documentation-site`](../../bin/update-gh-pages-documentation-site)
99
script in this repository.
1010

Sources/SwiftDocCPluginDocumentation/SwiftDocCPlugin.docc/SwiftDocCPlugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let package = Package(
1818
// name, platforms, products, etc.
1919
dependencies: [
2020
// other dependencies
21-
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
21+
.package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.0.0"),
2222
],
2323
targets: [
2424
// targets

bin/test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ then
2828
SWIFT_DOCC_RENDER_ARTIFACT_ROOT="$SWIFT_DOCC_PLUGIN_ROOT/swift-docc-render-artifact"
2929
export DOCC_HTML_DIR="$SWIFT_DOCC_RENDER_ARTIFACT_ROOT/dist"
3030

31-
SWIFT_DOCC_REPO=${SWIFT_DOCC_REPO:="https://github.com/apple/swift-docc.git"}
32-
SWIFT_DOCC_RENDER_ARTIFACT_REPO=${SWIFT_DOCC_RENDER_ARTIFACT_REPO:="https://github.com/apple/swift-docc-render-artifact.git"}
31+
SWIFT_DOCC_REPO=${SWIFT_DOCC_REPO:="https://github.com/swiftlang/swift-docc.git"}
32+
SWIFT_DOCC_RENDER_ARTIFACT_REPO=${SWIFT_DOCC_RENDER_ARTIFACT_REPO:="https://github.com/swiftlang/swift-docc-render-artifact.git"}
3333

3434
SWIFT_DOCC_BRANCH=${SWIFT_DOCC_BRANCH:="main"}
3535
SWIFT_DOCC_RENDER_ARTIFACT_BRANCH=${SWIFT_DOCC_RENDER_ARTIFACT_BRANCH:="main"}

0 commit comments

Comments
 (0)