[JBoss JIRA] (JBIDE-15849) JSF Portlet deployment error on JPP 6
by Snjezana Peco (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15849?page=com.atlassian.jira.plugi... ]
Snjezana Peco edited comment on JBIDE-15849 at 11/20/13 6:12 AM:
-----------------------------------------------------------------
The portletbridge 3.x doesn't require changes in the faces_config.xml and doesn't recognize them if they have been added.
I have fixed this issue as well as the issue with recognizng richfaces4 libraries.
This PR also fixes JBIDE-15848.
https://github.com/jbosstools/jbosstools-portlet/pull/18 has been applied to the master.
Please review the PR for the beta1 branch.
was (Author: snjeza):
The portletbridge 3.x doesn't require changes in the faces_config.xml and doesn't recognize them if they have been added.
I have fixed this issue as well as the issue with recognizng richfaces4 libraries.
This PR also fixes JBIDE-15848.
The PR has been applied to the master.
Please review the PR for the beta1 branch.
> JSF Portlet deployment error on JPP 6
> -------------------------------------
>
> Key: JBIDE-15849
> URL: https://issues.jboss.org/browse/JBIDE-15849
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: portal-gatein
> Affects Versions: 4.1.1.Beta1
> Reporter: Radoslav Rábara
> Assignee: Snjezana Peco
> Priority: Blocker
> Fix For: 4.2.0.Alpha1
>
> Attachments: server.log
>
>
> Deploying of JSF Portal Project with JSF Portlet ends with error on JPP 6.
--
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-15783) CordovaSim: CordovaSim doesn't support android projects
by Vlado Pakan (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15783?page=com.atlassian.jira.plugi... ]
Vlado Pakan commented on JBIDE-15783:
-------------------------------------
Status Getting authorization ... is displayed for couple of minutes but nothing more happened.
Check Network connection is displaying: "Connection type: Ethernet connection" but i'm connected via WiFi no Ethernet connection available.
Is this correct?
> CordovaSim: CordovaSim doesn't support android projects
> -------------------------------------------------------
>
> Key: JBIDE-15783
> URL: https://issues.jboss.org/browse/JBIDE-15783
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: browsersim
> Reporter: Ilya Buziuk
> Assignee: Ilya Buziuk
> Fix For: 4.1.1.CR1, 4.2.0.Alpha1
>
>
> CordovaSim should support hybrid and android (hybrid project that was built for the android platform) projects. After cordova 3.1 migration CordovaSim fails to emulate android projects
--
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-16022) Seam Portlet deployment error on JPP 6
by Snjezana Peco (JIRA)
[ https://issues.jboss.org/browse/JBIDE-16022?page=com.atlassian.jira.plugi... ]
Snjezana Peco commented on JBIDE-16022:
---------------------------------------
This issue isn't related to JBIDE-15849, but to JBIDE-11815.
The seam facet can't create seam < 2.3 for AS 7 runtimes.
We have to use Seam 2.3. But seam 2.3 also can't be deployed to AS 7.x/JPP 6.x.
I have been investigating that issue.
Re JBIDE-15849
I have created a patch for the master and beta1 branch. The beta1 branch has been released, but the patch hasn't been reviewed so that I have committed the PR to the master only. We can apply it to the cr1 branch if you want.
> Seam Portlet deployment error on JPP 6
> --------------------------------------
>
> Key: JBIDE-16022
> URL: https://issues.jboss.org/browse/JBIDE-16022
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: portal-gatein
> Affects Versions: 4.1.1.CR1
> Environment: JBDS 7.1.0 CR1-v20131116-1929-B543, JPP 6.1 (also JPP 6.0) and Seam 2.2.2
> Reporter: Radoslav Rábara
> Assignee: Snjezana Peco
> Priority: Critical
> Labels: respin-a
> Fix For: 4.1.1.CR1
>
> Attachments: jpp-seam-server.log
>
>
> Deployment of Seam Portal Project with Seam Portlet ends with error on JPP 6.
--
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-15814) CordovaSim: Need to implement navigator.app.backHistory
by Ilya Buziuk (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15814?page=com.atlassian.jira.plugi... ]
Ilya Buziuk commented on JBIDE-15814:
-------------------------------------
Steps for verifying:
1. Create new Hybrid Mobile Application Project
2. Update index.html
{code:title=index.html|borderStyle=solid}
<!DOCTYPE html>
<html>
<head>
<title>Back Button Example</title>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
// Wait for device API libraries to load
//
function onLoad() {
document.addEventListener("deviceready", onDeviceReady, false);
}
// device APIs are available
//
function onDeviceReady() {
document.addEventListener("backbutton", function(e) {
alert("backbutton event was fired");
}, false);
}
</script>
</head>
<body onload="onLoad()">
<button onclick="window.location = 'index2.html'">go to another page </button>
</body>
</html>
{code}
3. Add index2.html file
{code:title=index2.html|borderStyle=solid}
<!DOCTYPE html>
<html>
<head>
<title>Back Button Example</title>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
// Wait for device API libraries to load
//
function onLoad() {
document.addEventListener("deviceready", onDeviceReady, false);
}
// device APIs are available
//
function onDeviceReady() {
document.addEventListener("backbutton", function(e) {
navigator.app.backHistory()
}, false);
}
</script>
</head>
<body onload="onLoad()">
<h1>Second file</h1>
</body>
</html>
{code}
4. Run the project with CordovaSim
5. Press "go to another page" button - the app will show index2.html
6. Press browserSim's back button - the app will show index.html
7. Press backbutton again - the alert "backbutton event was fired" will be shown.
Note: However, when I run the app "On the android device", and press back button on the index.html page the app simply closes - no alert shown, so I've created JBIDE-16053
> CordovaSim: Need to implement navigator.app.backHistory
> -------------------------------------------------------
>
> Key: JBIDE-15814
> URL: https://issues.jboss.org/browse/JBIDE-15814
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: browsersim
> Reporter: Ilya Buziuk
> Assignee: Ilya Buziuk
> Fix For: 4.1.1.CR1, 4.2.0.Alpha1
>
>
> navigator.app.backHistory - is android specific method used for navigation to the history action. It's not properly documented since it is not cross platform.
--
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