aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates/docs.js
AgeCommit message (Collapse)Author
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-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(docs): improved the visual rendering of the documentation pagesMisko Hevery
2011-11-14refactor($location): merged $locationConfig service into $locationProviderMisko Hevery
2011-11-14refactor(api): remove type augmentationMisko Hevery
BREAK: - remove angular.[Object/Array/String/Function] - in templates [].$filter(predicate) and friends need to change to [] | filter:predicate
2011-11-14refactor(services): migrate angular.service -> moduleMisko Hevery
2011-10-30feat(docs): remove the Report Issue link - duplication of disqusIgor Minar
2011-10-30fix(docs): special case url generation for index pagesIgor Minar
2011-10-30fix(docs): increment load counter only when a valid page is requestedIgor Minar
2011-10-30feat(docs): disqus integrationdandoyon
- add style for disqus threads in css - add loadDisqus method to be called afterPartialLoaded - add div container for disqus threads
2011-10-26fix(docs): remove unused $browser dependencyIgor Minar
2011-10-22fix(docs): key-binding used old scope apisIgor Minar
2011-10-22feat(docs): add "Loading..." notificationIgor Minar
2011-10-22fix(docs): update page title only when content loadsIgor Minar
2011-10-22style(docs): change "this" to "scope" in the controllerIgor Minar
2011-10-11chore(formating): clean code to be function() {Misko Hevery
2011-09-26feat(docs): use html5 history api for all routing in the docs appVojta Jina
- 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-08fix(docs): update docs to reflect new $location and fix e2e testsVojta Jina
2011-08-12refactor(scope): remove $flush/$observe ng:eval/ng:eval-orderMisko Hevery
2011-08-02feat(scope): new and improved scope implementationMisko Hevery
- 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-07-26feat(docs): add full offline supportDi Peng
2011-07-26feat(docs): add a changelog link to the footerDi Peng
2011-06-30fix:docs: properly distinguish between being offline and 404Igor Minar
2011-06-06Docs: Error 404 page with simple suggestion for new linksVojta Jina
2011-06-06fix hashpath prefix for docs/sitemap/etcIgor Minar
2011-06-06docs app css/js/html rewriteIgor Minar
2011-06-06Google Analytics - basic page tracking for docsVojta Jina
2011-06-06Add doc:tutorial-instructions widgetVojta Jina
2011-06-06Fixed docs search input withVojta Jina
And couple of missing semi-colons...
2011-06-06new docs skin - WIPIgor Minar
2011-06-06fix docs landing page redirectionIgor Minar
2011-06-06Move documentation under individual headingsMisko Hevery
2011-02-03Added remainder of the cookbookMisko Hevery
2011-02-03addded cookbookMisko Hevery
2011-02-01Developer guide documentationMisko Hevery
2011-01-26Added part of guide documentation and supporting changes to doc generatorMisko Hevery
2011-01-24fixed example rendering, add tests for it.Misko Hevery
2011-01-10complete rewrite of documentation generationMisko Hevery
- romeved mustache.js - unified templates - improved testability of the code