aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src
AgeCommit message (Collapse)Author
2013-06-06chore(ngdocs): setup bower as the package manager for the docs pagesMatias Niemelä
2013-06-06fix(ngdoc): fix the node warnings that show up during buildMatias Niemelä
2013-06-06chore(ngdoc): fix deprecated node api path.existsSync -> fs.existsSyncIgor Minar
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-30feat(ngdocs): provide support for inline variable hintingMatias Niemelä
2013-05-22style(docs/template): add in missing semicolonsEddie Monge
Add semicolons where they were missing in the docs section per Google code styling guide. Closes #2736
2013-05-21docs(tutorial): fix the float issue with the improve docs buttonMatias Niemelä
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-20fix(ngdocs): fix gen_docs.shMatias Niemelä
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-16chore(docs): fix syntax error in docs.cssIgor Minar
2013-05-16feat(ngdocs): Add FullText search to replace Google search in docsMatias Niemelä
2013-05-13feat(ngdocs): external links to github, plunkr and jsfiddle available for ↵Matias Niemelä
code examples
2013-05-13chore(ngdocs): update to new version of FontAwesomeMatias Niemelä
2013-05-08chore(ngAnimate): CSS classes X-setup/X-start -> X/X-activeMatias Niemelä
BREAKING CHANGE: css classes foo-setup/foo-start become foo/foo-active The CSS transition classes have changed suffixes. To migrate rename .foo-setup {...} to .foo {...} .foo-start {...} to .foo-active {...} or for type: enter, leave, move, show, hide .foo-type-setup {...} to .foo-type {...} .foo-type-start {...} to .foo-type-active {...}
2013-05-08feat(ngdocs): add variable type hinting with colorsMatias Niemelä
2013-05-08chore(docs): use done() in gen-docs.jsIgor Minar
2013-04-29feat(ngdocs): support for HTML table generation from docs codeMatias Niemelä
2013-04-19chore(ngDoc): fix a typo with IE warningTyler Akins
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-04-02feat(ngdocs): added functionality to import and extract contents of external ↵Matias Niemelä
files inside docs comment code
2013-04-02feat(ngAnimate): add support for animationMisko Hevery
2013-03-15feat(docs): Add Improve this doc link in each doc page, which links to the ↵Shyam Seshadri
edit mode of that file in github
2013-03-13chore(docs): add angular-mobile.js to index.htmlIgor Minar
2013-03-05chore(Grunt): switch from Rake to GruntDave Geddes
Migrates the Angular project from Rake to Grunt. Benefits: - Drops Ruby dependency - Lowers barrier to entry for contributions from JavaScript ninjas - Simplifies the Angular project setup and build process - Adopts industry-standard tools specific to JavaScript projects - Support building angular.js on Windows platform (really?!? why?!?) BREAKING CHANGE: Rake is completely replaced by Grunt. Below are the deprecated Rake tasks and their Grunt equivalents: rake --> grunt rake package --> grunt package rake init --> N/A rake clean --> grunt clean rake concat_scenario --> grunt build:scenario rake concat --> grunt build rake concat_scenario --> grunt build:scenario rake minify --> grunt minify rake version --> grunt write:version rake docs --> grunt docs rake webserver --> grunt webserver rake test --> grunt test rake test:unit --> grunt test:unit rake test:<jqlite|jquery|modules|e2e> --> grunt test:<jqlite|jquery|modules|end2end|e2e> rake test[Firefox+Safari] --> grunt test --browsers Firefox,Safari rake test[Safari] --> grunt test --browsers Safari rake autotest --> grunt autotest NOTES: * For convenience grunt test:e2e starts a webserver for you, while grunt test:end2end doesn't. Use grunt test:end2end if you already have the webserver running. * Removes duplicate entry for Describe.js in the angularScenario section of angularFiles.js * Updates docs/src/gen-docs.js to use #done intead of the deprecated #end * Uses grunt-contrib-connect instead of lib/nodeserver (removed) * Removes nodeserver.sh, travis now uses grunt webserver * Built and minified files are identical to Rake's output, with the exception of one less character for git revisions (using --short) and a couple minor whitespace differences Closes #199
2013-02-11chore(docs): improve docs parser typeIgor Minar
previously we barfed on function type definition with optional arguments like {function(number=)} this fixes it I also added a bunch of code that helps to debug incorrectly parsed docs.
2013-01-17chore(docs): use done() instead of end() in gen-docs.jsIgor Minar
2012-12-11feat(docs): Add angularjs tag to plunks and make privateggoodman
This is a minor edit to allow Plunks created by way of the docs.angularjs.org site to be appropriately tagged as `angularjs`. Also, make these generated Plunks private by default.
2012-11-29fix(docs): add missing </div> tag to sourceEdit directive templateJohannes Hansen
2012-11-28docs(menu): fix the navbar drop down linksIgor Minar
2012-11-11chore(docs): fix docs-scenario.htmlIgor Minar
2012-11-11chore(docs): remove obsolete gae filesIgor Minar
2012-10-31fix(docs): correctly generate filenames for plunkr/fiddleIgor Minar
previously examples like $http where broken because we would strip part of the filename (http-hello.html -> http) we really want to strip only the id suffix that we append to disambiguate common filenames (like index.html) which appear in many examples.
2012-10-31feat(docs): add plunkr supportShyam Seshadri
Add option to edit source in Angular Docs in Plunkr in addition to JsFiddle
2012-10-18docs(tutorial): replace JsTD with Testacular + drop snapshotsIgor Minar
JsTD references have been replaced with Testacular stuff. snapshots are PITA to maintain so I'm dropping them, everyone loves the Git version anyway.
2012-10-05fix(doc): disable directory listing in docs.angularjs.orgMisko Hevery
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-06fix(*): name all anonymous watch functions in AngularShyam Seshadri
This will allow us to see function names in Batarang and debugger. Closes #1119
2012-09-04fix(docs): broken url to angular-bootstrapMisko Hevery
2012-09-04chore(docs): don't rewrite colons in doc filenamesIgor Minar
2012-08-30docs(tutorial): correct typos and clarify a few sectionsFernando Correia
2012-08-30chore(docs): ask GAE to serve docs-keywords.jsIgor Minar
2012-08-30chore(docs): correctly link docs imagesIgor Minar
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-27doc(guide): add conceptsMisko Hevery
2012-08-27fix(ngdoc): failing testMisko Hevery
2012-08-25chore(docs): support _escaped_fragment_ hack for crawlerIgor Minar