aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates/index.html
AgeCommit message (Collapse)Author
2014-02-16chore(doc-gen): new docsPeter Bacon Darwin
chore(doc-gen): implement dgeni
2014-01-28docs(cookbook): remove the cookbook docsJulie
The cookbook docs are now superceded by the guide. They are no longer available in any menus and the only way to find them is to search for them. Remove! Closes #5967
2014-01-27chore(docs): remove note about removing disqusBrian Ford
2013-11-28chore(docs): fix back-to-top anchor in angularjs.org doc pagesPeter Bacon Darwin
Closes https://github.com/angular/angularjs.org/issues/45
2013-11-22chore(docs): remove Disqus commentsBrian Ford
We don't actively moderate these comments, and they range from out of date, to inflammatory, to spam. Going forward, improvements to the docs should be done via a PR, and questions should go on StackOverflow where they can be curated and kept up to date by AngularJS developers who help out there.
2013-10-27chore(ngdocs): improve the docs search placeholder textMatias Niemelä
2013-10-22feat(ngdocs): add forward slash shortcut key for search barMatias Niemelä
2013-10-22fix(ngdocs): remove the side search barMatias Niemelä
BREAKING CHANGE The side search bar on the docs page has been removed in favor of the top search bar.
2013-10-10chore(ngdocs): improve the side search animation effectsMatias Niemelä
2013-08-23chore(ngdocs): fix the version jumperMatias Niemelä
correct the ordering and make gen-docs prepare the list of versions during the build process
2013-08-16chore(ngdocs): disable google analytics in e2e testsIgor Minar
GA is not needed during e2e tests, so I'm removing it to speed up the e2e test suite. See previous commits for more info.
2013-08-16chore(ngdocs): disable code prettification in e2e testsIgor Minar
code prettification is expensive and not needed for e2e tests, so I'm disabling it to speed up the e2e test suite. this is a temporary measure, see previous commit for more info.
2013-08-16chore(ngdocs): disable lunr search during e2e testsIgor Minar
lunr has been responsible for slowdown in our test suite by adding ~1sec per end-to-end test. (this is because it initializes the index when the app starts) since out test suite primarily tests the examples, it's reasonable do disable the search as a temporary meansure. the real fix is to use protractor and extract all of the examples into standalone apps which can be tested without bootstrapping the whole docs app.
2013-08-09chore(ngMobile): rename module ngTouch and file to angular-touch.jsBrian Ford
BREAKING CHANGE: since all the code in the ngMobile module is touch related, we are renaming the module to ngTouch. To migrate, please replace all references to "ngMobile" with "ngTouch" and "angular-mobile.js" to "angular-touch.js". Closes #3526
2013-08-02chore(ngdocs): make sure the fold feature doesn't show up during page loadMatias Niemelä
2013-07-31docs(header): replace logo.png with logo.svgBrenton
The current logo looks awful on high-density displays. SVG is a better choice because it can scale to any resolution without increasing file size. Amending #2775 to add support for IE 8 by falling back to existing PNG with img.onerror Using relative URLs as directed by @btford and @petebacondarwin. (commit by Brenton Simpson - @appsforartists) Closes #2874
2013-07-26feat(ngAnimate): complete rewrite of animationsMatias Niemelä
- ngAnimate directive is gone and was replaced with class based animations/transitions - support for triggering animations on css class additions and removals - done callback was added to all animation apis - $animation and $animator where merged into a single $animate service with api: - $animate.enter(element, parent, after, done); - $animate.leave(element, done); - $animate.move(element, parent, after, done); - $animate.addClass(element, className, done); - $animate.removeClass(element, className, done); BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-07-26chore(ngdocs): replace showdown.js with marked.jsMatias Niemelä
2013-07-24docs(minErr): Build minErr doc siteKen Sheedlo
2013-07-23docs(index): add seed app link to menu itemRichard John
2013-07-15chore(ngdocs): remove autofocus for the filtering searchMatias Niemelä
2013-07-12style(ngdocs): fix minor CSS issuesAlex Olshansky
2013-07-09fix(ngdocs): merge duplicate css class attributesAlex Olshansky
2013-06-17feat(ngdocs): provide support for user to jump between different versions of ↵Matias Niemelä
the angularjs documentation
2013-06-17feat(ngdocs): support popover, foldouts and foldover annotationsMatias Niemelä
2013-06-17chore(ngdocs): allow user to press escape key to close docs searchMatias Niemelä
2013-06-06chore(ngdocs): expose showdown.js to docs pages and docs testing suiteMatias Niemelä
2013-06-06chore(ngdocs): setup bower as the package manager for the docs pagesMatias Niemelä
2013-06-06refactor($route): pull $route and friends into angular-route.jsIgor Minar
$route, $routeParams and ngView have been pulled from core angular.js to angular-route.js/ngRoute module. This is was done to in order keep the core focused on most commonly used functionality and allow community routers to be freely used instead of $route service. There is no need to panic, angular-route will keep on being supported by the angular team. Note: I'm intentionally not fixing tutorial links. Tutorial will need bigger changes and those should be done when we update tutorial to 1.2. BREAKING CHANGE: applications that use $route will now need to load angular-route.js file and define dependency on ngRoute module. Before: ``` ... <script src="angular.js"></script> ... var myApp = angular.module('myApp', ['someOtherModule']); ... ``` After: ``` ... <script src="angular.js"></script> <script src="angular-route.js"></script> ... var myApp = angular.module('myApp', ['ngRoute', 'someOtherModule']); ... ``` Closes #2804
2013-06-04docs(index): make menu links relativeSiddique Hameed
Before the Develop drop down menu items were hard coded with an absolute url, which meant that they did not work correctly on local or ci server builds.
2013-05-30chore(docs): add reference to the blogLucas Galfasó
Add a reference to the blog at the documentation.
2013-05-21chore(package.json): kill version.yaml in favor of package.jsonIgor Minar
all versioning info is now in package.json and that's where the build scripts read it from
2013-05-20chore(ngdocs): move angular-bootstrap.js to be generated only inside the ↵Matias Niemelä
docs and remove from the build process
2013-05-16feat(ngdocs): Add FullText search to replace Google search in docsMatias Niemelä
2013-04-11fix(ngdocs): improve the animations used in the docs menuMatias Niemelä
2013-04-03docs: add animations into docs and directive examplesMatias Niemelä
2013-03-13chore(docs): add angular-mobile.js to index.htmlIgor Minar
2012-11-28docs(menu): fix the navbar drop down linksIgor Minar
2012-09-17docs: load angular from CDN only on productionVojta Jina
So that when running the docs locally, eg. during e2e testing, we use the latest build version of angular, rather than the stable one from CDN. This fixes e2e tests running with Testacular.
2012-09-04fix(docs): broken url to angular-bootstrapMisko Hevery
2012-08-28chore(docs): use symlinks to build docsIgor Minar
so that we can just edit source files without rebuilding docs. this works for all docs files, except for those that are generated or rewritten during build.
2012-08-24chore(docs): use GAE and Google CDN for docsIgor Minar
Short summary: if you use local node server everything should work as before, if you use GAE, everything should work now as well, but we pull assets from CDN. - GAE doesn't support ':' in filenames, so I had to replace it with '_' but only in the filename, all servers were reconfigured to rewrite the urls from : to _ when doing file lookup - We now pull angular assets from google CDN when deployed on GAE (locally or in production). When running on a non GAE server we pull assets from ../ directory as before - Since only certain versions of Angular are available on CDN and we want to be able to autodeploy docs, I had to pin down the Angular files to a "stable" version when running on GAE
2012-08-16fix(docs): update docs top menu linksIgor Minar
2012-06-15fix(doc) firefox icon renderingMisko Hevery
2012-05-04chore(docs): re-skin main documentationMisko Hevery
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-28chore(ngCookies): moved to moduleMisko Hevery