Skip to content

Commit 7b3b67c

Browse files
authored
Merge pull request #106 from Rohaq/source
Replaced a bunch of dead codeplex.com links
2 parents b7df8ea + 9be1431 commit 7b3b67c

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

Diff for: src/documents/directory/discuss.html.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: 'Discuss'
55

66
TypeScript on:
77

8-
* [CodePlex](http://typescript.codeplex.com/discussions) (official discussion forums)
8+
* [TypeScript Community](https://www.typescriptlang.org/community) (links to online communities and meetup groups)
99
* [StackOverflow](http://stackoverflow.com/questions/tagged/typescript)
1010
* [MSDN](http://blogs.msdn.com/b/typescript/)
1111
* [Twitter](https://twitter.com/search?q=%23typescript)

Diff for: src/documents/directory/learn.html.md.eco

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: 'Learn TypeScript'
66
## Resources
77

88
* [Official website](http://www.typescriptlang.org)
9-
* [Codeplex project site](http://typescript.codeplex.com)
9+
* [Typescript GitHub repository](https://github.com/microsoft/TypeScript)
1010
* [DefinitelyTyped](<%- @site.github %>)
1111

1212

@@ -15,7 +15,7 @@ title: 'Learn TypeScript'
1515
* [TypeScript Playground](http://www.typescriptlang.org/playground)
1616
* [TypeScript Tutorial](http://www.typescriptlang.org/tutorial)
1717
* [TypeScript Handbook](http://www.typescriptlang.org/handbook)
18-
* [TypeScript Documentation](https://typescript.codeplex.com/documentation)
18+
* [TypeScript Documentation](https://www.typescriptlang.org/docs/)
1919
* [TypeScript Specification](http://www.typescriptlang.org/Content/TypeScript%20Language%20Specification.pdf)
2020

2121

Diff for: src/documents/guides/best-practices.html.md.eco

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ declare module 'foo' {
3737

3838
### Extending built-in types
3939
There isn't a way to add *static members* to native objects at the moment as `lib.d.ts` defines them as a `var Date:{/*members*/}` and `var`s are not extendable.
40-
Two solutions are proposed to the TS team. Either [use interfaces instead of var in lib.d.ts (vote)](https://typescript.codeplex.com/workitem/1085) and/or [make variables/classes open ended (vote)](https://typescript.codeplex.com/workitem/917)
40+
Two solutions are proposed to the TS team. Either [use interfaces instead of var in lib.d.ts (vote)](https://web.archive.org/web/20170624125029/https://typescript.codeplex.com/workitem/1085) and/or [make variables/classes open ended (vote)](https://web.archive.org/web/20170624162922/https://typescript.codeplex.com/workitem/917)
4141

4242
For adding members to *instances* of native types there are relevant interfaces in available in `lib.d.ts` e.g.
4343

Diff for: src/documents/guides/creating.html.md.eco

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ layout: 'guide'
33
title: 'Creating a definition file'
44
---
55

6-
The official TypeScript website has a [guide](https://www.typescriptlang.org/docs/handbook/declaration-files/introduction.html) to teach you how to write a high-quality TypeScript Declaration File. The official TypeScript wiki on codeplex.com also has a [great article](https://typescript.codeplex.com/wikipage?title=Writing%20Definition%20%28.d.ts%29%20Files) on how to write a good type declaration file. It is recommended you read those as it covers some important choices.
6+
The official TypeScript website has a [guide](https://www.typescriptlang.org/docs/handbook/declaration-files/introduction.html) to teach you how to write a high-quality TypeScript Declaration File. The official TypeScript wiki on codeplex.com also has a [great article](https://web.archive.org/web/20170621094939/https://typescript.codeplex.com/wikipage?title=Writing%20Definition%20%28.d.ts%29%20Files) on how to write a good type declaration file. It is recommended you read those as it covers some important choices.

Diff for: src/documents/pages/language-issues.html.md.eco

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,61 +3,61 @@ layout: 'page'
33
title: 'Language issues'
44
---
55

6-
There are a few problems in TypeScript that limit the expressiveness of the type declarations. This page tracks the known issues that we submitted or found on the TypeScript [codeplex bugtracker](https://typescript.codeplex.com/workitem/list/basic).
6+
There are a few problems in TypeScript that limit the expressiveness of the type declarations. This page tracks the known issues that we submitted or found on the TypeScript [Github issue tracker](https://github.com/microsoft/TypeScript/issues).
77

88
If you know of a typing related issue not linked here please leave and issue in this [repos](https://github.com/DefinitelyTyped/definitelytyped.github.io) or make a PR on the *source*-branch.
99

1010

11-
### [260](https://typescript.codeplex.com/workitem/260)
11+
### [260](https://web.archive.org/web/20170705180430/https://typescript.codeplex.com/workitem/260)
1212

1313
> Get/set accessors in interfaces
1414

1515

16-
### [482](https://typescript.codeplex.com/workitem/482) and [1085](https://typescript.codeplex.com/workitem/1085)
16+
### [482](https://web.archive.org/web/20170705204211/https://typescript.codeplex.com/workitem/482) and [1085](https://web.archive.org/web/20170624125029/https://typescript.codeplex.com/workitem/1085)
1717

1818
> Allow to extend global variables like Date or Object to support libs like sugar.js
1919

2020
> Use Static interfaces for ambient declarations in lib.d.ts
2121

2222

23-
### [507](https://typescript.codeplex.com/workitem/507) and [2364](https://typescript.codeplex.com/workitem/2364)
23+
### [507](https://web.archive.org/web/20170705154141/https://typescript.codeplex.com/workitem/507) and [2364](https://web.archive.org/web/20170705200214/https://typescript.codeplex.com/workitem/2364)
2424

2525
> Support optional ambient "this" pointer typing in callback/function signatures
2626

2727
> declaring callback scope members
2828

2929

30-
### [1124](https://typescript.codeplex.com/workitem/1124)
30+
### [1124](https://web.archive.org/web/20170705200655/https://typescript.codeplex.com/workitem/1124)
3131

3232
> Allow additional parameters after ..rest in declarations
3333

3434

35-
### [1364](https://typescript.codeplex.com/workitem/1364)
35+
### [1364](https://web.archive.org/web/20170705153539/https://typescript.codeplex.com/workitem/1364)
3636

3737
> Add support for type unions
3838

3939

40-
### [2194](https://typescript.codeplex.com/workitem/2194)
40+
### [2194](https://web.archive.org/web/20170705195856/https://typescript.codeplex.com/workitem/2194)
4141

4242
> declarations cannot describe function 'try' on module
4343

4444

45-
### [2323](https://typescript.codeplex.com/workitem/2323)
45+
### [2323](https://web.archive.org/web/20170705174711/https://typescript.codeplex.com/workitem/2323)
4646

4747
> decaring types for array-based tuples
4848

4949

50-
### [2333](https://typescript.codeplex.com/workitem/2333) (pending)
50+
### [2333](https://web.archive.org/web/20170705152704/https://typescript.codeplex.com/workitem/2333) (pending)
5151

5252
> Cleanup or select lib.d.ts global namespace
5353

5454

55-
### [2387](https://typescript.codeplex.com/workitem/2387) (closed)
55+
### [2387](https://web.archive.org/web/20170705154406/https://typescript.codeplex.com/workitem/2387) (closed)
5656

5757
> `export =` not usable without claiming a name in the global namespace
5858

5959

60-
### [2451](https://typescript.codeplex.com/workitem/2451)
60+
### [2451](https://web.archive.org/web/20170705182727/https://typescript.codeplex.com/workitem/2451)
6161

6262
> Allow operators to work on custom types (via valueOf)
6363

0 commit comments

Comments
 (0)