[jira] Commented: (WICKET-1349) Wicket Ajax response generates a ^ character in the javascript code

2008-12-02 Thread Conrad Hesse (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1349?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12652430#action_12652430
 ] 

Conrad Hesse commented on WICKET-1349:
--

I am having the same issue with 1.4 RC1

 Wicket Ajax response generates a ^ character in the javascript code
 -

 Key: WICKET-1349
 URL: https://issues.apache.org/jira/browse/WICKET-1349
 Project: Wicket
  Issue Type: Bug
  Components: wicket
Affects Versions: 1.3.1
 Environment: IE6 and IE7
Reporter: Wen Tong Allan
Assignee: Igor Vaynberg

 I have a page that uses AjaxFallbackDefaultDataTable (using 
 SortableDataProvider ). The markup contains user-define javascript that I 
 added. When I try to do some action (delete row) with the table, the page 
 doesn't refresh in IE6 and IE7. I checked the Wicket Ajax Debugger and it 
 displays:
 ERROR: Error while parsing response: Object required
 INFO: Invoking post-call handler(s)...
 INFO: invoking failure handler(s)...
 I also noticed that the user-define javascript that was returned by the ajax 
 debugger was appended by ^. (See javascript below):
 // enable disable button.
 function setButtonState() {
 var formObj = 
 eval(document.getElementsByName(contactListForm)[0]^);
 var state = anyChecked(formObj);
 
 document.getElementsByName(deleteContactsButton)[0]^.disabled = !state;
 
 document.getElementsByName(newContactGroupButton)[0]^.disabled = !state;
 document.getElementsByName(newEventButton)[0]^.disabled 
 = !state;
 }

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



[jira] Closed: (WICKET-306) XML License Header Tests fail with Unicode BOM

2008-12-02 Thread Timo Rantalaiho (JIRA)

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

Timo Rantalaiho closed WICKET-306.
--

   Resolution: Won't Fix
Fix Version/s: (was: 1.4-RC2)

This seems like better handled with the workaround of manually removing the BOM 
from problematic files.

 XML License Header Tests fail with Unicode BOM
 --

 Key: WICKET-306
 URL: https://issues.apache.org/jira/browse/WICKET-306
 Project: Wicket
  Issue Type: Bug
  Components: wicket
Reporter: Jean-Baptiste Quenot

 License header tests use FileReader, which is subject to a JDK bug: 
 http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4508058
 Namely, if the XML file is encoded using UTF-8 *and* has a BOM (this is 
 optional), license check fails.
 We might integrate Unicode Reader from 
 http://koti.mbnet.fi/akini/java/unicodereader/ provided that the license is 
 ASL compatible.
 A workaround is to remove the optional Unicode BOM.  I do that in Vim by 
 using set nobomb and writing the file.

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



[jira] Commented: (WICKET-1314) DateTimeField does not correct the timezone properly

2008-12-02 Thread Timo Rantalaiho (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1314?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12652628#action_12652628
 ] 

Timo Rantalaiho commented on WICKET-1314:
-

Ryan (or others), could you maybe explain in an easy way what impact does this 
have? I looked at the current code and the patch, but don't understand what 
effect does changing the timezone of the date being edited have (I'm just 
getting the same date value displayed before and after the patch).

 DateTimeField does not correct the timezone properly
 

 Key: WICKET-1314
 URL: https://issues.apache.org/jira/browse/WICKET-1314
 Project: Wicket
  Issue Type: Bug
  Components: wicket-datetime
Affects Versions: 1.3.4, 1.4-M3
Reporter: Ryan Gravener
 Fix For: 1.3.6, 1.4-RC2

 Attachments: DATETIMEFIELD.TXT, dtf.patch


 The DateTimeField has a DateTextField which uses a styledateconverter with 
 timezone correction set to true which is not needed since the DateTimeField 
 accounts for the TimeZone correction.  Another problem is that the 
 DateTimeField only sets the timezone of the date (from local-client), 
 causing the date to be corrected to the local time.  This should instead 
 cause the local time to reflect that of the clients time.   

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



[jira] Assigned: (WICKET-1781) ParentResourceEscapePathTest fails on OS X using cmd line maven

2008-12-02 Thread Timo Rantalaiho (JIRA)

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

Timo Rantalaiho reassigned WICKET-1781:
---

Assignee: Timo Rantalaiho

 ParentResourceEscapePathTest fails on OS X using cmd line maven
 ---

 Key: WICKET-1781
 URL: https://issues.apache.org/jira/browse/WICKET-1781
 Project: Wicket
  Issue Type: Bug
Affects Versions: 1.3.4
Reporter: Martijn Dashorst
Assignee: Timo Rantalaiho
 Fix For: 1.3.6

 Attachments: org.apache.wicket.ParentResourceEscapePathTest.txt, 
 ParentResourceEscapePathTest-patch.diff


 using commandline java 1.4 and maven (2.0.9) I get the attached failure.

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



svn commit: r722710 - /wicket/trunk/wicket/src/test/java/org/apache/wicket/ParentResourceEscapePathTest.java

2008-12-02 Thread thrantal
Author: thrantal
Date: Tue Dec  2 17:24:47 2008
New Revision: 722710

URL: http://svn.apache.org/viewvc?rev=722710view=rev
Log:
WICKET-1781: Making the test more robust. A better fix would a better testing 
framework where you can handle XML better (or at least an XML testing library 
for JUnit).

Modified:

wicket/trunk/wicket/src/test/java/org/apache/wicket/ParentResourceEscapePathTest.java

Modified: 
wicket/trunk/wicket/src/test/java/org/apache/wicket/ParentResourceEscapePathTest.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket/src/test/java/org/apache/wicket/ParentResourceEscapePathTest.java?rev=722710r1=722709r2=722710view=diff
==
--- 
wicket/trunk/wicket/src/test/java/org/apache/wicket/ParentResourceEscapePathTest.java
 (original)
+++ 
wicket/trunk/wicket/src/test/java/org/apache/wicket/ParentResourceEscapePathTest.java
 Tue Dec  2 17:24:47 2008
@@ -37,12 +37,16 @@

tester.assertRenderedPage(ParentResourceEscapePathTestPage.class);
tester.assertNoErrorMessage();
 
-   final StringBuilder expectedHtml = new StringBuilder();
-   expectedHtml.append(htmlheadwicket:linkscript 
type=\text/javascript\ src=\);
-   expectedHtml.append(expectedResourceUrl());
-   expectedHtml.append(\/script/wicket:link/head/html);
+   String html = tester.getServletResponse().getDocument();
+   assertContains(html, htmlheadwicket:linkscript );
+   assertContains(html,  type=\text/javascript\);
+   assertContains(html, src=\ + expectedResourceUrl() + \);
+   assertContains(html, 
\/script/wicket:link/head/html);
+   }
 
-   assertEquals(expectedHtml.toString(), 
tester.getServletResponse().getDocument());
+   private void assertContains(String html, String expected)
+   {
+   assertTrue(html, html.contains(expected));
}
 
public void testResourceUrlGeneratedByResourceReference()




svn commit: r722709 - /wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/ParentResourceEscapePathTest.java

2008-12-02 Thread thrantal
Author: thrantal
Date: Tue Dec  2 17:24:17 2008
New Revision: 722709

URL: http://svn.apache.org/viewvc?rev=722709view=rev
Log:
WICKET-1781: Making the test more robust. A better fix would a better testing 
framework where you can handle XML better (or at least an XML testing library 
for JUnit).

Modified:

wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/ParentResourceEscapePathTest.java

Modified: 
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/ParentResourceEscapePathTest.java
URL: 
http://svn.apache.org/viewvc/wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/ParentResourceEscapePathTest.java?rev=722709r1=722708r2=722709view=diff
==
--- 
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/ParentResourceEscapePathTest.java
 (original)
+++ 
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/ParentResourceEscapePathTest.java
 Tue Dec  2 17:24:17 2008
@@ -37,12 +37,16 @@

tester.assertRenderedPage(ParentResourceEscapePathTestPage.class);
tester.assertNoErrorMessage();
 
-   final StringBuffer expectedHtml = new StringBuffer();
-   expectedHtml.append(htmlheadwicket:linkscript 
type=\text/javascript\ src=\);
-   expectedHtml.append(expectedResourceUrl());
-   expectedHtml.append(\/script/wicket:link/head/html);
+   String html = tester.getServletResponse().getDocument();
+   assertContains(html, htmlheadwicket:linkscript );
+   assertContains(html,  type=\text/javascript\);
+   assertContains(html, src=\ + expectedResourceUrl() + \);
+   assertContains(html, 
\/script/wicket:link/head/html);
+   }
 
-   assertEquals(expectedHtml.toString(), 
tester.getServletResponse().getDocument());
+   private void assertContains(String html, String expected)
+   {
+   assertTrue(html, html.indexOf(expected) != -1);
}
 
public void testResourceUrlGeneratedByResourceReference()




[jira] Resolved: (WICKET-1781) ParentResourceEscapePathTest fails on OS X using cmd line maven

2008-12-02 Thread Timo Rantalaiho (JIRA)

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

Timo Rantalaiho resolved WICKET-1781.
-

   Resolution: Fixed
Fix Version/s: 1.4-RC2
 Assignee: Martijn Dashorst  (was: Timo Rantalaiho)

Martijn (or others), do you have the possibility to try this out now on a Mac?

 ParentResourceEscapePathTest fails on OS X using cmd line maven
 ---

 Key: WICKET-1781
 URL: https://issues.apache.org/jira/browse/WICKET-1781
 Project: Wicket
  Issue Type: Bug
Affects Versions: 1.3.4
Reporter: Martijn Dashorst
Assignee: Martijn Dashorst
 Fix For: 1.3.6, 1.4-RC2

 Attachments: org.apache.wicket.ParentResourceEscapePathTest.txt, 
 ParentResourceEscapePathTest-patch.diff


 using commandline java 1.4 and maven (2.0.9) I get the attached failure.

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



svn commit: r722711 - /wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/markup/html/form/DateTextField.java

2008-12-02 Thread thrantal
Author: thrantal
Date: Tue Dec  2 17:45:08 2008
New Revision: 722711

URL: http://svn.apache.org/viewvc?rev=722711view=rev
Log:
WICKET-1879: Added missing type parameter

Modified:

wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/markup/html/form/DateTextField.java

Modified: 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/markup/html/form/DateTextField.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/markup/html/form/DateTextField.java?rev=722711r1=722710r2=722711view=diff
==
--- 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/markup/html/form/DateTextField.java
 (original)
+++ 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/markup/html/form/DateTextField.java
 Tue Dec  2 17:45:08 2008
@@ -21,8 +21,8 @@
 import java.util.Date;
 import java.util.Locale;
 
-import org.apache.wicket.markup.html.form.TextField;
 import 
org.apache.wicket.markup.html.form.AbstractTextComponent.ITextFormatProvider;
+import org.apache.wicket.markup.html.form.TextField;
 import org.apache.wicket.model.IModel;
 import org.apache.wicket.util.convert.IConverter;
 import org.apache.wicket.util.convert.converters.DateConverter;
@@ -41,7 +41,7 @@
  * @author Igor Vaynberg (ivaynberg)
  * 
  */
-public class DateTextField extends TextField implements ITextFormatProvider
+public class DateTextField extends TextFieldDate implements 
ITextFormatProvider
 {
 
private static final long serialVersionUID = 1L;
@@ -85,7 +85,7 @@
 * 
 * @see org.apache.wicket.markup.html.form.TextField
 */
-   public DateTextField(String id, IModel model)
+   public DateTextField(String id, IModelDate model)
{
this(id, model, DEFAULT_PATTERN);
}
@@ -117,17 +117,18 @@
 * 
 * @see org.apache.wicket.markup.html.form.TextField
 */
-   public DateTextField(String id, IModel model, String datePattern)
+   public DateTextField(String id, IModelDate model, String datePattern)
{
super(id, model, Date.class);
this.datePattern = datePattern;
-   this.converter = new DateConverter()
+   converter = new DateConverter()
{
private static final long serialVersionUID = 1L;
 
/**
 * @see 
org.apache.wicket.util.convert.converters.DateConverter#getDateFormat(java.util.Locale)
 */
+   @Override
public DateFormat getDateFormat(Locale locale)
{
return new 
SimpleDateFormat(DateTextField.this.datePattern);
@@ -146,7 +147,8 @@
 * 
 * @see org.apache.wicket.markup.html.form.TextField
 */
-   public IConverter getConverter(Class type)
+   @Override
+   public IConverter getConverter(Class? type)
{
if (converter == null)
{




[jira] Assigned: (WICKET-1879) Generics in DateTextField

2008-12-02 Thread Timo Rantalaiho (JIRA)

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

Timo Rantalaiho reassigned WICKET-1879:
---

Assignee: Timo Rantalaiho

 Generics in DateTextField
 -

 Key: WICKET-1879
 URL: https://issues.apache.org/jira/browse/WICKET-1879
 Project: Wicket
  Issue Type: Bug
  Components: wicket
Affects Versions: 1.4-M3
Reporter: Brian Topping
Assignee: Timo Rantalaiho
Priority: Trivial
 Fix For: 1.4-RC2

   Original Estimate: 0.03h
  Remaining Estimate: 0.03h

 DateTextField should be defined as 'class DateTextField extends 
 TextFieldDate'.  This solves a type safety issue with 
 field.add(DateTextValidator...)

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



[jira] Closed: (WICKET-1879) Generics in DateTextField

2008-12-02 Thread Timo Rantalaiho (JIRA)

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

Timo Rantalaiho closed WICKET-1879.
---

   Resolution: Fixed
Fix Version/s: 1.4-RC2

Fixed, thanks for reporting,

 Generics in DateTextField
 -

 Key: WICKET-1879
 URL: https://issues.apache.org/jira/browse/WICKET-1879
 Project: Wicket
  Issue Type: Bug
  Components: wicket
Affects Versions: 1.4-M3
Reporter: Brian Topping
Assignee: Timo Rantalaiho
Priority: Trivial
 Fix For: 1.4-RC2

   Original Estimate: 0.03h
  Remaining Estimate: 0.03h

 DateTextField should be defined as 'class DateTextField extends 
 TextFieldDate'.  This solves a type safety issue with 
 field.add(DateTextValidator...)

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



[jira] Closed: (WICKET-1485) FeedbackPanel: Add class attribute to ul tag

2008-12-02 Thread Timo Rantalaiho (JIRA)

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

Timo Rantalaiho closed WICKET-1485.
---

   Resolution: Fixed
Fix Version/s: 1.4-RC1

This seems to be fixed by Igor for 1.4-RC1

http://fisheye6.atlassian.com/browse/wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/html/panel/FeedbackPanel.html?r1=647167r2=709216

 FeedbackPanel: Add class attribute to ul tag
 --

 Key: WICKET-1485
 URL: https://issues.apache.org/jira/browse/WICKET-1485
 Project: Wicket
  Issue Type: New Feature
  Components: wicket
Affects Versions: 1.3.2
 Environment: n/a
Reporter: Matthew Young
Priority: Trivial
 Fix For: 1.4-RC1


 Currently the FeedbackPanel.html doesn't have class attribute defined for the 
 ul tag.  Please add class=feedbackPanel attribute to the ul tag so the 
 list can be styled .

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



svn commit: r722758 - /wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/

2008-12-02 Thread thrantal
Author: thrantal
Date: Tue Dec  2 20:30:50 2008
New Revision: 722758

URL: http://svn.apache.org/viewvc?rev=722758view=rev
Log:
WICKET-1538: Removed Wicket from front of WicketAjaxIndicatorAppender for 
consistency and better discoverability, and put in WicketAjaxIndicatorAppender 
as deprecated. In 1.5 we could remove it entirely.

Added:

wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/AjaxIndicatorAppender.java
   (contents, props changed)
  - copied, changed from r722616, 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/WicketAjaxIndicatorAppender.java

wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/WicketAjaxIndicatorAppender.java
Modified:

wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxButton.java

wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxFallbackLink.java

wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxLink.java

Copied: 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/AjaxIndicatorAppender.java
 (from r722616, 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/WicketAjaxIndicatorAppender.java)
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/AjaxIndicatorAppender.java?p2=wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/AjaxIndicatorAppender.javap1=wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/WicketAjaxIndicatorAppender.javar1=722616r2=722758rev=722758view=diff
==
--- 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/WicketAjaxIndicatorAppender.java
 (original)
+++ 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/AjaxIndicatorAppender.java
 Tue Dec  2 20:30:50 2008
@@ -40,7 +40,7 @@
  * @author Igor Vaynberg (ivaynberg)
  * 
  */
-public class WicketAjaxIndicatorAppender extends AbstractBehavior
+public class AjaxIndicatorAppender extends AbstractBehavior
 {
/**
 * Component instance this behavior is bound to
@@ -55,7 +55,7 @@
/**
 * Construct.
 */
-   public WicketAjaxIndicatorAppender()
+   public AjaxIndicatorAppender()
{
 
}

Propchange: 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/AjaxIndicatorAppender.java
--
svn:eol-style = native

Modified: 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxButton.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxButton.java?rev=722758r1=722757r2=722758view=diff
==
--- 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxButton.java
 (original)
+++ 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxButton.java
 Tue Dec  2 20:30:50 2008
@@ -35,7 +35,7 @@
 * 
 */
private static final long serialVersionUID = 1L;
-   private final WicketAjaxIndicatorAppender indicatorAppender = new 
WicketAjaxIndicatorAppender();
+   private final AjaxIndicatorAppender indicatorAppender = new 
AjaxIndicatorAppender();
 
/**
 * Constructor

Modified: 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxFallbackLink.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxFallbackLink.java?rev=722758r1=722757r2=722758view=diff
==
--- 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxFallbackLink.java
 (original)
+++ 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxFallbackLink.java
 Tue Dec  2 20:30:50 2008
@@ -40,7 +40,7 @@
 * 
 */
private static final long serialVersionUID = 1L;
-   private final WicketAjaxIndicatorAppender indicatorAppender = new 
WicketAjaxIndicatorAppender();
+   private final AjaxIndicatorAppender indicatorAppender = new 
AjaxIndicatorAppender();
 
/**
 * Constructor

Modified: 

svn commit: r722759 - /wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxButton.java

2008-12-02 Thread thrantal
Author: thrantal
Date: Tue Dec  2 20:31:39 2008
New Revision: 722759

URL: http://svn.apache.org/viewvc?rev=722759view=rev
Log:
Removed incorrect parameter reference
- no functional changes

Modified:

wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxButton.java

Modified: 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxButton.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxButton.java?rev=722759r1=722758r2=722759view=diff
==
--- 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxButton.java
 (original)
+++ 
wicket/trunk/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/IndicatingAjaxButton.java
 Tue Dec  2 20:31:39 2008
@@ -24,7 +24,6 @@
  * A variant of the [EMAIL PROTECTED] AjaxButton} that displays a busy 
indicator while the ajax request is in
  * progress.
  * 
- * @param T
  * @author evan
  * 
  */




[jira] Closed: (WICKET-1538) WicketAjaxIndicatorAppender rename to AjaxIndicatorAppender

2008-12-02 Thread Timo Rantalaiho (JIRA)

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

Timo Rantalaiho closed WICKET-1538.
---

   Resolution: Fixed
Fix Version/s: 1.4-RC2

Fixed in trunk, thanks for reporting.

 WicketAjaxIndicatorAppender rename to AjaxIndicatorAppender
 ---

 Key: WICKET-1538
 URL: https://issues.apache.org/jira/browse/WICKET-1538
 Project: Wicket
  Issue Type: Improvement
  Components: wicket
Affects Versions: 1.3.3
Reporter: John Patterson
Assignee: Timo Rantalaiho
 Fix For: 1.4-RC2


 Just a tiny niggle really... but other ajax components start with Ajax 
 and I always forget this one!  Perhaps rename and keep a deprecated subclass 
 with the old name?

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



[jira] Assigned: (WICKET-1538) WicketAjaxIndicatorAppender rename to AjaxIndicatorAppender

2008-12-02 Thread Timo Rantalaiho (JIRA)

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

Timo Rantalaiho reassigned WICKET-1538:
---

Assignee: Timo Rantalaiho

 WicketAjaxIndicatorAppender rename to AjaxIndicatorAppender
 ---

 Key: WICKET-1538
 URL: https://issues.apache.org/jira/browse/WICKET-1538
 Project: Wicket
  Issue Type: Improvement
  Components: wicket
Affects Versions: 1.3.3
Reporter: John Patterson
Assignee: Timo Rantalaiho
 Fix For: 1.4-RC2


 Just a tiny niggle really... but other ajax components start with Ajax 
 and I always forget this one!  Perhaps rename and keep a deprecated subclass 
 with the old name?

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