aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates
AgeCommit message (Collapse)Author
2012-08-16fix(docs): update docs top menu linksIgor Minar
2012-08-06docs(styles): fix the cog icon alignmentIgor Minar
2012-06-15fix(doc) firefox icon renderingMisko Hevery
2012-06-12fix(docs): migrate from $defer to $timeoutIgor Minar
2012-06-12docs(*): simplify doc urlsIgor Minar
we now have two types of namespaces: - true namespace: angular.* - used for all global apis - virtual namespace: ng.*, ngMock.*, ... - used for all DI modules the virual namespaces have services under the second namespace level (e.g. ng.) and filters and directives prefixed with filter: and directive: respectively (e.g. ng.filter:orderBy, ng.directive:ngRepeat) this simplifies urls and makes them a lot shorter while still avoiding name collisions
2012-06-02doc(app): switch to use $last on ng-repeatMisko Hevery
2012-06-02doc(app): remove un-needed fileMisko Hevery
2012-06-02docs(ngdocs): cleaned up directive titlesMisko Hevery
2012-05-24chore(docs): remove generated fileMisko Hevery
2012-05-24chore(docs): remove unused doc_widget.js fileMisko Hevery
2012-05-24chore(docs): correct spacingsMisko Hevery
2012-05-04chore(docs): re-skin main documentationMisko Hevery
2012-04-12style(docs-scenario.html): rename <angular/> to AngularJS in the titleIgor Minar
2012-04-11chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a moduleVojta Jina
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-05chore(docs): add nonminified jquery debug version of docsIgor Minar
2012-04-04docs(tutorial): update tutorial intro + steps 0-3Igor Minar
also contains all kinds of fixes that I had to make in the docs app to get the tutorial to render correctly
2012-04-04fix(docs): remove ngModelInstant from all examplesIgor Minar
just fixing leftover code after the removal of ngModelInstant
2012-03-29fix(docs): update the example widget regexp for detecting angular.js urlIgor Minar
so that we don't show angular-cookies instead of angular.js
2012-03-29fix(docs): properly rewrite urls in doc examples at docs-nextIgor Minar
2012-03-28chore(ngCookies): moved to moduleMisko Hevery
2012-03-28chore(resource): moved to moduleMisko Hevery
2012-03-21chore(docs): switch disqus id from angularjs to angularjs-nextIgor Minar
2012-03-12docs(guide.forms): Update forms guideVojta Jina
2012-03-09chore(*): refactor all ng: to ng-Igor Minar
2012-03-09refactor($provide) Rename service -> providerVojta Jina
It registers a provider class, so this makes more sense. Breaks Rename $provide.service -> $provide.provider
2012-03-08docs(css): allow headers to wrap with blue backgroundIgor Minar
2012-03-08fix(docs): remove undefined from examples with jsfiddle=falseIgor Minar
2012-03-08chore(compiler): change default restriction to attribute only for directivesMisko Hevery
2012-03-05fix(docs): Add $locationProvider methods to the docs example providerVojta Jina
- $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-02-28reafactor: Rename ng:bind-immediate -> ng:model-instantVojta Jina
2012-02-28docs(forms): Update API docs for formsVojta Jina
- API forms (ng:model + controller, form + controller) - fix some broken links - ng:change, ng:model-instant
2012-02-28refactor(forms): Even better formsVojta Jina
- 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-28docs: evaluate only scripts with type text/javascriptVojta Jina
2012-01-25docs(compiler): update the compiler docsMisko Hevery
2012-01-25refactor(directives): connect new compilerMisko Hevery
- turn everything into a directive
2012-01-23refactor(scope.$watch): rearrange arguments passed into watcher (newValue, ↵Vojta Jina
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-23refactor(scope): separate controller from scopeVojta Jina
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-17fix(docs): disable appcache - causing too much troubleIgor Minar
2012-01-17docs(*): more fixesIgor Minar
2012-01-17fix(docs): temp hack to get appcache properly invalidatedIgor Minar
2012-01-17docs(*): various doc fixesIgor Minar
2012-01-13fix($autoScroll): scroll even if $location is in html5 modeVojta Jina
+ use autoscroll in docs (ng:include)
2012-01-12refactor(module): strict separation between module-config / app-runtimeMisko Hevery
2012-01-10feat(module): new module loaderMisko Hevery
2012-01-10feat(ngdocs): support for interface documentationMisko Hevery
2012-01-09chore(docs): disable disqus for localhostIgor Minar
it's just slowing down the test runs and debugging
2011-11-21feat(service.$autoScroll): scroll to hash fragmentVojta Jina
- whenever hash part of the url changes - after ng:view / ng:include load
2011-11-19fix(docs): specify disqus_urlIgor Minar
2011-11-14refactor(injector): removed loadModule/ng:moduleMisko Hevery
- added module property to doc:example
2011-11-14refactor(docs): improved the visual rendering of the documentation pagesMisko Hevery