diff --git a/docs/content/tutorial/index.ngdoc b/docs/content/tutorial/index.ngdoc index 253906217ef5..3c0eebf821ea 100644 --- a/docs/content/tutorial/index.ngdoc +++ b/docs/content/tutorial/index.ngdoc @@ -1,117 +1,115 @@ @ngdoc overview -@name Tutorial +@name Tutorial: Index @description -
You will need Node.js and Karma to run unit tests, so please verify that you have +A great way to get introduced to AngularJS is to work through this tutorial, which walks you through +the construction of an AngularJS web app. The app you will build is a catalog that displays a list +of Android devices, lets you filter the list to see only devices that interest you, and then view +details for any device. + + + +Work through the tutorial to see how Angular makes browsers smarter — without the use of extensions +or plug-ins. As you work through the tutorial, you will: + +* See examples of how to use client-side data binding and dependency injection to build dynamic +views of data that change immediately in response to user actions. +* See how Angular creates listeners on your data without the need for DOM manipulation. +* Learn a better, easier way to test your web apps. +* Learn how to use Angular services to make common web tasks, such as getting data into your app, +easier. + +And all of this works in any browser without modification to the browser! + +When you finish the tutorial you will be able to: + +* Create a dynamic application that works in any browser. +* Define the differences between Angular and common JavaScript frameworks. +* Understand how data binding works in AngularJS. +* Use the angular-seed project to quickly boot-strap your own projects. +* Create and run tests. +* Identify resources for learning more about AngularJS. + +The tutorial guides you through the entire process of building a simple application, including +writing and running unit and end-to-end tests. Experiments at the end of each step provide +suggestions for you to learn more about AngularJS and the application you are building. + +You can go through the whole tutorial in a couple of hours or you may want to spend a pleasant day +really digging into it. If you're looking for a shorter introduction to AngularJS, check out the +{@link misc/started Getting Started} document. + + + + + + + +# Working with the code + +You can follow this tutorial and hack on the code in either the Mac/Linux or the Windows +environment. The tutorial relies on the use of Git versioning system for source code management. +You don't need to know anything about Git to follow the tutorial. Select one of the tabs below +and follow the instructions for setting up your computer. + +
You will need Node.js and Karma to run unit tests, so please verify that you have
+ Node.js v0.8 or better installed
+ and that the node
executable is on your PATH
by running the following
+ command in a terminal window:
node --version+
Additionally install Karma if you + don't have it already:
+npm install -g karma+
You'll also need Git, which you can get from + the Git site.
Clone the angular-phonecat repository located at Github by running the following command:
+git clone git://github.com/angular/angular-phonecat.git+
This command creates the angular-phonecat
directory in your current
+directory.
Change your current directory to angular-phonecat
:
cd angular-phonecat+
The tutorial instructions assume you are running all commands from the angular-phonecat
+directory.
You will need an http server running on your system. Mac and Linux machines typically
+have Apache pre-installed, but If you don't already have one installed, you can use node
+to run scripts/web-server.js
, a simple bundled http server.
You will need Node.js and Karma to run unit tests, so please verify that you have
Node.js v0.8 or better installed
and that the node
executable is on your PATH
by running the following
command in a terminal window:
node --version
Additionally install Karma if you - don't have it already:
+ don't have it already:npm install -g karma-
You'll also need Git, which you can get from - the Git site.
Clone the angular-phonecat repository located at Github by running the following command:
-git clone git://github.com/angular/angular-phonecat.git-
This command creates the angular-phonecat
directory in your current
- directory.
Change your current directory to angular-phonecat
:
cd angular-phonecat-
The tutorial instructions assume you are running all commands from the angular-phonecat
- directory.
You will need an http server running on your system. Mac and Linux machines typically
- have Apache pre-installed, but If you don't already have one installed, you can use node
- to run scripts/web-server.js
, a simple bundled http server.
You will need Node.js and Karma to run unit tests, so please verify that you have
- Node.js v0.8 or better installed
- and that the node
executable is on your PATH
by running the following
- command in a terminal window:
node --version-
Additionally install Karma if you - don't have it already:
-npm install -g karma-
You'll also need Git, which you can get from - the Git site.
Clone the angular-phonecat repository located at Github by running the following command:
-git clone git://github.com/angular/angular-phonecat.git-
This command creates the angular-phonecat
directory in your current directory.
Change your current directory to angular-phonecat
:
cd angular-phonecat-
The tutorial instructions assume you are running all commands from the angular-phonecat
- directory.
You should run all git
commands from Git bash.
Other commands like test.bat
or e2e-test.bat
should be
- executed from the Windows command line.
You need an http server running on your system, but if you don't already have one
- already installed, you can use node
to run scripts\web-server.js
, a simple
- bundled http server.
You'll also need Git, which you can get from + the Git site.
Clone the angular-phonecat repository located at Github by running the following command:
+git clone git://github.com/angular/angular-phonecat.git+
This command creates the angular-phonecat
directory in your current directory.
Change your current directory to angular-phonecat
:
cd angular-phonecat+
The tutorial instructions assume you are running all commands from the angular-phonecat
+directory.
You should run all git
commands from Git bash.
Other commands like test.bat
or e2e-test.bat
should be
+executed from the Windows command line.
You need an http server running on your system, but if you don't already have one
+already installed, you can use node
to run scripts\web-server.js
, a simple
+bundled http server.
short
', type:'*', optional:false, 'default':undefined}, - {name:'b', description:'med
', type:'Type', optional:false, 'default':undefined}, - {name:'c', description:'long\nline
', type:'Class', optional:true, 'default':'2'}, - {name:'d', description:'fn with optional arguments
', + {name:'a', description:'short
med
long\nline
fn with optional arguments
text bold.
' + description: 'text bold.
, but escape the html escape the content', function() { expect(new Doc().markdown('bah x\n\nangular.k\n\n asdf x')). toEqual( - 'bah x\n' + + '
'); + }); + + it('should wrap everything inside a container tag', function() { + var doc = new Doc('@name superman').parse(); + var content = doc.markdown('hello'); + + expect(content).toMatch('bah x\n' + '
\n' + '<b>angular</b>.k\n' + '\n' + - ' asdf x'); + ' asdf x'); + }); + + it('should use the content before a colon as the name prefix for the className of the tag container', function() { + var doc = new Doc('@name super: man').parse(); + var content = doc.markdown('hello'); + + expect(content).toMatch('hello
'); }); it('should replace text between two tags', function() { @@ -162,11 +176,11 @@ describe('ngdoc', function() { '\ngit bla bla\n\n' + '')).toEqual( - 'hello
before
\n' + + 'before
\n' + '\n' + 'git bla bla\n' + '\n' + - ''); + ''); }); it('should unindent text before processing based on the second line', function() { @@ -290,7 +304,7 @@ describe('ngdoc', function() { name : 'number', optional: false, 'default' : undefined, - description : 'Number \nto format.
' }]); + description : '' }]); }); it('should parse with default and optional', function() { @@ -301,7 +315,7 @@ describe('ngdoc', function() { name : 'fractionSize', optional: true, 'default' : '2', - description : 'Number \nto format.
desc
' }]); + description : '' }]); }); }); @@ -311,8 +325,8 @@ describe('ngdoc', function() { doc.ngdoc = 'service'; doc.parse(); expect(doc.requires).toEqual([ - {name:'$service', text:'desc
for \n
'}, - {name:'$another', text:'A
for
'}]); + {name:'$service', text:'B
'}, + {name:'$another', text:'for \n
A
'}]); expect(doc.html()).toContain('$service'); expect(doc.html()).toContain('$another'); expect(doc.html()).toContain('for
B
for \n
'); @@ -364,7 +378,7 @@ describe('ngdoc', function() { var doc = new Doc("@name a\n@property {string} name desc rip tion"); doc.parse(); expect(doc.properties[0].name).toEqual('name'); - expect(doc.properties[0].description).toEqual('A
desc rip tion
'); + expect(doc.properties[0].description).toEqual(''); }); it('should parse @property with type and description both', function() { @@ -372,7 +386,7 @@ describe('ngdoc', function() { doc.parse(); expect(doc.properties[0].name).toEqual('name'); expect(doc.properties[0].type).toEqual('bool'); - expect(doc.properties[0].description).toEqual('desc rip tion
desc rip tion
'); + expect(doc.properties[0].description).toEqual(''); }); }); @@ -395,26 +409,26 @@ describe('ngdoc', function() { it('should parse @returns with type and description', function() { var doc = new Doc("@name a\n@returns {string} descrip tion"); doc.parse(); - expect(doc.returns).toEqual({type: 'string', description: 'desc rip tion
descrip tion
'}); + expect(doc.returns).toEqual({type: 'string', description: ''}); }); it('should parse @returns with complex type and description', function() { var doc = new Doc("@name a\n@returns {function(string, number=)} description"); doc.parse(); - expect(doc.returns).toEqual({type: 'function(string, number=)', description: 'descrip tion
description
'}); + expect(doc.returns).toEqual({type: 'function(string, number=)', description: ''}); }); it('should transform description of @returns with markdown', function() { var doc = new Doc("@name a\n@returns {string} descrip *tion*"); doc.parse(); - expect(doc.returns).toEqual({type: 'string', description: 'description
descrip tion
'}); + expect(doc.returns).toEqual({type: 'string', description: ''}); }); it('should support multiline content', function() { var doc = new Doc("@name a\n@returns {string} description\n new line\n another line"); doc.parse(); expect(doc.returns). - toEqual({type: 'string', description: 'descrip tion
description\nnew line\nanother line
'}); + toEqual({type: 'string', description: ''}); }); }); @@ -423,18 +437,18 @@ describe('ngdoc', function() { var doc = new Doc("@name a\n@descriptiondescription\nnew line\nanother line
abc"); doc.parse(); expect(doc.description). - toBe('<b>abc</b>'); + toBe(''); }); it('should support multiple pre blocks', function() { var doc = new Doc("@name a\n@description foo \n<b>abc</b>abc\n#bah\nfoo \ncba"); doc.parse(); expect(doc.description). - toBe('foo \n' + + toBe('
'); }); @@ -477,7 +491,7 @@ describe('ngdoc', function() { it('should not remove {{}}', function() { var doc = new Doc('@name a\n@example text {{ abc }}'); doc.parse(); - expect(doc.example).toEqual('foo \n' + '
abc\n\n' + 'bah
\n\n' + 'foo \n' + - '
cba'); + 'cbatext {{ abc }}
'); + expect(doc.example).toEqual(''); }); }); @@ -496,10 +510,12 @@ describe('ngdoc', function() { doc.parse(); expect(doc.html()).toContain('text {{ abc }}
Method\'s
\n' + 'this
' + + '\n'); expect(doc.html()).toContain('' + '' + 'I am self.
' + + 'Method\'s
\n' + - 'this
'); + 'I am self.
'); }); }); diff --git a/docs/src/ngdoc.js b/docs/src/ngdoc.js index dc75d5cbac62..f5f22ee84ef8 100644 --- a/docs/src/ngdoc.js +++ b/docs/src/ngdoc.js @@ -240,7 +240,25 @@ Doc.prototype = { }); }); text = parts.join(''); - text = markdown.makeHtml(text); + + function prepareClassName(text) { + return text.toLowerCase().replace(/[_\W]+/g, '-'); + }; + + var pageClassName, suffix = '-page'; + if(this.name) { + var split = this.name.match(/^\s*(.+?)\s*:\s*(.+)/); + if(split && split.length > 1) { + var before = prepareClassName(split[1]); + var after = prepareClassName(split[2]); + pageClassName = before + suffix + ' ' + before + '-' + after + suffix; + } + } + pageClassName = pageClassName || prepareClassName(this.name || 'docs') + suffix; + + text = 'I am self.
' + + markdown.makeHtml(text) + + ''; text = text.replace(/(?:)?(REPLACEME\d+)(?:<\/p>)?/g, function(_, id) { return placeholderMap[id]; }); diff --git a/docs/src/templates/css/docs.css b/docs/src/templates/css/docs.css index 01aa23765577..a34a197ff532 100644 --- a/docs/src/templates/css/docs.css +++ b/docs/src/templates/css/docs.css @@ -293,13 +293,16 @@ ul.events > li > h3 { z-index:1031; } +.tutorial-index-page, +.tutorial-the-end-page { + padding-top:50px; +} + .tutorial-page { position:relative; } -.tutorial-page-no-nav { - padding-top:50px; -} -.tutorial-page-no-nav .improve-docs { + +.tutorial-page .improve-docs { position:absolute; top:0; right:0;