8000 Fix overview index page · scala/docs.scala-lang@d322e2b · GitHub
[go: up one dir, main page]

Skip to content
< 8000 header class="HeaderMktg header-logged-out js-details-container js-header Details f4 py-3" role="banner" data-is-top="true" data-color-mode=light data-light-theme=light data-dark-theme=dark>

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d322e2b

Browse files
committed
Fix overview index page
1 parent 1059fdf commit d322e2b

File tree

7 files changed

+56
-47
lines changed

7 files changed

+56
-47
lines changed

zh-cn/overviews/collections/concrete-immutable-collection-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: overview-large
3-
title: 不可变集实体类
3+
title: 具体的不可变集实体类
44

55
disqus: true
66

zh-cn/overviews/collections/mutable-and-immutable-collections.md renamed to zh-cn/overviews/collections/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: overview-large
3-
title: Mutable 和 Immutable 集合
3+
title: Mutable和Immutable集合
44

55
disqus: true
66

zh-cn/overviews/core/actors-migration-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ language: zh-cn
55
label-color: success
66
label-text: New in 2.10
77
overview: actors-migration-guide
8-
title: The Scala Actors Migration Guide
8+
title: Scala Actors迁移指南
99
---
1010

1111
**Vojin Jovanovic 和 Philipp Haller 著**

zh-cn/overviews/core/futures.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ label-text: New in 2.10
55
overview: futures
66
disqus: true
77
language: zh-cn
8-
title: Futures and Promises
8+
title: Future和Promise
99
---
1010

1111
**Philipp Haller, Aleksandar Prokopec, Heather Miller, Viktor Klang, Roland Kuhn, and Vojin Jovanovic 著**

zh-cn/overviews/core/value-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ language: zh-cn
55
label-color: success
66
label-text: New in 2.10
77
overview: value-classes
8-
title: Value Classes and Universal
8+
title: Value Classes and Universal Traits
99
---
1010

1111
**Mark Harrah 著**

zh-cn/overviews/index.md

Lines changed: 45 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,51 @@ layout: guides-index
33
language: zh-cn
44
title: 目录
55
---
6-
##[Thanks](Thanks.md)
7-
##[The Scala Actors Migration Guide NEW IN 2.10](core/The-Scala-Actors-Migration-Guide.md)
8-
##[Value Classes and Universal Traits NEW IN 2.10](core/Value-Classes-and-Universal-Traits.md)
9-
##[String Interpolation NEW IN 2.10](core/String_Interpolation.md)
10-
##[Implicit Classes AVAILABLE](core/Implicit-Classes.md)
11-
##[Futures and Promises NEW IN 2.10](core/Futures-and-Promises.md)
12-
## Scala’s Parallel Collections Library
13-
- [Overview](parallel-collections/Overview.md)
14-
- [Concrete Parallel Collection Classes](parallel-collections/Concrete_Parallel_Collection_Classes.md)
15-
- [Parallel Collection Conversions](parallel-collections/Parallel_Collection_Conversions.md)
16-
- [Concurrent Tries](parallel-collections/Concurrent_Tries.md)
17-
- [Architecture of the Parallel Collections Library](parallel-collections/Architecture_of_the_Parallel_Collections_Library.md)
18-
- [Creating Custom Parallel Collections](parallel-collections/Creating_Custom_Parallel_Collections.md)
19-
- [Configuring Parallel Collections](parallel-collections/Configuring_Parallel_Collections.md)
20-
- [Measuring Performance](parallel-collections/Measuring_Performance.md)
216

22-
##[The Architecture of Scala Collections](core/The_Architecture_of_Scala_Collections.md)
23-
##[The Scala Actors API](core/The_Scala_Actors_API.md)
7+
<div class="page-header-index">
8+
<h2>核心库</h2>
9+
</div>
10+
* Scala的容器类
11+
* [简介](/zh-cn/overviews/collections/introduction.html)
12+
* [Mutable和Immutable集合](/zh-cn/overviews/collections/overview.html)
13+
* [Trait Traversable](/zh-cn/overviews/collections/trait-traversable.html)
14+
* [Trait Iterable](/zh-cn/overviews/collections/trait-iterable.html)
15+
* [序列trait:Seq、IndexedSeq 及 LinearSeq](/zh-cn/overviews/collections/seqs.html)
16+
* [集合](/zh-cn/overviews/collections/sets.html)
17+
* [映射](/zh-cn/overviews/collections/maps.html)
18+
* [具体的不可变集实体类](/zh-cn/overviews/collections/concrete-immutable-collection-classes.html)
19+
* [具体的可变容器类](/zh-cn/overviews/collections/concrete-mutable-collection-classes.html)
20+
* [数组](/zh-cn/overviews/collections/arrays.html)
21+
* [字符串](/zh-cn/overviews/collections/strings.html)
22+
* [性能特点](/zh-cn/overviews/collections/performance-characteristics.html)
23+
* [等价性](/zh-cn/overviews/collections/equality.html)
24+
* [视图](/zh-cn/overviews/collections/views.html)
25+
* [Iterators](/zh-cn/overviews/collections/iterators.html)
26+
* [从头定义新容器](/zh-cn/overviews/collections/creating-collections-from-scratch.html)
27+
* [Java和Scala容器的转换](/zh-cn/overviews/collections/conversions-between-java-and-scala-collections.html)
28+
* [Scala 2.7迁移指南](/zh-cn/overviews/collections/migrating-from-scala-27.html)
29+
* [Scala容器类体系结构](/zh-cn/overviews/core/architecture-of-scala-collections.html)
30+
* [字符串插值](/zh-cn/overviews/core/string-interpolation.html) <span class="label success">New in 2.10</span>
31+
* [Implicit Classes](/zh-cn/overviews/core/implicit-classes.html) <span class="label success">New in 2.10</span>
32+
* [Value Classes and Universal Traits](/zh-cn/overviews/core/value-classes.html) <span class="label success">New in 2.10</span>
2433

25-
## Scala’s Collections Library
34+
<div class="page-header-index">
35+
<h2>Parallel and Concurrent Programming</h2>
36+
</div>
37+
* [Future和Promise](/zh-cn/overviews/core/futures.html) <span class="label success">New in 2.10</span>
38+
* Scala的并行容器类
39+
* [概述](/zh-cn/overviews/parallel-collections/overview.html)
40+
* [具体并行集合类](/zh-cn/overviews/parallel-collections/concrete-parallel-collections.html)
41+
* [并行容器的转换](/zh-cn/overviews/parallel-collections/conversions.html)
42+
* [并发字典树](/zh-cn/overviews/parallel-collections/ctries.html)
43+
* [并行集合库的架构](/zh-cn/overviews/parallel-collections/architecture.html)
44+
* [创建自定义并行容器](/zh-cn/overviews/parallel-collections/custom-parallel-collections.html)
45+
* [配置并行集合](/zh-cn/overviews/parallel-collections/configuration.html)
46+
* [测量性能](/zh-cn/overviews/parallel-collections/performance.html)
47+
* [Scala Actors迁移指南](/zh-cn/overviews/core/actors-migration-guide.html) <span class="label success">New in 2.10</span>
48+
* [The Scala Actors API](/zh-cn/overviews/core/actors.html) <span class="label important">Deprecated</span>
2649

27-
- [Introduction](collections/Introduction.md)
28-
- [Mutable and Immutable Collections](collections/Mutable_and_Immutable_Collections.md)
29-
- [Trait Traversable](collections/Trait_Traversable.md)
30-
- [Trait Iterable](collections/Trait_Iterable.md)
31-
- [The sequence traits Seq, IndexedSeq, and LinearSeq](collections/The_sequence_traits.md)
32-
- [Sets](collections/Sets.md)
33-
- [Maps](collections/Maps.md)
34-
- [Concrete Immutable Collection Classes](collections/Concrete_Immutable_Collection_Classes.md)
35 10350 -
- [Concrete Mutable Collection Classes](collections/Concrete_Mutable_Collection_Classes.md)
36-
- [Arrays](collections/Arrays.md)
37-
- [Strings](collections/Strings.md)
38-
- [Performance Characteristics](collections/Performance_Characteristics.md)
39-
- [Equality](collections/Equality.md)
40-
- [Views](collections/Views.md)
41-
- [Iterators](collections/Iterators.md)
42-
- [Creating Collections From Scratch](collections/Creating_Collections_From_Scratch.md)
43-
- [Conversions Between Java and Scala Collections](collections/Conversions_Between_Java_and_Scala_Collections.md)
44-
- [Migrating from Scala 2.7](collections/Migrating_from_Scala_2_7.md)
50+
<div class="page-header-index">
51+
<h2>Acknowledgements</h2>
52+
</div>
53+
* [致谢名单](/zh-cn/overviews/thanks.html)

zh-cn/overviews/Thanks.md renamed to zh-cn/overviews/thanks.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ title: 致谢名单
77
2013年10月份起,CSDN CODE开始组织志愿者翻译Scala官方文档。计划翻译的文档主要为Scala官网上overview部分的内容,包含以下部分:
88

99
- The Scala Actors Migration Guide
10-
- Value Classes and Universal Traits
11-
- String Interpolation NEW IN 2.10
12-
- Implicit Classes AVAILABLE
13-
- Futures and Promises NEW IN 2.10
10+
- Value Classes and Universal Traits
11+
- String Interpolation
12+
- Implicit Classes
13+
- Futures and Promises
1414
- Scala’s Parallel Collections Library
15-
- The Architecture of Scala Collections
16-
- The Scala Actors API
15+
- The Architecture of Scala Collections
16+
- The Scala Actors API
1717
- Scala’s Collections Library
1818

1919
经过公开征集、筛选,我们最终组织了二十多位志愿者来进行此项翻译工作。我们并邀请到了国内Scala知名社区“Scala研学社”的两位老师**连城****尹绪森**来担任顾问和翻译校对的工作。在此向Scala研学社表示衷心的感谢!

0 commit comments

Comments
 (0)
0