diff --git a/public/docs/_examples/quickstart-old/.gitignore b/public/docs/_examples/quickstart-old/.gitignore
deleted file mode 100644
index 6724ce3596..0000000000
--- a/public/docs/_examples/quickstart-old/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-src/**/*.js
\ No newline at end of file
diff --git a/public/docs/_examples/quickstart-old/e2e-spec.js b/public/docs/_examples/quickstart-old/e2e-spec.js
deleted file mode 100644
index a866771ab6..0000000000
--- a/public/docs/_examples/quickstart-old/e2e-spec.js
+++ /dev/null
@@ -1,12 +0,0 @@
-describe('Protractor quick start test', function() {
- beforeEach(function() {
- browser.get('quickstart/index.html');
- });
-
- // #docregion test
- it('should display Alice', function() {
- expect(element(by.id('output')).getText()).toEqual('Hello Alice');
- });
- // #enddocregion
-});
-
diff --git a/public/docs/_examples/quickstart-old/index.html b/public/docs/_examples/quickstart-old/index.html
deleted file mode 100644
index 101590e856..0000000000
--- a/public/docs/_examples/quickstart-old/index.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- Angular 2 Quickstart
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/public/docs/_examples/quickstart-old/package.json b/public/docs/_examples/quickstart-old/package.json
deleted file mode 100644
index 0c03fdd6a2..0000000000
--- a/public/docs/_examples/quickstart-old/package.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "name": "ng2-quickstart",
- "version": "0.0.1",
- "license": "ICS",
- "repository": {},
- "dependencies": {
- "angular2": "2.0.0-alpha.35",
- "es6-module-loader": "^0.16",
- "systemjs": "^0.16",
- "traceur": "0.0.91"
- },
- "devDependencies": {
- "jasmine-core": "^2.3.4",
- "zone.js": "^0.5.3"
- },
- "scripts": {
- "postinstall": "cd src && tsd reinstall -r -o && cd ..",
- "tsc": "tsc -p src -w",
- "start": "live-server"
- }
-}
\ No newline at end of file
diff --git a/public/docs/_examples/quickstart-old/src/app.spec.ts b/public/docs/_examples/quickstart-old/src/app.spec.ts
deleted file mode 100644
index b70b3b2a93..0000000000
--- a/public/docs/_examples/quickstart-old/src/app.spec.ts
+++ /dev/null
@@ -1,68 +0,0 @@
-///// Boiler Plate ////
-import {bind} from 'angular2/angular2';
-
-import {
- beforeEachBindings, DebugElement, RootTestComponent as RTC,
- // Jasmine overrides
- beforeEach, ddescribe, xdescribe, describe, iit, it, xit, //expect,
- AsyncTestCompleter, inject, RootTestComponent, TestComponentBuilder,
-} from 'angular2/test';
-
-//// Testing this component ////
-import {AppComponent} from './app';
-
-describe('AppComponent', () => {
-
- describe('(no DOM)', () => {
-
- it('component has name == "Alice"', () => {
- let app = new AppComponent;
- expect(app.name).toEqual('Alice');
- });
- });
-
- describe('(in DOM)', () => {
-
- it('component has name == "Alice"', injectTcb((tcb, done) => {
- tcb
- .createAsync(AppComponent)
- .then((rootTC:RTC) => {
- let ac:AppComponent = rootTC.componentInstance;
- expect(ac.name).toEqual('Alice');
- })
- .catch(fail).then(done,done);
- }));
-
- it('DOM has name == "Alice"', injectTcb((tcb, done) => {
- tcb
- .createAsync(AppComponent)
- .then((rootTC:RTC) => {
- rootTC.detectChanges();
- let domName = rootTC.componentViewChildren[0].nativeElement.innerHTML;
- expect(domName).toMatch('Alice');
- })
- .catch(fail).then(done,done);
- }));
- //rootTC.nativeElement.getElementsByTagName('h1')[0].innerHTML
- it('DOM has name == "Alice" (2)', injectTcb((tcb, done) => {
- tcb
- .createAsync(AppComponent)
- .then((rootTC:RTC) => {
- rootTC.detectChanges();
- let domName = rootTC.nativeElement
- // jQuery goes here
- .getElementsByTagName('h1')[0].innerHTML;
- expect(domName).toMatch('Alice');
- })
- .catch(fail).then(done,done);
- }));
- });
-});
-
-///////// test.helpers.ts: here for now ////////
-
-function injectTcb(testFn: (tcb: TestComponentBuilder, done: ()=>void) => void) {
- return inject([TestComponentBuilder, AsyncTestCompleter], function injectWrapper(tcb: TestComponentBuilder, async: AsyncTestCompleter) {
- testFn(tcb, async.done.bind(async));
- });
-}
\ No newline at end of file
diff --git a/public/docs/_examples/quickstart-old/src/app.ts b/public/docs/_examples/quickstart-old/src/app.ts
deleted file mode 100644
index 6a4ce7871f..0000000000
--- a/public/docs/_examples/quickstart-old/src/app.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-// #docregion
-// #docregion import
-import {Component, View, bootstrap} from 'angular2/angular2';
-// #enddocregion
-
-@Component({
- selector: 'app'
-})
-@View({
- template: 'Hello {{ name }}
'
-})
-export class AppComponent {
- name : string;
-
- constructor() {
- this.name = 'Alice';
- }
-}
-
-// #docregion bootstrap
-bootstrap(AppComponent);
-// #enddocregion
diff --git a/public/docs/_examples/quickstart-old/src/dummy.spec.ts b/public/docs/_examples/quickstart-old/src/dummy.spec.ts
deleted file mode 100644
index 83f3eaea94..0000000000
--- a/public/docs/_examples/quickstart-old/src/dummy.spec.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-describe("Jasmine sample test", function() {
-
- it("1+1 should be 2", function() {
-
- var result = 1 + 1;
-
- expect(result).toBe(2);
- });
-});
\ No newline at end of file
diff --git a/public/docs/_examples/quickstart-old/src/tsconfig.json b/public/docs/_examples/quickstart-old/src/tsconfig.json
deleted file mode 100644
index 24f8573a6f..0000000000
--- a/public/docs/_examples/quickstart-old/src/tsconfig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "compilerOptions": {
- "target": "ES5",
- "module": "commonjs",
- "sourceMap": true,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true
- }
-}
\ No newline at end of file
diff --git a/public/docs/_examples/quickstart-old/src/tsd.json b/public/docs/_examples/quickstart-old/src/tsd.json
deleted file mode 100644
index 0bed83f7e6..0000000000
--- a/public/docs/_examples/quickstart-old/src/tsd.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "version": "v4",
- "repo": "borisyankov/DefinitelyTyped",
- "ref": "master",
- "path": "typings",
- "bundle": "typings/tsd.d.ts",
- "installed": {
- "angular2/angular2.d.ts": {
- "commit": "cd2e71bb1f0459197e733be66fdeafaec600514d"
- },
- "es6-promise/es6-promise.d.ts": {
- "commit": "71d072b7354936b88d57c2029042d2da7c6ec0e7"
- },
- "jasmine/jasmine.d.ts": {
- "commit": "71d072b7354936b88d57c2029042d2da7c6ec0e7"
- },
- "rx/rx.d.ts": {
- "commit": "71d072b7354936b88d57c2029042d2da7c6ec0e7"
- },
- "rx/rx-lite.d.ts": {
- "commit": "71d072b7354936b88d57c2029042d2da7c6ec0e7"
- }
- }
-}
diff --git a/public/docs/_examples/quickstart-old/unit-tests.html b/public/docs/_examples/quickstart-old/unit-tests.html
deleted file mode 100644
index d892e4b817..0000000000
--- a/public/docs/_examples/quickstart-old/unit-tests.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-QuickStart Tests
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-