aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core/src/test/java
Commit message (Collapse)AuthorAgeFilesLines
...
* Refactoring using more meaningful names for properties interface and getterManolo Carrasco2014-01-271-5/+5
|
* Dont set credentials by default for ajax requests. Fixes issue #261Manolo Carrasco2014-01-273-2/+49
|
* Merge branch 'mcm_jsonbuilder_jvm' of github.com:gwtquery/gwtquery into ↵Manolo Carrasco2014-01-201-5/+7
|\ | | | | | | mcm_jsonbuilder_jvm
| * Use Constants to set Json content-type and simply codeManuel Carrasco Moñino2014-01-191-5/+7
| |
* | mergeManolo Carrasco2014-01-201-0/+4
| |
* | mergeManolo Carrasco2014-01-201-2/+1
|\ \ | |/ |/|
| * fix json testjdramaix2014-01-071-7/+8
| |
* | Use gwtSetup instead of constructor in gwt testManuel Carrasco Moñino2014-01-071-2/+2
| |
* | Test refactoring. Remove hacked classes used during testingManuel Carrasco Moñino2014-01-068-2048/+18
| |
* | Fix tests, and clean servlet outputManuel Carrasco Moñino2014-01-0518-78/+411
| |
* | Fix timeout and CORS implementation of JVMManolo Carrasco2014-01-055-169/+168
| |
* | Implemented Ajax for JVM, and testsManuel Carrasco Moñino2014-01-046-26/+2052
| |
* | Adding first stuff to implement ajax in js and jvmManuel Carrasco Moñino2013-12-282-0/+83
| |
* | Implement generic interface for Binders so as we can use it in JS and JVMManuel Carrasco Moñino2013-12-281-0/+4
| |
* | remove printlnManuel Carrasco Moñino2013-12-281-2/+0
| |
* | add new test to suiteManuel Carrasco Moñino2013-12-271-0/+2
| |
* | Implementation of JsonBuilders for the JVM. Moved tests to class which can ↵Manuel Carrasco Moñino2013-12-273-79/+145
|/ | | | be run either in JVM and in client side. Added an utility class to create Json objects so as we can use it in server and client, we dont depend on ClientFactories nor Injectors like autoBeans and other implementations do
* Close string in testManuel Carrasco Moñino2013-12-201-1/+1
|
* Use a hash to customize filters. Include more filters present in jquery. ↵Manuel Carrasco Moñino2013-12-191-0/+28
| | | | Fixes issues #230 #184 #220
* Fix names in Data binder generators. Fixes issue #230Manolo Carrasco2013-12-181-7/+7
|
* Merge branch 'master' of github.com:gwtquery/gwtquery into jd_fix_event_1jdramaix2013-12-065-6/+91
|\ | | | | | | | | Conflicts: gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryEventsTestGwt.java
| * Merge branch 'mcm_issue_26'Manuel Carrasco Moñino2013-12-031-0/+6
| |\
| | * tests in jvmManuel Carrasco Moñino2013-12-031-0/+6
| | |
| * | Merge pull request #243 from manolo/mcm_cache_promisesManuel Carrasco2013-12-031-0/+53
| |\ \ | | | | | | | | Adding ability to cache promises.
| | * | FormattingManuel Carrasco Moñino2013-12-031-16/+26
| | | |
| | * | Adding ability to cache promises.Manuel Carrasco Moñino2013-11-301-0/+43
| | | |
| * | | Merge pull request #244 from manolo/mcm_issue_26Manuel Carrasco2013-12-021-6/+10
| |\ \ \ | | | |/ | | |/| Fix for issue 26
| | * | fixes issue #26Manuel Carrasco Moñino2013-12-021-6/+10
| | |/
| * | Merge pull request #241 from gwtquery/jd_add_test_issue216Julien Dramaix2013-12-011-0/+14
| |\ \ | | | | | | | | add test for issue #216
| | * | add test for issue #216jdramaix2013-11-291-0/+14
| | |/
| * / test issue 226jdramaix2013-11-291-0/+8
| |/
* / fix issue 25 + another small issue when we bind both bitless and bit eventsjdramaix2013-12-061-0/+87
|/
* Test for bitless rebinding when a widget is attached/dettatchedManuel Carrasco Moñino2013-11-261-0/+8
|
* Fix testsManuel Carrasco Moñino2013-11-221-1/+1
|
* code reviewjdramaix2013-11-221-4/+19
|
* fix bug with event delegationjdramaix2013-11-211-19/+145
|
* add bitless event support + custom event.jdramaix2013-11-212-26/+158
|
* remove importManuel Carrasco Moñino2013-11-091-2/+0
|
* Fixing test so as they run with java 1.6Manuel Carrasco Moñino2013-11-091-2/+2
|
* Fix "or" tests. Remove javadoc lineManuel Carrasco Moñino2013-11-091-1/+1
|
* Fix "then()" method so as it behaves like jQuery breaking the flow if ↵Manuel Carrasco Moñino2013-11-091-4/+68
| | | | previous fails. Add convenient method "or()" to continue the flow when we have different options to resolve an asynchronous process. Add "and()" method as an alias to "then()". "and()" and "or()" makes gQuery promises much more useful and declarative.
* Implement animation Easing based on Bezier curves instead of using different ↵Manuel Carrasco Moñino2013-11-011-9/+9
| | | | algorithm for each one. Includes a set of most popular transitions used in web.
* Fix an effects test which was randomly failingManuel Carrasco Moñino2013-11-011-30/+35
|
* fix test, htmlunit is ffManuel Carrasco Moñino2013-11-011-1/+1
|
* Implementation of the jQuery.browser object, in a GWT way which allows ↵Manuel Carrasco Moñino2013-11-011-0/+13
| | | | developer dont have to modify .gwt.xml file to do defferred binding
* Implementation of jquery getScript method in Ajax pluginManuel Carrasco Moñino2013-10-071-0/+30
|
* Callbacks should not to reset the memory object when calling disabled. Fix a ↵Manuel Carrasco Moñino2013-10-071-4/+52
| | | | bug preventing calling a resolved promise in a nested function.
* Better usage of generics in data() methods. Add removed static data method. ↵Manuel Carrasco Moñino2013-07-041-0/+31
| | | | Add tests for data methods
* fix issue #24jdramaix2013-06-301-25/+43
|
* Fix tests so as emma-coverage instrumentalitation does not failManuel Carrasco Moñino2013-06-011-2/+2
|