aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2010-09-23remove TODO.text and add jstd.log to gitignoreBolek Szewczyk
2010-09-23$cookies service refactoringIgor Minar
- remove obsolete code in tests - add warning logs when maximum cookie limits (as specified via RFC 2965) were reached - non-string values will now get dropped - after each update $cookies hash will reflect the actual state of browser cookies this means that if browser drops some cookies due to cookie overflow, $cookies will reflect that - $sessionStore got renamed to $cookieStore to avoid name conflicts with html5's sessionStore
2010-09-23Rewrite session store service in object literal style and remove getAll ↵Igor Minar
method that is not used anywhere
2010-09-23Add JSDoc for the copy() methodIgor Minar
2010-09-22Refactored the Browser:Misko Hevery
- change from using prototype to inner functions to help with better compression - removed watchers (url/cookie) and introduced a poller concept - moved the checking of URL and cookie into services which register with poolers Benefits: - Smaller minified file - can call $browser.poll() from tests to simulate polling - single place where setTimeout needs to be tested - More testable $browser
2010-09-22Reduce copies done by Resource.Alkis Evlogimenos
When a method foo is called on a Resource object, say myResource there are two copies that happen to the resource: - one inside Resource.foo() in some dummy function - another inside myResource.$foo() inside the callback passed to foo()
2010-09-21HEAD is now at 10c0151 Fixes on issue when a SELECT has OPTION which are ↵Misko Hevery
data bound (ie OPTION has repeater or OPTION.value is bound), then SELECT does not update to match the correct OPTION after the change in model (ie after the OPTION repeater unrolls or OPTION.value is changed.)
2010-09-21toJson should serialize inherited properties, but not any properties that ↵Igor Minar
start with $
2010-09-21fixed test for ng:src which fails on IE, since IE treats undefined src as ↵Misko Hevery
url to the current page.
2010-09-21Upgrade JsTestDriver to 1.2.2 sans annoying 'runTestConfiguration' loggingIgor Minar
2010-09-21Upgrade closure compiler to the latest versionIgor Minar
2010-09-20Add ng:src and ng:href markup.Alkis Evlogimenos
2010-09-16Expose GET operations on resources as well. This allows us to readAlkis Evlogimenos
"partials". The pattern is demostrated in the unittest: Resource.query returns a list of "keys" to resources, which are partially defined. They have enough data to allow $get to fetch the whole gamout. Then $get fetches all the details of the resource.
2010-09-16Allow angular to be included with query parameters. This is a commonAlkis Evlogimenos
pattern for forcing a reload of the script in the browser irrespective of the cache settings the host has.
2010-09-16Delete requests on resources pass this as data. Delete requests should not ↵Misko Hevery
be passing data in the body of the response. The bug is here: http://github.com/angular/angular.js/blob/master/src/Resource.js#L119 Instead of checking for !isGet you should be checking for !isPost. Also isPost should be isPostOrPut since only on those two methods should be sending a payload if I am not mistaken.
2010-09-16removed unneeded commentMisko Hevery
2010-09-14mergeMisko Hevery
2010-09-14Fixed all trivial jslint violationsMisko Hevery
2010-09-14Adding cookie serviceMisko Hevery
- Browser.cookies() - MockBrowser - $cookie service - $sessionStore
2010-09-06removed accidental assignment of $element to glabal spaceMisko Hevery
2010-08-18remove Parser staticMisko Hevery
2010-08-18converted lexer from function to closureMisko Hevery
2010-08-18move static field from Lexer to hidden namespaceMisko Hevery
2010-08-18stringify names for better compression, remove dead functions, removed ↵Misko Hevery
underscore.js compatibility
2010-08-18added better handling of ng:format=numberMisko Hevery
2010-08-16adding an expectation to widgetsSpec.js for ng:includeIgor Minar
2010-08-16fix for ng:include does not remove partial if src goes to undefinedIgor Minar
2010-08-16Merge remote branch 'upstream/master'Igor Minar
2010-08-16removing useless catch that causes troubles when FF throws exceptions within ↵iminar
the loop but outside of the try/catch clause
2010-08-14merge kai/masterMisko Hevery
2010-08-14add ftp script to auto deploy to angularjs.orgMisko Hevery
2010-08-14fix __proto__ for ie.Misko Hevery
2010-08-14Merge remote branch 'igor/master'Misko Hevery
2010-08-14pull shyamMisko Hevery
2010-08-14change from using console to printing the timing data onto the screenMisko Hevery
2010-08-13Fix issue with jquery not being visible in productionShyam Seshadri
2010-08-13Serialize only own properties to avoid infinite loops when serializing ↵Igor Minar
scopes (this)
2010-08-14Provide all jquery functions as futuresShyam Seshadri
2010-08-13Provide all jquery functions as futuresShyam Seshadri
2010-08-14Fix broken tests for element dslShyam Seshadri
2010-08-13Merge branch 'master' of github.com:angular/angular.jsMisko Hevery
2010-08-13Revert click dsl, since what is returned by element is a jquery objectShyam Seshadri
2010-08-13Pull in Rajat's changes to add click and url checking dslShyam Seshadri
2010-08-13Fix broken tests for element dslShyam Seshadri
2010-08-13learning about git head take 2Misko Hevery
2010-08-13learning about git headMisko Hevery
2010-08-13Merge branch 'master' of github.com:angular/angular.jsMisko Hevery
2010-08-14Revert click dsl, since what is returned by element is a jquery objectShyam Seshadri
2010-08-14Pull in Rajat's changes to add click and url checking dslShyam Seshadri
2010-08-13initial perf testingMisko Hevery