[JBoss JIRA] (JBIDE-18568) Create a H2 database profile
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18568?page=com.atlassian.jira.plugi... ]
Rob Stryker commented on JBIDE-18568:
-------------------------------------
> we really need to get runtime detection running when setting up servers so these things work consistently.
Unfortunately, the code that sets up the DS stuff is in the plugin org.jboss.tools.as.runtimes.integration and so can't really be called from as.core/as.ui since it sits above those two.
We could make a different change though. We could have as.runtime.integration add a server creation listener to run the following code, rather than run it directly in the JBossASHandler (runtime detection code that creates the server)
{code}
if( isDtpPresent())
new DriverUtility().createDriver(asLocation.getAbsolutePath(), serverType);
{code}
Since DriverUtility is in as.runtime.integration, it can't be called directly from as.core/as.ui. Currently JBossASHandler calls these two lines directly when adding a server adapter. If we switched it to a listener, it could work in all cases, except if as.runtime.integration hasn't been started yet as a bundle, in which case the listener wouldn't be added.
It'd still help, but, unless we could somehow force as.runtime.integration to start early, it'd still have the potential to not create the driver.
> Create a H2 database profile
> ----------------------------
>
> Key: JBIDE-18568
> URL: https://issues.jboss.org/browse/JBIDE-18568
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: seam2, server, upstream
> Reporter: Arun Gupta
> Assignee: Alexey Kazakov
> Fix For: 4.3.x
>
>
> Create a H2 database profile. This will simplify connecting to the in-memory database of WildFly.
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
11 years, 5 months
[JBoss JIRA] (JBIDE-18687) [Openshift Server Adapter]: Display standalone.xml config file in 'Filesets' node of an OpenShift server
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18687?page=com.atlassian.jira.plugi... ]
Rob Stryker updated JBIDE-18687:
--------------------------------
Summary: [Openshift Server Adapter]: Display standalone.xml config file in 'Filesets' node of an OpenShift server (was: Display standalone.xml config file in 'Filesets' node of an OpenShift server )
> [Openshift Server Adapter]: Display standalone.xml config file in 'Filesets' node of an OpenShift server
> ---------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-18687
> URL: https://issues.jboss.org/browse/JBIDE-18687
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift, server
> Affects Versions: 4.2.0.Final
> Reporter: Xavier Coulon
> Fix For: 4.2.1.Final, 4.3.x
>
> Attachments: Screenshot 2014-10-22 14.35.04.png
>
>
> If I want to edit/review the standalone.xml config file associated with the WildFly/EAP/AS server running on OpenShift, I need to customize the Project Explorer view to reveal the {{.* resources}}, then go to {{.openshift>configuration>standalone.xml}}.
> It would be much easier if this file was accessible from the Servers view, as with any local WildFly/EAP/AS server.
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
11 years, 5 months
[JBoss JIRA] (JBIDE-18715) [Openshift Server Adapter]: Notification should be shown once the server is started (e.g. EAP, AS...)
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18715?page=com.atlassian.jira.plugi... ]
Rob Stryker updated JBIDE-18715:
--------------------------------
Summary: [Openshift Server Adapter]: Notification should be shown once the server is started (e.g. EAP, AS...) (was: Server Adapter: Notification should be shown once the server is started (e.g. EAP, AS...))
> [Openshift Server Adapter]: Notification should be shown once the server is started (e.g. EAP, AS...)
> -----------------------------------------------------------------------------------------------------
>
> Key: JBIDE-18715
> URL: https://issues.jboss.org/browse/JBIDE-18715
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: openshift, server
> Affects Versions: 4.2.0.Final
> Reporter: Marián Labuda
> Labels: server_adapter
> Fix For: 4.3.x
>
>
> Under "server" I mean EAP, AS, WildFly, Tomcat... catridges (server runtimes).
> We talked with [~adietish] about having a notification about started server. It would help with application deployment to know, when the server is running and not to check/stare into the console.
> Notification should be shown in the bottom right corner and at first it should inform user about server being started and that we are going to inform him/her once the server is started. Second notification would be shown once the server is started.
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
11 years, 5 months
[JBoss JIRA] (JBIDE-8874) Support XML documents for XSLT compliant browser
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-8874?page=com.atlassian.jira.plugin... ]
Max Rydahl Andersen commented on JBIDE-8874:
--------------------------------------------
I wouldn't force that editor on *all* .xml files, but users can use Open With to get it. Would that not be a good balance ?
> Support XML documents for XSLT compliant browser
> ------------------------------------------------
>
> Key: JBIDE-8874
> URL: https://issues.jboss.org/browse/JBIDE-8874
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: visual-page-editor-core
> Affects Versions: 3.3.0.M1
> Reporter: Denis Golovin
> Assignee: Konstantin Marmalyukov
> Priority: Minor
> Fix For: 4.3.0.Alpha1
>
> Attachments: screenshot-1.png, screenshot-2.png, screenshot-3.png, screenshot59.png, wecandoit.png, xml-xsl.png
>
>
> Would be good to have support to show documents for XSLT compliant browser like
> {code:title=cdcatalog.xsl|borderStyle=solid}
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <!-- Edited by XMLSpy® -->
> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
> <xsl:template match="/">
> <html>
> <body>
> <h2>My CD Collection</h2>
> <table border="1">
> <tr bgcolor="#9acd32">
> <th>Title</th>
> <th>Artist</th>
> </tr>
> <xsl:for-each select="catalog/cd">
> <tr>
> <td><xsl:value-of select="title"/></td>
> <td><xsl:value-of select="artist"/></td>
> </tr>
> </xsl:for-each>
> </table>
> </body>
> </html>
> </xsl:template>
> </xsl:stylesheet>
> {code}
> {code:title=page.xml|borderStyle=solid}
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <?xml-stylesheet type="text/xsl" href="cdcatalog.xsl"?>
> <!-- Edited by XMLSpy® -->
> <catalog>
> <cd>
> <title>Empire Burlesque</title>
> <artist>Bob Dylan</artist>
> <country>USA</country>
> <company>Columbia</company>
> <price>10.90</price>
> <year>1985</year>
> </cd>
> <cd>
> <title>Hide your heart</title>
> <artist>Bonnie Tyler</artist>
> <country>UK</country>
> <company>CBS Records</company>
> <price>9.90</price>
> <year>1988</year>
> </cd>
> <cd>
> <title>Greatest Hits</title>
> <artist>Dolly Parton</artist>
> <country>USA</country>
> <company>RCA</company>
> <price>9.90</price>
> <year>1982</year>
> </cd>
> </catalog>
> {code}
> Visual part of editor would look like:
> !screenshot59.png!
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
11 years, 5 months
[JBoss JIRA] (JBIDE-8874) Support XML documents for XSLT compliant browser
by Konstantin Marmalyukov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-8874?page=com.atlassian.jira.plugin... ]
Konstantin Marmalyukov commented on JBIDE-8874:
-----------------------------------------------
[~dgolovin], [~vpakan] I have working prototype practically done(except one bug). As a result of this feature XML files should be opened with our editor having the same tabs as HTML editor(need another JBoss Tools XML Editor). If XML file will have XSL transformation applied, the result will be shown in Preview, if not - we will have visual output like this !screenshot-3.png|thumbnail! Does it works?
> Support XML documents for XSLT compliant browser
> ------------------------------------------------
>
> Key: JBIDE-8874
> URL: https://issues.jboss.org/browse/JBIDE-8874
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: visual-page-editor-core
> Affects Versions: 3.3.0.M1
> Reporter: Denis Golovin
> Assignee: Konstantin Marmalyukov
> Priority: Minor
> Fix For: 4.3.0.Alpha1
>
> Attachments: screenshot-1.png, screenshot-2.png, screenshot-3.png, screenshot59.png, wecandoit.png, xml-xsl.png
>
>
> Would be good to have support to show documents for XSLT compliant browser like
> {code:title=cdcatalog.xsl|borderStyle=solid}
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <!-- Edited by XMLSpy® -->
> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
> <xsl:template match="/">
> <html>
> <body>
> <h2>My CD Collection</h2>
> <table border="1">
> <tr bgcolor="#9acd32">
> <th>Title</th>
> <th>Artist</th>
> </tr>
> <xsl:for-each select="catalog/cd">
> <tr>
> <td><xsl:value-of select="title"/></td>
> <td><xsl:value-of select="artist"/></td>
> </tr>
> </xsl:for-each>
> </table>
> </body>
> </html>
> </xsl:template>
> </xsl:stylesheet>
> {code}
> {code:title=page.xml|borderStyle=solid}
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <?xml-stylesheet type="text/xsl" href="cdcatalog.xsl"?>
> <!-- Edited by XMLSpy® -->
> <catalog>
> <cd>
> <title>Empire Burlesque</title>
> <artist>Bob Dylan</artist>
> <country>USA</country>
> <company>Columbia</company>
> <price>10.90</price>
> <year>1985</year>
> </cd>
> <cd>
> <title>Hide your heart</title>
> <artist>Bonnie Tyler</artist>
> <country>UK</country>
> <company>CBS Records</company>
> <price>9.90</price>
> <year>1988</year>
> </cd>
> <cd>
> <title>Greatest Hits</title>
> <artist>Dolly Parton</artist>
> <country>USA</country>
> <company>RCA</company>
> <price>9.90</price>
> <year>1982</year>
> </cd>
> </catalog>
> {code}
> Visual part of editor would look like:
> !screenshot59.png!
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
11 years, 5 months
[JBoss JIRA] (JBIDE-8874) Support XML documents for XSLT compliant browser
by Konstantin Marmalyukov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-8874?page=com.atlassian.jira.plugin... ]
Konstantin Marmalyukov updated JBIDE-8874:
------------------------------------------
Attachment: screenshot-3.png
> Support XML documents for XSLT compliant browser
> ------------------------------------------------
>
> Key: JBIDE-8874
> URL: https://issues.jboss.org/browse/JBIDE-8874
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: visual-page-editor-core
> Affects Versions: 3.3.0.M1
> Reporter: Denis Golovin
> Assignee: Konstantin Marmalyukov
> Priority: Minor
> Fix For: 4.3.0.Alpha1
>
> Attachments: screenshot-1.png, screenshot-2.png, screenshot-3.png, screenshot59.png, wecandoit.png, xml-xsl.png
>
>
> Would be good to have support to show documents for XSLT compliant browser like
> {code:title=cdcatalog.xsl|borderStyle=solid}
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <!-- Edited by XMLSpy® -->
> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
> <xsl:template match="/">
> <html>
> <body>
> <h2>My CD Collection</h2>
> <table border="1">
> <tr bgcolor="#9acd32">
> <th>Title</th>
> <th>Artist</th>
> </tr>
> <xsl:for-each select="catalog/cd">
> <tr>
> <td><xsl:value-of select="title"/></td>
> <td><xsl:value-of select="artist"/></td>
> </tr>
> </xsl:for-each>
> </table>
> </body>
> </html>
> </xsl:template>
> </xsl:stylesheet>
> {code}
> {code:title=page.xml|borderStyle=solid}
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <?xml-stylesheet type="text/xsl" href="cdcatalog.xsl"?>
> <!-- Edited by XMLSpy® -->
> <catalog>
> <cd>
> <title>Empire Burlesque</title>
> <artist>Bob Dylan</artist>
> <country>USA</country>
> <company>Columbia</company>
> <price>10.90</price>
> <year>1985</year>
> </cd>
> <cd>
> <title>Hide your heart</title>
> <artist>Bonnie Tyler</artist>
> <country>UK</country>
> <company>CBS Records</company>
> <price>9.90</price>
> <year>1988</year>
> </cd>
> <cd>
> <title>Greatest Hits</title>
> <artist>Dolly Parton</artist>
> <country>USA</country>
> <company>RCA</company>
> <price>9.90</price>
> <year>1982</year>
> </cd>
> </catalog>
> {code}
> Visual part of editor would look like:
> !screenshot59.png!
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
11 years, 5 months
[JBoss JIRA] (JBIDE-18745) Separate Eclipse Marketplace entry for Hybrid Mobile
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18745?page=com.atlassian.jira.plugi... ]
Max Rydahl Andersen commented on JBIDE-18745:
---------------------------------------------
I've sent mail to marketplace to ask if there is a rest api for editing that could make this simpler.
> Separate Eclipse Marketplace entry for Hybrid Mobile
> ----------------------------------------------------
>
> Key: JBIDE-18745
> URL: https://issues.jboss.org/browse/JBIDE-18745
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: build
> Affects Versions: 4.2.0.Final
> Reporter: Gorkem Ercan
> Assignee: Gorkem Ercan
> Priority: Blocker
>
> Create a new marketplace entry for JBoss tools Hybrid Mobile which should include the following features.
> - org.jboss.tools.aerogear.thym.feature
> - org.jboss.tools.vpe.cordovasim.feature
> - org.jboss.tools.jst.angularjs.feature
> - org.jboss.tools.livereload.feature
> And central
> - org.jboss.tools.community.central.feature
> - org.jboss.tools.community.project.examples.feature
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
11 years, 5 months
[JBoss JIRA] (JBIDE-18745) Separate Eclipse Marketplace entry for Hybrid Mobile
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18745?page=com.atlassian.jira.plugi... ]
Max Rydahl Andersen commented on JBIDE-18745:
---------------------------------------------
[~nickboldt] your memory must be leaking. All marketplace entries have been moved to jbosstools user. This means the editing can be shared and not tied to individuals.
You can see that by all latest edits to these entries are "submitted by JBoss Tools", not by Nick nor Max.
Since this entry is to be linked to our overall release I don't see why it is only Gorkem that needs to update it. Is there a problem with this ? Does this entry need to get updated on every release ?
And like Gorkem I have no idea what your last comment is about. But I wrote to test this *before* creating a marketplace entry since I'm very much aware you can't test these entries before they are live.
> Separate Eclipse Marketplace entry for Hybrid Mobile
> ----------------------------------------------------
>
> Key: JBIDE-18745
> URL: https://issues.jboss.org/browse/JBIDE-18745
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: build
> Affects Versions: 4.2.0.Final
> Reporter: Gorkem Ercan
> Assignee: Gorkem Ercan
> Priority: Blocker
>
> Create a new marketplace entry for JBoss tools Hybrid Mobile which should include the following features.
> - org.jboss.tools.aerogear.thym.feature
> - org.jboss.tools.vpe.cordovasim.feature
> - org.jboss.tools.jst.angularjs.feature
> - org.jboss.tools.livereload.feature
> And central
> - org.jboss.tools.community.central.feature
> - org.jboss.tools.community.project.examples.feature
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
11 years, 5 months
[JBoss JIRA] (JBIDE-18737) Server's XML configuration does not contain Ports in Servers view
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18737?page=com.atlassian.jira.plugi... ]
Rob Stryker commented on JBIDE-18737:
-------------------------------------
When a server is added to the workspace, a server lifecycle listener (XPathModel) sees this, and fires a job to add the xml configurations needed: categories (ports) and specific xpaths. You may consider adding a job listener to make sure the workspace has no jobs running before expanding the tree.
If that doesn't fix it, there have, in the past, been issues with our UnitedServerListener, a quick utility class we have in ASTools to make it easier to add listeners for specific server events. See https://bugs.eclipse.org/bugs/show_bug.cgi?id=437351
This specific bug was "patched" but was not actually added to any of the wtp builds (an error on their side). We also have a workaround in our astools code which I never removed, but which is not 100%. The effect of this bug is that sometimes, it's possible a specific listener does not get added to the servertools framework. Our workaround has a high chance of working around this, but again, not 100%. But I somehow doubt this is the issue.
Can you detail what TP you're using?
> Server's XML configuration does not contain Ports in Servers view
> -----------------------------------------------------------------
>
> Key: JBIDE-18737
> URL: https://issues.jboss.org/browse/JBIDE-18737
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: server
> Affects Versions: 4.2.0.Final
> Reporter: Lucia Jelinkova
> Priority: Minor
> Attachments: createServer.png
>
>
> In my automated tests, I often run on the issue on the Servers view, that the server does not have anyting under the XML configuration (no Ports). It happens 1 out of 3 times. See screenshot attached. The Ports do not appear even if I collapse the server's tree and expand it again.
> I was not able to reproduce this manually. Do you have any idea where the problem could be? Is thare anything special about the Ports that could cause this issue?
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
11 years, 5 months