[JBoss JIRA] (RF-13470) Photoalbum: user profile view bugs
by Jiří Štefek (JIRA)
Jiří Štefek created RF-13470:
--------------------------------
Summary: Photoalbum: user profile view bugs
Key: RF-13470
URL: https://issues.jboss.org/browse/RF-13470
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: examples
Affects Versions: 4.3.4
Reporter: Jiří Štefek
Assignee: Michal Petrov
On the user profile view:
# the fileupload is somehow broken, when you are trying to add a new avatar (it accepts jpg only) there is no upload button after choosing the right file, but 'clear all' button is visible
# there should be some sort of message, when you are trying to upload unacceptable type of image
# the text 'bind with FB' overflows the button on Firefox (is ok on Chrome)
--
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
10 years, 11 months
[JBoss JIRA] (RF-13274) Use QSTools:archetypeSync to keep the kitchensink archetype synchronized with the kithensink-rf quickstart
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13274?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-13274:
------------------------------------
QE: please make sure the project generated from this archetype still works for both the community and enterprise use cases (I've only checked the community use case myself).
> Use QSTools:archetypeSync to keep the kitchensink archetype synchronized with the kithensink-rf quickstart
> -----------------------------------------------------------------------------------------------------------
>
> Key: RF-13274
> URL: https://issues.jboss.org/browse/RF-13274
> Project: RichFaces
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Reporter: Brian Leathem
> Assignee: Brian Leathem
> Labels: needs-qe
> Fix For: 4.3.5
>
> Original Estimate: 3 hours
> Remaining Estimate: 3 hours
>
> As per [~rafabene]'s description in IRC:
> {quote}
> use QSTools:archetypeSync to keep your Archetype Synchornized with the kithensink-rf Quickstart as we did for our Archetypes
> look at an example here: https://github.com/jboss-developer/jboss-eap-archetypes/blob/master/jboss...
> you tell where the quickstart is projectGitRepo projectPath
> tell what's your branch or commit or tag
> them what's your rootPackage
> you can configure expression that will be replaced by $\{artifactId} with archetypeExpressionReplaceValues
> so every fix that you make on Quickstarts will be available on your next Archetype build
> call me if you have any issues with QSTools:archetypeSync
> {quote}
--
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
10 years, 11 months
[JBoss JIRA] (RF-13469) RF 5 pickList NPE ResourceServletMapping - resource.getLibraryName()
by H G (JIRA)
[ https://issues.jboss.org/browse/RF-13469?page=com.atlassian.jira.plugin.s... ]
H G updated RF-13469:
---------------------
Description:
An exception is handled. The exception is related to the source code "resource.getLibraryName()" from ResourceServletMapping
Link to exception - https://community.jboss.org/message/852156
was:
An exception is handled. The exception is related to the source code "resource.getLibraryName()" from ResourceServletMapping
Link to exception - https://community.jboss.org/message/852156
View source:
<r:pickList value="#{bean.selectedAreaIds}" listHeight="200px" converter="javax.faces.Integer">
<f:selectItems value="#{bean.areaItems}" />
</r:pickList>
Bean source methog loading areaItems:
private void loadAreaItems() {
areaItems = null;
List<Area> l = (List<Area>)em.createQuery("from Area order by name ASC")
.getResultList();
if(l != null) {
int size = l.size();
areaItems = new ArrayList<SelectItem>(size);
for(int i = 0; i < size; i++) {
Area area = l.get(i);
areaItems.add(new SelectItem(area.getId(), area.getName()));
}
} else {
areaItems = new ArrayList<SelectItem>(0);
}
}
> RF 5 pickList NPE ResourceServletMapping - resource.getLibraryName()
> --------------------------------------------------------------------
>
> Key: RF-13469
> URL: https://issues.jboss.org/browse/RF-13469
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-selects
> Affects Versions: 5.0.0.Alpha2
> Environment: WildFly CR1, RF 5 Alpha2, jboss-jsf-api_2.2_spec-2.2.4
> WildFly B1, RF 5 Alpha2, jboss-jsf-api_2.2_spec-2.2.3
> Firefox 26.0
> Reporter: H G
> Labels: libraryName, npe, pickList, resource
> Fix For: 5.0.0.Alpha3
>
>
> An exception is handled. The exception is related to the source code "resource.getLibraryName()" from ResourceServletMapping
> Link to exception - https://community.jboss.org/message/852156
--
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
10 years, 11 months
[JBoss JIRA] (RF-13469) RF 5 pickList NPE ResourceServletMapping - resource.getLibraryName()
by H G (JIRA)
[ https://issues.jboss.org/browse/RF-13469?page=com.atlassian.jira.plugin.s... ]
H G updated RF-13469:
---------------------
Description:
An exception is handled. The exception is related to the source code "resource.getLibraryName()" from ResourceServletMapping
Link to exception - https://community.jboss.org/message/852156
View source:
<r:pickList value="#{bean.selectedAreaIds}" listHeight="200px" converter="javax.faces.Integer">
<f:selectItems value="#{bean.areaItems}" />
</r:pickList>
Bean source methog loading areaItems:
private void loadAreaItems() {
areaItems = null;
List<Area> l = (List<Area>)em.createQuery("from Area order by name ASC")
.getResultList();
if(l != null) {
int size = l.size();
areaItems = new ArrayList<SelectItem>(size);
for(int i = 0; i < size; i++) {
Area area = l.get(i);
areaItems.add(new SelectItem(area.getId(), area.getName()));
}
} else {
areaItems = new ArrayList<SelectItem>(0);
}
}
was:
An exception is handled. The exception is related to the source code "resource.getLibraryName()" from ResourceServletMapping
Link to exception - https://community.jboss.org/message/852156
> RF 5 pickList NPE ResourceServletMapping - resource.getLibraryName()
> --------------------------------------------------------------------
>
> Key: RF-13469
> URL: https://issues.jboss.org/browse/RF-13469
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-selects
> Affects Versions: 5.0.0.Alpha2
> Environment: WildFly CR1, RF 5 Alpha2, jboss-jsf-api_2.2_spec-2.2.4
> WildFly B1, RF 5 Alpha2, jboss-jsf-api_2.2_spec-2.2.3
> Firefox 26.0
> Reporter: H G
> Labels: libraryName, npe, pickList, resource
> Fix For: 5.0.0.Alpha3
>
>
> An exception is handled. The exception is related to the source code "resource.getLibraryName()" from ResourceServletMapping
> Link to exception - https://community.jboss.org/message/852156
> View source:
> <r:pickList value="#{bean.selectedAreaIds}" listHeight="200px" converter="javax.faces.Integer">
> <f:selectItems value="#{bean.areaItems}" />
> </r:pickList>
> Bean source methog loading areaItems:
> private void loadAreaItems() {
> areaItems = null;
> List<Area> l = (List<Area>)em.createQuery("from Area order by name ASC")
> .getResultList();
> if(l != null) {
> int size = l.size();
> areaItems = new ArrayList<SelectItem>(size);
> for(int i = 0; i < size; i++) {
> Area area = l.get(i);
> areaItems.add(new SelectItem(area.getId(), area.getName()));
> }
> } else {
> areaItems = new ArrayList<SelectItem>(0);
> }
> }
--
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
10 years, 11 months