[JBoss JIRA] (JBIDE-15892) Weird code in JBT installation script: install.sh
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15892?page=com.atlassian.jira.plugi... ]
Nick Boldt commented on JBIDE-15892:
------------------------------------
The stuff you're pointing at are examples for how to invoke the ant script, passing in different params via shell.
How would you suggest this be documented? Also, is this a dupe of JBIDE-15891 ?
> Weird code in JBT installation script: install.sh
> --------------------------------------------------
>
> Key: JBIDE-15892
> URL: https://issues.jboss.org/browse/JBIDE-15892
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: build
> Affects Versions: 4.1.1.Beta1
> Reporter: Pavol Srna
> Assignee: Nick Boldt
> Priority: Critical
> Fix For: 4.1.1.CR1
>
>
> install.sh contains some weird hardcoded stuff. you can download the script from offcial pages: http://www.jboss.org/tools/download/installation/update_4_1.html#fromscript
> [~nickboldt] can you explain how is it meant to be used?
> I don't think it is very straight forward for the user.
> {code}
> #!/bin/bash
> # install all of JBT into Eclipse Standard bundle
> target=${HOME}/eclipse/eclipse43; cd ${target}; rm -fr ${target}/eclipse
> tar xzf /tmp/eclipse-standard-kepler-R-linux-gtk-x86_64.tar.gz
> ${target}/eclipse/eclipse -consolelog -nosplash -data /tmp -application org.eclipse.ant.core.antRunner -f \
> install.xml \
> -DsourceZip=/tmp/jbosstools-Update-4.1.0.Final_2013-07-19_19-47-52-B380.zip \
> -DotherRepos=http://download.jboss.org/jbosstools/updates/stable/kepler/central/core/ \
> -DtargetDir=${target}/eclipse/
> # [p2.dir] Installing org.hibernate.eclipse.feature.source.feature.group 3.7.0.Final-v20130717-0715-B84.
> # ...
> # [p2.dir] Installing org.mozilla.xulrunner.feature.feature.group 1.9.218.Final-v20121126-2356-B155.
> # [p2.dir] Operation completed in 212518 ms.
> # install JBT Central, including Subclipse w/ SVNKit into Eclipse JEE bundle
> target=${HOME}/eclipse/eclipse43; cd ${target}; rm -fr ${target}/eclipse
> tar xzf /tmp/eclipse-jee-kepler-R-linux-gtk-x86_64.tar.gz
> ${target}/eclipse/eclipse -consolelog -nosplash -data /tmp -application org.eclipse.ant.core.antRunner -f \
> install.xml \
> -DsourceZip=/tmp/jbosstools-Update-4.1.0.Final_2013-07-19_19-47-52-B380.zip \
> -DotherRepos=http://download.jboss.org/jbosstools/updates/stable/kepler/central/core/ \
> -DtargetDir=${target}/eclipse/
> -Dinstall="org.jboss.tools.community.central.feature.feature.group,\
> org.tigris.subversion.subclipse.feature.group,\
> org.tigris.subversion.clientadapter.svnkit.feature.feature.group,\
> com.collabnet.subversion.merge.feature.feature.group,\
> net.java.dev.jna.feature.group,\
> org.tigris.subversion.clientadapter.feature.feature.group,\
> org.tigris.subversion.subclipse.graph.feature.feature.group,\
> org.tmatesoft.svnkit.feature.group"
> # [p2.dir] Installing org.jboss.tools.community.central.feature.feature.group 1.2.0.Final-v20130719-2050-B70.
> # [p2.dir] Installing org.tigris.subversion.subclipse.feature.group 1.8.20.
> # [p2.dir] Installing org.tigris.subversion.clientadapter.svnkit.feature.feature.group 1.7.9.1.
> # ...
> # [p2.dir] Operation completed in 55635 ms.
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 5 months
[JBoss JIRA] (JBIDE-15904) Test Cordova combinations
by Max Rydahl Andersen (JIRA)
Max Rydahl Andersen created JBIDE-15904:
-------------------------------------------
Summary: Test Cordova combinations
Key: JBIDE-15904
URL: https://issues.jboss.org/browse/JBIDE-15904
Project: Tools (JBoss Tools)
Issue Type: Task
Affects Versions: 4.1.1.Beta1
Reporter: Max Rydahl Andersen
Assignee: Vlado Pakan
Priority: Blocker
Fix For: 4.1.1.CR1
Use this jira to collect results from testing:
1)
Run On Android Emulator. On windows, Linux and Mac (in that prio order).
Run On Android Device: On windows, Linux and Mac (in that prio order)
The more SDK version we cover the better with the above two. I do not think
we can cover all so we should start with latest and make our way down.
2)
Changes on the Run configurations for Run on Android...
3)
Install Cordova Plugin:
Offline, windows, Linux, Mac
4)
Share project via git. Import existing project.
5)
Export native platform project
6)
Export Mobile Application
windows, linux, mac
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 5 months
[JBoss JIRA] (JBIDE-11602) Provide first class support for client side development
by Victor Rubezhny (JIRA)
[ https://issues.jboss.org/browse/JBIDE-11602?page=com.atlassian.jira.plugi... ]
Victor Rubezhny edited comment on JBIDE-11602 at 11/7/13 11:57 AM:
-------------------------------------------------------------------
The patch is proposed for the issue [Bug 392400 - NullPointerException at org.eclipse.wst.jsdt.internal.compiler.lookup.SourceTypeBinding.<init>(SourceTypeBinding.java:49) |https://bugs.eclipse.org/bugs/show_bug.cgi?id=392400].
Patch enables the usage of SourceTypeBinding(char[][], PackageBinding, Scope) constructor with null values for compoundName and scope arguments. So, if fixes the NPEs that occur every time when TypeDeclaration object is created (The issue that breaks content assist in JSDoc comments)
On 2012.11.06 the issue is marked as RESOLVED FIXED with Target Milestone 3.6: [Bug 392400 - NullPointerException at org.eclipse.wst.jsdt.internal.compiler.lookup.SourceTypeBinding.<init>(SourceTypeBinding.java:49) |https://bugs.eclipse.org/bugs/show_bug.cgi?id=392400].
was (Author: vrubezhny):
The patch is proposed for the issue [Bug 392400 - NullPointerException at org.eclipse.wst.jsdt.internal.compiler.lookup.SourceTypeBinding.<init>(SourceTypeBinding.java:49) |https://bugs.eclipse.org/bugs/show_bug.cgi?id=392400].
Patch enables the usage of SourceTypeBinding(char[][], PackageBinding, Scope) constructor with null values for compoundName and scope arguments. So, if fixes the NPEs that occur every time when TypeDeclaration object is created (The issue that breaks content assist in JSDoc comments)
> Provide first class support for client side development
> -------------------------------------------------------
>
> Key: JBIDE-11602
> URL: https://issues.jboss.org/browse/JBIDE-11602
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html source editing
> Reporter: Sebastien Deleuze
> Assignee: Victor Rubezhny
> Priority: Critical
> Labels: jsdt, vjet
> Fix For: 4.2.x
>
> Attachments: jbosstools-add-vjet-dependencies-patch.patch, jquery-1.5.1.min.js.jpg, jquery.tagcanvas.min.js.jpg, nexj-JS-Content-Assist-On-a-JS-in-ticket-monster-project-After-Insertion.jpg, nexj-JS-Content-Assist-On-a-JS-in-ticket-monster-project.jpg, nexj-JS-Content-Assist-On-an-HTML-1-in-ticket-monster-project-After-Insertion.jpg, nexj-JS-Content-Assist-On-an-HTML-1-in-ticket-monster-project.jpg, nexj-JS-Content-Assist-On-an-HTML-2-1-in-ticket-monster-project-After-Insertion.jpg, nexj-JS-Content-Assist-On-an-HTML-2-1-in-ticket-monster-project.jpg, nexj-JS-Content-Assist-On-an-HTML-2-2-in-ticket-monster-project-After-Insertion.jpg, nexj-JS-Content-Assist-On-an-HTML-2-2-in-ticket-monster-project.jpg, nexj-JS-Content-Assist-On-Any-JS-in-ticket-monster-project-After-Insertion.jpg, nexj-JS-Content-Assist-On-Any-JS-in-ticket-monster-project.jpg, nexj-JS-Content-Assist-On-Any-JS-in-ticket-monster-project.jpg, vjet-JS-Content-Assist-On-a-JS-in-ticket-monster-project-After-Insertion.jpg, vjet-JS-Content-Assist-On-a-JS-in-ticket-monster-project.jpg, vjet-JS-Content-Assist-On-Any-JS-in-ticket-monster-project-After-Insertion.jpg, vjet-JS-Content-Assist-On-Any-JS-in-ticket-monster-project.jpg, vjet-JS-Content-Assist-On-HTML-1-in-ticket-monster-project-After-Insertion.jpg, vjet-JS-Content-Assist-On-HTML-1-in-ticket-monster-project.jpg, vjet-JS-Content-Assist-On-HTML-2-1-in-ticket-monster-project-After-Insertion.jpg, vjet-JS-Content-Assist-On-HTML-2-1-in-ticket-monster-project.jpg, vjet-JS-Content-Assist-On-HTML-2-2-in-ticket-monster-project-After-Insertion.jpg, vjet-JS-Content-Assist-On-HTML-2-2-in-ticket-monster-project.jpg
>
>
> Web application development is currently moving in many projects from end to end server side technologies to HTML5 RIA developed with REST Webservices/ Webscoket on serverside + pure client side technologies GUI (Backbone.js for example).
> Eclipse has been always been quite bad in the field of advanced Javascript development. JSDT was a good start, but its development has been stopped for a few years, and in its current status, it is not really a good tool for real HTML5/JS dev. From what I know, there is no roadmap for strong move on this field in the WTP team. The only real Eclipse initiative for client side development is Orion (http://www.eclipse.org/orion/) outside of the IDE.
> The only other alternative is Aptana Studio 3, acquired last year by AppAccelerator.
> My question is : is there any plan to consider client side development as a first class citizen in JBoss Studio, even if this question apply to the whole Eclipse Ecosystem ? Other IDE like Netbeans or IntelliJ Idea have a strong support for these technologies, and my guess is this lack may be a significant blocking point in the following years.
> Thanks in advance for your feedback.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 5 months