aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-06-06Use node's vm module instead of deprecated process.compileVojta Jina
So that I don't have to watch the warning all the time :-D
2011-06-06gdocs.js - add docos style comment strippingIgor Minar
2011-06-06move docs/content/intro to docs/content/miscIgor Minar
2011-06-06Allow "section/" links pointing to "section/index"Vojta Jina
2011-06-06Fix wrong links in source codeVojta Jina
2011-06-06Allow relative links in docsVojta Jina
So you can use links without section when they link within the section.
2011-06-06Change warning to log place first and then linkVojta Jina
2011-06-06Remove trailing wsVojta Jina
2011-06-06fixing broken linksIgor Minar
2011-06-06Indent the API reference listVojta Jina
2011-06-06Fixed docs search input withVojta Jina
And couple of missing semi-colons...
2011-06-06Fix links in docsVojta Jina
2011-06-06Bit of refactoringVojta Jina
2011-06-06Couple of todosVojta Jina
2011-06-06Fixed couple of failing tests in docsVojta Jina
These tests were failing because of rewriting urls into new 'section' format, i.e. angular.scope -> api.angular.scope
2011-06-06Log warning for every non existing link instead of throwing exceptionVojta Jina
Guess we don't want to stop doc generating process because of non-existing link, so just log warning and continue...
2011-06-06Check whether links do exist and throw exceptionVojta Jina
2011-06-06Fix sitemap include (to work on case sensitive linux)Vojta Jina
2011-06-06new version of the xhr serviceIgor Minar
2011-06-06reorder docs main menu itemsIgor Minar
2011-06-06fix docs cssIgor Minar
2011-06-06add new batch of tutorial docs and imagesIgor Minar
2011-06-06new docs skin - WIPIgor Minar
2011-06-06fix docs landing page redirectionIgor Minar
2011-06-06add resource mergingIgor Minar
2011-06-06remove gdocs.js workaround for extra space issue in gdocs apiIgor Minar
2011-06-06gdocs.js should store files under docs/content/[collection]/Igor Minar
2011-06-06make docs/writer.js copyDir recursiveIgor Minar
2011-06-06add the tutorial collection to gdocs.jsIgor Minar
2011-06-06ignore non .ngdoc filesIgor Minar
2011-06-06Don't forget the_end...Kenneth R. Culp
2011-06-06Latest greatest tutorial udpates.Kenneth R. Culp
2011-06-06temporary hack to strip all the extra chars from google docsIgor Minar
2011-06-06fix link to the tutorial pageIgor Minar
2011-06-06new batch of tutorial docsIgor Minar
2011-06-06Move documentation under individual headingsMisko Hevery
2011-06-06fix syntax highlighting on the javascriptMisko Hevery
2011-06-06renamed tutorial so that it would sort properlyMisko Hevery
2011-06-06Update tutorial docs.Kenneth R. Culp
2011-06-06process only tutorial filesIgor Minar
2011-06-06Tutorial files for your perusal.Kenneth R. Culp
2011-06-06new skin WIPIgor Minar
2011-06-06added input#val methodDi Peng
Closes #237
2011-06-05renamed $pause to $sleep AND $wait to $pauseDi Peng
Closes #207
2011-06-03fixed opera date.toISOString issueDi Peng
Closes #365
2011-06-02Fix CSS tests on OperaVojta Jina
Opera translates name colors to numbers (red -> #ff0000) Other browsers like FF or Chrome translate number to rgb (#ff0000 -> rgb(255, 0, 0) So avoiding colors in tests is probably the easiest solution...
2011-06-02Fix formatError for FF4 and OperaVojta Jina
Other browsers prepend "Error: <Exception name>" to stack, but FF4 and Opera do not. So when formatting error we prepend it by hand, when not present...
2011-06-02Fix IE bug - ng:hrefVojta Jina
ng:href was producing unclickable links, as the event propagation was stopped by 'a' widget All links in regression/issue-352.html were tested in: * Chrome 11 * Opera 11 * Firefox 4 * IE7, IE8 Closes #352
2011-06-02Refactor $browser's lazy start pollingVojta Jina
+ unit tests
2011-06-02Fix hashchange event on IE8 compatibility modeVojta Jina
Stupid IE8 in compatibility mode or in IE7 mode returns true for `('onhashchange' in window)`, but does not support hashchange event. Closes #353