[jira] Created: (WICKET-1494) IntegerConvert cannot handle locale specific input/output

2008-04-07 Thread Matthew Young (JIRA)
IntegerConvert cannot handle locale specific input/output
-

 Key: WICKET-1494
 URL: https://issues.apache.org/jira/browse/WICKET-1494
 Project: Wicket
  Issue Type: Bug
  Components: wicket
Affects Versions: 1.3.3
Reporter: Matthew Young


IntegerConverter, and possibly anything extends AbstractIntegerConverter cannot 
parse locale formatted input or output locale formatted string.  E.g., 
IntegerConverter.convertToObject("999,999",  new Locale("us")) raise 
parseexception.  IntegerConverter.convertToString(new Integer("99", new 
Locale("us"))  => "99" instead of "999,999".

This is because in AbstractIntegerConverter:

public NumberFormat getNumberFormat(Locale locale)
{
NumberFormat numberFormat = 
(NumberFormat)numberFormats.get(locale);
if (numberFormat == null)
{
numberFormat = NumberFormat.getIntegerInstance(locale);
numberFormat.setParseIntegerOnly(true);
numberFormat.setGroupingUsed(false); 
<<  this is the problem
numberFormats.put(locale, numberFormat);
}
return (NumberFormat)numberFormat.clone();
}

Is it possible to remove "numberFormat.setGroupingUsed(false);"?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



svn commit: r645753 - /wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java

2008-04-07 Thread knopp
Author: knopp
Date: Mon Apr  7 19:01:04 2008
New Revision: 645753

URL: http://svn.apache.org/viewvc?rev=645753&view=rev
Log:
Check for IListenerInterfaceRequestTarget instead of 
ListenerInterfaceRequestTraget

Modified:

wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java

Modified: 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java?rev=645753&r1=645752&r2=645753&view=diff
==
--- 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java
 (original)
+++ 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java
 Mon Apr  7 19:01:04 2008
@@ -44,7 +44,6 @@
 import org.apache.wicket.request.IRequestCycleProcessor;
 import org.apache.wicket.request.RequestParameters;
 import 
org.apache.wicket.request.target.component.listener.IListenerInterfaceRequestTarget;
-import 
org.apache.wicket.request.target.component.listener.ListenerInterfaceRequestTarget;
 import org.apache.wicket.settings.IApplicationSettings;
 import org.apache.wicket.util.lang.Bytes;
 import org.apache.wicket.util.string.AppendingStringBuffer;
@@ -1098,7 +1097,7 @@
IRequestTarget rt = processor.resolve(rc, requestParameters);
if (rt instanceof IListenerInterfaceRequestTarget)
{
-   IListenerInterfaceRequestTarget interfaceTarget = 
((ListenerInterfaceRequestTarget)rt);
+   IListenerInterfaceRequestTarget interfaceTarget = 
((IListenerInterfaceRequestTarget)rt);

interfaceTarget.getRequestListenerInterface().invoke(page, 
interfaceTarget.getTarget());
}
else




svn commit: r645752 - /wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java

2008-04-07 Thread knopp
Author: knopp
Date: Mon Apr  7 18:52:55 2008
New Revision: 645752

URL: http://svn.apache.org/viewvc?rev=645752&view=rev
Log:
Check for IListenerInterfaceRequestTarget instead of 
ListenerInterfaceRequestTraget

Modified:

wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java

Modified: 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java?rev=645752&r1=645751&r2=645752&view=diff
==
--- 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java
 (original)
+++ 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java
 Mon Apr  7 18:52:55 2008
@@ -43,6 +43,7 @@
 import org.apache.wicket.protocol.http.WebRequestCycle;
 import org.apache.wicket.request.IRequestCycleProcessor;
 import org.apache.wicket.request.RequestParameters;
+import 
org.apache.wicket.request.target.component.listener.IListenerInterfaceRequestTarget;
 import 
org.apache.wicket.request.target.component.listener.ListenerInterfaceRequestTarget;
 import org.apache.wicket.settings.IApplicationSettings;
 import org.apache.wicket.util.lang.Bytes;
@@ -1095,9 +1096,9 @@
final RequestParameters requestParameters = 
processor.getRequestCodingStrategy().decode(
new FormDispatchRequest(rc.getRequest(), url));
IRequestTarget rt = processor.resolve(rc, requestParameters);
-   if (rt instanceof ListenerInterfaceRequestTarget)
+   if (rt instanceof IListenerInterfaceRequestTarget)
{
-   ListenerInterfaceRequestTarget interfaceTarget = 
((ListenerInterfaceRequestTarget)rt);
+   IListenerInterfaceRequestTarget interfaceTarget = 
((ListenerInterfaceRequestTarget)rt);

interfaceTarget.getRequestListenerInterface().invoke(page, 
interfaceTarget.getTarget());
}
else




svn commit: r645749 - /wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/string/StringValue.java

2008-04-07 Thread ivaynberg
Author: ivaynberg
Date: Mon Apr  7 18:04:09 2008
New Revision: 645749

URL: http://svn.apache.org/viewvc?rev=645749&view=rev
Log:
added utility method

Modified:

wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/string/StringValue.java

Modified: 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/string/StringValue.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/string/StringValue.java?rev=645749&r1=645748&r2=645749&view=diff
==
--- 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/string/StringValue.java
 (original)
+++ 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/string/StringValue.java
 Mon Apr  7 18:04:09 2008
@@ -123,7 +123,7 @@
else
{
final DecimalFormat format = new DecimalFormat("#." + 
repeat(places, '#'),
-   new DecimalFormatSymbols(locale));
+   new DecimalFormatSymbols(locale));
return valueOf(format.format(value));
}
}
@@ -290,7 +290,7 @@
 * @return This string value with searchFor replaces with replaceWith
 */
public final CharSequence replaceAll(final CharSequence searchFor,
-   final CharSequence replaceWith)
+   final CharSequence replaceWith)
{
return Strings.replaceAll(text, searchFor, replaceWith);
}
@@ -346,7 +346,7 @@
}
 
throw new StringValueConversionException("Cannot convert '" + 
toString() + "'to type " +
-   type);
+   type);
}
 
/**
@@ -369,7 +369,7 @@
 * @throws StringValueConversionException
 */
public final boolean toBoolean(final boolean defaultValue)
-   throws StringValueConversionException
+   throws StringValueConversionException
{
return (text == null) ? defaultValue : toBoolean();
}
@@ -435,7 +435,7 @@
catch (ParseException e)
{
throw new StringValueConversionException("Unable to 
convert '" + text +
-   "' to a double value", e);
+   "' to a double value", e);
}
}
 
@@ -483,7 +483,7 @@
 * @throws StringValueConversionException
 */
public final Duration toDuration(final Duration defaultValue)
-   throws StringValueConversionException
+   throws StringValueConversionException
{
return (text == null) ? defaultValue : toDuration();
}
@@ -503,7 +503,7 @@
catch (NumberFormatException e)
{
throw new StringValueConversionException("Unable to 
convert '" + text +
-   "' to an int value", e);
+   "' to an int value", e);
}
}
 
@@ -535,7 +535,7 @@
catch (NumberFormatException e)
{
throw new StringValueConversionException("Unable to 
convert '" + text +
-   "' to an Integer value", e);
+   "' to an Integer value", e);
}
}
 
@@ -554,7 +554,7 @@
catch (NumberFormatException e)
{
throw new StringValueConversionException("Unable to 
convert '" + text +
-   "' to a long value", e);
+   "' to a long value", e);
}
}
 
@@ -586,7 +586,7 @@
catch (NumberFormatException e)
{
throw new StringValueConversionException("Unable to 
convert '" + text +
-   "' to a Long value", e);
+   "' to a Long value", e);
}
}
 
@@ -712,7 +712,7 @@
catch (ParseException e)
{
throw new StringValueConversionException("Unable to 
convert '" + text +
-   "' to a Time value", e);
+   "' to a Time value", e);
}
}
 
@@ -728,12 +728,27 @@
{
return (text == null) ? defaultValue : toTime();
}
-   
+
/**
 * Returns whether the text is null.
-* @return true if the text is null, 
false otherwise.
+* 
+* @return true if the text is null, 
false
+* otherwise.
 */
-   public boolean isNull() {
+   public boolean isNull()
+   {
retur

svn commit: r645708 - in /wicket/trunk/jdk-1.4/wicket/src: main/java/org/apache/wicket/util/tester/ test/java/org/apache/wicket/ajax/form/

2008-04-07 Thread marrink
Author: marrink
Date: Mon Apr  7 15:02:10 2008
New Revision: 645708

URL: http://svn.apache.org/viewvc?rev=645708&view=rev
Log:
RESOLVED - issue WICKET-1291: WicketTester Doesn't Support 
setDefaultFormProcessing(false) 
https://issues.apache.org/jira/browse/WICKET-1291

Added:

wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/form/AjaxFormSubmitTest.java
   (with props)

wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/form/AjaxFormSubmitTestPage.html
   (with props)

wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/form/AjaxFormSubmitTestPage.java
   (with props)
Modified:

wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/tester/BaseWicketTester.java

Modified: 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/tester/BaseWicketTester.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/tester/BaseWicketTester.java?rev=645708&r1=645707&r2=645708&view=diff
==
--- 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/tester/BaseWicketTester.java
 (original)
+++ 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/tester/BaseWicketTester.java
 Mon Apr  7 15:02:10 2008
@@ -44,7 +44,6 @@
 import org.apache.wicket.feedback.FeedbackMessages;
 import org.apache.wicket.feedback.IFeedbackMessageFilter;
 import org.apache.wicket.markup.html.basic.Label;
-import org.apache.wicket.markup.html.form.Button;
 import org.apache.wicket.markup.html.form.CheckGroup;
 import org.apache.wicket.markup.html.form.Form;
 import org.apache.wicket.markup.html.form.FormComponent;
@@ -1227,7 +1226,8 @@
{
public void onFormComponent(FormComponent formComponent)
{
-   if (!(formComponent instanceof Button) && 
!(formComponent instanceof RadioGroup) &&
+   // !(formComponent instanceof Button) &&
+   if (!(formComponent instanceof RadioGroup) &&
!(formComponent instanceof CheckGroup))
{
String name = 
formComponent.getInputName();

Added: 
wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/form/AjaxFormSubmitTest.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/form/AjaxFormSubmitTest.java?rev=645708&view=auto
==
--- 
wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/form/AjaxFormSubmitTest.java
 (added)
+++ 
wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/ajax/form/AjaxFormSubmitTest.java
 Mon Apr  7 15:02:10 2008
@@ -0,0 +1,68 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.wicket.ajax.form;
+
+import org.apache.wicket.WicketTestCase;
+import org.apache.wicket.util.tester.FormTester;
+
+/**
+ * Test case for WICKET-1291
+ * 
+ * @see https://issues.apache.org/jira/browse/WICKET-1291";>WICKET-1291
+ * @author marrink
+ */
+public class AjaxFormSubmitTest extends WicketTestCase
+{
+
+   /**
+* @see org.apache.wicket.WicketTestCase#setUp()
+*/
+   protected void setUp() throws Exception
+   {
+   super.setUp();
+   }
+
+   /**
+* @see org.apache.wicket.WicketTestCase#tearDown()
+*/
+   protected void tearDown() throws Exception
+   {
+   super.tearDown();
+   }
+
+   /**
+* Test ajax form submit without default form processing.
+*/
+   public void testSubmitNoDefProcessing()
+   {
+   Class pageClass = AjaxFormSubmitTestPage.class;
+   System.out.println("=== " + pageClass.getName() + " ===");
+
+   tester.startPage(pageClass);
+   tester.assertRenderedPage(pageClass);
+   FormTester form = tester.newFormTester("form");
+   form.setValue("txt1", "txt1");
+   form.setValue("txt2", "txt2");
+ 

[jira] Resolved: (WICKET-1291) WicketTester Doesn't Support setDefaultFormProcessing(false)

2008-04-07 Thread Maurice Marrink (JIRA)

 [ 
https://issues.apache.org/jira/browse/WICKET-1291?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maurice Marrink resolved WICKET-1291.
-

   Resolution: Fixed
Fix Version/s: (was: 1.3.4)

Checking for defaultformprocessing is an option however the real culprit was a 
check that excluded all buttons from the form, which prevented the form from 
finding the submit button.

> WicketTester Doesn't Support setDefaultFormProcessing(false)
> 
>
> Key: WICKET-1291
> URL: https://issues.apache.org/jira/browse/WICKET-1291
> Project: Wicket
>  Issue Type: Bug
>  Components: wicket
>Affects Versions: 1.3.0-final
>Reporter: Brandon Fuller
>Assignee: Maurice Marrink
>Priority: Minor
>
> I was trying to use the WicketTester to click the button for an 
> AjaxFallbackButton that has setDefaultFormProcessing(false). So I wanted to 
> execute the onclick for the component, like this:
> tester.executeAjaxEvent("meetingForm:inputForm:rootViewPanel:addOrganization",
>  "onclick");
> What seems to happen is that the pages tries to update all the form fields 
> and perform validation.   This is incorrect in the context for the 
> setDefaultFormProcessing(false) behavior.
> I was looking at the source for BaseWicketTester and noticed that in 
> executeAjaxEvent(), it always tries to submit the form if the behavior is a 
> AjaxFormSubmitBehavior.  This wouldn't be correct in the case of when you set 
> setDefaultFormProcessing(false) on the button.  I think it needs to check for 
> setDefaultFormProcessing at that point.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



svn commit: r645704 - /wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/lang/PropertyResolver.java

2008-04-07 Thread ivaynberg
Author: ivaynberg
Date: Mon Apr  7 14:41:23 2008
New Revision: 645704

URL: http://svn.apache.org/viewvc?rev=645704&view=rev
Log:
javadoc warning

Modified:

wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/lang/PropertyResolver.java

Modified: 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/lang/PropertyResolver.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/lang/PropertyResolver.java?rev=645704&r1=645703&r2=645704&view=diff
==
--- 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/lang/PropertyResolver.java
 (original)
+++ 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/lang/PropertyResolver.java
 Mon Apr  7 14:41:23 2008
@@ -33,6 +33,9 @@
 import org.slf4j.LoggerFactory;
 
 /**
+ * NOTE: THIS CLASS IS NOT PART OF THE WICKET PUBLIC API, DO NOT USE IT UNLESS 
YOU KNOW WHAT YOU ARE
+ * DOING.
+ * 
  * This class parses expressions to lookup or set a value on the object that 
is given.  The
  * supported expressions are:
  * 




[jira] Created: (WICKET-1493) The migration from wicket 1.2 to wicket 1.3.2

2008-04-07 Thread fallout (JIRA)
The migration from wicket 1.2 to wicket 1.3.2
-

 Key: WICKET-1493
 URL: https://issues.apache.org/jira/browse/WICKET-1493
 Project: Wicket
  Issue Type: Bug
Reporter: fallout


Hi.

I have some problems with migration from wicket 1.2 to wicket 1.3.

Tell me please what I can use instead of the IExceptionResponseStrategy 
interface?
What I can call instead of the IPageMap.lastAccessedEntry() method?
What I can call instead of the Request.getContextPath() method?

Thanks.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[CONF] Apache Wicket: Wicket Community meetups - Amsterdam (page edited)

2008-04-07 Thread confluence










Page Edited :
WICKET :
Wicket Community meetups - Amsterdam



 
Wicket Community meetups - Amsterdam
has been edited by Harald Walker
(Apr 07, 2008).
 

 
 (View changes)
 

Content:
Amsterdam Community meeting 2008

We are preparing for the second Dutch Open community meeting for Wicket. The meeting will be held during the ApacheCon EU'08 in Amsterdam. The call for presentations is now open. Register now if you want to attend the meetup.



Program



15:00 - 16:00
 Hackathon/ask a committer 


16:15 - 16:45
 Java monitoring with JaMon - Lars Vonk 


17:00 - 18:00
 Qi4J and Wicket - Nicklas Hedhman 


18:00 - 19:30
 Dinner at your own leisure 


19:30 - 20:00
 Elephas: the future of Blogging Software - Gerolf Seitz 


20:00 - 20:15
 What goes into Wicket Next - Johan Compagner 


20:15 - end  
 Hackathon/ask a committer 



Unfortunately we don't have a sponsor for a dinner. We take a 90
minute break so people can make their own dinner arrangements.

Location


	Amsterdam, Pakhuis de Zwijger (Google Map of the venue A=ApacheCon, B=Meetup)





Costs

Free!



Sponsoring

This free event is sponsored by:


	onehippo
	func.
	topicus





Attending

Please add/remove yourself from the attendance roster below if you want to attend the Amsterdam Community meetup '08.

The meetup will be on Tuesday April 8th 15:00 - 21:00


 Name 
 Friday 
April 4th 
 Monday 
April 7th 
 Tuesday 
April 8th 


 Martijn Dashorst 
 X 
 X 
 X 


 Johan Compagner 
 X 
 X 
 X 


 Arjé Cahn 
 X 
 X 
 X 


 Martijn Lindhout 
 
 X 
 X 


 Emiel van der Herberg 
 X 
 X 
 


 Gerolf Seitz 
 
 
 X 


 Danny van Bruggen 
 X 
 X 
 X 


 Roy van Rijn 
 X 
 X 
 From 18:00/19:00 


 Martin Funk 
 X 
 X 
 X 


 Zoran Kovacevic 
 X 
 X 
 


 Ivo van Dongen 
 X 
 X 
 X 


 John Moylan 
 X 
 
 


 C. Bergström 
 X 
 
 X 


 Frank van Lankvelt 
 X 
 X 
 X 


 Wander Grevink 
 
 X 
 X 


 Sander van Faassen 
 X 
 X 
 X 


 Wouter Huijnink 
 X 
 X 
 X 


 Frank Mölder 
 X 
 
 X 


 Maurice Marrink 
 X  
 X  
 X  


 Kees de Kooter 
 X 
 X 
 X 


 Alexander Keül 
 
 X 
 X 


 Jan Kriesten 
 X 
 
 


 Ate Douma 
 X  
 
 X  


 Uwe Schäfer 
 X 
 X 
 X 


 Azzeddine Daddah 
 
 
 X 


 Erik van Oosten 
 
 
 


 Werner Mueller 
 
 
 after con 


 Rik van der Kleij 
 
 
 


 Alex Jonk 
 
 
 X 


 Maarten Hogendoorn 
 
 
 X 


 Lars Vonk 
 
 
 X 


 Wilko Hische 
 
 
 X 


 Henk van den Berg 
 X  
 X  
 X  


 Ilona Bregard 
  
  
 X  


 Eric Tamminga 
  
  
 X  


 Martijn Vos 
  
  
 X  


 Gerald de Jong 
  
  
 X 


 Bart van der Schans 
  
  
 X 


 Daan van Etten 
  
  
 X 


 Olger Warnier 
  
  
 X 


 Martin Tilma 
 
 
 X 


 Ronald Pieterse 
  
  
 X 


 Arthur Bogaart 
  
  
 X 


 Meindert Deen 
 
 
 X 


 Jan Wessels 
 
 
 X 


 Christian Vogel 
 
 
 X 


 Anton Zeef 
 
 
 X 


 Niels van Kampenhout 
 
 
 X 


 Vitali Kiruta 
 
 
 after 17:00 


 Rommert de Bruijn 
 
 
 X 


 David Persons 
 
 
 X 


 Arjan Zwaan 
 
 
 X 


 Arjan van Balken 
 
 
 X 














Powered by
Atlassian Confluence
(Version: 2.2.9 Build:#527 Sep 07, 2006)
-
Bug/feature request

Unsubscribe or edit your notifications preferences








[jira] Resolved: (WICKET-1492) Allow form to specify prefix for formcomponent names

2008-04-07 Thread Matej Knopp (JIRA)

 [ 
https://issues.apache.org/jira/browse/WICKET-1492?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matej Knopp resolved WICKET-1492.
-

Resolution: Fixed

> Allow form to specify prefix for formcomponent names
> 
>
> Key: WICKET-1492
> URL: https://issues.apache.org/jira/browse/WICKET-1492
> Project: Wicket
>  Issue Type: Improvement
>Affects Versions: 1.3.3
>Reporter: Matej Knopp
>Assignee: Matej Knopp
>Priority: Minor
> Fix For: 1.3.4
>
>


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Closed: (WICKET-1492) Allow form to specify prefix for formcomponent names

2008-04-07 Thread Matej Knopp (JIRA)

 [ 
https://issues.apache.org/jira/browse/WICKET-1492?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matej Knopp closed WICKET-1492.
---


> Allow form to specify prefix for formcomponent names
> 
>
> Key: WICKET-1492
> URL: https://issues.apache.org/jira/browse/WICKET-1492
> Project: Wicket
>  Issue Type: Improvement
>Affects Versions: 1.3.3
>Reporter: Matej Knopp
>Assignee: Matej Knopp
>Priority: Minor
> Fix For: 1.3.4
>
>


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



svn commit: r645650 - in /wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form: Form.java FormComponent.java

2008-04-07 Thread knopp
Author: knopp
Date: Mon Apr  7 12:14:55 2008
New Revision: 645650

URL: http://svn.apache.org/viewvc?rev=645650&view=rev
Log:
WICKET-1492

Modified:

wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java

wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/FormComponent.java

Modified: 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java?rev=645650&r1=645649&r2=645650&view=diff
==
--- 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java
 (original)
+++ 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/Form.java
 Mon Apr  7 12:14:55 2008
@@ -1265,14 +1265,7 @@
// add the submitting component
final Component submittingComponent = 
(Component)defaultSubmittingComponent;
buffer.append("http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/FormComponent.java?rev=645650&r1=645649&r2=645650&view=diff
==
--- 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/FormComponent.java
 (original)
+++ 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/FormComponent.java
 Mon Apr  7 12:14:55 2008
@@ -716,7 +716,16 @@
{
inputName.prepend(Component.PATH_SEPARATOR);
}
-   return inputName.toString();
+   Form form = (Form)findParent(Form.class);
+
+   if (form != null)
+   {
+   return form.getInputNamePrefix() + inputName.toString();
+   }
+   else
+   {
+   return inputName.toString();
+   }
}
 
/**




[jira] Created: (WICKET-1492) Allow form to specify prefix for formcomponent names

2008-04-07 Thread Matej Knopp (JIRA)
Allow form to specify prefix for formcomponent names


 Key: WICKET-1492
 URL: https://issues.apache.org/jira/browse/WICKET-1492
 Project: Wicket
  Issue Type: Improvement
Affects Versions: 1.3.3
Reporter: Matej Knopp
Assignee: Matej Knopp
Priority: Minor
 Fix For: 1.3.4




-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[CONF] Apache Wicket: Wicket Community meetups - Amsterdam (page edited)

2008-04-07 Thread confluence










Page Edited :
WICKET :
Wicket Community meetups - Amsterdam



 
Wicket Community meetups - Amsterdam
has been edited by Wouter de Vaal
(Apr 07, 2008).
 

 
 (View changes)
 

Content:
Amsterdam Community meeting 2008

We are preparing for the second Dutch Open community meeting for Wicket. The meeting will be held during the ApacheCon EU'08 in Amsterdam. The call for presentations is now open. Register now if you want to attend the meetup.



Program



15:00 - 16:00
 Hackathon/ask a committer 


16:15 - 16:45
 Java monitoring with JaMon - Lars Vonk 


17:00 - 18:00
 Qi4J and Wicket - Nicklas Hedhman 


18:00 - 19:30
 Dinner at your own leisure 


19:30 - 20:00
 Elephas: the future of Blogging Software - Gerolf Seitz 


20:00 - 20:15
 What goes into Wicket Next - Johan Compagner 


20:15 - end  
 Hackathon/ask a committer 



Unfortunately we don't have a sponsor for a dinner. We take a 90
minute break so people can make their own dinner arrangements.

Location


	Amsterdam, Pakhuis de Zwijger (Google Map of the venue A=ApacheCon, B=Meetup)





Costs

Free!



Sponsoring

This free event is sponsored by:


	onehippo
	func.
	topicus





Attending

Please add/remove yourself from the attendance roster below if you want to attend the Amsterdam Community meetup '08.

The meetup will be on Tuesday April 8th 15:00 - 21:00


 Name 
 Friday 
April 4th 
 Monday 
April 7th 
 Tuesday 
April 8th 


 Martijn Dashorst 
 X 
 X 
 X 


 Johan Compagner 
 X 
 X 
 X 


 Arjé Cahn 
 X 
 X 
 X 


 Martijn Lindhout 
 
 X 
 X 


 Emiel van der Herberg 
 X 
 X 
 


 Gerolf Seitz 
 
 
 X 


 Danny van Bruggen 
 X 
 X 
 X 


 Roy van Rijn 
 X 
 X 
 From 18:00/19:00 


 Martin Funk 
 X 
 X 
 X 


 Zoran Kovacevic 
 X 
 X 
 


 Ivo van Dongen 
 X 
 X 
 X 


 John Moylan 
 X 
 
 


 C. Bergström 
 X 
 
 X 


 Frank van Lankvelt 
 X 
 X 
 X 


 Wander Grevink 
 
 X 
 X 


 Sander van Faassen 
 X 
 X 
 X 


 Wouter Huijnink 
 X 
 X 
 X 


 Frank Mölder 
 X 
 
 X 


 Maurice Marrink 
 X  
 X  
 X  


 Kees de Kooter 
 X 
 X 
 X 


 Alexander Keül 
 
 X 
 X 


 Jan Kriesten 
 X 
 
 


 Ate Douma 
 X  
 
 X  


 Uwe Schäfer 
 X 
 X 
 X 


 Azzeddine Daddah 
 
 
 X 


 Erik van Oosten 
 
 
 


 Werner Mueller 
 
 
 after con 


 Rik van der Kleij 
 
 
 


 Alex Jonk 
 
 
 X 


 Maarten Hogendoorn 
 
 
 X 


 Lars Vonk 
 
 
 X 


 Wilko Hische 
 
 
 X 


 Henk van den Berg 
 X  
 X  
 X  


 Ilona Bregard 
  
  
 X  


 Harald Walker 
  
  
 X  


 Eric Tamminga 
  
  
 X  


 Martijn Vos 
  
  
 X  


 Gerald de Jong 
  
  
 X 


 Bart van der Schans 
  
  
 X 


 Daan van Etten 
  
  
 X 


 Olger Warnier 
  
  
 X 


 Martin Tilma 
 
 
 X 


 Ronald Pieterse 
  
  
 X 


 Arthur Bogaart 
  
  
 X 


 Meindert Deen 
 
 
 X 


 Jan Wessels 
 
 
 X 


 Christian Vogel 
 
 
 X 


 Anton Zeef 
 
 
 X 


 Niels van Kampenhout 
 
 
 X 


 Vitali Kiruta 
 
 
 after 17:00 


 Rommert de Bruijn 
 
 
 X 


 David Persons 
 
 
 X 


 Arjan Zwaan 
 
 
 X 


 Arjan van Balken 
 
 
 X 














Powered by
Atlassian Confluence
(Version: 2.2.9 Build:#527 Sep 07, 2006)
-
Bug/feature request

Unsubscribe or edit your notifications preferences








[jira] Commented: (WICKET-1486) Allow child components inside of wicket:message

2008-04-07 Thread Juergen Donnerstag (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1486?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12586479#action_12586479
 ] 

Juergen Donnerstag commented on WICKET-1486:


I didn't like the idea of makeing renderNext() protected and figured out a 
different way to implement the functionality. I'm rendering the tags into a 
StringResponse and use MapVariableInterpolator to replace the variables. It'll 
not only try the child tags but via PropertyResolver it'll test the container 
Model and the container itself to resolve the variables. And by rendering into 
a StringResponse we got rid of the restriction to be allowed to use a variable 
just once. You can now it as often as you want to. 
The changed functionality will probably go into 1.4

> Allow child components inside of wicket:message
> ---
>
> Key: WICKET-1486
> URL: https://issues.apache.org/jira/browse/WICKET-1486
> Project: Wicket
>  Issue Type: New Feature
>  Components: wicket
>Affects Versions: 1.3.2
>Reporter: John Ray
>Assignee: Juergen Donnerstag
> Fix For: 1.4-M1
>
> Attachments: Message.diff, MessageQuickStart.zip
>
>
> Currently you can't put a link or text in the middle of a wicket:message. You 
> need to break up the message into 2 parts as text before the link and text 
> after the link. 
> I've made a modification to the WicketMessageResolver class that allows you 
> to nest child components inside a wicket:message and then reference them from 
> the properties file. For example in the html
>
>   This text will be replaced with text from the properties file.
>   [amount].
>   
>   
>   
>
>
> Then in the properties file have a variable with a name that matches the 
> wicket:id for each child component. The variables can be in any order, they 
> do NOT have to match the order in the HTML file.
>myKey=Your balance is ${amount}. Click ${link} to view the details.
>linkText=here
>
> And in the java
>add(new Label("amount",new Model("$5.00")));
>add(new BookmarkablePageLink("link",DetailsPage.class));
>
> In the browser this will output
>Your balance is $5.00. Click -here- to view the details.
> I'll attach a quick start as well as an svn diff.
>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



svn commit: r645612 - /wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java

2008-04-07 Thread ivaynberg
Author: ivaynberg
Date: Mon Apr  7 09:54:05 2008
New Revision: 645612

URL: http://svn.apache.org/viewvc?rev=645612&view=rev
Log:
prefix ids with "id" not "i" because since we use hex counter there is a chance 
to generate id of "id" which causes problems on explorer

Modified:
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java

Modified: 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java?rev=645612&r1=645611&r2=645612&view=diff
==
--- wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java 
(original)
+++ wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java 
Mon Apr  7 09:54:05 2008
@@ -1442,7 +1442,7 @@
// markupId = getMarkupAttributes().getString("id");
 
 
-   String markupIdPrefix = "i";
+   String markupIdPrefix = "id";
if 
(!Application.get().getConfigurationType().equals(Application.DEPLOYMENT))
{
// in non-deployment mode we make the markup id include 
component id so it is easier to




svn commit: r645605 - /wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java

2008-04-07 Thread ivaynberg
Author: ivaynberg
Date: Mon Apr  7 09:49:37 2008
New Revision: 645605

URL: http://svn.apache.org/viewvc?rev=645605&view=rev
Log:
should be private

Modified:
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java

Modified: 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java?rev=645605&r1=645604&r2=645605&view=diff
==
--- wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java 
(original)
+++ wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java 
Mon Apr  7 09:49:37 2008
@@ -148,7 +148,7 @@
}
 
/** a sequence used for whenever something session-specific needs a 
unique value */
-   public int sequence = 1;
+   private int sequence = 1;
 
/** meta data key for missing body tags logging. */
public static final MetaDataKey PAGEMAP_ACCESS_MDK = new MetaDataKey(




[jira] Updated: (WICKET-1491) ModalWindow: unclear exception if property "Content" is not set

2008-04-07 Thread Sergey Derugo (JIRA)

 [ 
https://issues.apache.org/jira/browse/WICKET-1491?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sergey Derugo updated WICKET-1491:
--

Issue Type: Improvement  (was: Bug)

> ModalWindow: unclear exception if property "Content" is not set
> ---
>
> Key: WICKET-1491
> URL: https://issues.apache.org/jira/browse/WICKET-1491
> Project: Wicket
>  Issue Type: Improvement
>  Components: wicket-extensions
>Affects Versions: 1.3.2
>Reporter: Sergey Derugo
>
> 1. Create ModalWindow and don't set property *content* , for example:
> {code}
> package test.demo.webcontrols.popup;
> import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow;
> public class DialogMessage extends ModalWindow {
> public DialogMessage(String id) {
> super(id);
> setTitle("popups.notification.header");
> //setContent(new InformationMessageContent(getContentId()));
> }
> }
> {code}
> 2. Create instance of DialogMessage and call method *show* - exception is 
> thrown: 
> message - WicketMessage: Error creating page for modal dialog.
> Using this exception it's impossible to understand what is wrong. Either 
> exception message should be more detailed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (WICKET-1491) ModalWindow: unclear exception if property "Content" is not set

2008-04-07 Thread Sergey Derugo (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1491?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12586461#action_12586461
 ] 

Sergey Derugo commented on WICKET-1491:
---

Please make exception message more obvious.

> ModalWindow: unclear exception if property "Content" is not set
> ---
>
> Key: WICKET-1491
> URL: https://issues.apache.org/jira/browse/WICKET-1491
> Project: Wicket
>  Issue Type: Bug
>  Components: wicket-extensions
>Affects Versions: 1.3.2
>Reporter: Sergey Derugo
>
> 1. Create ModalWindow and don't set property *content* , for example:
> {code}
> package test.demo.webcontrols.popup;
> import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow;
> public class DialogMessage extends ModalWindow {
> public DialogMessage(String id) {
> super(id);
> setTitle("popups.notification.header");
> //setContent(new InformationMessageContent(getContentId()));
> }
> }
> {code}
> 2. Create instance of DialogMessage and call method *show* - exception is 
> thrown: 
> message - WicketMessage: Error creating page for modal dialog.
> Using this exception it's impossible to understand what is wrong. Either 
> exception message should be more detailed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (WICKET-1491) ModalWindow: unclear exception if property "Content" is not set

2008-04-07 Thread Sergey Derugo (JIRA)

 [ 
https://issues.apache.org/jira/browse/WICKET-1491?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sergey Derugo updated WICKET-1491:
--

Comment: was deleted

> ModalWindow: unclear exception if property "Content" is not set
> ---
>
> Key: WICKET-1491
> URL: https://issues.apache.org/jira/browse/WICKET-1491
> Project: Wicket
>  Issue Type: Bug
>  Components: wicket-extensions
>Affects Versions: 1.3.2
>Reporter: Sergey Derugo
>
> 1. Create ModalWindow and don't set property *content* , for example:
> {code}
> package test.demo.webcontrols.popup;
> import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow;
> public class DialogMessage extends ModalWindow {
> public DialogMessage(String id) {
> super(id);
> setTitle("popups.notification.header");
> //setContent(new InformationMessageContent(getContentId()));
> }
> }
> {code}
> 2. Create instance of DialogMessage and call method *show* - exception is 
> thrown: 
> message - WicketMessage: Error creating page for modal dialog.
> Using this exception it's impossible to understand what is wrong. Either 
> exception message should be more detailed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (WICKET-1491) ModalWindow: unclear exception if property "Content" is not set

2008-04-07 Thread Sergey Derugo (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1491?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12586460#action_12586460
 ] 

Sergey Derugo commented on WICKET-1491:
---

Full stack trace:

WicketMessage: Error creating page for modal dialog.

Root cause:

org.apache.wicket.WicketRuntimeException: Error creating page for modal dialog.
 at 
org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow.getWindowOpenJavascript(ModalWindow.java:932)
 at 
org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow.show(ModalWindow.java:279)
 at test.demo.HomePage$1.onSubmit(HomePage.java:30)
 at 
org.apache.wicket.ajax.markup.html.form.AjaxButton$1.onSubmit(AjaxButton.java:86)
 at 
org.apache.wicket.ajax.form.AjaxFormSubmitBehavior.onEvent(AjaxFormSubmitBehavior.java:135)
 at 
org.apache.wicket.ajax.AjaxEventBehavior.respond(AjaxEventBehavior.java:161)
 at 
org.apache.wicket.ajax.AbstractDefaultAjaxBehavior.onRequest(AbstractDefaultAjaxBehavior.java:288)
 at 
org.apache.wicket.request.target.component.listener.BehaviorRequestTarget.processEvents(BehaviorRequestTarget.java:100)
 at 
org.apache.wicket.request.AbstractRequestCycleProcessor.processEvents(AbstractRequestCycleProcessor.java:90)
 at 
org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1166)
 at org.apache.wicket.RequestCycle.step(RequestCycle.java:1241)
 at org.apache.wicket.RequestCycle.steps(RequestCycle.java:1316)
 at org.apache.wicket.RequestCycle.request(RequestCycle.java:493)
 at 
org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:354)
 at 
org.apache.wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:194)
 at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
 at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
 at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
 at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
 at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:524)
 at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
 at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
 at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
 at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
 at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
 at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
 at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
 at 
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
 at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
 at java.lang.Thread.run(Thread.java:619)


> ModalWindow: unclear exception if property "Content" is not set
> ---
>
> Key: WICKET-1491
> URL: https://issues.apache.org/jira/browse/WICKET-1491
> Project: Wicket
>  Issue Type: Bug
>  Components: wicket-extensions
>Affects Versions: 1.3.2
>Reporter: Sergey Derugo
>
> 1. Create ModalWindow and don't set property *content* , for example:
> {code}
> package test.demo.webcontrols.popup;
> import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow;
> public class DialogMessage extends ModalWindow {
> public DialogMessage(String id) {
> super(id);
> setTitle("popups.notification.header");
> //setContent(new InformationMessageContent(getContentId()));
> }
> }
> {code}
> 2. Create instance of DialogMessage and call method *show* - exception is 
> thrown: 
> message - WicketMessage: Error creating page for modal dialog.
> Using this exception it's impossible to understand what is wrong. Either 
> exception message should be more detailed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (WICKET-1491) ModalWindow: unclear exception if property "Content" is not set

2008-04-07 Thread Sergey Derugo (JIRA)

 [ 
https://issues.apache.org/jira/browse/WICKET-1491?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sergey Derugo updated WICKET-1491:
--

Description: 
1. Create ModalWindow and don't set property *content* , for example:
{code}
package test.demo.webcontrols.popup;

import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow;

public class DialogMessage extends ModalWindow {
public DialogMessage(String id) {
super(id);

setTitle("popups.notification.header");
//setContent(new InformationMessageContent(getContentId()));
}
}
{code}

2. Create instance of DialogMessage and call method *show* - exception is 
thrown: 
message - WicketMessage: Error creating page for modal dialog.

Using this exception it's impossible to understand what is wrong. Either 
exception message should be more detailed.


  was:
1. Create ModalWindow and don't set property *content* , for example:
{code}
package com.gfs.corp.bid.app.webcontrols.popup;

import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow;

public class DialogMessage extends ModalWindow {
public DialogMessage(String id) {
super(id);

setTitle("popups.notification.header");
//setContent(new InformationMessageContent(getContentId()));
}
}
{code}

2. Create instance of DialogMessage and call method *show* - exception is 
thrown: 
message - WicketMessage: Error creating page for modal dialog.

Using this exception it's impossible to understand what is wrong. Either 
exception message should be more detailed.



> ModalWindow: unclear exception if property "Content" is not set
> ---
>
> Key: WICKET-1491
> URL: https://issues.apache.org/jira/browse/WICKET-1491
> Project: Wicket
>  Issue Type: Bug
>  Components: wicket-extensions
>Affects Versions: 1.3.2
>Reporter: Sergey Derugo
>
> 1. Create ModalWindow and don't set property *content* , for example:
> {code}
> package test.demo.webcontrols.popup;
> import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow;
> public class DialogMessage extends ModalWindow {
> public DialogMessage(String id) {
> super(id);
> setTitle("popups.notification.header");
> //setContent(new InformationMessageContent(getContentId()));
> }
> }
> {code}
> 2. Create instance of DialogMessage and call method *show* - exception is 
> thrown: 
> message - WicketMessage: Error creating page for modal dialog.
> Using this exception it's impossible to understand what is wrong. Either 
> exception message should be more detailed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (WICKET-1491) ModalWindow: unclear exception if property "Content" is not set

2008-04-07 Thread Sergey Derugo (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1491?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12586458#action_12586458
 ] 

Sergey Derugo commented on WICKET-1491:
---

Full stack trace:
WicketMessage: Error creating page for modal dialog.Root 
cause:org.apache.wicket.WicketRuntimeException: Error creating page for modal 
dialog. at 
org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow.getWindowOpenJavascript(ModalWindow.java:932)
 at 
org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow.show(ModalWindow.java:279)
 at test.demo.HomePage$1.onSubmit(HomePage.java:30) at 
org.apache.wicket.ajax.markup.html.form.AjaxButton$1.onSubmit(AjaxButton.java:86)
 at 
org.apache.wicket.ajax.form.AjaxFormSubmitBehavior.onEvent(AjaxFormSubmitBehavior.java:135)
 at 
org.apache.wicket.ajax.AjaxEventBehavior.respond(AjaxEventBehavior.java:161)
 at 
org.apache.wicket.ajax.AbstractDefaultAjaxBehavior.onRequest(AbstractDefaultAjaxBehavior.java:288)
 at 
org.apache.wicket.request.target.component.listener.BehaviorRequestTarget.processEvents(BehaviorRequestTarget.java:100)
 at 
org.apache.wicket.request.AbstractRequestCycleProcessor.processEvents(AbstractRequestCycleProcessor.java:90)
 at 
org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1166)  
   at org.apache.wicket.RequestCycle.step(RequestCycle.java:1241) at 
org.apache.wicket.RequestCycle.steps(RequestCycle.java:1316) at 
org.apache.wicket.RequestCycle.request(RequestCycle.java:493) at 
org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:354) 
at org.apache.wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:194) 
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
 at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
 at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
 at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
 at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:524)
 at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)   
  at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)   
  at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
 at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) 
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)   
  at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
 at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
 at 
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
 at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
 at java.lang.Thread.run(Thread.java:619)
 


> ModalWindow: unclear exception if property "Content" is not set
> ---
>
> Key: WICKET-1491
> URL: https://issues.apache.org/jira/browse/WICKET-1491
> Project: Wicket
>  Issue Type: Bug
>  Components: wicket-extensions
>Affects Versions: 1.3.2
>Reporter: Sergey Derugo
>
> 1. Create ModalWindow and don't set property *content* , for example:
> {code}
> package com.gfs.corp.bid.app.webcontrols.popup;
> import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow;
> public class DialogMessage extends ModalWindow {
> public DialogMessage(String id) {
> super(id);
> setTitle("popups.notification.header");
> //setContent(new InformationMessageContent(getContentId()));
> }
> }
> {code}
> 2. Create instance of DialogMessage and call method *show* - exception is 
> thrown: 
> message - WicketMessage: Error creating page for modal dialog.
> Using this exception it's impossible to understand what is wrong. Either 
> exception message should be more detailed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Created: (WICKET-1491) ModalWindow: unclear exception if property "Content" is not set

2008-04-07 Thread Sergey Derugo (JIRA)
ModalWindow: unclear exception if property "Content" is not set
---

 Key: WICKET-1491
 URL: https://issues.apache.org/jira/browse/WICKET-1491
 Project: Wicket
  Issue Type: Bug
  Components: wicket-extensions
Affects Versions: 1.3.2
Reporter: Sergey Derugo


1. Create ModalWindow and don't set property *content* , for example:
{code}
package com.gfs.corp.bid.app.webcontrols.popup;

import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow;

public class DialogMessage extends ModalWindow {
public DialogMessage(String id) {
super(id);

setTitle("popups.notification.header");
//setContent(new InformationMessageContent(getContentId()));
}
}
{code}

2. Create instance of DialogMessage and call method *show* - exception is 
thrown: 
message - WicketMessage: Error creating page for modal dialog.

Using this exception it's impossible to understand what is wrong. Either 
exception message should be more detailed.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (WICKET-1329) AutoCompleteTextField's suggestion list *disappeared* when it is used inside a ModalWindow

2008-04-07 Thread Erik van Oosten (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1329?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12586447#action_12586447
 ] 

Erik van Oosten commented on WICKET-1329:
-

When the fix in [WICKET-1355] is applied, the changes for this bug should 
probably be undone.

> AutoCompleteTextField's suggestion list *disappeared* when it is used inside 
> a ModalWindow
> --
>
> Key: WICKET-1329
> URL: https://issues.apache.org/jira/browse/WICKET-1329
> Project: Wicket
>  Issue Type: Bug
>  Components: wicket
>Affects Versions: 1.3.0-final
>Reporter: Andy Chu
>Assignee: Gerolf Seitz
> Fix For: 1.3.3
>
>
> When an AutoCompleteTextField is used in panel showed inside a ModalWindow,  
> the dropdown list for suggestions will be disappeared. The reason is that the 
> z-index of a normal ModalWindow is 2 while the z-index of the dropdown 
> list is 1.  And there is no way to set this parameter programatically. 
> Therefore, the dropdown list  is masked by the ModalWindow.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (WICKET-1355) Autocomplete window has wrong position in scrolled context

2008-04-07 Thread Erik van Oosten (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1355?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12586448#action_12586448
 ] 

Erik van Oosten commented on WICKET-1355:
-

The changes for bug [WICKET-1329] should probably be undone when the fix 
attached to this issue is applied.

> Autocomplete window has wrong position in scrolled context
> --
>
> Key: WICKET-1355
> URL: https://issues.apache.org/jira/browse/WICKET-1355
> Project: Wicket
>  Issue Type: Bug
>  Components: wicket-extensions
>Affects Versions: 1.3.1
>Reporter: Erik van Oosten
>Assignee: Janne Hietamäki
> Fix For: 1.3.4
>
> Attachments: wicket-autocomplete.js
>
>
> When the autocompleted field is located in a scrolled div, the drop-down 
> window is positioned too far down.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Created: (WICKET-1490) Small iprovement to the Start.java generated by the maven archtype

2008-04-07 Thread Brill Pappin (JIRA)
Small iprovement to the Start.java generated by the maven archtype
--

 Key: WICKET-1490
 URL: https://issues.apache.org/jira/browse/WICKET-1490
 Project: Wicket
  Issue Type: Improvement
  Components: wicket-quickstart
Affects Versions: 1.3.3
Reporter: Brill Pappin
Priority: Minor


The maven archtype generates a very useful class called Start.java in 
src/test/java.

It uses a loop to receive input to know when it should shut down.

On line Start.java:36
while (System.in.available() == 0) {
Thread.sleep(5000);
}

should be replaced with:
System.in.read();
System.out.println("Stopping embedded Jetty server...");

essentially instead of going into the sleep loop, we're using the blocking 
aspect of the input stream to know when we should allow the thread to exit.



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[CONF] Apache Wicket: Wicket Community meetups - Amsterdam (page edited)

2008-04-07 Thread confluence










Page Edited :
WICKET :
Wicket Community meetups - Amsterdam



 
Wicket Community meetups - Amsterdam
has been edited by Arjan Zwaan
(Apr 07, 2008).
 

 
 (View changes)
 

Content:
Amsterdam Community meeting 2008

We are preparing for the second Dutch Open community meeting for Wicket. The meeting will be held during the ApacheCon EU'08 in Amsterdam. The call for presentations is now open. Register now if you want to attend the meetup.



Program



15:00 - 16:00
 Hackathon/ask a committer 


16:15 - 16:45
 Java monitoring with JaMon - Lars Vonk 


17:00 - 18:00
 Qi4J and Wicket - Nicklas Hedhman 


18:00 - 19:30
 Dinner at your own leisure 


19:30 - 20:00
 Elephas: the future of Blogging Software - Gerolf Seitz 


20:00 - 20:15
 What goes into Wicket Next - Johan Compagner 


20:15 - end  
 Hackathon/ask a committer 



Unfortunately we don't have a sponsor for a dinner. We take a 90
minute break so people can make their own dinner arrangements.

Location


	Amsterdam, Pakhuis de Zwijger (Google Map of the venue A=ApacheCon, B=Meetup)





Costs

Free!



Sponsoring

This free event is sponsored by:


	onehippo
	func.
	topicus





Attending

Please add/remove yourself from the attendance roster below if you want to attend the Amsterdam Community meetup '08.

The meetup will be on Tuesday April 8th 15:00 - 21:00


 Name 
 Friday 
April 4th 
 Monday 
April 7th 
 Tuesday 
April 8th 


 Martijn Dashorst 
 X 
 X 
 X 


 Johan Compagner 
 X 
 X 
 X 


 Arjé Cahn 
 X 
 X 
 X 


 Martijn Lindhout 
 
 X 
 X 


 Emiel van der Herberg 
 X 
 X 
 


 Gerolf Seitz 
 
 
 X 


 Danny van Bruggen 
 X 
 X 
 X 


 Roy van Rijn 
 X 
 X 
 From 18:00/19:00 


 Martin Funk 
 X 
 X 
 X 


 Zoran Kovacevic 
 X 
 X 
 


 Ivo van Dongen 
 X 
 X 
 X 


 John Moylan 
 X 
 
 


 C. Bergström 
 X 
 
 X 


 Frank van Lankvelt 
 X 
 X 
 X 


 Wander Grevink 
 
 X 
 X 


 Sander van Faassen 
 X 
 X 
 X 


 Wouter Huijnink 
 X 
 X 
 X 


 Frank Mölder 
 X 
 
 X 


 Maurice Marrink 
 X  
 X  
 X  


 Kees de Kooter 
 X 
 X 
 X 


 Alexander Keül 
 
 X 
 X 


 Jan Kriesten 
 X 
 
 


 Ate Douma 
 X  
 
 X  


 Uwe Schäfer 
 X 
 X 
 X 


 Azzeddine Daddah 
 
 
 X 


 Erik van Oosten 
 
 
 


 Werner Mueller 
 
 
 after con 


 Rik van der Kleij 
 
 
 


 Wouter de Vaal 
 
 
 until 18:00 


 Alex Jonk 
 
 
 X 


 Maarten Hogendoorn 
 
 
 X 


 Lars Vonk 
 
 
 X 


 Wilko Hische 
 
 
 X 


 Henk van den Berg 
 X  
 X  
 X  


 Ilona Bregard 
  
  
 X  


 Harald Walker 
  
  
 X  


 Eric Tamminga 
  
  
 X  


 Martijn Vos 
  
  
 X  


 Gerald de Jong 
  
  
 X 


 Bart van der Schans 
  
  
 X 


 Daan van Etten 
  
  
 X 


 Olger Warnier 
  
  
 X 


 Martin Tilma 
 
 
 X 


 Ronald Pieterse 
  
  
 X 


 Arthur Bogaart 
  
  
 X 


 Meindert Deen 
 
 
 X 


 Jan Wessels 
 
 
 X 


 Christian Vogel 
 
 
 X 


 Anton Zeef 
 
 
 X 


 Niels van Kampenhout 
 
 
 X 


 Vitali Kiruta 
 
 
 after 17:00 


 Rommert de Bruijn 
 
 
 X 


 David Persons 
 
 
 X 


 Arjan Zwaan 
 
 
 X 


 Arjan van Balken 
 
 
 X 














Powered by
Atlassian Confluence
(Version: 2.2.9 Build:#527 Sep 07, 2006)
-
Bug/feature request

Unsubscribe or edit your notifications preferences








[jira] Created: (WICKET-1489) Create component "Menu"

2008-04-07 Thread Sergey Derugo (JIRA)
Create component "Menu"
---

 Key: WICKET-1489
 URL: https://issues.apache.org/jira/browse/WICKET-1489
 Project: Wicket
  Issue Type: New Feature
  Components: wicket-extensions
Affects Versions: 1.3.2
Reporter: Sergey Derugo


Please implement component "Menu". See example - 
http://www.telerik.com/products/aspnet/controls/menu/overview.aspx - this is 
menu component for ASP.NET (just look at the menu of this site - it's really 
nice). I think that Wicket should also have such component and this component 
should be included to the Wicket as standard control. 

For the begiging it will be nice to have menu the component with basic 
functionality. Then it will be possible add new features.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[CONF] Apache Wicket: Wicket Community meetups - Amsterdam (page edited)

2008-04-07 Thread confluence










Page Edited :
WICKET :
Wicket Community meetups - Amsterdam



 
Wicket Community meetups - Amsterdam
has been edited by David Persons
(Apr 07, 2008).
 

 
 (View changes)
 

Content:
Amsterdam Community meeting 2008

We are preparing for the second Dutch Open community meeting for Wicket. The meeting will be held during the ApacheCon EU'08 in Amsterdam. The call for presentations is now open. Register now if you want to attend the meetup.



Program



15:00 - 16:00
 Hackathon/ask a committer 


16:15 - 16:45
 Java monitoring with JaMon - Lars Vonk 


17:00 - 18:00
 Qi4J and Wicket - Nicklas Hedhman 


18:00 - 19:30
 Dinner at your own leisure 


19:30 - 20:00
 Elephas: the future of Blogging Software - Gerolf Seitz 


20:00 - 20:15
 What goes into Wicket Next - Johan Compagner 


20:15 - end  
 Hackathon/ask a committer 



Unfortunately we don't have a sponsor for a dinner. We take a 90
minute break so people can make their own dinner arrangements.

Location


	Amsterdam, Pakhuis de Zwijger (Google Map of the venue A=ApacheCon, B=Meetup)





Costs

Free!



Sponsoring

This free event is sponsored by:


	onehippo
	func.
	topicus





Attending

Please add/remove yourself from the attendance roster below if you want to attend the Amsterdam Community meetup '08.

The meetup will be on Tuesday April 8th 15:00 - 21:00


 Name 
 Friday 
April 4th 
 Monday 
April 7th 
 Tuesday 
April 8th 


 Martijn Dashorst 
 X 
 X 
 X 


 Johan Compagner 
 X 
 X 
 X 


 Arjé Cahn 
 X 
 X 
 X 


 Martijn Lindhout 
 
 X 
 X 


 Emiel van der Herberg 
 X 
 X 
 


 Gerolf Seitz 
 
 
 X 


 Danny van Bruggen 
 X 
 X 
 X 


 Roy van Rijn 
 X 
 X 
 From 18:00/19:00 


 Martin Funk 
 X 
 X 
 X 


 Zoran Kovacevic 
 X 
 X 
 


 Ivo van Dongen 
 X 
 X 
 X 


 John Moylan 
 X 
 
 


 C. Bergström 
 X 
 
 X 


 Frank van Lankvelt 
 X 
 X 
 X 


 Wander Grevink 
 
 X 
 X 


 Sander van Faassen 
 X 
 X 
 X 


 Wouter Huijnink 
 X 
 X 
 X 


 Frank Mölder 
 X 
 
 X 


 Maurice Marrink 
 X  
 X  
 X  


 Kees de Kooter 
 X 
 X 
 X 


 Alexander Keül 
 
 X 
 X 


 Jan Kriesten 
 X 
 
 


 Ate Douma 
 X  
 
 X  


 Uwe Schäfer 
 X 
 X 
 X 


 Azzeddine Daddah 
 
 
 X 


 Erik van Oosten 
 
 
 


 Werner Mueller 
 
 
 after con 


 Rik van der Kleij 
 
 
 


 Wouter de Vaal 
 
 
 until 18:00 


 Alex Jonk 
 
 
 X 


 Maarten Hogendoorn 
 
 
 X 


 Lars Vonk 
 
 
 X 


 Wilko Hische 
 
 
 X 


 Henk van den Berg 
 X  
 X  
 X  


 Ilona Bregard 
  
  
 X  


 Harald Walker 
  
  
 X  


 Eric Tamminga 
  
  
 X  


 Martijn Vos 
  
  
 X  


 Gerald de Jong 
  
  
 X 


 Bart van der Schans 
  
  
 X 


 Daan van Etten 
  
  
 X 


 Olger Warnier 
  
  
 X 


 Martin Tilma 
 
 
 X 


 Ronald Pieterse 
  
  
 X 


 Arthur Bogaart 
  
  
 X 


 Meindert Deen 
 
 
 X 


 Jan Wessels 
 
 
 X 


 Christian Vogel 
 
 
 X 


 Anton Zeef 
 
 
 X 


 Niels van Kampenhout 
 
 
 X 


 Vitali Kiruta 
 
 
 after 17:00 


 Rommert de Bruijn 
 
 
 X 


 David Persons 
 
 
 X 














Powered by
Atlassian Confluence
(Version: 2.2.9 Build:#527 Sep 07, 2006)
-
Bug/feature request

Unsubscribe or edit your notifications preferences








[CONF] Apache Wicket: Wicket Community meetups - Amsterdam (page edited)

2008-04-07 Thread confluence










Page Edited :
WICKET :
Wicket Community meetups - Amsterdam



 
Wicket Community meetups - Amsterdam
has been edited by Martijn Dashorst
(Apr 07, 2008).
 

 
 (View changes)
 

Content:
Amsterdam Community meeting 2008

We are preparing for the second Dutch Open community meeting for Wicket. The meeting will be held during the ApacheCon EU'08 in Amsterdam. The call for presentations is now open. Register now if you want to attend the meetup.



Program



15:00 - 16:00
 Hackathon/ask a committer 


16:15 - 16:45
 Java monitoring with JaMon - Lars Vonk 


17:00 - 18:00
 Qi4J and Wicket - Nicklas Hedhman 


18:00 - 19:30
 Dinner at your own leisure 


19:30 - 20:00
 Elephas: the future of Blogging Software - Gerolf Seitz 


20:00 - 20:15
 What goes into Wicket Next - Johan Compagner 


20:15 - end  
 Hackathon/ask a committer 



Unfortunately we don't have a sponsor for a dinner. We take a 90
minute break so people can make their own dinner arrangements.

Location


	Amsterdam, Pakhuis de Zwijger (Google Map of the venue A=ApacheCon, B=Meetup)





Costs

Free!



Sponsoring

This free event is sponsored by:


	onehippo
	func.
	topicus





Attending

Please add/remove yourself from the attendance roster below if you want to attend the Amsterdam Community meetup '08.

The meetup will be on Tuesday April 8th 15:00 - 21:00


 Name 
 Friday 
April 4th 
 Monday 
April 7th 
 Tuesday 
April 8th 


 Martijn Dashorst 
 X 
 X 
 X 


 Johan Compagner 
 X 
 X 
 X 


 Arjé Cahn 
 X 
 X 
 X 


 Martijn Lindhout 
 
 X 
 X 


 Emiel van der Herberg 
 X 
 X 
 


 Gerolf Seitz 
 
 
 X 


 Danny van Bruggen 
 X 
 X 
 X 


 Roy van Rijn 
 X 
 X 
 From 18:00/19:00 


 Martin Funk 
 X 
 X 
 X 


 Zoran Kovacevic 
 X 
 X 
 


 Ivo van Dongen 
 X 
 X 
 X 


 John Moylan 
 X 
 
 


 C. Bergström 
 X 
 
 X 


 Frank van Lankvelt 
 X 
 X 
 X 


 Wander Grevink 
 
 X 
 X 


 Sander van Faassen 
 X 
 X 
 X 


 Wouter Huijnink 
 X 
 X 
 X 


 Frank Mölder 
 X 
 
 X 


 Maurice Marrink 
 X  
 X  
 X  


 Kees de Kooter 
 X 
 X 
 X 


 Alexander Keül 
 
 X 
 X 


 Jan Kriesten 
 X 
 
 


 Ate Douma 
 X  
 
 X  


 Uwe Schäfer 
 X 
 X 
 X 


 Azzeddine Daddah 
 
 
 X 


 Erik van Oosten 
 
 
 


 Werner Mueller 
 
 
 after con 


 Rik van der Kleij 
 
 
 


 Wouter de Vaal 
 
 
 until 18:00 


 Alex Jonk 
 
 
 X 


 Maarten Hogendoorn 
 
 
 X 


 Lars Vonk 
 
 
 X 


 Wilko Hische 
 
 
 X 


 Henk van den Berg 
 X  
 X  
 X  


 Ilona Bregard 
  
  
 X  


 Harald Walker 
  
  
 X  


 Eric Tamminga 
  
  
 X  


 Martijn Vos 
  
  
 X  


 Gerald de Jong 
  
  
 X 


 Bart van der Schans 
  
  
 X 


 Daan van Etten 
  
  
 X 


 Olger Warnier 
  
  
 X 


 Martin Tilma 
 
 
 X 


 Ronald Pieterse 
  
  
 X 


 Arthur Bogaart 
  
  
 X 


 Meindert Deen 
 
 
 X 


 Jan Wessels 
 
 
 X 


 Christian Vogel 
 
 
 X 


 Anton Zeef 
 
 
 X 


 Niels van Kampenhout 
 
 
 X 


 Vitali Kiruta 
 
 
 after 17:00 


 Rommert de Bruijn 
 
 
 X 














Powered by
Atlassian Confluence
(Version: 2.2.9 Build:#527 Sep 07, 2006)
-
Bug/feature request

Unsubscribe or edit your notifications preferences








[CONF] Apache Wicket: Wicket Community meetups - Amsterdam (page edited)

2008-04-07 Thread confluence










Page Edited :
WICKET :
Wicket Community meetups - Amsterdam



 
Wicket Community meetups - Amsterdam
has been edited by Martijn Dashorst
(Apr 07, 2008).
 

 
 (View changes)
 

Content:
Amsterdam Community meeting 2008

We are preparing for the second Dutch Open community meeting for Wicket. The meeting will be held during the ApacheCon EU'08 in Amsterdam. The call for presentations is now open. Register now if you want to attend the meetup.



Attending

Please add/remove yourself from the attendance roster below if you want to attend the Amsterdam Community meetup '08.

The meetup will be on Tuesday April 8th 15:00 - 21:00


 Name 
 Friday 
April 4th 
 Monday 
April 7th 
 Tuesday 
April 8th 


 Martijn Dashorst 
 X 
 X 
 X 


 Johan Compagner 
 X 
 X 
 X 


 Arjé Cahn 
 X 
 X 
 X 


 Martijn Lindhout 
 
 X 
 X 


 Emiel van der Herberg 
 X 
 X 
 


 Gerolf Seitz 
 
 
 X 


 Danny van Bruggen 
 X 
 X 
 X 


 Roy van Rijn 
 X 
 X 
 From 18:00/19:00 


 Martin Funk 
 X 
 X 
 X 


 Zoran Kovacevic 
 X 
 X 
 


 Ivo van Dongen 
 X 
 X 
 X 


 John Moylan 
 X 
 
 


 C. Bergström 
 X 
 
 X 


 Frank van Lankvelt 
 X 
 X 
 X 


 Wander Grevink 
 
 X 
 X 


 Sander van Faassen 
 X 
 X 
 X 


 Wouter Huijnink 
 X 
 X 
 X 


 Frank Mölder 
 X 
 
 X 


 Maurice Marrink 
 X  
 X  
 X  


 Kees de Kooter 
 X 
 X 
 X 


 Alexander Keül 
 
 X 
 X 


 Jan Kriesten 
 X 
 
 


 Ate Douma 
 X  
 
 X  


 Uwe Schäfer 
 X 
 X 
 X 


 Azzeddine Daddah 
 
 
 X 


 Erik van Oosten 
 
 
 


 Werner Mueller 
 
 
 after con 


 Rik van der Kleij 
 
 
 


 Wouter de Vaal 
 
 
 until 18:00 


 Alex Jonk 
 
 
 X 


 Maarten Hogendoorn 
 
 
 X 


 Lars Vonk 
 
 
 X 


 Wilko Hische 
 
 
 X 


 Henk van den Berg 
 X  
 X  
 X  


 Ilona Bregard 
  
  
 X  


 Harald Walker 
  
  
 X  


 Eric Tamminga 
  
  
 X  


 Martijn Vos 
  
  
 X  


 Gerald de Jong 
  
  
 X 


 Bart van der Schans 
  
  
 X 


 Daan van Etten 
  
  
 X 


 Olger Warnier 
  
  
 X 


 Martin Tilma 
 
 
 X 


 Ronald Pieterse 
  
  
 X 


 Arthur Bogaart 
  
  
 X 


 Meindert Deen 
 
 
 X 


 Jan Wessels 
 
 
 X 


 Christian Vogel 
 
 
 X 


 Anton Zeef 
 
 
 X 


 Niels van Kampenhout 
 
 
 X 


 Vitali Kiruta 
 
 
 after 17:00 


 Rommert de Bruijn 
 
 
 X 




Program



15:00 - 16:00
 Hackathon/ask a committer 


16:15 - 16:45
 Java monitoring with JaMon - Lars Vonk 


17:00 - 18:00
 Qi4J and Wicket - Nicklas Hedhman 


18:00 - 19:30
 Dinner at your own leisure 


19:30 - 20:00
 Elephas: the future of Blogging Software - Gerolf Seitz 


20:00 - 20:15
 What goes into Wicket Next - Johan Compagner 


20:15 - end  
 Hackathon/ask a committer 



Unfortunately we don't have a sponsor for a dinner. We take a 90
minute break so people can make their own dinner arrangements.

Location


	Amsterdam, Pakhuis de Zwijger (Google Map of the venue A=ApacheCon, B=Meetup)





Costs

Free!



Sponsoring

Please contact Arjé Cahn of Hippo.











Powered by
Atlassian Confluence
(Version: 2.2.9 Build:#527 Sep 07, 2006)
-
Bug/feature request

Unsubscribe or edit your notifications preferences








[jira] Created: (WICKET-1488) Wicket.Focus.setFocusOnId() doesn't work consistently in IE6/7 after ajax update

2008-04-07 Thread Martijn Dashorst (JIRA)
Wicket.Focus.setFocusOnId() doesn't work consistently in IE6/7 after ajax update


 Key: WICKET-1488
 URL: https://issues.apache.org/jira/browse/WICKET-1488
 Project: Wicket
  Issue Type: Bug
  Components: wicket
Affects Versions: 1.3.3
Reporter: Martijn Dashorst


We have a page where a lot of markup is replaced in an Ajax request. After the 
request we want to set the focus on an element inside the replaced markup. It 
is only an IE problem, where IE6 seems sometimes to work, sometimes not. 
Playing with timeouts and retrying to set the focus appears to work in IE6. IE7 
consistently fails on our page, even with the repeated timeout.

Executing the following code before setting the focus on the element seems to 
fix this issue:

if (Wicket.Browser.isIE()) {
// There's a strange focus problem in IE that disables focus on 
entire page,
// unless something focuses an input
var e = document.createElement("input");
var x = Wicket.Window.getScrollX();
var y = Wicket.Window.getScrollY();
e.style.position = "absolute";
e.style.left = x + "px";
e.style.top = y + "px";
document.body.appendChild(e);
e.focus();
document.body.removeChild(e);
}



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[CONF] Apache Wicket: Wicket 1.3.3 (page edited)

2008-04-07 Thread confluence










Page Edited :
WICKET :
Wicket 1.3.3



 
Wicket 1.3.3
has been edited by Frank Bille Jensen
(Apr 07, 2008).
 

 
 (View changes)
 

Content:
The Apache Wicket team is proud to announce the availability of the third maintenance release: Apache Wicket 1.3.3. A lot of bugs have been squashed and several improvements implemented. PLEASE NOTE: We have fixed a bug related to the order of the rendered links in , which might have influence on how your stylesheets are loaded. See WICKET-1487 for details.

In this announcement:



  Apache Wicket
  This release
  Migrating from 1.2
  Downloading the release
  Validating the release
  Reporting bugs 
  The distribution
  Release Notes - Wicket - Version 1.3.3


Eager people click here to download the distribution, others can read further:

http://www.apache.org/dyn/closer.cgi/wicket/1.3.3

We thank you for your patience and support.

The Wicket Team

Apache Wicket

Apache Wicket is a component oriented Java web application framework. With proper mark-up/logic separation, a POJO data model, and a refreshing lack of XML, Apache Wicket makes developing web-apps simple and enjoyable again. Swap the boilerplate, complex debugging and brittle code for powerful, reusable components written with plain Java and HTML.

You can find out more about Apache Wicket on our website:

http://wicket.apache.org

This release

This release is the second maintenance release for the Wicket 1.3 product. Development for a new version of Wicket will commence soon. This release fixes several bugs and adds some minor improvements. You can find out about the changes at the bottom of this announcement.

Migrating from 1.2

If you are coming from Wicket 1.2, you really want to read our migration guide, found on the wiki:

http://cwiki.apache.org/WICKET/migrate-13.html

Downloading the release

You can download the release from the official Apache mirror system, and you can find it through the following link:

http://www.apache.org/dyn/closer.cgi/wicket/1.3.3/

For the Maven and Ivy fans out there: update your pom's to the following, and everything will be downloaded automatically:


  
org.apache.wicket 
wicket 
1.3.3 



Substitute the artifact ID with the projects of your liking to get the other projects.

Please note that we don't prescribe a Logging implementation for SLF4J. You need to specify yourself which one you prefer. Read more about SLF4J here: http://slf4j.org

Validating the release

The release has been signed by Frank Bille, your release manager for today. The public key can be found in the KEYS file in the download area. Download the KEYS file only from the Apache website.

http://www.apache.org/dist/wicket/1.3.3/KEYS

Instructions on how to validate the release can be found here:

http://www.apache.org/dev/release-signing.html#check-integrity

Reporting bugs 

In case you do encounter a bug, we would appreciate a report in our JIRA:

http://issues.apache.org/jira/browse/WICKET

The distribution

In the distribution you will find a README. The README contains instructions on how to build from source yourself. You also find a CHANEGELOG-1.3 which contains a list of all things that have been fixed, added and/or removed since Wicket 1.3.0.


Release Notes - Wicket - Version 1.3.3


Bug

	WICKET-310 - AutoCompleteTextField does not invoke post call handlers
	WICKET-860 - GoAndClearFilter doesn't reset filter form fields
	WICKET-932 - BaseWicketTester support for SubmitLink
	WICKET-1105 - Missing _javascript_ header referencies when there are no body or head tags.
	WICKET-1265 - Close ModalWindow in IE with scrollbars scrolls to bottom
	WICKET-1268 - Form inside VelocityPanel throws WicketRuntimeException: Unable to find the markup for the component.
	WICKET-1280 - Autocomplete onchange event gets fired twice when selecting with mouse click
	WICKET-1329 - AutoCompleteTextField's suggestion list disappeared when it is used inside a ModalWindow
	WICKET-1332 - AjaxFormChoiceComponentUpdatingBehavior just updates the group "grandchildren"
	WICKET-1350 - AutoCompleteTextField's scrollable suggestion list disappeared when a mouse pointing to the scroll bar in IE6/7
	WICKET-1372 - Input field with autocomplete behavior does not submit the form via enter key in some cases
	WICKET-1391 -  bug: setObject(null) called for excplicitly invisible fields in a non-visible enclosure
	WICKET-1408 - ComponentFeedbackMessageFilter should use equals() method to determine equality
	WICKET-1411 - FormTester doesn't initialise values for RadioGroups
	WICKET-1414 - findSubmittingButton will fail when button without form is added before form
	WICKET-1415 - BundleStringResourceLoader throws NPE if component is null
	WICKET-1416 - WIcket Filter ignoring query parameters on redirect
	WICKET-1417 - AjaxFormChoiceComponentUpdatingBehavior does not itera

[CONF] Apache Wicket: Wicket Community meetups - Amsterdam (page edited)

2008-04-07 Thread confluence










Page Edited :
WICKET :
Wicket Community meetups - Amsterdam



 
Wicket Community meetups - Amsterdam
has been edited by Christian Vogel
(Apr 07, 2008).
 

 
 (View changes)
 

Content:
Amsterdam Community meeting 2008

We are preparing for the second Dutch Open community meeting for Wicket. The meeting will be held during the ApacheCon EU'08 in Amsterdam. The call for presentations is now open. Register now if you want to attend the meetup.



Attending

Please add/remove yourself from the attendance roster below if you want to attend the Amsterdam Community meetup '08.

The meetup will be on Tuesday April 8th 15:00 - 21:00


 Name 
 Friday 
April 4th 
 Monday 
April 7th 
 Tuesday 
April 8th 


 Martijn Dashorst 
 X 
 X 
 X 


 Johan Compagner 
 X 
 X 
 X 


 Arjé Cahn 
 X 
 X 
 X 


 Martijn Lindhout 
 
 X 
 X 


 Emiel van der Herberg 
 X 
 X 
 


 Gerolf Seitz 
 
 
 X 


 Danny van Bruggen 
 X 
 X 
 X 


 Roy van Rijn 
 X 
 X 
 From 18:00/19:00 


 Martin Funk 
 X 
 X 
 X 


 Zoran Kovacevic 
 X 
 X 
 


 Ivo van Dongen 
 X 
 X 
 X 


 John Moylan 
 X 
 
 


 C. Bergström 
 X 
 
 X 


 Frank van Lankvelt 
 X 
 X 
 X 


 Wander Grevink 
 
 X 
 X 


 Sander van Faassen 
 X 
 X 
 X 


 Wouter Huijnink 
 X 
 X 
 X 


 Frank Mölder 
 X 
 
 X 


 Maurice Marrink 
 X  
 X  
 X  


 Kees de Kooter 
 X 
 X 
 X 


 Alexander Keül 
 
 X 
 X 


 Jan Kriesten 
 X 
 
 


 Ate Douma 
 X  
 
 X  


 Uwe Schäfer 
 X 
 X 
 X 


 Azzeddine Daddah 
 
 
 X 


 Erik van Oosten 
 
 
 


 Werner Mueller 
 
 
 after con 


 Rik van der Kleij 
 
 
 


 Wouter de Vaal 
 
 
 until 18:00 


 Alex Jonk 
 
 
 X 


 Maarten Hogendoorn 
 
 
 X 


 Lars Vonk 
 
 
 X 


 Wilko Hische 
 
 
 X 


 Henk van den Berg 
 X  
 X  
 X  


 Ilona Bregard 
  
  
 X  


 Harald Walker 
  
  
 X  


 Eric Tamminga 
  
  
 X  


 Martijn Vos 
  
  
 X  


 Gerald de Jong 
  
  
 X 


 Bart van der Schans 
  
  
 X 


 Daan van Etten 
  
  
 X 


 Olger Warnier 
  
  
 X 


 Martin Tilma 
 
 
 X 


 Ronald Pieterse 
  
  
 X 


 Arthur Bogaart 
  
  
 X 


 Meindert Deen 
 
 
 X 


 Jan Wessels 
 
 
 X 


 Christian Vogel 
 
 
 X 


 Anton Zeef 
 
 
 X 


 Niels van Kampenhout 
 
 
 X 


 Vitali Kiruta 
 
 
 after 17:00 


 Rommert de Bruijn 
 
 
 X 




Call for presentations

Add your presentation proposal here, or vote for a presentation:


 Title 
 Who 
 Description 
 Vote 


 Wicket 2.0 
 Martijn Dashorst 
 What is going into Wicket 2.0, release party? 
 4 


 JaMon 
 Lars Vonk 
 Java Monitoring with JaMon 
 3 


 Groovy/Grails integration 
 Erik Pragt 
 I wouldn't mind spending some time on the new Wicket Grails plugin, or combining the (separate) Wicket builder to integrate with Grails... 
 2 


 Qi4j and Wicket 
 Nicklas Hedhman 
 Qi4j brings composite oriented programming to Java. See what this is and how it can affect your Wicket programming 
 2 


 Elephas - The Future of Blogging Software 
 Gerolf Seitz 
 Elephas is a Wicket based blogging engine. You'll see features, roadmap and a short demonstration 
 2 


 Integrating Open ID with Wicket applications 
 volunteer needed 
 Open ID authentication in Wicket applications 
 2 


 building applications with wicket web beans 
 volunteer needed 
 
 


 flex/silverlight/air: threat or opportunity 
 volunteer needed 
 
 


 social networking integration (open social, facebook) 
 volunteer needed 
 
 


 how serialization works, why it matters 
 volunteer needed 
 
 1 


 behind the scenes of Apache Wicket (how do I become a committer) 
 volunteer needed 
 
 


 integrations with other frameworks (extjs?) 
 volunteer needed 
 
 1 


 framework integration e.g. (translation, validation, converters, web-flow engines, events, persistence) 
 volunteer needed 
 
 


 terracotta, but now with a real wicket demo 
 volunteer needed 
 
 


 scala + wicket 
 volunteer needed 
 
 


 why authors don't get rich from book writing 
 volunteer needed 
 
 


 top 10 ways to mess up your Wicket application 
 volunteer needed 
 
 


 top 10 ways to speed up your Wicket application 
 volunteer needed 
 
 1 


 scaling out (show how to run your wicket application in a cluster) 
 volunteer needed 
 
 


 Web framework shoot out 
 volunteer needed 
 Wicket versus the rest 
 4 



Location


	Amsterdam, Pakhuis de Zwijger (Google Map of the venue A=ApacheCon, B=Meetup)





Costs

Free!



Sponsoring

Please contact Arjé Cahn of Hippo.











Powered by
Atlassian Confluence
(Version: 2.2.9 Build:#527 Sep 07, 2006)
-
Bug/feature request

Unsubscribe or edit your notifications preferences








[CONF] Apache Wicket: Wicket Community meetups - Amsterdam (page edited)

2008-04-07 Thread confluence










Page Edited :
WICKET :
Wicket Community meetups - Amsterdam



 
Wicket Community meetups - Amsterdam
has been edited by Rommert de Bruijn
(Apr 07, 2008).
 

 
 (View changes)
 

Content:
Amsterdam Community meeting 2008

We are preparing for the second Dutch Open community meeting for Wicket. The meeting will be held during the ApacheCon EU'08 in Amsterdam. The call for presentations is now open. Register now if you want to attend the meetup.



Attending

Please add/remove yourself from the attendance roster below if you want to attend the Amsterdam Community meetup '08.

The meetup will be on Tuesday April 8th 15:00 - 21:00


 Name 
 Friday 
April 4th 
 Monday 
April 7th 
 Tuesday 
April 8th 


 Martijn Dashorst 
 X 
 X 
 X 


 Johan Compagner 
 X 
 X 
 X 


 Arjé Cahn 
 X 
 X 
 X 


 Martijn Lindhout 
 
 X 
 X 


 Emiel van der Herberg 
 X 
 X 
 


 Gerolf Seitz 
 
 
 X 


 Danny van Bruggen 
 X 
 X 
 X 


 Roy van Rijn 
 X 
 X 
 From 18:00/19:00 


 Martin Funk 
 X 
 X 
 X 


 Zoran Kovacevic 
 X 
 X 
 


 Ivo van Dongen 
 X 
 X 
 X 


 John Moylan 
 X 
 
 


 C. Bergström 
 X 
 
 X 


 Frank van Lankvelt 
 X 
 X 
 X 


 Wander Grevink 
 
 X 
 X 


 Sander van Faassen 
 X 
 X 
 X 


 Wouter Huijnink 
 X 
 X 
 X 


 Frank Mölder 
 X 
 
 X 


 Maurice Marrink 
 X  
 X  
 X  


 Kees de Kooter 
 X 
 X 
 X 


 Alexander Keül 
 
 X 
 X 


 Jan Kriesten 
 X 
 
 


 Ate Douma 
 X  
 
 X  


 Uwe Schäfer 
 X 
 X 
 X 


 Azzeddine Daddah 
 
 
 X 


 Erik van Oosten 
 
 
 


 Werner Mueller 
 
 
 after con 


 Rik van der Kleij 
 
 
 


 Wouter de Vaal 
 
 
 until 18:00 


 Alex Jonk 
 
 
 X 


 Maarten Hogendoorn 
 
 
 X 


 Lars Vonk 
 
 
 X 


 Wilko Hische 
 
 
 X 


 Henk van den Berg 
 X  
 X  
 X  


 Ilona Bregard 
  
  
 X  


 Harald Walker 
  
  
 X  


 Eric Tamminga 
  
  
 X  


 Martijn Vos 
  
  
 X  


 Gerald de Jong 
  
  
 X 


 Bart van der Schans 
  
  
 X 


 Daan van Etten 
  
  
 X 


 Olger Warnier 
  
  
 X 


 Martin Tilma 
 
 
 X 


 Ronald Pieterse 
  
  
 X 


 Arthur Bogaart 
  
  
 X 


 Meindert Deen 
 
 
 X 


 Jan Wessels 
 
 
 X 


 Christian Vogel 
 
 
 X 


 Niels van Kampenhout 
 
 
 X 


 Vitali Kiruta 
 
 
 after 17:00 


 Rommert de Bruijn 
 
 
 X 




Call for presentations

Add your presentation proposal here, or vote for a presentation:


 Title 
 Who 
 Description 
 Vote 


 Wicket 2.0 
 Martijn Dashorst 
 What is going into Wicket 2.0, release party? 
 4 


 JaMon 
 Lars Vonk 
 Java Monitoring with JaMon 
 3 


 Groovy/Grails integration 
 Erik Pragt 
 I wouldn't mind spending some time on the new Wicket Grails plugin, or combining the (separate) Wicket builder to integrate with Grails... 
 2 


 Qi4j and Wicket 
 Nicklas Hedhman 
 Qi4j brings composite oriented programming to Java. See what this is and how it can affect your Wicket programming 
 2 


 Elephas - The Future of Blogging Software 
 Gerolf Seitz 
 Elephas is a Wicket based blogging engine. You'll see features, roadmap and a short demonstration 
 2 


 Integrating Open ID with Wicket applications 
 volunteer needed 
 Open ID authentication in Wicket applications 
 2 


 building applications with wicket web beans 
 volunteer needed 
 
 


 flex/silverlight/air: threat or opportunity 
 volunteer needed 
 
 


 social networking integration (open social, facebook) 
 volunteer needed 
 
 


 how serialization works, why it matters 
 volunteer needed 
 
 1 


 behind the scenes of Apache Wicket (how do I become a committer) 
 volunteer needed 
 
 


 integrations with other frameworks (extjs?) 
 volunteer needed 
 
 1 


 framework integration e.g. (translation, validation, converters, web-flow engines, events, persistence) 
 volunteer needed 
 
 


 terracotta, but now with a real wicket demo 
 volunteer needed 
 
 


 scala + wicket 
 volunteer needed 
 
 


 why authors don't get rich from book writing 
 volunteer needed 
 
 


 top 10 ways to mess up your Wicket application 
 volunteer needed 
 
 


 top 10 ways to speed up your Wicket application 
 volunteer needed 
 
 1 


 scaling out (show how to run your wicket application in a cluster) 
 volunteer needed 
 
 


 Web framework shoot out 
 volunteer needed 
 Wicket versus the rest 
 4 



Location


	Amsterdam, Pakhuis de Zwijger (Google Map of the venue A=ApacheCon, B=Meetup)





Costs

Free!



Sponsoring

Please contact Arjé Cahn of Hippo.











Powered by
Atlassian Confluence
(Version: 2.2.9 Build:#527 Sep 07, 2006)
-
Bug/feature request

Unsubscribe or edit your notifications preferences