aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2010-11-18make @param type and description non-optionalIgor Minar
2010-11-18CSS, Parameters, Returns template changesIgor Minar
- make css section optional - make returns section optional - change format of the parameters section - properly format the Returns section
2010-11-18adjust spacing of headings in the main doc divIgor Minar
2010-11-18fixing angular.lowercase and angular.upppercase jsdocs + apiIgor Minar
2010-11-18adding support for @param.optionalIgor Minar
2010-11-18fixing angular.filter.number jsdocsIgor Minar
2010-11-18toJson and fromJson jsdocsIgor Minar
2010-11-18@returns description should support markdownIgor Minar
2010-11-18make @returns type non-optionalIgor Minar
2010-11-18fix ng docs for angular, angular.lowercase and uppercaseIgor Minar
2010-11-18group utility methods/objects while sorting stuff for the side barIgor Minar
2010-11-18remove extra returns tagIgor Minar
2010-11-18remove extra toolbar directive and support multiple pre's in describeIgor Minar
2010-11-18scope docs + lowercase doc fixIgor Minar
2010-11-18add support for @deprecated ng:doc annotation + show warnings in templatesIgor Minar
2010-11-18add function.templateIgor Minar
2010-11-16fix regexp for @param parsing in ng:docsIgor 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-16Changed error handling so that better stack traces are displayed in the ↵Misko Hevery
ng-errors
2010-11-16docs should use ng:include onloadIgor Minar
2010-11-16add onload attribute to ng:includeIgor Minar
2010-11-15Added basic Services, which support @memberOf and @methodOfVojta Jina
2010-11-15generate keyword for searches; improved layout of docMisko Hevery
2010-11-15changed to ! notation for indexable appsMisko Hevery
2010-11-15added remaining directives and search box.Misko Hevery
2010-11-12fix code name in the change logIgor Minar
2010-11-12Add 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 execIgor 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-11preparations for 0.9.4 total-recall iterationIgor Minar
2010-11-10cutting the 0.9.3 cold-resistance releasev0.9.3Igor Minar
2010-11-10updating the release notes for 0.9.3 releaseIgor Minar
2010-11-10scenario repeater should match only visible stuffIgor Minar
2010-11-10Make 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-10added ng:switch-when-default; changed $watch to always fire on init. (may be ↵Misko Hevery
backward incompatible)
2010-11-10Example snippets now have full html snippetsMisko Hevery
2010-11-10Added DirectivesMisko Hevery
2010-11-10Make the docs look a little nicerElliott Sprehn
2010-11-09improve jsdocsIgor 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-09proper trimming of leading whitespace; url restriction to angular.*Misko Hevery
2010-11-09Better example widgetIgor Minar
- syntax highlighting - tabless design - rename widget to doc:example - rename widget files (wiki_widget.* -> doc_widget.*) - example section is now optional
2010-11-09updating watchr-docs.rbIgor Minar
2010-11-09added spec for auto bootstrap with #autobindIgor Minar
2010-11-09Support substring matching of bindings with repeater(). Closes #123Elliott Sprehn
2010-11-09Added formatter documentation.Misko Hevery
2010-11-09Add key/value jQuery methods in a loop. Support 'css' method.Elliott Sprehn
Closes #134
2010-11-09Updated parser tests to use jasmine expectsVojta Jina
And some formatting as well and a bit of rafactor...
2010-11-09Updated filters tests to use jasmine expectsVojta Jina
And some small formatting...
2010-11-08make angular.String.toDate consider all time fractions as optionalIgor Minar
2010-11-08angular.Date.toString should use toISOString if availableIgor Minar
2010-11-08Support 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-08Add isDate method + fix old codeIgor Minar