[JBoss JIRA] (TOOLSDOC-442) Confusing order of chapters
by Michelle Murray (JIRA)
[ https://issues.jboss.org/browse/TOOLSDOC-442?page=com.atlassian.jira.plug... ]
Michelle Murray resolved TOOLSDOC-442.
--------------------------------------
Resolution: Done
> Confusing order of chapters
> ---------------------------
>
> Key: TOOLSDOC-442
> URL: https://issues.jboss.org/browse/TOOLSDOC-442
> Project: Documentation for JBoss Tools and Developer Studio
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: User Guide - Hybrid Mobile Tools
> Affects Versions: 4.1.1
> Environment: Build Name: 22443, User Guide-7.1
> Build Date: 11-12-2013 15:10:49
> Topic ID: 24053-567457 [Latest]
> Reporter: Tadeas Kriz
> Assignee: Michelle Murray
> Priority: Critical
> Fix For: 4.1.2
>
>
> Title: Install Hybrid Mobile Tools and CordovaSim
> Describe the issue:
> The 8.2 chapter's current sub-chapter order is confusing. There are example screens shown in chapter 8.2.4. and 8.2.5., which the user can't find until he installs the Hybrid Mobile Tools by following the chapter 8.2.6.
> Suggestions for improvement:
> I recommend the order to be 8.2.1., 8.2.2., 8.2.3., 8.2.6., 8.2.4., 8.2.5.
> Also, it'd be wise to link the 8.2.4. and 8.2.5. chapters from the 8.2.6.
> Additional information:
--
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, 2 months
[JBoss JIRA] (TOOLSDOC-441) Typo in 8.2.2. unordered list
by Michelle Murray (JIRA)
[ https://issues.jboss.org/browse/TOOLSDOC-441?page=com.atlassian.jira.plug... ]
Michelle Murray resolved TOOLSDOC-441.
--------------------------------------
Resolution: Done
> Typo in 8.2.2. unordered list
> -----------------------------
>
> Key: TOOLSDOC-441
> URL: https://issues.jboss.org/browse/TOOLSDOC-441
> Project: Documentation for JBoss Tools and Developer Studio
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: User Guide - Hybrid Mobile Tools
> Affects Versions: 4.1.1
> Environment: Build Name: 22443, User Guide-7.1
> Build Date: 11-12-2013 15:10:49
> Topic ID: 24051-567464 [Latest]
> Reporter: Tadeas Kriz
> Assignee: Michelle Murray
> Priority: Trivial
> Fix For: 4.1.2
>
>
> Title: About Hybrid Mobile Tools
> Describe the issue:
> In the unordered list, fourth item, there is "Android and iOS *SKDs*" (the bold is only to show what's wrong)
> Suggestions for improvement:
> It should say "Android and iOS *SDKs*" (the bold is only to show what exactly should change)
> Additional information:
--
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, 2 months
[JBoss JIRA] (TOOLSDOC-442) Confusing order of chapters
by Michelle Murray (JIRA)
[ https://issues.jboss.org/browse/TOOLSDOC-442?page=com.atlassian.jira.plug... ]
Michelle Murray edited comment on TOOLSDOC-442 at 1/9/14 8:32 PM:
------------------------------------------------------------------
PR merged with master and 4.1.x
Available to review:
* internally: http://documentation-devel.engineering.redhat.com/site/documentation/en-U...
* GitHub: https://github.com/jbosstools/jbosstools-documentation/blob/master/docs/U...
was (Author: mmurray):
PR merged with master and 4.1.x
Available to review in GitHub: https://github.com/jbosstools/jbosstools-documentation/blob/master/docs/U...
> Confusing order of chapters
> ---------------------------
>
> Key: TOOLSDOC-442
> URL: https://issues.jboss.org/browse/TOOLSDOC-442
> Project: Documentation for JBoss Tools and Developer Studio
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: User Guide - Hybrid Mobile Tools
> Affects Versions: 4.1.1
> Environment: Build Name: 22443, User Guide-7.1
> Build Date: 11-12-2013 15:10:49
> Topic ID: 24053-567457 [Latest]
> Reporter: Tadeas Kriz
> Assignee: Michelle Murray
> Priority: Critical
> Fix For: 4.1.2
>
>
> Title: Install Hybrid Mobile Tools and CordovaSim
> Describe the issue:
> The 8.2 chapter's current sub-chapter order is confusing. There are example screens shown in chapter 8.2.4. and 8.2.5., which the user can't find until he installs the Hybrid Mobile Tools by following the chapter 8.2.6.
> Suggestions for improvement:
> I recommend the order to be 8.2.1., 8.2.2., 8.2.3., 8.2.6., 8.2.4., 8.2.5.
> Also, it'd be wise to link the 8.2.4. and 8.2.5. chapters from the 8.2.6.
> Additional information:
--
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, 2 months
[JBoss JIRA] (JBIDE-16341) WAR resource filtering not working in Eclipse 4.3.1 and JBoss Tools 4.1.1
by Esteve Aviles (JIRA)
Esteve Aviles created JBIDE-16341:
-------------------------------------
Summary: WAR resource filtering not working in Eclipse 4.3.1 and JBoss Tools 4.1.1
Key: JBIDE-16341
URL: https://issues.jboss.org/browse/JBIDE-16341
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: maven
Affects Versions: 4.1.1.Final
Environment: Linux, Eclipse 4.3.1, JBossTools 4.1.1, Maven 3.1.1.
Reporter: Esteve Aviles
Priority: Minor
i,
I work in a project where web.xml content must be filtered depending on maven profiles. I have configured pom.xml as follows but Eclipse doesn't process filtering for web.xml when deploying the app to the server through Full Publish from Servers Tab.
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<webResources>
<resource>
<filtering>true</filtering>
<directory>src/main/webapp</directory>
<includes>
<include>**/web.xml</include>
</includes>
</resource>
</webResources>
<warSourceDirectory>src/main/webapp</warSourceDirectory>
<webXml>src/main/webapp/WEB-INF/web.xml</webXml>
</configuration>
</plugin>
Environment: Eclipse Kepler 4.3.1, JBoss Tools 4.1.1, JBossAS7.1 and Maven 3.1.1.
If I build the project with maven package everything is working fine.
You can clone this Git repository to test it: esteveavi/forge-test · GitHub
Can anyone check if you have the same problem?
Thanks in advance.
Regards.
Esteve
--
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, 2 months
[JBoss JIRA] (JBDS-2866) CordovaSim Debugger
by Ilya Buziuk (JIRA)
[ https://issues.jboss.org/browse/JBDS-2866?page=com.atlassian.jira.plugin.... ]
Ilya Buziuk commented on JBDS-2866:
-----------------------------------
{quote}
we might as well drop the FireBug Lite once this is in place
{quote}
Definitely. There will be no "Firebug Lite" menu item for JavaFx WebView engine
{quote}
especially if it stays open during LiveReload refreshes
{quote}
Yesterday I fixed LiveReload and TouchEvent for javaFx WebView. Now everything works just fine
{quote}
Do the line numbers match up between the debugger and if using Eclipse as the JS editor?
{quote}
Yes, they do
{quote}
As far as Chrome vs JavaFX goes...
{quote}
Yes, I also like Chrome. The problem is - how should we open it? AFAIK the only solution is org.eclipse.swt.program.Program.launch(url). However, this will work only if Chrome is the default system browser. Yesterday on 1-o-1 [~maxandersen] made a very interesting proposal - show pop-up with an appropriate text message and url for debugging. I think it's pretty nice solution. So, I have implemented it and made a demo video. Demo also covers collaboration with LiveReload - http://www.youtube.com/watch?v=C8dMNWWfK3A&feature=youtu.be
> CordovaSim Debugger
> -------------------
>
> Key: JBDS-2866
> URL: https://issues.jboss.org/browse/JBDS-2866
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: browsersim, requirements
> Reporter: Burr Sutter
> Assignee: Ilya Buziuk
> Attachments: DevToolsMenu.png
>
>
> The current FireBug Lite in CordovaSim has the following limitations:
> 1) When using LiveReload, the window closes with every reload
> 2) Various "page load" events with console.log statements are not visible in FireBug Lite console, like having console.log() in your deviceready
> http://screencast.com/t/RRGhV9PV
> Note: I forgot to add the Console Cordova plugin, not sure if that is necessary but the window closes, so not sure how I would see the message
--
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, 2 months