Skip to content

Commit 3ec861d

Browse files
authored
Merge pull request #262 from spastorino/remove-some-wgs-from-rotation
Fix WGs information and rotation
2 parents 725d7d7 + d9d5ecc commit 3ec861d

File tree

2 files changed

+23
-12
lines changed

2 files changed

+23
-12
lines changed

content/_index.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -62,21 +62,21 @@ active working groups are listed below:
6262
Name | Status | Short Description | Zulip Stream
6363
---- | ------ | ----------------- | ------------
6464
[Async-await Implementation](working-groups/async-await/) | Active | Implementing async-await | [#t-compiler/wg-async-await][async-await_stream]
65+
[Diagnostics](working-groups/diagnostics/) | Active | Use crates.io crates for diagnostics rendering and make emitting diagnostics nicer. | [#t-compiler/wg-diagnostics][diagnostics_stream]
66+
[Learning](working-groups/learning/) | Active | Make the compiler easier to learn by ensuring that rustc-dev-guide and api docs are "complete" | [#t-compiler/wg-learning][learning_stream]
6567
[LLVM](working-groups/llvm/) | Incubating | Working with LLVM upstream to represent Rust in its development | [#t-compiler/wg-llvm][llvm_stream]
66-
[Self-Profile](working-groups/self-profile/) | Active | Improving the `-Z self-profile` feature | [#t-compiler/wg-self-profile][self-profile_stream]
67-
[RFC 2229](working-groups/rfc-2229/) | Paused until 2020 | Make a closure capture individual fields of the variable rather than the entire composite variable | [#t-compiler/wg-rfc-2229][rfc-2229-stream]
68-
[RLS 2.0](working-groups/rls-2.0/) | Active | Experimenting with a new compiler architecture tailored for IDEs | [#t-compiler/wg-rls2.0][rls20_stream]
6968
[Meta](working-groups/meta/) | Active | How compiler team organizes itself | [#t-compiler/wg-meta][meta_stream]
70-
[Non-Lexical Lifetimes (NLL)](working-groups/nll/) | Winding down | Implementing non-lexical lifetimes | [#t-compiler/wg-nll][nll_stream]
71-
[Traits](working-groups/traits/) | Active | Improving the trait-system design + implementation | [#t-compiler/wg-traits][traits_stream]
72-
[Parallel-rustc](working-groups/parallel-rustc/) | Active | Making parallel compilation the default for rustc | [#t-compiler/wg-parallel-rustc][parallel-rustc_stream]
7369
[MIR Optimizations](working-groups/mir-opt/) | Active | Write MIR optimizations and refactor the MIR to be more optimizable. | [#t-compiler/wg-mir-opt][mir-opt-stream]
74-
[Rustc pipelining](working-groups/pipelining/) | Active | Enable Cargo to invoke rustc in a pipelined fashion, speeding up crate graph compiles. | [#t-compiler/wg-pipelining][pipelining-stream]
70+
[Non-Lexical Lifetimes (NLL)](working-groups/nll/) | Retired | Implementing non-lexical lifetimes | [#t-compiler/wg-nll][nll_stream]
71+
[Parallel-rustc](working-groups/parallel-rustc/) | Active | Making parallel compilation the default for rustc | [#t-compiler/wg-parallel-rustc][parallel-rustc_stream]
7572
[Polonius](working-groups/polonius/) | Active | Exploring the integration of the "NLL 2.0"-like ["Polonius analysis"][Polonius] into rustc | [#t-compiler/wg-polonius][polonius_stream]
76-
[Learning](working-groups/learning/) | Active | Make the compiler easier to learn by ensuring that rustc-dev-guide and api docs are "complete" | [#t-compiler/wg-learning][learning_stream]
77-
[Diagnostics](working-groups/diagnostics/) | Active | Use crates.io crates for diagnostics rendering and make emitting diagnostics nicer. | [#t-compiler/wg-diagnostics][diagnostics_stream]
7873
[Polymorphization](working-groups/polymorphization/) | Active | Implement an analysis to detect when functions can remain polymorphic during code generation. | [#t-compiler/wg-polymorphization][polymorphization_stream]
7974
[Profile-Guided Optimization](working-groups/pgo/) | Retired | Implementing profile-guided optimization for rustc | [#t-compiler/wg-profile-guided-optimization][pgo_stream]
75+
[RFC 2229](working-groups/rfc-2229/) | Paused | Make a closure capture individual fields of the variable rather than the entire composite variable | [#t-compiler/wg-rfc-2229][rfc-2229-stream]
76+
[RLS 2.0](working-groups/rls-2.0/) | Active | Experimenting with a new compiler architecture tailored for IDEs | [#t-compiler/wg-rls2.0][rls20_stream]
77+
[Rustc pipelining](working-groups/pipelining/) | Retired | Enable Cargo to invoke rustc in a pipelined fashion, speeding up crate graph compiles. | [#t-compiler/wg-pipelining][pipelining-stream]
78+
[Self-Profile](working-groups/self-profile/) | Active | Improving the `-Z self-profile` feature | [#t-compiler/wg-self-profile][self-profile_stream]
79+
[Traits](working-groups/traits/) | Active | Improving the trait-system design + implementation | [#t-compiler/wg-traits][traits_stream]
8080

8181
[Weekly, in Zulip]: #meeting-calendar
8282
[nll_stream]: https://rust-lang.zulipchat.com/#narrow/stream/122657-t-compiler.2Fwg-nll

layouts/shortcodes/checkin-schedule.html

+14-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,21 @@
1717
var year = new Date(today.getFullYear(), 0, 1);
1818
var week = Math.floor(((today - year) / 86400000) / 7) + 1;
1919

20+
// This list is alphabetically sorted and matches the sorting we have on
21+
// the working groups index page
2022
var wgs = [
21-
"Async/Await", "Diagnostics", "Learning", "LLVM", "Meta", "MIR Optimizations", "NLL",
22-
"Parallel Rustc", "PGO", "Pipelining", "Polonius", "RFC 2229", "RLS 2.0", "Self-Profile",
23-
"Traits", "Polymorphization",
23+
"Async/Await",
24+
"Diagnostics",
25+
"Learning",
26+
"LLVM",
27+
"Meta",
28+
"MIR Optimizations",
29+
"Parallel Rustc",
30+
"Polonius",
31+
"Polymorphization",
32+
"RLS 2.0",
33+
"Self-Profile",
34+
"Traits",
2435
];
2536
var count = wgs.length % 2 === 0 ? wgs.length : wgs.length + 1;
2637

0 commit comments

Comments
 (0)