Archive for the ‘wtp’ Tag
JSDT: HTML5 Support in Helios SR1
Read today that JSDT will have preliminary HTML5 support in WTP version 3.2.2 (Helios SR1). This will be released at the end of September 2010.
Very good news for JSDT users.
This addresses bug 292415
Using JSDT #5: Adding 3rd Party Library Redux
I’m documenting my experiences using the Eclipse JSDT.
My initial attempt to add a 3rd party library had mixed results. My goal was to get some content assist working. I was to add mooTools but not jQuery. However, I also found my approach failed when I wanted to get the mooTools library loaded when running the app.
Previously
Don’t add Library to “JavaScript Resources”
Previously, I added the mootools library as a JavaScript Resource. This resulted in knowledge of the mooTools library while I was coding. I mistakenly assumed that I would be able to configure my project such that my html code would be able to load these libraries when running. Maybe it’s possible, but I’ve yet to figure this out.
So, this does not work:
And when you try and run the example, you will notice either errors in your HTML debugging that states that the mootools libraries cannot be found, or the example will just not work properly.
My example
A side track for a second.
I’m running an example from the wrox Professional Java Script Frameworks book, a good introduction to Prototype, YUI, Ext JS, Dojo and MooTools. The code samples can be downloaded here. Unzip the mooTools zip file, and locate code/mootools/mootools-animation-ui.
The example contains ui.js and ui.html, and they use 2 mooTools libraries.
- mooTools-1.2.4-core.js
- mooTools more, which is a script that is built by selecting various components. I chose all the options except the non-English options, and chose no compression to create a mootools-1.2.4.4-more.js.
Solution: Add to Web Context
So instead of adding the script as libraries in the JavaScript Resources, just copy them in to the Web Context, make sure that your html references them correctly.
Successful Run
Now when I run the ui.html example, I am able to see the nice graphical effects that mooTools provides:
But, another exception
I was rewarded with this NPE exception dialog when I dragged the mooTools libraries from my File Explorer into the Web Context. Filed this bug.
Using JSDT #4 : Adding Third Party Library
I’m documenting my experiences using the Eclipse JSDT.
In this post I will add a 3rd party library. I will describe a success (mooTools) and a failure (jQuery).
Update: There is improved information in this post: Adding Third Party Library Redux.
Previously
Adding mooTools Library
MooTools is one JavaScript library I’ve been playing with lately.
First download the uncompressed version (mooTools-1.2.4-core-nc.js) and save it somewhere.
Now in Preferences, add the library. Make sure after adding the library, you also add the mooTools .js file you previously downloaded. It should look like this:
MooTools Content Assist
Now create a Static Web Project.
- Expand the project in Project Explorer and right click on JavaScript Resources and select Properties.
- From this dialog, you can add MooTools.
- Add JavaScript Library – User Library – Next – Select moo Library you already added. Finish.
You should see this in Explorer:
Content Assist
MooTools Problems
Supposedly, if your 3rd party library uses jsDoc, the editor functionality is more robust. MooTools does not seem to document with jsDoc.
jQuery Failure
Dojo? Prototype? YUI?
I’m wondering what experiences others have had adding 3rd party libraries or their own libraries.
Next: Adding Third Party Library Redux
Contributing to JSDT #3 : Build Targets on the bleeding edge
I’ve been documenting how to use JSDT to do some HTML5/CSS/JavaScript development. In order to poke around the JSDT code to understand it better, I spent a bit of time figuring out how to get things checked out, built and running. The instructions on the JSDT site a re a bit sparse, so I thought I would document what I did.
I’m not on the JSDT team, so this may not be exactly how they do it. But it works for me.
Previously
My code no longer compiles!
This morning, I updated all the code I previously checked out. And now my rhino.ui project has a compilation error in RhinoTabGroup:
After a little investigation, I determined that RhinoTabGroup is using a new 3.7 method in AbstractLaunchConfigurationTab. It has just been introduced. I’m building against Eclipse 3.6, so don’t have this method.
So if I want to keep my JSDT source code in sync with the latest, I’ll have to also keep up with any dependencies.
One idea to resolve this would be to download the latest milestone builds and put them in my build target. However, this change is very recent and is not in a milestone build yet.
Another idea is to check out the latest o.e.debug.ui project and any dependency projects (hopefully not too many).
Check out more projects
To add the eclipse CVS repo, copy this into the CVS Repositories View:
:pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse
And check out org.eclipse.debug.ui and org.eclipse.debug.core projects
And the compilation issue is resolved.
Going Forward
Going forward, my build target and workspace projects will change often. I’ll need to actively modify these to keep things rolling along. I’ll be doing a combination of:
- Including other Eclipse projects in my workspace, on an as-needed basis. I’ll start getting a good sense of what these projects are as things break.
- Change my build target to move up to Milestone builds.
Next: Launching the JSDT Unit Tests
Contributing to JSDT #2: Checking out the Code
I’ve been experimenting with the JSDT to try some HTML5/CSS/JavaScript development. In order to poke around the JSDT code to understand it better, I spent a bit of time figuring out how to get things checked out, built and running. The instructions on the JSDT site are a bit sparse, so I thought I would document what I did.
I’m not on the JSDT team, so this may not be exactly how they do it. But it works for me.
Previously
Adding the CVS Repositories:
Now we’ll add the 2 CVS repositories required to check out the JSDT code.
- Switch to CVS Repository perspective.
- Paste the following lines of text into the CVS Repositories View to add web tools and tools as known repository locations.
:pserver:anonymous@dev.eclipse.org:/cvsroot/webtools
:pserver:anonymous@dev.eclipse.org:/cvsroot/tools
Import the projects using a Project Team Set:
The JSDT project provides a project set file, which can be useful for checking out a set of related projects. Download this to your file system.
In the Java Perspective, right-click in the Package Explorer and choose Import… – Team Project Set
Select Next, Choose the file you previously downloaded.
You will be prompted to reconcile the repos designated in the Team Project Set file and those in your workspace:
Hit OK. The projects should be imported into your workspace and built.
Missing Projects:
If your projects don’t all compile, you may be missing a project or two.
Currently, the Project Team Set file is missing the debug.rhino.ui and debug.transport projects. A bug has been fixed and I’m assuming the new project set file should roll out to the web-site in a few days.
You can check out these projects by browsing the webtools CVS repo from the CVS perspective:
Go to webtools / HEAD / org.eclipse.jsdt / plugins.
Right click on the project you want to check out and select ‘Checkout‘
Project List
With everything compiling and launching, I have the following projects in my workspace (as of 8/30/2010):
org.eclipse.wst.jsdt.core
org.eclipse.wst.jsdt.core.tests.compiler
org.eclipse.wst.jsdt.core.tests.model
org.eclipse.wst.jsdt.debug.core
org.eclipse.wst.jsdt.debug.core.tests
org.eclipse.wst.jsdt.debug.crossfire
org.eclipse.wst.jsdt.debug.rhino
org.eclipse.wst.jsdt.debug.rhino.debugger
org.eclipse.wst.jsdt.debug.rhino.tests
org.eclipse.wst.jsdt.debug.rhino.ui
org.eclipse.wst.jsdt.debug.transport
org.eclipse.wst.jsdt.debug.ui
org.eclipse.wst.jsdt.doc
org.eclipse.wst.jsdt.feature
org.eclipse.wst.jsdt.manipulation
org.eclipse.wst.jsdt.support.firefox
org.eclipse.wst.jsdt.support.ie
org.eclipse.wst.jsdt.ui
org.eclipse.wst.jsdt.ui.tests
org.eclipse.wst.jsdt.web.core
org.eclipse.wst.jsdt.web.support.jsp
org.eclipse.wst.jsdt.web.ui
org.eclipse.wst.jsdt_sdk.feature
org.eclipse.wst.jsdt_tests.feature
org.mozilla.javascript
releng.jsdt
Notes:
Updated: In the CVS repo some of the projects seem to live in both webtools/HEAD/org.eclipse.jsdt/<project> AND webtools/HEAD/<project>. From some help on the forum, I’ve found out these are one and the same.
Next: Build Targets on the Bleeding Edge
Contributing to JSDT #1: Setting up Build Target
I’ve been experimenting with the JSDT to try some HTML5/CSS/JavaScript development. In order to poke around the JSDT code to understand it better, I spent a bit of time figuring out how to get things checked out, built and running. The instructions on the JSDT site are a bit sparse, so I thought I would document what I did.
I’m not on the JSDT team, so this may not be exactly how they do it. But it works for me.
Downloading Dependencies:
First you will need to set up your PDE Target.
The WTP Downloads page is where to start.
Download the following:
I unzipped these into individual folders, someplace where you keep pristine PDE targets separate from your daily running Eclipse. For example, I unzipped GEF into c:/code/buildTargets/GEF3.6.
Setting up the Target
Now, we’ll combine all these into a single PDE Build Target.
- Under Preferences – Plugin Development – Target Platform, select Add:
Select “Start with Nothing” , then Next.
In the Locations Tab, we will add each of the installed components from our buildTargets folder. Select Add – Directory – Next – then Browse the location.
(Note: when selecting, choose the eclipse folder under each target.)
Do this for each of the 6 downloads above.
Then give your target a meaningful name such as JSDT_Target.
Then click Finish.
In the Preferences dialog, change the active build target to the new “JSDT_Target” and hit OK.
Now your JSDT code– which we have not yet imported– will compile against the expected target platform.
Resources
- Modular Mind has some great articles on PDE build targets.
Next: Checking out the code.
Using JSDT #3 : HTML5/JavaScript Workarounds
I’m documenting steps to use the Eclipse JavaScript IDE to work with HTML5/CSS/JavaScript.
Building on the previous post, this post will create a simple HTML5/JavaScript Canvas example using the Eclipse JSDT. It will demonstrate some of the limitations I encountered using the JSDT for HTML5 and provide one workaround.
Update: Preliminary HTML5 support will be part of JSDT’s September 2010 release.
Previously
- Some JSDT resources.
- Instructions for installation and creation of a simple HTML example using JSDT.
Using the HTML5 Canvas
We’ll use HTML5’s new drawing canvas. If you want to learn more about HTML5 or Canvas, there are some links at the bottom of this page.
In this example, I’ve created a simple HTML5 page that draws 4 colored rectangles using JavaScript.
Create a new html file called canvas.html. with the following content:
<!DOCTYPE html>
<html>
<head>
<title>Canvas test</title>
<!-- Pull in canvas support for IE -->
<!--[if IE]><script src="excanvas.js"></script><![endif]-->
<script type="text/javascript">
window.onload = function() {
var drawingCanvas = document.getElementById('canvas1');
// Is element in the DOM and does browser support canvas
if (drawingCanvas && drawingCanvas.getContext) {
// Init drawing context
var context = drawingCanvas.getContext('2d');
// Create 4 squares
context.fillStyle = "#00FF00"; // Green
context.fillRect(0,0,100,100);
context.fillStyle = "#0000FF"; // Blue
context.fillRect(0,100,100,100);
context.fillStyle = "#FF0000"; // Red
context.fillRect(100,0,100,100);
context.fillStyle = "#FFFF00"; // Yellow
context.fillRect(100,100,100,100);
}
}
</script>
</head>
<body>
<h1>HTML5 Canvas</h1>
<canvas id="canvas1" width="200" height="200">
<p>Your browser doesn't support canvas.</p>
</canvas>
</body>
</html>
JSDT’s HTML5 Limitations
The first thing I noticed is that JSDT is not HTML5 aware.
- The editor has a warning marker in the gutter because the HTML5 canvas tag is unrecognized:
- Hovering over pre-HTML JavaScript code, gets helpful (and slightly cryptic) API information. However, try to hover over the newer drawingCanvas.getContext, and you don’t see any API info.
- And the internal browser doesn’t support HTML5:
- (To run inside the internal browser, Right Click canvas.html and select Run As – Run on Server)
Working around JSDT’s HTML5 Editor Limitations
I’m still trying to figure out the best way to get some nice HTML5 editor functionality (like hover help, content assist, etc), which is the primary reason I would use an IDE over a simple text editor.
Whatever I find out, I’ll post. If anyone has experience with this, I’d love to hear about it.
Working around JSDT’s HTML5 Browser Limitations
It’s simple to work around the fact that JSDT’s internal browser does not support HTML5. Simply switch to a different browser.
From in Eclipse, select Window – Web Browser – and then select either IE or the system browser.
In my case, the system browser is a recent version (3.6.8) of Firefox which has good HTML5 support. I run it. Success!
HTML5 Resources
There are many HTML5 resources available. Here are a couple I used:
Next: Adding a 3rd party Library
Using JSDT #2 : Run First Project
I’m documenting the steps I’ve taken in using the Eclipse JavaScript IDE to work with HTML5/CSS/JavaScript. Today, I’ll step you through installation and running a very simple HTML project.
Previously
- I compiled some JSDT resources.
Installation
The Eclipse JavaScript tools are called JSDT (JavaScript Development Tools). You can get them several ways. They come as part of the Eclipse Web Tools Project (WTP). If you are already running Eclipse, you could use Update manager to install the JavaScript plug-ins into your current Eclipse installation. I decided to download the JSDT product to keep it simple and see how well it worked by itself.
- Unzip the download into a suitable location. For simplicity, I unzipped into c:/jsdt.
Starting the product
- Navigate into c:/jsdt/eclipse and double-click eclipse.exe to start the product.
(I’m using Windows. The process is different but close enough that a user smart enough to use a different OS can figure it out.)
- The first screen prompts you for a workspace. I changed to default to c:/workspaces/html5. Hit OK.
- You should then see the JavaScript IDE, with no projects, ready to go.
Create HTML project
Now we’ll create a very simple static HTML page.
- Select File – New – Static Web Project, and you should see this dialog:
- Name the project simple and hit Finish.
- Now select the simple project and right-click. Select New – Html File:
- Name the html file simple.html:
- Hit finish.
- Double click on simple.html to open it in the editor. Change the title to “Simple Title” and enter “Simple” into the body. Save it.
Test it inside Eclipse
Now we’ll test Simple using server and browser provided by Eclipse.
- Right Click simple.html and select Run As – Run on Server:
- This will bring up this dialog. Accept the defaults and hit Finish.
- This will start a jetty server and open a browser view. You should see the “Simple” page in the browser.
Next
The next entry will add some JavaScript and HTML5 functionality.
Using JSDT #1 : Resources
I’ve been doing some HTML5/CSS/Javascript programming lately. I decided to take the JSDT (JavaScript Development Toolkit) for a test drive.
My plan is to document the steps I went through from installation through running some JavaScript from the IDE.
Today, I’m posting some of the more useful links I found when getting familiar with the project.
Download
The JSDT comes as part of Web Tools. You could also use Update Manager to pull the JSDT plugins into an existing Eclipse.
I decided to download the JSDT product to see how well it worked by itself.
Resources for Users
- A dated but good DeveloperWorks article on JSDT:
- Some dated demo videos on the Eclipse site.
- The JSDT documentation (is also included in the product).
- Explains how to set up an embedded project (HTML + Javascript)
Potential Problems?
While doing some research, I ran across several articles talking about the difficulty in getting the JSDT to integrate with 3rd party libraries.
I’ll find out more about this as I progress.
Resources for JSDT Developers
Next
Next I will step through the basics install JSDT, create and run an HTML page.
Comments (1)































