aboutsummaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
2011-10-11chore(formating): clean code to be function() {Misko Hevery
2011-10-11feat(forms): new and improved formsMisko Hevery
2011-10-07fix(docs): rename doc dev_guide.templates.css to dev_guide.templates.css-stylingDhruv Manek
Closes #580
2011-10-05docs(started): fixing pluralizationdandoyon
2011-09-26fix(e2e): add index-nocache.html to run e2e tests without cacheIgor Minar
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-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-16fix(e2e tests): use prop() instead of attr() and quote attributesIgor Minar
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-16feat (jquery): upgrade everything to jQuery 1.6.4Igor Minar
Closes #556
2011-09-08style: fix some missing semi-colons and spaces, typosVojta Jina
2011-09-08doc($location): $location docs + using $location guideVojta Jina
2011-09-08fix(docs): update docs to reflect new $location and fix e2e testsVojta Jina
2011-09-06fix(docs): use window.execScript instead of window.eval on IEIgor Minar
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-02test(jsonp): fixing jsonp e2e testsIgor Minar
- 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-02docs(guide/tutorial/misc): sync with google docsIgor Minar
2011-08-31style(e2e tests): shorten jquery/jqlite describeIgor Minar
2011-08-31style(docs): improve the formatting of events in docsMisko Hevery
2011-08-31feat(docs): add support for eventsMisko Hevery
2011-08-24feat(doc): generate both normal and debug version of index.htmlDi Peng
- 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-24feat(ng:cloak): add ng:cloak directiveIgor Minar
2011-08-21fix(docs): remove more unecessary use of hide() and show() methodDi Peng
- tutorial section of docs fails to render properly as doc:tutorial-instructions widget uses deprecated show and hide methods of jQlite.
2011-08-21fix(docs): work around the lame ng:show directiveIgor Minar
2011-08-21fix(docs): change docs.css to avoid css clashes in buzz exampleIgor Minar
2011-08-19fix(sample): Fix for jsFiddle integrationDi Peng
2011-08-16doc(sample): Add javascript sandbox integration (jsFiddle)dandoyon
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-15refactor(jqLite): remove jqLite show/hide supportIgor Minar
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-12refactor(scope): remove $flush/$observe ng:eval/ng:eval-orderMisko Hevery
2011-08-04doc(tutorial): updates needed for 0.9.18 rebaseIgor Minar
2011-08-03fix(docs): fix qfs.read() encoding issueDiPeng
- must use binary reading when using read function in q-fs module otherwise some unicode character may be garbled. Closes #497
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-29doc(contribute): add npm & q dependencies to setup instructionsIgor Minar
2011-07-29doc(index.html): change the order of elements in the navbarIgor Minar
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-29doc(css): make all navbar links boldIgor Minar
2011-07-29doc(started): fixing up the doc and adding link to the tutorialIgor Minar
2011-07-29doc(guide): various fixes and improvementsIgor Minar
2011-07-29doc(tutorial): fixes and improvements from Toni and BenIgor Minar
2011-07-29feat(tutorial): add an arrow to 'Workspace Reset Instructions' linksIgor Minar
The arrow is a hint that user won't navigate to a new page, but instead the instructions will be displayed inline.
2011-07-26feat(docs): add full offline supportDi Peng
2011-07-26feat(docs): add a changelog link to the footerDi Peng
2011-07-26doc(tutorial): fix navigation widget to work without jQueryVojta Jina
jqLite doesn't support class selectors, can find only by tag name...
2011-07-20refactor(gen-docs): use q, qq, q-fs (node modules) to write gen-docsDi Peng
- re-write gendocs.js, reader.js and writer.js - all calls are asynchronous
2011-07-20feat(gen-docs): enable caching the whole siteDi Peng
Generate a manifest file automatically by reading the directories.
2011-07-19chore(docs/.htaccess): bundle .htaccess with docsIgor Minar
2011-07-17refactor(docs): run e2e tests with and without jqueryDi Peng
- 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-16doc(ng:include): improve the doc example to avoid confusionIgor Minar
2011-07-16doc(css): add '#content-list .level-4' cssIgor Minar
2011-07-16doc(ngdoc): add 'this' and 'returns' section for methodsIgor Minar
2011-07-16doc(ngdoc): fix usage format for functions bolted onto servicesIgor Minar
2011-07-16test(ngdoc): add test for @ngdoc functionIgor Minar
2011-07-16test(ngdoc): fix a typo in the @deprecated specIgor Minar
2011-07-16test(ngdoc): fix failing testsIgor Minar