| Summary: | [java launching] Applet parameters containing unusual characters confuse eclipse | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Dave Dyer <ddyer> |
| Component: | Debug | Assignee: | Dani Megert <daniel_megert> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | daniel_megert |
| Version: | 3.7 | ||
| Target Milestone: | 3.8 M7 | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
|
Description
Dave Dyer
Can you add a test snippet/case? the test cases are right there, use 'foo'"Bar" as a parameter name, or 您好 the test cases are right there, use 'foo'"Bar" as a parameter value, or 您好 (In reply to comment #3) > the test cases are right there, use 'foo'"Bar" as a parameter > value, or 您好 But where do you pass it? Code? Launch Config? Variables view? applet parameters in a launch config The temporary HTML page is not correctly generated i.e. it does not encode special HTML characters. Fixed in master: http://git.eclipse.org/c/jdt/eclipse.jdt.debug.git/commit/?id=5915de3bdf921e09f7ef075a384585041068bf22 Note that for strings like 'foo'"Bar" we have to encode the quotes and since the applet viewer does not support most HTML stuff, this will appear as: 'foo'"Bar" The 您好 case is fixed by using the same encoding to generate the page as specified in the applet launch configuration. |