Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit bf9df6e

Browse files
committed
chore(rebase): Rebase latest
1 parent 985fd01 commit bf9df6e

File tree

319 files changed

+9181
-5311
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

319 files changed

+9181
-5311
lines changed

gulpfile.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var LIVE_EXAMPLES_PATH = path.join(RESOURCES_PATH, 'live-examples');
4646
var STYLES_SOURCE_PATH = path.join(TOOLS_PATH, 'styles-builder/less');
4747

4848
var docShredder = require(path.resolve(TOOLS_PATH, 'doc-shredder/doc-shredder'));
49-
var ExampleZipper = require(path.resolve(TOOLS_PATH, 'example-zipper/exampleZipper'));
49+
var exampleZipper = require(path.resolve(TOOLS_PATH, '_example-zipper/exampleZipper'));
5050
var regularPlunker = require(path.resolve(TOOLS_PATH, 'plunker-builder/regularPlunker'));
5151
var embeddedPlunker = require(path.resolve(TOOLS_PATH, 'plunker-builder/embeddedPlunker'));
5252
var fsUtils = require(path.resolve(TOOLS_PATH, 'fs-utils/fsUtils'));
@@ -86,7 +86,6 @@ var _excludeMatchers = _excludePatterns.map(function(excludePattern){
8686
var _exampleBoilerplateFiles = [
8787
'src/styles.css',
8888
'src/systemjs.config.js',
89-
'src/systemjs-angular-loader.js',
9089
'src/tsconfig.json',
9190
'bs-config.json',
9291
'bs-config.e2e.json',
@@ -573,7 +572,9 @@ gulp.task('build-and-serve', ['build-docs'], function (cb) {
573572
watchAndSync({localFiles: true}, cb);
574573
});
575574

576-
gulp.task('build-docs', ['build-devguide-docs', 'build-api-docs', 'build-plunkers', '_zip-examples']);
575+
gulp.task('build-docs', ['build-devguide-docs', 'build-api-docs', 'build-plunkers']);
576+
// Stop zipping examples Feb 28, 2016
577+
//gulp.task('build-docs', ['build-devguide-docs', 'build-api-docs', 'build-plunkers', '_zip-examples']);
577578

578579
gulp.task('build-api-docs', ['build-js-api-docs', 'build-ts-api-docs']);
579580

@@ -786,8 +787,8 @@ gulp.task('_shred-clean-api', function(cb) {
786787
});
787788

788789
gulp.task('_zip-examples', function() {
789-
new ExampleZipper(_devguideShredOptions.examplesDir, _devguideShredOptions.zipDir);
790-
// exampleZipper.zipExamples(_apiShredOptions.examplesDir, _apiShredOptions.zipDir);
790+
exampleZipper.zipExamples(_devguideShredOptions.examplesDir, _devguideShredOptions.zipDir);
791+
exampleZipper.zipExamples(_apiShredOptions.examplesDir, _apiShredOptions.zipDir);
791792
});
792793

793794

public/_data.json

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
"autoformat": "true"
1616
},
1717

18+
"news": {
19+
"title": "News"
20+
},
21+
1822
"events": {
1923
"title": "Events",
2024
"subtitle": "Where we'll be presenting"

public/_includes/_footer.jade

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ div(class="main-footer" data-swiftype-index="false")
4141
ul.text-body
4242
li <a href="/events.html">Events</a>
4343
li <a href="http://www.meetup.com/topics/angularjs/">Meetups</a>
44-
li <a href="https://twitter.com/angular"> Twitter</a>
44+
li <a href="https://twitter.com/angularjs"> Twitter</a>
4545
li <a href="https://github.com/angular/angular"> GitHub</a>
4646
li <a href="/contribute.html"> Contribute</a>
4747

public/_includes/_main-nav.jade

+1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ nav(data-swiftype-index="false" class="main-nav l-pinned-top l-layer-5", scroll-
1010
li.l-left <a class="main-nav-button" href="/features.html" md-button>Features</a>
1111
li.l-left <a class="main-nav-button" href="/docs/#{language}/latest/" md-button>Docs</a>
1212
li.l-left <a class="main-nav-button" href="/events.html" md-button>Events</a>
13+
li.l-left <a class="main-nav-button" href="/news.html" md-button>News</a>
1314
li.l-right <a class="main-nav-button" href="/docs/ts/latest/quickstart.html" md-button>Get Started</a>

public/docs/_examples/.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# _boilerplate files
22
!_boilerplate/*
33
*/*/src/styles.css
4-
*/*/src/systemjs-angular-loader.js
54
*/*/src/systemjs.config.js
65
*/*/src/tsconfig.json
76
*/*/bs-config.e2e.json

public/docs/_examples/_boilerplate/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"license": "MIT",
3939
"dependencies": {},
4040
"devDependencies": {
41-
"angular-cli": "^1.0.0-rc.0"
41+
"angular-cli": "^1.0.0-beta.26"
4242
},
4343
"repository": {}
4444
}

public/docs/_examples/_boilerplate/src/systemjs-angular-loader.js

-43
This file was deleted.

public/docs/_examples/_boilerplate/src/systemjs.config.js

+2-7
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// map tells the System loader where to look for things
1212
map: {
1313
// our app is within the app folder
14-
'app': 'app',
14+
app: 'app',
1515

1616
// angular bundles
1717
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
@@ -32,12 +32,7 @@
3232
packages: {
3333
app: {
3434
main: './main.js',
35-
defaultExtension: 'js',
36-
meta: {
37-
'./*.js': {
38-
loader: 'systemjs-angular-loader.js'
39-
}
40-
}
35+
defaultExtension: 'js'
4136
},
4237
rxjs: {
4338
defaultExtension: 'js'

public/docs/_examples/_boilerplate/src/systemjs.config.web.build.js

+2-8
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@
3434
},
3535
// map tells the System loader where to look for things
3636
map: {
37-
'ng-loader': './systemjs-angular-loader.js',
3837
// our app is within the app folder
39-
'app': 'app',
38+
app: 'app',
4039

4140
// angular bundles
4241
'@angular/core': 'ng:core-builds/master/bundles/core.umd.js',
@@ -72,12 +71,7 @@
7271
packages: {
7372
app: {
7473
main: './main.ts',
75-
defaultExtension: 'ts',
76-
meta: {
77-
'./*.ts': {
78-
loader: 'ng-loader'
79-
}
80-
}
74+
defaultExtension: 'ts'
8175
},
8276
rxjs: {
8377
defaultExtension: 'js'

public/docs/_examples/_boilerplate/src/systemjs.config.web.js

+2-8
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@
3131
},
3232
// map tells the System loader where to look for things
3333
map: {
34-
'ng-loader': './systemjs-angular-loader.js',
3534
// our app is within the app folder
36-
'app': 'app',
35+
app: 'app',
3736

3837
// angular bundles
3938
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
@@ -59,12 +58,7 @@
5958
packages: {
6059
app: {
6160
main: './main.ts',
62-
defaultExtension: 'ts',
63-
meta: {
64-
'./*.ts': {
65-
loader: 'ng-loader'
66-
}
67-
}
61+
defaultExtension: 'ts'
6862
},
6963
rxjs: {
7064
defaultExtension: 'js'

public/docs/_examples/animations/ts/src/app/hero-list-auto.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {
1111
import { Heroes } from './hero.service';
1212

1313
@Component({
14+
moduleId: module.id,
1415
selector: 'hero-list-auto',
1516
// #docregion template
1617
template: `

public/docs/_examples/animations/ts/src/app/hero-list-basic.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import {
1515
import { Heroes } from './hero.service';
1616

1717
@Component({
18+
moduleId: module.id,
1819
selector: 'hero-list-basic',
1920
// #enddocregion
2021
/* The click event calls hero.toggleState(), which

public/docs/_examples/animations/ts/src/app/hero-list-combined-transitions.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import {
1414
import { Heroes } from './hero.service';
1515

1616
@Component({
17+
moduleId: module.id,
1718
selector: 'hero-list-combined-transitions',
1819
// #docregion template
1920
template: `

public/docs/_examples/animations/ts/src/app/hero-list-enter-leave-states.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {
1111
import { Heroes } from './hero.service';
1212

1313
@Component({
14+
moduleId: module.id,
1415
selector: 'hero-list-enter-leave-states',
1516
// #docregion template
1617
template: `

public/docs/_examples/animations/ts/src/app/hero-list-enter-leave.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {
1111
import { Heroes } from './hero.service';
1212

1313
@Component({
14+
moduleId: module.id,
1415
selector: 'hero-list-enter-leave',
1516
// #docregion template
1617
template: `

public/docs/_examples/animations/ts/src/app/hero-list-groups.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import {
1212
import { Heroes } from './hero.service';
1313

1414
@Component({
15+
moduleId: module.id,
1516
selector: 'hero-list-groups',
1617
template: `
1718
<ul>

public/docs/_examples/animations/ts/src/app/hero-list-inline-styles.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import {
1313
import { Heroes } from './hero.service';
1414

1515
@Component({
16+
moduleId: module.id,
1617
selector: 'hero-list-inline-styles',
1718
// #docregion template
1819
template: `

public/docs/_examples/animations/ts/src/app/hero-list-multistep.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import {
1313
import { Heroes } from './hero.service';
1414

1515
@Component({
16+
moduleId: module.id,
1617
selector: 'hero-list-multistep',
1718
// #docregion template
1819
template: `

public/docs/_examples/animations/ts/src/app/hero-list-timings.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {
1111
import { Heroes } from './hero.service';
1212

1313
@Component({
14+
moduleId: module.id,
1415
selector: 'hero-list-timings',
1516
template: `
1617
<ul>

public/docs/_examples/animations/ts/src/app/hero-list-twoway.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import {
1414
import { Heroes } from './hero.service';
1515

1616
@Component({
17+
moduleId: module.id,
1718
selector: 'hero-list-twoway',
1819
// #docregion template
1920
template: `

public/docs/_examples/architecture/ts/src/app/hero-detail.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { Component, Input } from '@angular/core';
33
import { Hero } from './hero';
44

55
@Component({
6+
moduleId: module.id,
67
selector: 'hero-detail',
78
templateUrl: './hero-detail.component.html'
89
})

public/docs/_examples/architecture/ts/src/app/hero-list.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { HeroService } from './hero.service';
55

66
// #docregion metadata, providers
77
@Component({
8+
moduleId: module.id,
89
selector: 'hero-list',
910
templateUrl: './hero-list.component.html',
1011
providers: [ HeroService ]

public/docs/_examples/attribute-directives/e2e-spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('Attribute directives', function () {
1515
});
1616

1717
it('should be able to select green highlight', function () {
18-
let highlightedEle = element(by.cssContainingText('p', 'Highlight me!'));
18+
let highlightedEle = element(by.cssContainingText('p', 'Highlight me'));
1919
let lightGreen = 'rgba(144, 238, 144, 1)';
2020

2121
expect(highlightedEle.getCssValue('background-color')).not.toEqual(lightGreen);
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
<!-- #docregion -->
22
<h1>My First Attribute Directive</h1>
3-
<!-- #docregion applied -->
43
<p myHighlight>Highlight me!</p>
5-
<!-- #enddocregion applied, -->
4+
<!-- #enddocregion -->
65

76
<!-- #docregion color-1 -->
87
<p myHighlight highlightColor="yellow">Highlighted in yellow</p>
98
<p myHighlight [highlightColor]="'orange'">Highlighted in orange</p>
9+
1010
<!-- #enddocregion color-1 -->
1111

1212
<!-- #docregion color-2 -->
1313
<p myHighlight [highlightColor]="color">Highlighted with parent component's color</p>
1414
<!-- #enddocregion color-2 -->
15+
16+
<!-- #docregion p-style-background -->
17+
<p [style.background]="'lime'">I am green with envy!</p>
18+
<!-- #enddocregion p-style-background -->
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import { Component } from '@angular/core';
22

33
@Component({
4+
moduleId: module.id,
45
selector: 'my-app',
56
templateUrl: './app.component.1.html'
67
})
78
// #docregion class
89
export class AppComponent {
910
color = 'yellow';
1011
}
12+
// #enddocregion class

public/docs/_examples/attribute-directives/ts/src/app/app.component.html

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<!-- #docregion v2, -->
1+
<!-- #docregion -->
2+
<!-- #docregion v2 -->
23
<h1>My First Attribute Directive</h1>
34

45
<h4>Pick a highlight color</h4>
@@ -9,13 +10,15 @@ <h4>Pick a highlight color</h4>
910
</div>
1011
<!-- #docregion color -->
1112
<p [myHighlight]="color">Highlight me!</p>
12-
<!-- #enddocregion color, v2 -->
13+
<!-- #enddocregion color -->
14+
<!-- #enddocregion v2 -->
1315

1416
<!-- #docregion defaultColor -->
1517
<p [myHighlight]="color" defaultColor="violet">
1618
Highlight me too!
1719
</p>
18-
<!-- #enddocregion defaultColor, -->
20+
<!-- #enddocregion defaultColor -->
21+
<!-- #enddocregion -->
1922

2023
<hr>
2124
<p><i>Mouse over the following lines to see fixed highlights</i></p>

public/docs/_examples/attribute-directives/ts/src/app/app.component.ts

+3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
import { Component } from '@angular/core';
33

44
@Component({
5+
moduleId: module.id,
56
selector: 'my-app',
67
templateUrl: './app.component.html'
78
})
89
// #docregion class
910
export class AppComponent {
1011
color: string;
1112
}
13+
// #enddocregion class
14+
// #enddocregion

0 commit comments

Comments
 (0)