[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-1773) Document jar versions bundled with Seam
by steve tynor (JIRA)
Document jar versions bundled with Seam
---------------------------------------
Key: JBSEAM-1773
URL: http://jira.jboss.com/jira/browse/JBSEAM-1773
Project: JBoss Seam
Issue Type: Feature Request
Components: Documentation
Affects Versions: 2.0.0.BETA1
Reporter: steve tynor
I am running into a bug which from googling may be fixed in a newer hibernate or ejb3 release, but I can't be sure -- I can't tell from the jboss-seam-1.2.1-GA.zip file just what versions of various jars are bundled.
The Seam 2.0-BETA distribution does not appear to be any better documented. Before te next release, please update the lib/readme.txt to include details of each jar file's version and/or change their filenames (e.g., from hibernate-all.jar to hibernate-all.x.y.z.jar) so we can know what versions we're using.
If I'm just blind and not looking in the right place, my apologies, and please just point me to the docs.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 2 months
[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-1495) Add option to overide ImageCaptchaService service in CaptchaImage
by Mariusz Smykula (JIRA)
Add option to overide ImageCaptchaService service in CaptchaImage
-----------------------------------------------------------------
Key: JBSEAM-1495
URL: http://jira.jboss.com/jira/browse/JBSEAM-1495
Project: JBoss Seam
Issue Type: Feature Request
Components: Security
Affects Versions: 1.3.0.ALPHA
Reporter: Mariusz Smykula
This is necessary to extend this class and make my own implementation (simpler than default). Making service protected or adding setter can help.
I need to implement my own create() method. If there is other solution, please give me advice.
@Create
public void create() {
// service = new DefaultManageableImageCaptchaService();
SimpleListImageCaptchaEngine engine = new SimpleListImageCaptchaEngine();
engine
.addFactory(new GimpyFactory(new RandomWordGenerator(
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"), new ComposedWordToImage(
new RandomFontGenerator(new Integer(12),
new Integer(16)), new FunkyBackgroundGenerator(
new Integer(200), new Integer(100)),
new RandomTextPaster(new Integer(6), new Integer(10),
Color.BLACK))));
service = new DefaultManageableImageCaptchaService(
new FastHashMapCaptchaStore(), engine, 180, 100000, 75000);
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 2 months
[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-2104) Seam gen - two association between two same objects
by Tomas Cerny (JIRA)
Seam gen - two association between two same objects
---------------------------------------------------
Key: JBSEAM-2104
URL: http://jira.jboss.com/jira/browse/JBSEAM-2104
Project: JBoss Seam
Issue Type: Feature Request
Components: Tools
Affects Versions: 2.0.0.CR2
Environment: does not matter
Reporter: Tomas Cerny
Priority: Minor
I am playing a lot with your awesome seam-gen.
I have a small request. When a table has two association between two same objects. (both has foreign key)
Eg.
Airplane ----(departure)------ Airport
Airplane ----(arrival)------ Airport
Airplane
-----------
id
fromId fk Airport.id
toId fk Airport.id
Airport
-----------
id
then my AirplaneHome after seam gen has
@In(create=true)
AirportHome airport
@In(create=true)
AirportHome airport
-----------------------------------------------------
I need to rename variable airport in AirportHome and update method wire
and create a @Role for AirportHome
then update injection in AirplaneHome
@In(value="from",create=true)
AirportHome airport
It seems easy to me from view as black box programmer ;)
Tomas
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 2 months
[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-1293) Page parameters not working
by Chris Rudd (JIRA)
Page parameters not working
---------------------------
Key: JBSEAM-1293
URL: http://jira.jboss.com/jira/browse/JBSEAM-1293
Project: JBoss Seam
Issue Type: Bug
Affects Versions: 1.2.1.GA
Reporter: Chris Rudd
Im attempting to use the Page parameter feature detailed in section 5.1.1.1 of the documentation.
<pages>
<page view-id="/edit.xhtml">
<param name="id" value="#{editor.id}"/>
</page>
</pages>
based on my understanding of the functiuonality if i go the url /edit.xhtml?id=foobar then editor.id should be set to 'foobar'.
This is not occuring. After tracing the code it seems like this is where the magic should happen:
AbstractSeamPhaseListener.java : 70
//apply page parameters to the model
if ( facesContext.getRenderResponse() )
{
Pages.instance().applyRequestParameterValues(facesContext);
}
else
{
Pages.instance().applyViewRootValues(facesContext);
}
Im using myfaces 1.1.4 with server side view state. What appears to be happening is that myfaces will restore the saved view state (im not sure it should be, as its a GET request). When this happends facesContext.renderResponse is never called.
Thus when it gets to the above code, the page parameters are restored from the wrong location.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 2 months