aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* fixed date in changelogJiri Vanek2012-06-051-1/+1
|
* Added KnownToFail annotationJiri Vanek2012-06-059-49/+305
|
* isDateInRange renamed to isDateInRange_internallForIcedTeaWebTestingJiri Vanek2012-06-053-15/+23
|
* Added patch so that applet-tags take last param.Adam Domurad2012-06-041-3/+0
| | | | | Our plugin had previously took the first param, except for a few special param's like archive. With this patch the last param is taken consistently.
* Added reproducer for applets taking last paramAdam Domurad2012-06-044-0/+236
|
* Fixing build for real, sorry for the noise.Adam Domurad2012-06-041-1/+1
| | | | For old versions of mozilla, there was a spurious ( in NPVariantAsString.
* Added signed jnlp file testsSaad Mohammad2012-06-0435-0/+2099
|
* Handle absolute paths passed into jnlp_href's value.Danesh Dadachanji2012-06-044-5/+165
|
* Fix build for older versions of mozilla. (Typo in untested #ifdef)Adam Domurad2012-06-041-1/+1
|
* Fix for PR518, adds utility function for wrapping NPStringAdam Domurad2012-06-046-56/+60
| | | | in std::string.
* Fixed minor typo in ChangeLogDeepak Bhole2012-06-011-1/+1
|
* Fixed PR863: Error passing strings to applet methods in ChromiumDeepak Bhole2012-06-016-12/+34
|
* EXPORTED_TEST_CERT_SUFIX repalced by EXPORTED_TEST_CERT_SUFFIXJiri Vanek2012-05-302-5/+5
|
* handling of multiple testing certificates in bulkJiri Vanek2012-05-303-28/+90
|
* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java: (getPermissions): ↵Jiri Vanek2012-05-292-15/+24
| | | | New rethrow of exceptions and following condition make more accurate
* fixed changelog according to reviwerJiri Vanek2012-05-291-2/+26
|
* Added ignoration of inner classes during retrieving test idJiri Vanek2012-05-291-0/+6
|
* Get rid of repeated sout/serr in reproducers testcases/unit tests and ↵Jiri Vanek2012-05-2828-332/+155
| | | | introduce bottleneck for loging.
* Changed for-loops over iterators and indices to for-each loops if theyAdam Domurad2012-05-2514-80/+94
| | | | were sufficient and clearer.
* Introduced constant NUM_STR_BUFFER_SIZE to replace magic constants.Adam Domurad2012-05-254-58/+71
| | | | Clarified some uses of snprintf.
* Fix whitelisting to use src dir instead of build dir.Danesh Dadachanji2012-05-252-1/+7
|
* Fixed spaces -> tabs in ChangeLogAdam Domurad2012-05-241-2/+3
|
* Removed residual free(str) on stack variable.Adam Domurad2012-05-242-1/+5
|
* Reproducers engine enhanced for jars in subdirectories by "." naming conventionJiri Vanek2012-05-242-1/+43
|
* Introduced whitelist for reproducersJiri Vanek2012-05-243-2/+28
|
* Reapplied the patches, sorry for the mess!Adam Domurad2012-05-242-2/+6
|
* Finished commit rollbacks.Adam Domurad2012-05-241-4/+4
|
* Backed out changeset 43a78616b1ddAdam Domurad2012-05-242-14/+50
|
* fixing conflict in ChangeLogAdam Domurad2012-05-242-50/+14
|\
| * Added Martin Olsson's typo fixAdam Domurad2012-05-242-2/+6
| |
* | AUTHORS: Added Martin Olsson to list.Deepak Bhole2012-05-232-0/+5
| |
* | Use g_mutex_free instead of g_free to free appletviewer_mutex (fixesDeepak Bhole2012-05-232-2/+8
| | | | | | | | | | | | crash). Patch from Martin Olsson.
* | ChangeLog: Converted spaces to tabs in an older entryDeepak Bhole2012-05-231-9/+13
| |
* | netx/net/sourceforge/jnlp/resources/Messages.properties: fixed error in ↵Jiri Vanek2012-05-232-4/+9
| | | | | | | | PBadNonrelativeUrl
* | Added more debugging outputs (especially paths to keystores) for ↵Jiri Vanek2012-05-235-3/+39
| | | | | | | | JNLPClassLoader and CertificateUtils
* | * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java: (getPermissions):Jiri Vanek2012-05-232-29/+59
|/ | | | | | | Any exception from this method is consumed somewhere. I have cough exception, reprint it in debug mode and re-throw (to be lost). Main condition in this method had several possible NullPointer exceptions. Separated and thrown before this condition.
* fixed typoJiri Vanek2012-05-231-1/+1
|
* Enhanced about dialogJiri Vanek2012-05-234-4/+24
|
* Fixed error in reproducers source preparationJiri Vanek2012-05-232-15/+24
|
* Changed usage of sprintf to snprintf. Made some small malloc'd buffers on ↵Adam Domurad2012-05-223-29/+43
| | | | | | the stack. These changes are unlikely to change functionality, for if the buffer is too small to write to, something has already gone wrong. However, they are good as an additional safety guarantee, preventing memory from corruption in the case that something goes wrong.
* Fixed security tests to pass both jdk6 and 7Jiri Vanek2012-05-2210-25/+37
|
* Removed trailing spaces after slash in Makefile.amJiri Vanek2012-05-221-3/+3
|
* added midori and epiphany to be counted as testable browsersJiri Vanek2012-05-223-9/+24
|
* Missing changelog entryJiri Vanek2012-05-211-0/+16
|
* Added check for browsers and targets ensuring theirs proper linking with ↵Jiri Vanek2012-05-212-7/+136
| | | | icedtea-web plugin
* Fixed output to be printed just in case of debug modeJiri Vanek2012-05-211-1/+3
|
* Fixed behavior when encoded/characters needed encoding included in url (PR811)Jiri Vanek2012-05-184-11/+169
|
* More tests for Spaces and characters in urlsJiri Vanek2012-05-1816-6/+1070
|
* Removal of synchronization on Boolean in PluginStreamHandler.Adam Domurad2012-05-181-8/+4
| | | | | | Synchronization on Boolean is dangerous and was unnecessary in this context. As well, the Boolean flag that was being used during shut down was changed to a volatile boolean so changes could be seen without synchronization.
* Went through the source of IcedTeaWeb with FindBugs and went over all ↵Adam Domurad2012-05-176-11/+26
| | | | reported cases of == being used to compare String's. Some usage cases were valid (eg, .equals eventually called, magic String value). I noted one such usage case. The others were changed to .equals calls.