Misko Hevery
c3a41ff9fe
feat($compile): simplify isolate scope bindings
...
Changed the isolate scope binding options to:
- @attr - attribute binding (including interpolation)
- =model - by-directional model binding
- &expr - expression execution binding
This change simplifies the terminology as well as
number of choices available to the developer. It
also supports local name aliasing from the parent.
BREAKING CHANGE: isolate scope bindings definition has changed and
the inject option for the directive controller injection was removed.
To migrate the code follow the example below:
Before:
scope: {
myAttr: 'attribute',
myBind: 'bind',
myExpression: 'expression',
myEval: 'evaluate',
myAccessor: 'accessor'
}
After:
scope: {
myAttr: '@',
myBind: '@',
myExpression: '&',
// myEval - usually not useful, but in cases where the expression is assignable, you can use '='
myAccessor: '=' // in directive's template change myAccessor() to myAccessor
}
The removed `inject` wasn't generaly useful for directives so there should be no code using it.
2012-06-08 15:50:13 -07:00
unknown
a57141fd1d
docs(guide): correct couple of typos
2012-06-04 18:46:09 -07:00
Misko Hevery
ddefb42445
doc(app): switch to use $last on ng-repeat
2012-06-02 16:02:09 -07:00
Misko Hevery
676d6e0040
doc(app): remove un-needed file
2012-06-02 16:02:09 -07:00
Misko Hevery
8024a5742c
doc(NgModelController) add example and $render documentation
...
Closes#930
2012-06-02 16:02:09 -07:00
Misko Hevery
073e76f835
doc(guide): corrected examples
2012-06-02 16:02:09 -07:00
Misko Hevery
7019f142ab
merge cleanup
2012-06-02 16:02:09 -07:00
Misko Hevery
0532aabcf9
doc(guide): clean up broken links
2012-06-02 16:02:08 -07:00
Misko Hevery
f0be543614
doc(ngdoc): clean up doc generation and add missing documentation links
2012-06-02 16:02:08 -07:00
Misko Hevery
a3a37c2063
doc(compiler): rewrite
2012-06-02 16:02:08 -07:00
Misko Hevery
0f5259c5a2
docs(introduction): rename
2012-06-02 16:02:08 -07:00
Misko Hevery
321a4a6b1f
doc(i18n): rename
2012-06-02 16:02:08 -07:00
Misko Hevery
41d26db32c
docs(expression): rewrite
2012-06-02 16:02:08 -07:00
Misko Hevery
dd38ce6585
docs(scope): rewrite
2012-06-02 16:02:07 -07:00
Misko Hevery
2e90cdc3d4
docs(dependency injecton): rewrite
2012-06-02 16:02:05 -07:00
Misko Hevery
581f93ae56
docs(ngdocs): cleaned up directive titles
2012-06-02 16:02:05 -07:00
Misko Hevery
6933fb7924
docs(bootstrap): rewritten bootstrap guide
2012-06-02 16:02:05 -07:00
Misko Hevery
f5afcca99d
docs(overview): updated overview guide
2012-06-02 16:02:04 -07:00
Misko Hevery
2356c21650
doc(ngdoc): proper label for source and demo section
2012-06-02 16:02:04 -07:00
Misko Hevery
275e5335dc
fix(docs): include short words in keywords
...
Short words like $q are now searchable.
Closes #967
2012-06-02 15:44:58 -07:00
Misko Hevery
0a6e464a93
feat($route): rename template -> tempalteUrl and add support for inline templates
...
BREAKING CHANGE: template in $route definition is now templateUrl
To migrate just rename `template` to `templateUrl`.
2012-06-01 17:01:10 -07:00
Misko Hevery
7c24282188
chore($route): rename events
...
BREAKING CHANGE
rename $beforeRouteChange to $routeChangeStart
rename $afterRouteChange to $routeChangeSuccess
2012-06-01 16:57:49 -07:00
Misko Hevery
bbaf9a2870
fix(docs): accept return in addition to returns
...
documentation used @return but parser expected
@returns, which made the generated documentation
incomplete.
2012-05-24 13:48:42 -07:00
Misko Hevery
7e70463da1
chore(docs): remove generated file
2012-05-24 13:48:42 -07:00
Misko Hevery
4235ee9ad6
chore(docs): remove unused doc_widget.js file
2012-05-24 13:48:40 -07:00
Misko Hevery
3fdb29242b
chore(docs): correct spacings
2012-05-24 13:48:38 -07:00
Misko Hevery
aa02534865
bug(ie8 docs): docs now work on ie8
2012-05-07 15:43:09 -07:00
Misko Hevery
8e2675029f
chore(docs): re-skin main documentation
2012-05-04 16:12:17 -07:00
Igor Minar
075c089b5c
docs(tutorial): update all the remaining steps
...
I made some diagrams and portions of the text that are stil stale
invisible. We'll fix these in the next relese.
2012-04-30 01:08:15 -07:00
Vojta Jina
1214084e9d
docs(directive): fix transclusion examples
2012-04-21 21:08:30 +02:00
Chris Dawson
666f326c5d
docs(guide/controllers): update w/ controller scope separation
2012-04-20 10:57:26 -07:00
pkozlowski-opensource
908785960d
docs(guide/e2e): fix a link to e2e dsl
2012-04-20 10:49:44 -07:00
Igor Minar
2037facc99
docs(tutorial): update step-04 to v1.0
2012-04-12 02:45:12 -07:00
Igor Minar
b2d0a386f6
style(docs-scenario.html): rename <angular/> to AngularJS in the title
2012-04-12 02:36:03 -07:00
Igor Minar
6d7e7fdea6
fix($location): properly rewrite urls in html5 mode with base url set
...
previously we were doing all kinds of checks to see if we should rewrite the url or not and we
were missing many scenarios. not any more.
with this change, we rewrite the url unless:
- the href is not set
- link has target attribute
- the absolute url of the link doesn't match the absolute prefix for all urls in our app
This also means that ng-ext-link attribute which we previously used to distinguish external
links from app links is not necessary any more. apps can just set target=_self to prevent
rewriting.
BREAKING CHANGE: ng-ext-link directive was removed because it's unnecessary
apps that relied on ng-ext-link should simply replace it with target=_self
2012-04-12 02:36:03 -07:00
simpulton
c4f6ccb065
docs($compile): fixed typo
2012-04-11 23:48:53 -07:00
Vojta Jina
5bcd719866
chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a module
...
Create build for other modules as well (ngResource, ngCookies):
- wrap into a function
- add license
- add version
Breaks `$sanitize` service, `ngBindHtml` directive and `linky` filter were moved to the `ngSanitize` module. Apps that depend on any of these will need to load `angular-sanitize.js` and include `ngSanitize` in their dependency list: `var myApp = angular.module('myApp', ['ngSanitize']);`
2012-04-11 15:50:47 -07:00
Igor Minar
e1743cc837
docs($compile): fix typo in the docs templateURL -> templateUrl
2012-04-11 11:23:48 -07:00
Vojta Jina
fcc556df37
docs(guide.forms): fix the forms dev guide to use ng-disabled
2012-04-10 13:42:17 -07:00
Igor Minar
ac2f0cece6
docs(tutorial): fix typos in steps 2 and 3
2012-04-10 06:04:13 -07:00
Igor Minar
82d90a4096
fix(docs): change all directive references to use the normalized names
2012-04-09 09:52:27 -07:00
Igor Minar
0f2de12273
chore(docs): add nonminified jquery debug version of docs
2012-04-05 11:33:42 -07:00
Igor Minar
53b2254ea7
docs(tutorial): update tutorial intro + steps 0-3
...
also contains all kinds of fixes that I had to make in the docs app to
get the tutorial to render correctly
2012-04-04 15:59:18 -07:00
Igor Minar
6336b6e89e
chore(docs): restore old tutorial ngdoc files
2012-04-04 15:59:18 -07:00
Igor Minar
fdf17d729f
fix(docs): remove ngModelInstant from all examples
...
just fixing leftover code after the removal of ngModelInstant
2012-04-04 15:56:15 -07:00
Vojta Jina
06d0955074
feat(ngModel): update model on each key stroke (revert ngModelInstant)
...
It turns out that listening only on "blur" event is not sufficient in many scenarios,
especially when you use form validation you always had to use ngModelnstant
e.g. if you want to disable a button based on valid/invalid form.
The feedback we got from our apps as well as external apps is that the
ngModelInstant should be the default.
In the future we might provide alternative ways of suppressing updates
on each key stroke, but it's not going to be the default behavior.
Apps already using the ngModelInstant can safely remove it from their
templates. Input fields without ngModelInstant directive will start propagating
the input changes into the model on each key stroke.
2012-04-03 10:10:44 -07:00
Brad Green
28ff7c3a66
Doc fixes in bootstrap
...
Now makes sense.
2012-04-03 07:07:49 -07:00
Igor Minar
fc52b81d52
fix(docs): update the example widget regexp for detecting angular.js url
...
so that we don't show angular-cookies instead of angular.js
2012-03-29 16:10:40 -07:00
Igor Minar
423242017e
fix(docs): properly rewrite urls in doc examples at docs-next
2012-03-29 16:10:40 -07:00
Misko Hevery
7b22d59b4a
chore(ngCookies): moved to module
2012-03-28 11:16:36 -07:00
Misko Hevery
798bca62c6
chore(resource): moved to module
2012-03-28 11:16:36 -07:00
Brad Green
944098a4e0
Updated manual bootstrap document
...
Explained why you'd want to manually bootstrap, added contrasting
example for automatic vs manual methods.
2012-03-27 18:06:00 -07:00
Brad Green
2ce0485e6f
Rewrite of Automatic Initialization doc
...
Added examples, explained the reasons why you initialize the whole app
or parts of the page.
2012-03-27 08:28:34 -07:00
Vojta Jina
a08cbc02e7
feat($compile): do not interpolate boolean attributes, rather evaluate them
...
So that we can have non string values, e.g. ng-value="true" for radio inputs
Breaks boolean attrs are evaluated rather than interpolated
To migrate your code, change: <input ng-disabled="{{someBooleanVariable}}">
to: <input ng-disabled="someBooleanVariabla">
Affected directives:
* ng-multiple
* ng-selected
* ng-checked
* ng-disabled
* ng-readonly
* ng-required
2012-03-26 21:14:09 -07:00
Mykhailo Kotsur
5c5b1183c8
docs(guide/module): fix syntax error and expectation in test example
2012-03-26 16:06:46 -07:00
Mykhailo Kotsur
f04142ea28
docs(guide/unit-testing): fixed typo in code example
2012-03-26 16:06:16 -07:00
Igor Minar
74c84501ed
doc(guide/module): fix typo
2012-03-23 16:57:24 -07:00
Igor Minar
4581b79bbd
doc(guide/controller): fix examples
2012-03-23 16:54:48 -07:00
Manuel Woelker
2be8847ef6
doc(guide): order topic list in guide sidebar in accordance with overview
...
Closes #405
2012-03-23 16:31:33 -07:00
Igor Minar
98e18a64aa
docs(cookbook/form): fix the example
...
Closes #712
2012-03-21 13:52:11 -07:00
Igor Minar
0a45bff472
chore(docs): switch disqus id from angularjs to angularjs-next
2012-03-21 13:46:35 -07:00
Daniel Zen
e7cd0bcc5a
docs(guide/controllers): add a section on testing controllers
2012-03-20 15:23:58 -07:00
Igor Minar
9eafd10fcd
docs(guide/location): fix example
2012-03-20 12:05:57 -07:00
Igor Minar
3436c027f2
docs(guide/started): fix examples
2012-03-20 11:30:21 -07:00
Igor Minar
53b6f522a5
fix(ngDocSpec): fix broken tests
2012-03-16 15:32:14 -07:00
Igor Minar
f13dd3393d
feat(injector): infer _foo_ as foo
...
this is to enable nicer tests:
describe('fooSvc', function() {
var fooSvc;
beforeEach(inject(function(_fooSvc_) {
fooSvc = _fooSvc_;
}));
it('should do this thing', function() {
//test fooSvc
});
});
2012-03-16 10:52:40 -07:00
Igor Minar
716b5fd3e2
docs(*): fixing various docs
2012-03-13 23:17:43 -07:00
Misko Hevery
8b8fdddc0b
docs(links): corrected borken links
2012-03-13 19:36:09 -07:00
Igor Minar
ce4b630524
fix(docs): properly close the optional ] in directive signatures
2012-03-13 17:51:05 -07:00
Daniel Zen
7b52586f7c
docs(guide): fix non-working example + add docs for implicit DI
2012-03-13 17:14:50 -07:00
Misko Hevery
027801a00a
doc(search): include method names in corpus
2012-03-13 16:32:15 -07:00
Vojta Jina
66e6c1ce2c
docs(forms): Change validation tokens to lowercase
2012-03-13 16:18:14 -07:00
Vojta Jina
63be222326
docs(input): Fix some broken links, add missing $, use ng- in examples
2012-03-13 13:52:57 -07:00
Vojta Jina
a29c2cf70c
doc(form): updated to reflect the latest changes
2012-03-13 13:36:28 -07:00
Igor Minar
f59e4b11f1
fix(forms): prefix all form and control properties with $
2012-03-12 23:04:11 -07:00
Igor Minar
a9ed5745a0
docs(directive): add more docs for the directive api
2012-03-12 23:04:10 -07:00
Vojta Jina
317adb36a4
docs(guide.forms): Update forms guide
2012-03-12 01:40:12 -07:00
Misko Hevery
3e5377f4f3
doc(fixes): to better support ng-directive notation
2012-03-11 21:31:35 -07:00
Misko Hevery
488a03631e
Mostly Revert "fix(docs): directive events + cleanup"
...
This reverts commit 8fb34f008e .
2012-03-11 21:31:34 -07:00
Igor Minar
f4d338d393
chore(*): refactor all ng: to ng-
2012-03-09 16:14:26 -08:00
Vojta Jina
00d4427388
refactor($provide) Rename service -> provider
...
It registers a provider class, so this makes more sense.
Breaks Rename $provide.service -> $provide.provider
2012-03-09 10:10:28 -08:00
Igor Minar
fae84463e4
docs(css): allow headers to wrap with blue background
2012-03-08 22:29:35 -08:00
Igor Minar
8fb34f008e
fix(docs): directive events + cleanup
2012-03-08 22:29:35 -08:00
Igor Minar
772ddb983b
docs(directive, module): add various missing docs and fix existing docs
2012-03-08 11:06:14 -08:00
Igor Minar
1b4289ce76
fix(docs): add a header for the directive info section
2012-03-08 11:06:14 -08:00
Igor Minar
2acd60df4d
fix(docs): remove undefined from examples with jsfiddle=false
2012-03-08 11:06:14 -08:00
Misko Hevery
6a98c52c84
chore(compiler): change default restriction to attribute only for directives
2012-03-08 10:07:49 -08:00
Vojta Jina
6aa3cfc31b
docs($compileProvider.directive): Update iAttrs docs
2012-03-07 14:04:14 -08:00
Vojta Jina
1084ccf7ef
fix(docs): Add $locationProvider methods to the docs example provider
...
- $locationProvider.html5Mode
- $locationProvider.hashPrefix
Docs example is basically a different application on the same page, but we don't want to instantiate multiple instances of $browser or $location service, so we are overriding these providers to return the instances from parent app.
Overriding the service with $provide.value caused a provider to be auto-generated without the necessary hashPrefix and html5Mode apis.
2012-03-05 19:09:43 -08:00
Vojta Jina
4370d756e4
refactor(directive.ngModel): rename emitValidity -> setValidity
2012-02-28 18:22:41 -08:00
Vojta Jina
c4c60c25b4
reafactor: Rename ng:bind-immediate -> ng:model-instant
2012-02-28 18:22:41 -08:00
Vojta Jina
139e1b09a9
docs(forms): Update API docs for forms
...
- API forms (ng:model + controller, form + controller)
- fix some broken links
- ng:change, ng:model-instant
2012-02-28 18:22:35 -08:00
Misko Hevery
e31d1c287d
refactor($route): remove .parent(); ng:view scope creation
2012-02-28 17:46:58 -08:00
Vojta Jina
21c725f1a1
refactor(forms): Even better forms
...
- remove $formFactory completely
- remove parallel scope hierarchy (forms, widgets)
- use new compiler features (widgets, forms are controllers)
- any directive can add formatter/parser (validators, convertors)
Breaks no custom input types
Breaks removed integer input type
Breaks remove list input type (ng-list directive instead)
Breaks inputs bind only blur event by default (added ng:bind-change directive)
2012-02-28 17:46:58 -08:00
Vojta Jina
d1558d7924
docs: evaluate only scripts with type text/javascript
2012-02-28 14:15:39 -08:00
Misko Hevery
5d8528cc2e
docs(module): Describe module loading
2012-02-23 09:53:14 -08:00
Misko Hevery
c27a56f4da
docs(scope): show which directives create scopes
2012-02-22 12:59:23 -08:00
Misko Hevery
3773323e46
docs($compile): transclude documentation
2012-02-21 22:46:01 -08:00
Misko Hevery
22c1db1744
fix(ngdoc): extract keywords from properties/methods.
2012-02-21 22:45:58 -08:00
Vojta Jina
b6f61a89cf
docs($compileProvider.directive): fix some typos
2012-01-26 09:13:08 -08:00
Misko Hevery
4804c83b7d
docs(compiler): update the compiler docs
2012-01-25 11:53:59 -08:00
Misko Hevery
9ee2cdff44
refactor(directives): connect new compiler
...
- turn everything into a directive
2012-01-25 11:50:37 -08:00
Misko Hevery
81a6601e05
fix(docs): improper rendering of JSON
2012-01-25 11:46:35 -08:00
Vojta Jina
0196411dbe
refactor(scope.$watch): rearrange arguments passed into watcher (newValue, oldValue, scope)
...
As scopes are injected into controllers now, you have the reference anyway, so having scope as first argument makes no sense…
Breaks $watcher gets arguments in different order (newValue, oldValue, scope)
2012-01-23 11:11:27 -08:00
Vojta Jina
992c790f07
refactor(scope): separate controller from scope
...
Controller is standalone object, created using "new" operator, not messed up with scope anymore.
Instead, related scope is injected as $scope.
See design proposal: https://docs.google.com/document/pub?id=1SsgVj17ec6tnZEX3ugsvg0rVVR11wTso5Md-RdEmC0k
Closes #321
Closes #425
Breaks controller methods are not exported to scope automatically
Breaks Scope#$new() does not take controller as argument anymore
2012-01-23 11:05:36 -08:00
Vojta Jina
afc241bd28
docs(inputType): fix small typo
2012-01-19 00:27:32 -08:00
ludicast
a507fb7bb3
docs(guide): update angular version in an example
2012-01-18 17:16:27 -08:00
Igor Minar
22309c312f
fix(docs): disable appcache - causing too much trouble
2012-01-17 12:13:29 -08:00
Igor Minar
fcf95a47d1
docs(*): more fixes
2012-01-17 11:23:56 -08:00
Vojta Jina
039041e3ae
docs: syntax highlight auto bootstrap code example
2012-01-17 11:00:25 -08:00
Igor Minar
f9502d2ad3
fix(docs): temp hack to get appcache properly invalidated
2012-01-17 09:49:39 -08:00
Vojta Jina
897d0f1424
docs(guide): update the diagram
2012-01-17 09:49:38 -08:00
Igor Minar
92af30ce6e
docs(*): various doc fixes
2012-01-17 09:49:37 -08:00
Igor Minar
939c8e8fac
docs($http, $httpBackend): docs docs docs
2012-01-13 14:28:20 -08:00
Igor Minar
d2ba4c5170
fix(ngdocs): add '=' to type signatures with optional arguments
2012-01-13 13:53:07 -08:00
Vojta Jina
e7a23e4b65
fix(docs): generate correct ids on h elements to get scrolling working
2012-01-13 01:07:17 -08:00
Vojta Jina
249c89c091
fix($autoScroll): scroll even if $location is in html5 mode
...
+ use autoscroll in docs (ng:include)
2012-01-13 01:01:26 -08:00
Misko Hevery
d648d709f3
refactor(module): strict separation between module-config / app-runtime
2012-01-12 13:40:07 -08:00
Misko Hevery
5143e7bf06
feat(module): new module loader
2012-01-10 22:27:00 -08:00
Misko Hevery
afd25446d2
feat(ngdocs): support for interface documentation
2012-01-10 22:21:54 -08:00
Misko Hevery
3c3e6980b3
chore(specs.js): remove unused dependency
2012-01-10 22:21:54 -08:00
Igor Minar
11cb9423a7
chore(docs): disable disqus for localhost
...
it's just slowing down the test runs and debugging
2012-01-09 13:17:49 -08:00
Igor Minar
871252ab4c
docs(guide): fix $xhr -> $http links
2011-12-07 16:59:06 -08:00
Igor Minar
c28662d28d
fix(filter): remove the $ prefix from filter service ids
2011-12-07 13:07:19 -08:00
Vojta Jina
45f47ff6cd
fix($browser.xhr): change method "JSON" to "JSONP"
...
Breaks "JSON" xhr method is now called "JSONP"
2011-11-30 11:03:41 -05:00
Igor Minar
a035e88397
docs(guide): fix directives guide docs
2011-11-28 18:04:01 -05:00
Vojta Jina
3548fe3139
feat(service.$autoScroll): scroll to hash fragment
...
- whenever hash part of the url changes
- after ng:view / ng:include load
2011-11-21 17:49:49 -08:00
Igor Minar
8d1944851d
fix(docs): specify disqus_url
2011-11-19 15:42:17 -08:00
Misko Hevery
8adae2fdf2
refactor(injector): removed loadModule/ng:module
...
- added module property to doc:example
2011-11-14 20:31:21 -08:00
Misko Hevery
ac73e8877e
add(doc): added missing angular.module.ng namespace
2011-11-14 20:31:19 -08:00
Misko Hevery
8d6dc0b9a7
del($eager): removed the support for $eager services
2011-11-14 20:31:19 -08:00
Vojta Jina
acbd7cdf32
style(docs): make jslint happy - fix some warnings
2011-11-14 20:31:19 -08:00
Misko Hevery
035c751076
fix(doc) cleanup all dev guide doc link warnings
2011-11-14 20:31:18 -08:00
Misko Hevery
186a840cd3
feat(bootstrap): added angular.bootstrap method
2011-11-14 20:31:18 -08:00
Misko Hevery
b09595a3c1
fix(doc) cleanup all api doc link warnings
2011-11-14 20:31:18 -08:00
Misko Hevery
f6d98f1472
fix(doc): make output less noisy
2011-11-14 20:31:17 -08:00
Misko Hevery
8fe77b69e8
refactor(docs): improved the visual rendering of the documentation pages
2011-11-14 20:31:17 -08:00
Misko Hevery
1cc6bee4ce
docs(browser): moved and migrate browser removed unneeded files.
2011-11-14 20:31:17 -08:00
Misko Hevery
74fac45f48
doc($filter): added $filter documentation
2011-11-14 20:31:16 -08:00
Misko Hevery
f0fa5e6376
doc(AUTO, NG_MOCK): Documenting the AUTO and NG_MOCK module
2011-11-14 20:31:16 -08:00
Misko Hevery
c283bf6035
refactor($location): merged $locationConfig service into $locationProvider
2011-11-14 20:31:15 -08:00
Misko Hevery
9c06394376
chore(scenario tests): make scenario tests pass again
2011-11-14 20:31:15 -08:00
Misko Hevery
c27aba4354
refactor(api): remove type augmentation
...
BREAK:
- remove angular.[Object/Array/String/Function]
- in templates [].$filter(predicate) and friends need to change to [] | filter:predicate
2011-11-14 20:31:14 -08:00
Misko Hevery
bd04316a89
refactor(services): migrate angular.service -> module
2011-11-14 16:39:33 -08:00
Vojta Jina
5c70ff72e2
style(docs): make jslint happy - fix some warnings
2011-11-13 16:40:31 -08:00
Vojta Jina
5e663c3dc7
fix(docs.guide): fix $location example
2011-11-13 16:40:31 -08:00
Vojta Jina
260725efcd
feat(docs): allow examples with hidden source code
2011-11-13 16:40:31 -08:00
Vojta Jina
4afad1da29
feat(docs): allow custom attributes on <doc:source>
...
Allow any attributes, not only jsfiddle...
2011-11-13 16:40:31 -08:00
Igor Minar
66fc268aeb
docs(css): fixing positioning of disqus comments
...
float:left causes the comments to shift to the left when content is longer
than the sidebar
2011-11-05 22:30:50 -07:00
Igor Minar
6cbe096dbf
feat(docs): remove the Report Issue link - duplication of disqus
2011-10-30 22:27:25 -07:00
Igor Minar
21602b5cd6
fix(docs): special case url generation for index pages
2011-10-30 22:27:25 -07:00
Igor Minar
4ae671ac88
fix(docs): increment load counter only when a valid page is requested
2011-10-30 22:27:25 -07:00
dandoyon
28ed5ba465
feat(docs): disqus integration
...
- add style for disqus threads in css
- add loadDisqus method to be called afterPartialLoaded
- add div container for disqus threads
2011-10-30 22:27:25 -07:00
Vojta Jina
bf729d550b
feat(docs): Add scenario runner into dev guide
...
And update the link in the tutorial as well...
2011-10-26 15:58:59 -07:00
Igor Minar
d7ba5bc83b
feat(bootstrap): drop angular.js file name restrictions for autobind
...
The last script element in the dom is always us if the script that
contains angular is loaded synchronously.
For async loading manual bootstrap needs to be performed.
Close #621
2011-10-26 12:57:15 -07:00
Igor Minar
950d02b4d4
fix(docs): remove unused $browser dependency
2011-10-26 12:57:14 -07:00
Igor Minar
e28171d5e4
fix(docs): key-binding used old scope apis
2011-10-22 21:32:48 -07:00
Igor Minar
ce73ed091b
feat(docs): add "Loading..." notification
2011-10-22 21:32:47 -07:00
Igor Minar
90ac8d57b0
fix(docs): update page title only when content loads
2011-10-22 21:32:47 -07:00
Igor Minar
6eb1179505
style(docs): change "this" to "scope" in the controller
2011-10-22 21:32:47 -07:00
Igor Minar
f38010d3a2
fix(compiler): revert 8611ebe6 - calling \$digest after linking
...
Change introduced by me in 8611ebe6 results in considerable inefficiencies when the compiler
and linker is used from within a widget, in which case, we call $digest unnecessary since it
will be called by the $apply which called the directive/widget in the first place.
There are only two places when the extra $digest call can be useful - when manually bootstrapping
the app or in tests. However even in tests this behavior can result in unwanted results (especially
when ng:controller is involved). So it is better to leave it for the developer to call $digest
when it is really needed.
2011-10-20 15:51:14 -07:00
Vojta Jina
8978e066b5
fix(gen-docs): require files without touching PATH
...
So that it works on latest revision of node...
New version of Node (v0.5.x) does not support require.paths.push().
2011-10-18 22:23:52 -07:00
Igor Minar
669b53ede2
fix(docs): fix jsfiddle integration
...
this got accidentally messed up during the forms refactoring and mass renaming
2011-10-14 08:31:00 -07:00
Igor Minar
b0c3f28e8f
docs(forms): fix devguide forms example code
2011-10-14 08:30:02 -07:00
Igor Minar
9810dc0993
docs(cookbook): disable jsfiddle for deeplinking example
...
it uses extra resources, so it won't work on fiddle
2011-10-14 08:29:33 -07:00
Igor Minar
ad5e42cf82
docs($location): Html5 -> HTML5
2011-10-13 14:42:49 -07:00
Igor Minar
9ed1126adb
docs($location): update replace() docs
2011-10-13 14:37:37 -07:00
Igor Minar
7a19eb84aa
docs($location): fix $config -> $locationConfig in docs
2011-10-13 14:07:48 -07:00
Vojta Jina
ec8bb675b4
fix(docs): set proper base href when hashbang url requested
2011-10-13 11:10:20 -07:00
Igor Minar
28ccc76aa1
docs(dev_guide.bootstrap.auto_bootstrap): fixing a typo
2011-10-12 23:04:48 -07:00
Igor Minar
b3c4cb7cff
docs(*): remove @workInProgress from everywhere
...
it's not useful any more and it only makes the docs look ugly
2011-10-12 23:04:48 -07:00
Igor Minar
a4b45397e0
docs(forms): add ng:change docs and other fixes
2011-10-12 11:49:42 -07:00
Misko Hevery
fd822bdaf9
chore(formating): clean code to be function() {
2011-10-11 11:01:46 -07:00
Misko Hevery
4f78fd692c
feat(forms): new and improved forms
2011-10-11 11:01:45 -07:00
Dhruv Manek
7aeb6a24f7
fix(docs): rename doc dev_guide.templates.css to dev_guide.templates.css-styling
...
Closes #580
2011-10-07 18:20:20 -07:00
dandoyon
091c173632
docs(started): fixing pluralization
2011-10-05 13:47:43 -07:00
Igor Minar
2e9fed7b6c
fix(e2e): add index-nocache.html to run e2e tests without cache
...
using appcache while running e2e tests was causing the following
problems:
- Safari would occasionally reload the app (as a result of the appcache
refresh) during the angular.validator.asychronous test, which would
result in test failure and false positivy.
- Firefox6 would run the tests very slowly, disabling the cache resolved
the latency issues
- Sometimes tests would run with stale code pulled from cache, which
would result in flaky tests.
2011-09-26 23:51:55 +02:00
Vojta Jina
13f92de624
feat(docs): use html5 history api for all routing in the docs app
...
- Configure our docs app to use new $location with html5 history api!
- Update simple node web server to serve index.html for all links
(rewritting).
- Update .htaccess file to serve index.html for all links (rewritting).
- At runtime determine the base href path and attach it to the DOM. We
needed the absolute URL to get all browsers to work well.
- Because of the above, we also need to dynamically determine all needed
js/css resources and add them to the DOM. This was needed because FF6
would eagerly fetch resources with wrong URL since the base element is
added to the dom at runtime.
- All content html files were moved to the partials directory, because
with the new html5 urls it was impossible to tell if request for
http://domain/api/angular.filter.html was an html5 url for the html
filter doc page, or an xhr/appcache request for the content html file
for the html filter.
f
2011-09-26 23:51:53 +02:00
Igor Minar
3ace81b92a
fix(e2e tests): use prop() instead of attr() and quote attributes
...
Because of changes in jQuery, we need to use element().prop() instead of element().attr() to retrieve className and other element properties.
Additionally all attribute selectors (e.g. input[name=value]) must have value quoted if it contains dots (".").
2011-09-16 02:44:35 +02:00
Igor Minar
a2a830e227
feat (jquery): upgrade everything to jQuery 1.6.4
...
Closes #556
2011-09-16 02:44:27 +02:00
Vojta Jina
4b4292edb8
style: fix some missing semi-colons and spaces, typos
2011-09-08 23:00:59 +02:00
Vojta Jina
8fa79066e2
doc($location): $location docs + using $location guide
2011-09-08 23:00:59 +02:00
Vojta Jina
4421f3d435
fix(docs): update docs to reflect new $location and fix e2e tests
2011-09-08 23:00:59 +02:00
Igor Minar
e54909f5ef
fix(docs): use window.execScript instead of window.eval on IE
...
IE's window.eval doesn't execute in the global context, so we have to
use window.execScript instead which works like window.eval on normal
browsers. However execScript throws an exception when an empty string is
passed in, so I created a workaround with a workaround.
2011-09-06 14:57:37 -07:00
Igor Minar
7f0b97e02c
test(jsonp): fixing jsonp e2e tests
...
- buzz api keeps on throttling our requests which makes our build fail
so I'm disabling the buzz demo e2e test
- the $xhr service jsonp test was modified to use jsonp on angularjs.org
instead of buzz api for the same reason as mentioned above
2011-09-02 16:17:05 -07:00
Igor Minar
bc6e0cc954
docs(guide/tutorial/misc): sync with google docs
2011-09-02 10:44:19 -07:00
Igor Minar
ff2cb86d5d
style(e2e tests): shorten jquery/jqlite describe
2011-08-31 23:03:58 -07:00
Misko Hevery
3c80cf3df6
style(docs): improve the formatting of events in docs
2011-08-31 14:34:56 -07:00
Misko Hevery
08d09ecbaa
feat(docs): add support for events
2011-08-31 14:30:21 -07:00
Di Peng
19401280ae
feat(doc): generate both normal and debug version of index.html
...
- index.html has manifest file and angular.min.js
- index-jq.html has manifest file, angular.min.js and jquery.min.js
- index-debug.html has angular.js
- index-jq-debug.html has angular.js and jquery.min.js
2011-08-24 15:03:09 -07:00
Igor Minar
30753cb131
feat(ng:cloak): add ng:cloak directive
2011-08-24 15:01:49 -07:00
Di Peng
15e6105779
fix(docs): remove more unecessary use of hide() and show() method
...
- tutorial section of docs fails to render properly as
doc:tutorial-instructions widget uses deprecated show and hide methods
of jQlite.
2011-08-21 09:40:53 -07:00
Igor Minar
607de75fa4
fix(docs): work around the lame ng:show directive
2011-08-21 00:46:58 -07:00
Igor Minar
db04241beb
fix(docs): change docs.css to avoid css clashes in buzz example
2011-08-21 00:46:46 -07:00
Di Peng
774db0aecb
fix(sample): Fix for jsFiddle integration
2011-08-19 15:27:21 -07:00
dandoyon
431b748cac
doc(sample): Add javascript sandbox integration (jsFiddle)
...
Change doc_widget.js to:
- render "edit in jsfiddle" button next to all examples
- make opt out certain examples by adding jsfiddle="false" attribute to
doc:source element
2011-08-16 15:15:06 -07:00
Igor Minar
793ecb4817
refactor(jqLite): remove jqLite show/hide support
...
it turns out that even with our tricks, jqLite#show is not usable in
practice and definitely not on par with jQuery. so rather than
introducing half-baked apis which introduce issues, I'm removing them.
I also removed show/hide uses from docs, since they are not needed.
Breaks jqLite.hide/jqLite.show which are no longer available.
2011-08-15 12:51:41 -07:00
Misko Hevery
42062dab34
refactor(scope): remove $flush/$observe ng:eval/ng:eval-order
2011-08-12 15:47:47 -07:00
Igor Minar
4dc9e6416a
doc(tutorial): updates needed for 0.9.18 rebase
2011-08-04 10:48:17 -07:00
DiPeng
4f6e947e49
fix(docs): fix qfs.read() encoding issue
...
- must use binary reading when using read function in q-fs module
otherwise some unicode character may be garbled.
Closes #497
2011-08-03 16:50:25 -07:00
Misko Hevery
8f0dcbab80
feat(scope): new and improved scope implementation
...
- Speed improvements (about 4x on flush phase)
- Memory improvements (uses no function closures)
- Break $eval into $apply, $dispatch, $flush
- Introduced $watch and $observe
Breaks angular.equals() use === instead of ==
Breaks angular.scope() does not take parent as first argument
Breaks scope.$watch() takes scope as first argument
Breaks scope.$set(), scope.$get are removed
Breaks scope.$config is removed
Breaks $route.onChange callback has not "this" bounded
2011-08-02 01:00:03 +02:00
Igor Minar
a45d383da2
doc(contribute): add npm & q dependencies to setup instructions
2011-07-29 13:59:36 -07:00
Igor Minar
c1a681d6f4
doc(index.html): change the order of elements in the navbar
...
Users often don't see Tutorial and go straight to crappy Dev Guide,
changing the order should help find them right content in the right
order.
2011-07-29 13:44:55 -07:00
Igor Minar
f4df421b44
doc(css): make all navbar links bold
2011-07-29 13:43:51 -07:00
Igor Minar
bdef462ccc
doc(started): fixing up the doc and adding link to the tutorial
2011-07-29 12:56:50 -07:00
Igor Minar
a79231dea6
doc(guide): various fixes and improvements
2011-07-29 12:46:54 -07:00
Igor Minar
3e54a1b18a
doc(tutorial): fixes and improvements from Toni and Ben
2011-07-29 12:40:27 -07:00
Igor Minar
4b90f65614
feat(tutorial): add an arrow to 'Workspace Reset Instructions' links
...
The arrow is a hint that user won't navigate to a new page, but instead
the instructions will be displayed inline.
2011-07-29 11:43:17 -07:00
Di Peng
9dea9de449
feat(docs): add full offline support
2011-07-26 16:35:42 -07:00
Di Peng
bee78a8492
feat(docs): add a changelog link to the footer
2011-07-26 14:21:13 -07:00
Vojta Jina
00ea08e0ab
doc(tutorial): fix navigation widget to work without jQuery
...
jqLite doesn't support class selectors, can find only by tag name...
2011-07-26 14:20:24 -07:00
Di Peng
8fa066190a
refactor(gen-docs): use q, qq, q-fs (node modules) to write gen-docs
...
- re-write gendocs.js, reader.js and writer.js
- all calls are asynchronous
2011-07-20 17:33:18 -07:00
Di Peng
e90b741c94
feat(gen-docs): enable caching the whole site
...
Generate a manifest file automatically by reading the directories.
2011-07-20 17:09:40 -07:00
Igor Minar
ad3b8d7bcf
chore(docs/.htaccess): bundle .htaccess with docs
2011-07-19 16:58:40 -07:00
Di Peng
f9b4c9da64
refactor(docs): run e2e tests with and without jquery
...
- e2e tests will run index.html (without jquery) and with
index-jq.html(with jquery).
- many small changes to make e2e tests work withough JQuery as we
discover problems that were previously hidden by using real JQuery.
2011-07-17 22:19:08 -07:00
Igor Minar
da464683aa
doc(ng:include): improve the doc example to avoid confusion
2011-07-16 22:01:19 -07:00
Igor Minar
a8f4d87be5
doc(css): add '#content-list .level-4' css
2011-07-16 01:12:29 -07:00
Igor Minar
57ea8156a1
doc(ngdoc): add 'this' and 'returns' section for methods
2011-07-16 01:12:29 -07:00
Igor Minar
6289d18e61
doc(ngdoc): fix usage format for functions bolted onto services
2011-07-16 01:12:29 -07:00
Igor Minar
9e37ebe635
test(ngdoc): add test for @ngdoc function
2011-07-16 01:12:29 -07:00
Igor Minar
345c01c81b
test(ngdoc): fix a typo in the @deprecated spec
2011-07-16 01:12:29 -07:00
Igor Minar
975aef2ad2
test(ngdoc): fix failing tests
2011-07-16 01:12:28 -07:00
Vojta Jina
7e2e7b07b6
doc($route): fix $route example and couple of typos
...
Rewrite $route example a bit, as it required $location and $route services
to be eager published in the root scope.
Fix small typos in formatter and ng:options docs.
2011-07-13 11:49:16 +02:00
Igor Minar
76a500179d
docs:template: rename <angular/> to AngularJS
2011-07-08 08:24:09 -07:00
Igor Minar
7b32c71386
docs:css: remove bullet points from tutorial sidebar
2011-07-08 08:24:09 -07:00
Igor Minar
28e84ca167
docs:css: fix indentation for pre element
2011-07-08 08:24:09 -07:00
Igor Minar
952225f020
doc:dependencies: add /api/ prefix to dependency links
2011-07-02 10:37:04 -07:00
Igor Minar
1e8448b9e5
fix:docs: properly distinguish between being offline and 404
2011-06-30 00:49:44 -07:00
Igor Minar
ce4f27aa7b
fix:docs: css lint fixes
2011-06-27 15:05:38 -07:00
Di Peng
8e6e09a4bc
fix:docs: Fix sitemap generator to use doc.id instead of doc.name
...
doc.id should be used instead of doc.name, otherwise links are wrongly
generated
2011-06-25 08:00:43 -07:00
Vojta Jina
fee3717892
Update fixed docs content (guide)
...
Couple of typos fixed:
* indentation
* batchLogbatchLog -> batchLog
* start periodic checking
* missing brace
2011-06-21 16:23:48 +02:00
Vojta Jina
c8ee00cb2b
Update docs from googledocs
...
* fixed typo in tutorial step-10
* revert cookbook/buzz example to use googlebuzz user
2011-06-16 16:27:46 +02:00
Igor Minar
3c87611188
docs - various doc fixes
2011-06-15 22:32:24 -07:00
Igor Minar
b842642b57
docs - stripping extra new lines
2011-06-15 22:31:40 -07:00
Di Peng
f8529672f6
Updated docs/cookbook/buzz from gdocs
...
With couple of fixes:
* indentation + code formatting
* use ng:href, ng:src
* change UserId to misko.hevery so it will work now
2011-06-15 01:33:56 +02:00
Misko Hevery
e83465c362
Fix scenario runner on IE7, IE8
...
* add ng:disabled, ng:checked, ng:multiple, ng:readonly, ng:selected
* fetch fixed cookbook/advancedform (use ng:disabled)
* fire keydown instead of change on input
* remove frame when test finishes
2011-06-15 01:14:22 +02:00
Vojta Jina
f370be85cb
Fix small typo in docs widget (tutorial instructions)
2011-06-10 18:30:55 +02:00
Misko Hevery
f9f95879f0
Added support for properties in documentation
2011-06-08 15:21:33 -07:00
Misko Hevery
8cad231bd2
Refactor injector to have invoke method for speed reasons
2011-06-08 15:21:31 -07:00
Vojta Jina
e0ee3a0726
Update latest docs content from gdocs
2011-06-07 16:11:00 -07:00
Vojta Jina
e670a812fa
Remove removing old comments from gdocs
...
There were two places where we were removing old comments from google docs:
* gdocs.js fetching script
* docs/src/reader.js
2011-06-07 14:56:56 -07:00
Igor Minar
bb7228e2d9
fix ngdocSpec tests
2011-06-07 14:56:01 -07:00
Igor Minar
25b3438fd7
add appcache for docs site - caches only css/js/img resources
2011-06-07 14:56:01 -07:00
Igor Minar
f21b9214e6
remove $script loader because incompatibilities with e2e runner
2011-06-07 10:39:57 -07:00
Igor Minar
80ea329d5f
fix css for api reference
2011-06-07 07:44:59 -07:00
Igor Minar
6e0ff5fa96
fixing the dev guide ordering
2011-06-07 07:44:49 -07:00
Vojta Jina
4cdce2d30b
Docs: Error 404 page with simple suggestion for new links
2011-06-06 23:10:30 -07:00
Igor Minar
48e69ed4d1
moving the angular.mock docs down in the api list
2011-06-06 23:10:30 -07:00
Igor Minar
c35b0a7907
yet another docs batch
2011-06-06 23:10:30 -07:00
Igor Minar
805bb5bb6e
fixing broken docs links
2011-06-06 23:10:30 -07:00
Kenneth R. Culp
4224e8e371
images for guide
2011-06-06 23:10:29 -07:00
Igor Minar
dd44e00ddd
docs css fix for content-list indentation
2011-06-06 23:10:29 -07:00
Igor Minar
3069566073
api doc fixes from ken
2011-06-06 23:10:28 -07:00
Igor Minar
759e6ea8ed
docs css fixes
2011-06-06 23:10:28 -07:00
Igor Minar
c4989d8979
add new version of api/angular doc
2011-06-06 23:10:28 -07:00
Igor Minar
af710c3ac1
fix wrapping api links into code element
2011-06-06 23:10:27 -07:00
Igor Minar
e89ef35d05
make *.angularjs.org analytics work on subdomains
2011-06-06 23:10:27 -07:00
Igor Minar
2ba3c3ee57
fix getting started docs
2011-06-06 23:10:27 -07:00
Igor Minar
c6dbdde6dc
fix hashpath prefix for docs/sitemap/etc
2011-06-06 23:10:27 -07:00
Igor Minar
f8417b48be
docs app css/js/html rewrite
2011-06-06 22:52:02 -07:00
Igor Minar
7f1e2e4846
new batch of docs
2011-06-06 22:52:02 -07:00
Igor Minar
5533e48dea
work in progress
2011-06-06 22:52:02 -07:00
Vojta Jina
16d0354f93
Load GA script using $script loader
2011-06-06 22:52:02 -07:00
Vojta Jina
350ee31107
Google Analytics - basic page tracking for docs
2011-06-06 22:52:02 -07:00
Vojta Jina
2da07127e4
Add doc:tutorial-instructions widget
2011-06-06 22:52:01 -07:00
Igor Minar
bc2ca384b1
move docs/content/intro to docs/content/misc
2011-06-06 22:52:01 -07:00
Vojta Jina
2380943106
Allow "section/" links pointing to "section/index"
2011-06-06 22:52:01 -07:00
Vojta Jina
43b2cd45f0
Allow relative links in docs
...
So you can use links without section when they link within the section.
2011-06-06 22:52:01 -07:00
Vojta Jina
e389911a35
Change warning to log place first and then link
2011-06-06 22:52:00 -07:00
Vojta Jina
fd357b4cd2
Remove trailing ws
2011-06-06 22:52:00 -07:00
Igor Minar
924ffafc51
fixing broken links
2011-06-06 22:52:00 -07:00
Vojta Jina
3616716615
Indent the API reference list
2011-06-06 22:52:00 -07:00
Vojta Jina
76df0db598
Fixed docs search input with
...
And couple of missing semi-colons...
2011-06-06 22:52:00 -07:00
Vojta Jina
7fe46e8d7e
Bit of refactoring
2011-06-06 22:51:59 -07:00
Vojta Jina
864da8b553
Couple of todos
2011-06-06 22:51:59 -07:00
Vojta Jina
d62b8407cf
Fixed couple of failing tests in docs
...
These tests were failing because of rewriting urls into new 'section' format,
i.e. angular.scope -> api.angular.scope
2011-06-06 22:51:59 -07:00
Vojta Jina
8cb84eac68
Log warning for every non existing link instead of throwing exception
...
Guess we don't want to stop doc generating process because of non-existing link, so just log warning and continue...
2011-06-06 22:51:59 -07:00
Vojta Jina
2e0e732cad
Check whether links do exist and throw exception
2011-06-06 22:51:59 -07:00
Vojta Jina
22f9354c21
Fix sitemap include (to work on case sensitive linux)
2011-06-06 22:51:59 -07:00
Igor Minar
0c75a96917
new version of the xhr service
2011-06-06 22:51:59 -07:00
Igor Minar
14407921c7
reorder docs main menu items
2011-06-06 22:51:58 -07:00
Igor Minar
8920381b44
fix docs css
2011-06-06 22:51:58 -07:00
Igor Minar
3751f172b3
add new batch of tutorial docs and images
2011-06-06 22:51:58 -07:00
Igor Minar
3776e08db0
new docs skin - WIP
2011-06-06 22:51:58 -07:00
Igor Minar
c1debfb81d
fix docs landing page redirection
2011-06-06 22:51:58 -07:00
Igor Minar
0fb37b08e7
add resource merging
2011-06-06 22:51:58 -07:00
Igor Minar
2094bc8f61
make docs/writer.js copyDir recursive
2011-06-06 22:28:39 -07:00
Igor Minar
a1f3725c0f
ignore non .ngdoc files
2011-06-06 22:28:39 -07:00
Kenneth R. Culp
4ac234833a
Don't forget the_end...
2011-06-06 22:28:39 -07:00
Kenneth R. Culp
9d9117384f
Latest greatest tutorial udpates.
2011-06-06 22:28:38 -07:00
Igor Minar
525e444a0f
temporary hack to strip all the extra chars from google docs
2011-06-06 22:28:38 -07:00
Igor Minar
fd112877f8
fix link to the tutorial page
2011-06-06 22:28:38 -07:00
Igor Minar
6181ca600d
new batch of tutorial docs
2011-06-06 22:28:38 -07:00
Misko Hevery
11e9572b95
Move documentation under individual headings
2011-06-06 22:28:38 -07:00
Misko Hevery
b6bc6c2ddf
fix syntax highlighting on the javascript
2011-06-06 22:28:37 -07:00
Misko Hevery
ea6b87c24b
renamed tutorial so that it would sort properly
2011-06-06 22:28:37 -07:00
Kenneth R. Culp
e205bd7137
Update tutorial docs.
2011-06-06 22:28:37 -07:00
Igor Minar
bd7e68f12f
process only tutorial files
2011-06-06 22:28:37 -07:00
Kenneth R. Culp
0a604bdb90
Tutorial files for your perusal.
2011-06-06 22:28:37 -07:00
Igor Minar
4738d49e1c
new skin WIP
2011-06-06 22:28:36 -07:00