[JBoss JIRA] (GTNWSRP-253) Double registration of consumer with producer is allowed (regression)
by Michal Vanco (Created) (JIRA)
Double registration of consumer with producer is allowed (regression)
---------------------------------------------------------------------
Key: GTNWSRP-253
URL: https://issues.jboss.org/browse/GTNWSRP-253
Project: GateIn WSRP
Issue Type: Bug
Affects Versions: 2.1.0-Beta08
Environment: EPP5.2.0 ER05, WSRP 2.1.0-EPP520-Beta08
Reporter: Michal Vanco
Assignee: Chris Laprun
Fix For: 2.1.0-Beta09
Attachments: wsrp-doublereg.png, wsrp-doublereg.txt
There is a regression behavior in registering consumer, it wasn't possible to register same consumer with different names on one producer (because of registration properties).
Now it's possible to register X consumers with same producer (same reg.properties are used), but it cause some other problems when you delete one of consumers.
You'll get an error like
Invalid registration: There is no Registration with handle '...' when try to delete another consumer.
After a while of playing with this behavior I was able to drop portal completely ended with error:
SOAPFaultException: Must pass a non null PortletDescription
...
org.exoplatform.services.portletcontainer.PortletContainerException: org.gatein.pc.api.NoSuchPortletException: No such portlet _dumbvalue
...
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] (GTNPORTAL-2214) Add page wizard label in French
by Khoi Nguyen (Created) (JIRA)
Add page wizard label in French
-------------------------------
Key: GTNPORTAL-2214
URL: https://issues.jboss.org/browse/GTNPORTAL-2214
Project: GateIn Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Khoi Nguyen
Priority: Minor
Choose French.
Go to Site Editor -> Add Page Wizard.
In the second step of page creation, Page Layout Template names are not well translated: see AddPage-step2.png
* Configs Page -> Configuration de la page
* Configs Page en Colonnes -> Configuration de la page en colonnes
* Configs Page en Lignes -> Configuration de la page en lignes
* Configs Page en Onglets -> Configuration de la page en onglets
* Configs Page Mixte -> Configuration de la page mixte
In the third step: see AddPage-step3.png.
* Containers -> Conteneurs
* The whole content of the message when clicking on Abort icon.
** The title: Confirm message -> Message de confirmation
** "Modifications have been made. Are you sure you want to close without saving ?"
-> "Il y a des modifications. Etes-vous certain de fermer sans sauvegarde ?"
** Yes/No buttons -> "Oui/Non"
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] (GTNPORTAL-2224) Small UI issue in Change Language Dialog: Scroller is visible while it is not necessary
by Trong Tran (Created) (JIRA)
Small UI issue in Change Language Dialog: Scroller is visible while it is not necessary
---------------------------------------------------------------------------------------
Key: GTNPORTAL-2224
URL: https://issues.jboss.org/browse/GTNPORTAL-2224
Project: GateIn Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Trong Tran
Fix For: 3.2.0-M02
Go to any site public on not
Click on Change Language link (in public page on ACME Site or in user menu)
The dialog contains a vertical scroller that is not necessary. (see attached screenshot)
This is not a blocking issue but does not look "slick" since we have spent lot of time to improve the UI we could fix it.
This is even worse when you have many languages because in this case you have 2 scrollers side by side
Note:
I have tried on my local instance and could not reproduce the issue. (even emptying my cache, etc etc) Slemeur has the same issue on his own install.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] (GTNPORTAL-2215) Use variable in wrong context
by Trong Tran (Created) (JIRA)
Use variable in wrong context
-----------------------------
Key: GTNPORTAL-2215
URL: https://issues.jboss.org/browse/GTNPORTAL-2215
Project: GateIn Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Trong Tran
Fix For: 3.2.0-M02
Hi,
At the level of this component: *exoplatform.webui.form.ext.UIFormInputSetWithAction*
it is impossible to modify the attribute using the method isView *setIsView*
{code:java}
public void setIsView(boolean isView)
{
isView = isView;
}
{code}
this must be added at the beginning of the line as follows
{code:java}
public void setIsView(boolean isView)
{
this.isView = isView;
}
{code}
otherwise we should change the name of the input variable.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months