| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-11-18 | group utility methods/objects while sorting stuff for the side bar | Igor Minar | |
| 2010-11-18 | remove extra returns tag | Igor Minar | |
| 2010-11-18 | remove extra toolbar directive and support multiple pre's in describe | Igor Minar | |
| 2010-11-18 | scope docs + lowercase doc fix | Igor Minar | |
| 2010-11-18 | add support for @deprecated ng:doc annotation + show warnings in templates | Igor Minar | |
| 2010-11-18 | add function.template | Igor Minar | |
| 2010-11-16 | fix regexp for @param parsing in ng:docs | Igor Minar | |
| There is an extra + in the regexp which causes exponential increase in time needed to parse a @param annotation when the length of default value increases linearly. | |||
| 2010-11-16 | Changed error handling so that better stack traces are displayed in the ↵ | Misko Hevery | |
| ng-errors | |||
| 2010-11-16 | docs should use ng:include onload | Igor Minar | |
| 2010-11-16 | add onload attribute to ng:include | Igor Minar | |
| 2010-11-15 | Added basic Services, which support @memberOf and @methodOf | Vojta Jina | |
| 2010-11-15 | generate keyword for searches; improved layout of doc | Misko Hevery | |
| 2010-11-15 | changed to ! notation for indexable apps | Misko Hevery | |
| 2010-11-15 | added remaining directives and search box. | Misko Hevery | |
| 2010-11-12 | fix code name in the change log | Igor Minar | |
| 2010-11-12 | Add test coverage analysis. | Igor Minar | |
| - jstd upgrade to head from 2010-11-11 - coverage plugin from the same head as jstd - test-coverage.sh and server-coverage.sh scripts - jstd configuration Generate html by installing lconv (brew or port) and run: genhtml tmp/lcov/jsTestDriver.conf-coverage.dat to generate html docs. | |||
| 2010-11-11 | $watch should optionally skip listener exec | Igor Minar | |
| - if initRun param is set to false, listener doesn't execute - the oldValue should equal newValue during the initial execution - added docs - added specs | |||
| 2010-11-11 | preparations for 0.9.4 total-recall iteration | Igor Minar | |
| 2010-11-10 | cutting the 0.9.3 cold-resistance releasev0.9.3 | Igor Minar | |
| 2010-11-10 | updating the release notes for 0.9.3 release | Igor Minar | |
| 2010-11-10 | scenario repeater should match only visible stuff | Igor Minar | |
| 2010-11-10 | Make ng:repeat expose $position. | Igor Minar | |
| - $position is a textual representation of the position of repeated item ('first', 'middle', 'last') - added specs for $index | |||
| 2010-11-10 | added ng:switch-when-default; changed $watch to always fire on init. (may be ↵ | Misko Hevery | |
| backward incompatible) | |||
| 2010-11-10 | Example snippets now have full html snippets | Misko Hevery | |
| 2010-11-10 | Added Directives | Misko Hevery | |
| 2010-11-10 | Make the docs look a little nicer | Elliott Sprehn | |
| 2010-11-09 | improve jsdocs | Igor Minar | |
| - improve json filter example - improve filter overview doc - improving validator overview jsdocs - simplify number filter examples and make them live + add specs - various doc fixes | |||
| 2010-11-09 | proper trimming of leading whitespace; url restriction to angular.* | Misko Hevery | |
| 2010-11-09 | Better example widget | Igor Minar | |
| - syntax highlighting - tabless design - rename widget to doc:example - rename widget files (wiki_widget.* -> doc_widget.*) - example section is now optional | |||
| 2010-11-09 | updating watchr-docs.rb | Igor Minar | |
| 2010-11-09 | added spec for auto bootstrap with #autobind | Igor Minar | |
| 2010-11-09 | Support substring matching of bindings with repeater(). Closes #123 | Elliott Sprehn | |
| 2010-11-09 | Added formatter documentation. | Misko Hevery | |
| 2010-11-09 | Add key/value jQuery methods in a loop. Support 'css' method. | Elliott Sprehn | |
| Closes #134 | |||
| 2010-11-09 | Updated parser tests to use jasmine expects | Vojta Jina | |
| And some formatting as well and a bit of rafactor... | |||
| 2010-11-09 | Updated filters tests to use jasmine expects | Vojta Jina | |
| And some small formatting... | |||
| 2010-11-08 | make angular.String.toDate consider all time fractions as optional | Igor Minar | |
| 2010-11-08 | angular.Date.toString should use toISOString if available | Igor Minar | |
| 2010-11-08 | Support ISO 8601 extended datetime format troughout angular. | Igor Minar | |
| Support ISO 8601 extended format datetime strings (YYYY-MM-DDTHH:mm:ss.SSSZ) as defined in EcmaScript 5 throughout angular. This means that the following apis switched from YYYY-MM-DDTHH:mm:ssZ to YYYY-MM-DDTHH:mm:ss.SSSZ (note the added millis) when representing dates: - angular.Date.toString - angular.String.toDate - JSON serialization and deserialization (used by json filter, $xhr and $resource) | |||
| 2010-11-08 | Add isDate method + fix old code | Igor Minar | |
| 2010-11-08 | fixing spec description for the date filter | Igor Minar | |
| 2010-11-08 | date filter should accept ISO 8601 formatted string as input | Igor Minar | |
| Closes #125 | |||
| 2010-11-08 | TzDate should support various UTC methods | Igor Minar | |
| 2010-11-07 | Update AngularSpec tests to use BDD style - jasmine expect | Vojta Jina | |
| 2010-11-07 | Added tests for angular.service | Vojta Jina | |
| - should allow to override a service - should preserve angular properties on override - should not preserve non-angular properties on override | |||
| 2010-11-07 | Issue #51: Update extensionMap() | Vojta Jina | |
| If user override existing extension, angular properties ($) will be preserved. This piece of logic could be refactored into separate method: Something like we have extend(), addMissingProperties() - I can't find a name for this method... Closes #51 | |||
| 2010-11-07 | Added documentation for validators. | Misko Hevery | |
| BACKWARD INCOMPATIBLE: removed ssn validators, since it is unlikely that most people will need it and if they do, they can added it thorough RegExp | |||
| 2010-11-05 | Refactored toJsonArray(), added isBoolean() function | Vojta Jina | |
| 2010-11-05 | Updated toJson() to not serialize window/document objects. | Vojta Jina | |
| The reason to void these to objects is that they cause all sorts of problems like exceptions being thrown and infinite loops occuring when we iterate over object properties. | |||
| 2010-11-05 | Changed toJson() to not ignore $ properties | Vojta Jina | |
