aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates/index.html
AgeCommit message (Collapse)Author
2012-03-28chore(resource): moved to moduleMisko Hevery
2012-02-28reafactor: Rename ng:bind-immediate -> ng:model-instantVojta Jina
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-01-17fix(docs): disable appcache - causing too much troubleIgor Minar
2012-01-17docs(*): more fixesIgor 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-10feat(module): new module loaderMisko Hevery
2011-11-14refactor(docs): improved the visual rendering of the documentation pagesMisko 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-10-30feat(docs): remove the Report Issue link - duplication of disqusIgor 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-22feat(docs): add "Loading..." notificationIgor Minar
2011-10-13fix(docs): set proper base href when hashbang url requestedVojta Jina
2011-10-11feat(forms): new and improved formsMisko 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-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): work around the lame ng:show directiveIgor 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-26feat(docs): add full offline supportDi Peng
2011-07-26feat(docs): add a changelog link to the footerDi Peng
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-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-08docs:template: rename <angular/> to AngularJSIgor Minar
2011-07-08docs:css: remove bullet points from tutorial sidebarIgor Minar
2011-06-07add appcache for docs site - caches only css/js/img resourcesIgor Minar
2011-06-07remove $script loader because incompatibilities with e2e runnerIgor Minar
2011-06-06make *.angularjs.org analytics work on subdomainsIgor Minar
2011-06-06fix hashpath prefix for docs/sitemap/etcIgor Minar
2011-06-06docs app css/js/html rewriteIgor Minar
2011-06-06work in progressIgor Minar
2011-06-06Load GA script using $script loaderVojta Jina
2011-06-06Google Analytics - basic page tracking for docsVojta Jina
2011-06-06reorder docs main menu itemsIgor Minar
2011-06-06new docs skin - WIPIgor Minar
2011-06-06add resource mergingIgor Minar
2011-06-06fix link to the tutorial pageIgor Minar
2011-06-06Move documentation under individual headingsMisko Hevery
2011-02-03addded cookbookMisko Hevery
2011-01-26Added part of guide documentation and supporting changes to doc generatorMisko Hevery
2011-01-10tabbing and keyboard shortcut for docsIgor Minar
- first tab goes to the search box, following tabs iterate results - ctrl+s (FF on mac) or ctrl+alt+s (Chrome on mac) move focus to the search box
2011-01-10offline docsIgor Minar
- freezing syntaxhighlighter and jquery under docs/src/templates/ - for jquery I just used a symlink to lib/jquery not an ideal solution but writer.js is not very flexible and I didn't want to mess with it - changed docs' index.html to point to the local resources
2011-01-10complete rewrite of documentation generationMisko Hevery
- romeved mustache.js - unified templates - improved testability of the code