diff --git a/_includes/toc.txt b/_includes/toc.txt
index e7a28bef73..bc2446ae6d 100644
--- a/_includes/toc.txt
+++ b/_includes/toc.txt
@@ -1,7 +1,5 @@
diff --git a/sips/pending/_posts/2011-10-13-uncluttering-control.md b/sips/rejected/_posts/2011-10-13-uncluttering-control.md
similarity index 91%
rename from sips/pending/_posts/2011-10-13-uncluttering-control.md
rename to sips/rejected/_posts/2011-10-13-uncluttering-control.md
index 5cb4477de6..f76d513b29 100644
--- a/sips/pending/_posts/2011-10-13-uncluttering-control.md
+++ b/sips/rejected/_posts/2011-10-13-uncluttering-control.md
@@ -1,10 +1,9 @@
---
layout: sip
-disqus: true
-title: SIP-12 Uncluttering Scala’s syntax for control structures.
+title: SIP-12 - Uncluttering Scala’s syntax for control structures.
-vote-status: postponed
-vote-text: This SIP is in Postponed status currently, with the current action for 2.10. (1) Deprecate "then" in identifiers to reserve for future keyword status. (2) Deprecate problematic "while() do" syntax. ("do" loops in while loops require braces).
+vote-status: rejected
+vote-text: The committee votes unanimously to reject the change. The conclusion is that there is not a clear benefit for it and the required invested time and efforts would be too high. For more explanation, read the minutes.
---
**By: Martin Odersky**
diff --git a/sips/pending/_posts/2012-03-09-self-cleaning-macros.md b/sips/rejected/_posts/2012-03-09-self-cleaning-macros.md
similarity index 65%
rename from sips/pending/_posts/2012-03-09-self-cleaning-macros.md
rename to sips/rejected/_posts/2012-03-09-self-cleaning-macros.md
index 3925d8b731..af5e8c6369 100644
--- a/sips/pending/_posts/2012-03-09-self-cleaning-macros.md
+++ b/sips/rejected/_posts/2012-03-09-self-cleaning-macros.md
@@ -2,8 +2,8 @@
layout: sip
title: SIP-16 - Self-cleaning Macros
-vote-status: postponed
-vote-text: This is in Postponed status, but experimental implementation is expected for 2.10. Additionally the use of macro identifiers will be deprecated in 2.10.
+vote-status: rejected
+vote-text: The proposal is rejected unanimously because Scala Meta, the successor metaprogramming tool, is coming soon. For more explanation, read the minutes.
---
diff --git a/sips/pending/_posts/2012-03-30-source-locations.md b/sips/rejected/_posts/2012-03-30-source-locations.md
similarity index 92%
rename from sips/pending/_posts/2012-03-30-source-locations.md
rename to sips/rejected/_posts/2012-03-30-source-locations.md
index 501361b053..05596a39ef 100644
--- a/sips/pending/_posts/2012-03-30-source-locations.md
+++ b/sips/rejected/_posts/2012-03-30-source-locations.md
@@ -1,10 +1,10 @@
---
layout: sip
disqus: true
-title: SIP-19 Implicit Source Locations
+title: SIP-19 - Implicit Source Locations
-vote-status: not accepted
-vote-text: This is in Not Accepted status. We expect this to be easily implemented using macros without going through a full SIP.
+vote-status: rejected
+vote-text: The proposal is rejected. We expect this to be easily implemented using macros without going through a full SIP. A modern implementation can be found here.
---
**Philipp Haller**
diff --git a/sips/pending/_posts/2016-7-25-unsigned-integers.md b/sips/rejected/_posts/2016-07-25-unsigned-integers.md
similarity index 98%
rename from sips/pending/_posts/2016-7-25-unsigned-integers.md
rename to sips/rejected/_posts/2016-07-25-unsigned-integers.md
index 9e6a2d5620..92d4090fdd 100644
--- a/sips/pending/_posts/2016-7-25-unsigned-integers.md
+++ b/sips/rejected/_posts/2016-07-25-unsigned-integers.md
@@ -1,19 +1,18 @@
---
layout: sip
-title: SIP 26 - Unsigned Integers
-disqus: true
+title: SIP-26 - Unsigned Integers
+
+vote-status: rejected
+vote-text: The committee votes to reject the proposal because of a 6% performance hit on the provided implementation by the authors.
---
__Sébastien Doeraene and Denys Shabalin__
-__first submitted 9 November 2015__
-
-**tl;dr**: We propose the addition of 4 "primitive" types to represent
+**Summary**: We propose the addition of 4 "primitive" types to represent
unsigned integers: `UByte`, `UShort`, `UInt` and `ULong`.
A prototype implementation of this proposal, with unit tests and benchmarks,
-can be found at
-https://github.com/scala/scala/compare/2.12.x...sjrd:uints
+can be found [here](https://github.com/scala/scala/compare/2.12.x...sjrd:uints).
## History
@@ -21,7 +20,7 @@ https://github.com/scala/scala/compare/2.12.x...sjrd:uints
|--------------|---------------|
| Nov 9th 2015 | Initial Draft |
-## Introduction/Motivation/Abstract
+## Introduction - Motivation - Abstract
Scala was initially designed to target the JVM, and, as such, defines exactly
9 primitive types corresponding to the 9 primitive types of the JVM (including