"brocker" wrote:
Yeah, that's where I was expecting to see the package, but it's now missing. I noticed that during the re-install, only the package "Basic BrightScript Support" shows up in "Installed Software" of Eclipse. Before there were two packages that installed, the second one called "Advanced BrightScript Support".
I tried uninstalling and reinstalling full, but the second package never gets installed. I only see the "Basic" package, and am unable to create new packages, but Eclipse recognizes the BrightScript syntax however which is great.
Would be nice to be able to create new packages, but small steps I guess!
Thanks
Bud
"brocker" wrote:
Thanks Malloys,
I guess what I was saying is that the "Advanced" option wasn't even available. I tried on three different machines earlier today, but I suspect it's because I had the "group by category" selected. I just unselected it and reran the install, this time the "Advanced" was there. I can now make projects, whoo hoo!!
Just a question, I had been running both Basic and Advanced on all machines, and never seemed to have an issue. What is the conflict that happens?
Thanks again
Bud
"TheEndless" wrote:
Out of curiosity, does Eclipse/the Eclipse plugin provide collapsible region functionality?
"jdtangney" wrote:"malloys" wrote:
And... you should uncheck the "group by category" checkbox in the install software dialog, since the category on the advanced plugin is somehow not currently recognized by Eclipse (and so makes the advanced plugin "invisible" as an install option when the "group by category" checkbox is checked).
Malloys, the problem is in your update site. Here's a bash script I use to generate the update site for the leJOS Eclipse plugin. It also deploys it directly to my local Tomcat instance, so I can test the install procedure.
EDIT: Oh, and of course, make sure the two features have separate groups!#!/bin/bash
## Push a complete update site to a local Tomcat install so that you can use a
# URL of the following form within Eclipse:
# http://localhost:8080/update
# The directory that gets pushed to Tomcat's webapps directory is exactly what needs
# to be published on the public web site as the "update site".
# Until we convert this into a grownup Ant script, please modify the
# following variables to match your environment. If you've set these
# in your .profile, you don't need to change it here.
[ -z "$ECLIPSE_HOME" ] && ECLIPSE_HOME=/Applications/helios
[ -z "$CATALINA_HOME" ] && CATALINA_HOME=/usr/share/tomcat6
# Assume that this script is being run from within the workspace
CURRENT_DIR=`dirname "$0"`
[ -z "$WORKSPACE" ] && WORKSPACE=`cd "$CURRENT_DIR/.." ; pwd`
PROJECT=${WORKSPACE}/org.lejos.nxt.ldt.update-site
WEBAPP=${CATALINA_HOME}/webapps/lejos/update
java \
-jar ${ECLIPSE_HOME}/plugins/org.eclipse.equinox.launcher_*.jar \
-application org.eclipse.equinox.p2.publisher.UpdateSitePublisher \
-metadataRepository file:${WEBAPP} \
-metadataRepositoryName "LeJOS Update Site" \
-artifactRepository file:${WEBAPP} \
-artifactRepositoryName "LeJOS Eclipse Plugin" \
-source ${PROJECT} \
-configs gtk.linux.x86 \
-compress \
-publishArtifacts
java \
-jar ${ECLIPSE_HOME}/plugins/org.eclipse.equinox.launcher_*.jar \
-application org.eclipse.equinox.p2.publisher.CategoryPublisher \
-metadataRepository file:${WEBAPP} \
-categoryDefinition file:${PROJECT}/category.xml
cp ${PROJECT}/site.xml ${WEBAPP}
"pt1" wrote:
Just installed a new instance of Eclipse 3.6.2 and then installed this plugin... however, I do not see a way to create a new project... When I access New>Project I do not see the options for brightscript. After installing Eclipse, I also installed DLTK 2.0. I used the web site to install this plugin (http://www.domhain.com/eclipse/updates/). Any help you can provide would be greatly appreciated.
Also,
I'm looking into doing a little more programing for Roku... Will this plugin be free? or will it go as a payed option? Not having a good IDE is currently one of my highest blocking issue with maybe making the full jump into developing for Roku.
Appreciate your feedback.
"pt1" wrote:
Thank you for your response...
I checked the error and problems view and no error... un-installed and re-installed, insuring that the option you suggested was checked... still was no able to see this plugin... I check that the EMF plugins and Dynamic Languages is installed... I attempted to install the Advanced BrightScript plugin in Eclipse 3.7...
Re: cost
Glad to hear Roku is targeting doing the right thing and provide an IDE for their player's language.
Thanks again for your help.