- This topic has 41 replies, 9 voices, and was last updated 19 years ago by
Riyad Kalla.
-
AuthorPosts
-
September 15, 2005 at 9:58 am #237376
Riyad KallaMemberWhat is your Eclipse Build ID (Help > About)? I’m trying to rule out *everything* at this point.
Did you try a new workspace using File > Import to pull in your old projects and settings? I’ve seen old workspaces cause side effects very similar to a corrupt install before.
September 16, 2005 at 8:31 am #237493After this type of event occurs, upon pressing delete, you get a NullPointerException in the JSP editor. The delete does work, however, but changes aren’t seen until you move the current cursor line.
UGHH!!
September 16, 2005 at 8:32 am #237494Eclipse version:
Version: 3.1.0
Build id: I20050627-1435September 16, 2005 at 9:11 am #237498I think the problem occurs when the JSP editor finds a syntax error, particularly in an option value as represented in the case below.
For instance, the following line of code does NOT create a syntax error (which thus causes the system to refresh propert outline, and causes the cursor to lag creating a mirrored type effect, and general frustration):
<select name="Demo1Op"> <option value="<%out.print("<");%>" <%if(sDemo1Op.compareTo("<")==0){%>selected<%}%>><</option> </select>
BUT! The following line of code DOES create the syntax error, causing the problem.
<select name="Demo1Op"> <option value="<" <%if(sDemo1Op.compareTo("<")==0){%>selected<%}%>><</option> </select>
It seems that the editor has a bug in which it can’t read a < into an option value. It thus doesn’t end the <option> tag, as seen in outline view. I think it then tries to parse the rest of the document into the still-open <option> tag.
Any ideas? Hope this helps!
Andy
September 16, 2005 at 10:34 am #237510
Riyad KallaMemberAndy,
Using your code snippet above (both) and using the delete and backspace keys within the line at random places I was unable to produce any popups, BUT I would add that if you want to show < or > signs on your page, you have to use < and > char codes, this is the case with strict HTML as well. Try that and see if the editor stops mucking you up.September 19, 2005 at 8:41 am #237630This message has not been recovered.
September 19, 2005 at 9:33 am #237633This message has not been recovered.
September 19, 2005 at 10:14 am #237638
Brian FernandesModeratorThis message has not been recovered.
September 20, 2005 at 8:22 am #237733This message has not been recovered.
September 20, 2005 at 8:25 am #237734This message has not been recovered.
September 22, 2005 at 2:21 pm #237942
Brian FernandesModeratorThis message has not been recovered.
September 22, 2005 at 3:12 pm #237946
Brian FernandesModeratorThis message has not been recovered.
May 30, 2006 at 10:58 am #252792
jcvanvorstMemberHas there been a resolution to this? It’s driving me crazy, and kills my productivity. Let me just turn the damn thing off!
May 30, 2006 at 11:15 am #252794
Riyad KallaMemberjcvanvorst,
Can you go to your MyEclipse menu, click About MyEclipse, then “Configuration Summary” and paste the result here?Also have you tried, in a clean separate setup, the Eclipse 3.2RC5 and MyEclipse 5.0M1 setup to see if the performance is better?
June 1, 2006 at 3:15 pm #252976
jcvanvorstMemberresults from config summary:
*** Date: Thu Jun 01 16:13:10 EDT 2006
*** System properties:
OS=WindowsXP
OS version=5.1
Java version=1.4.2_04*** MyEclipse details:
MyEclipse Enterprise WorkbenchVersion: 4.1.1 GA
Build id: 20060309-4.1.1-GA*** Eclipse details:
Eclipse SDKVersion: 3.1.2
Build id: M20060118-1600Eclipse Platform
Version: 3.1.2
Build id: M20060118-1600Eclipse RCP
Version: 3.1.2
Build id: M20060118-1600Eclipse Java Development Tools
Version: 3.1.2
Build id: M20060118-1600Eclipse Plug-in Development Environment
Version: 3.1.2
Build id: M20060118-1600Eclipse Project SDK
Version: 3.1.2
Build id: M20060118-1600Eclipse startup command=-os
win32
-ws
win32
-arch
x86
-launcher
C:\eclipse\eclipse.3.1.2\eclipse.exe
-name
Eclipse
-showsplash
600
-exitdata
d74_38
-vm
C:\WINDOWS\system32\javaw.exeAs for testing other configurations, no. I need to work.
-
AuthorPosts