Zoltán Nagy | 1 Mar 2011 13:36
Picon

Re: wicketstuff.org keeps giving 503 errors for hudson

do you think jenkins version 1.*3*98?

2011/2/26 Michael O'Cleirigh <michael.ocleirigh@...>

> Hello,
>
> There is a problem with hudson on wicketstuff.org.  Builds have been
> failing for the last little while but I think what is happening is due to
> the infrastructure split caused by the Hudson fork.
>
> I don't think git was ever installed on the wicketstuff.org server so I
> had the build delegated to my person vps.
>
> I've temporarily disabled the Hudson slave and have my vps building the 1.4
> and 1.5 snapshot versions directly.
>
> I picked Jenkins and it works fine for building the projects.
>
> Can Jenkins (or the latest Hudson) be installed on wicketstuff.org and see
> if that resolves the 503 error issue?
>
> Jenkins version 1.98 is available here:
> http://mirrors.jenkins-ci.org/war/latest/jenkins.war
>
> Thanks,
>
> Mike
>
>

(Continue reading)

Martijn Dashorst | 1 Mar 2011 13:59
Picon
Gravatar

Re: wicketstuff.org keeps giving 503 errors for hudson

I think the tomcat server just needed a kick in the nuts... I just
restarted the tomcat instance and hudson seems to start willingly.

Martijn

On Sat, Feb 26, 2011 at 6:12 AM, Michael O'Cleirigh
<michael.ocleirigh@...> wrote:
> Hello,
>
> There is a problem with hudson on wicketstuff.org.  Builds have been failing
> for the last little while but I think what is happening is due to the
> infrastructure split caused by the Hudson fork.
>
> I don't think git was ever installed on the wicketstuff.org server so I had
> the build delegated to my person vps.
>
> I've temporarily disabled the Hudson slave and have my vps building the 1.4
> and 1.5 snapshot versions directly.
>
> I picked Jenkins and it works fine for building the projects.
>
> Can Jenkins (or the latest Hudson) be installed on wicketstuff.org and see
> if that resolves the 503 error issue?
>
> Jenkins version 1.98 is available here:
> http://mirrors.jenkins-ci.org/war/latest/jenkins.war
>
> Thanks,
>
> Mike
(Continue reading)

Attila Király | 2 Mar 2011 12:45
Picon
Gravatar

Re: wicketstuff.org keeps giving 503 errors for hudson

Sadly the builds are still failing. It seems git is not on the PATH causing
the "wicketstuff core parent" project to fail:
http://www.wicketstuff.org/hudson/job/Wicket%20Stuff%20Core%20Parent%20(wicket%201.5-SNAPSHOT)/118/console
"ERROR: Cause: Error performing git clone -o origin git://
github.com/wicketstuff/core.git /home/wicket/.hudson/jobs/Wicket Stuff Core
Parent (wicket 1.5-SNAPSHOT)/workspace
Cannot run program "git": java.io.IOException: error=2, No such file or
directory"

Other projects, like "wicketstuff core java5" are using the full path
"/usr/bin/git" to invoke git. Could that be configured in hudson by someone
for the "core parent" too?

"wicketstuff core java5" is also failing but I see no reason in the hudson
web log. It seems build is hanging at "Parsing POMs":
http://www.wicketstuff.org/hudson/job/Wicket%20Stuff%20Core%20Java5%20(wicket%201.5-SNAPSHOT)/90/console
Maybe after the "core parent" is repaired this one will work too.

Attila

2011/3/1 Martijn Dashorst <martijn.dashorst@...>
>
> I think the tomcat server just needed a kick in the nuts... I just
> restarted the tomcat instance and hudson seems to start willingly.
>
> Martijn
>
> On Sat, Feb 26, 2011 at 6:12 AM, Michael O'Cleirigh
> <michael.ocleirigh@...> wrote:
> > Hello,
(Continue reading)

Sebastian | 2 Mar 2011 17:22
Picon

Re: [announce] Wicket Stuff Core 1.5-rc2 is released

Hi Mike,

when can we expect a 1.4.16 release of wicketstuff?

Regards,

Seb

On 26.02.2011 22:44, Michael O'Cleirigh wrote:
> Hello,
>
> Following the release of wicket 1.5-rc2 I've cut a matching release for
> wicketstuff-core (https://github.com/wicketstuff/core).
>
> The artifacts have been promoted and are now available through the maven
> central repository.
>
> They can be retrieved like this:
>
> <dependency>
> <groupId>org.wicketstuff</groupId>
> <artifactId>wicketstuff-springreference</artifactId>
> <version>1.5-rc2</version>
> </dependency>
>
> The release tag is here:
> https://github.com/wicketstuff/core/tree/wicketstuff-core-1.5-rc2
>
> Issues can be reported here: https://github.com/wicketstuff/core/issues
>
(Continue reading)

Michael O'Cleirigh | 3 Mar 2011 05:40
Picon
Gravatar

[Announce] wicketstuff-core 1.4.16 is released.

Hello,

Following the release of wicket 1.4.16 last week I have cut a matching 
release for wicketstuff-core (https://github.com/wicketstuff/core).

The artifacts have been promoted and are now available through the maven 
central repository.

They can be retrieved like this:

<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>push-cometd</artifactId>
<version>1.4.16</version>
</dependency>

The release tag is here: 
https://github.com/wicketstuff/core/tree/wicketstuff-core-1.4.16

Issues can be reported here: https://github.com/wicketstuff/core/issues

The Project Wiki is available here: 
https://github.com/wicketstuff/core/wiki

Release Notes - WicketStuff Core - Version 1.4.16:

Michael O'Cleirigh (10 commits)
Summary:
Brought the dojo integration back from the sandbox.
Minor pom changes.
(Continue reading)

Joo Hama | 3 Mar 2011 10:12
Picon

Re: How to streamline ajax page region toggle

Juergen, thanks for the review. I modified the code according to your
suggestions.

> - EnclosureHandler: A variable to increment the id postfix will not
> work. A fresh copy of MarkupParser and all its handlers is created for
> every markup file (page, panel, border, etc.). Your increment will
> thus only be unique within the a single markup file. Your page however
> may have many Panels....

Good point, I fixed this by changing the simple variable to the sequence
value from Session class, making the id's session-unique. I also added an
unit test to verify this.

> - you added code to EnclosureHandler and EnclosureResolver and
> Enclosure. Tinkering a bit with the code, I think having an
> InlineEnclosureHandler and InlineEnclosure keeps them nicely separated
> and thus cleaner. InlineEnclosureHandler has only very little in
> common with EnclosureHandler and could be separate, whereas
> InlineEnclosure is probably better derived from Enclosure.

Right, I created a new InlineEnclosureHandler class and removed all the
changes
from EnclosureHandler. I also created a new InlineEnclosure class, extending
Enclosure.
Now the only modification in the Enclosure-class is that the visibility of
the method
getEnclosureParent() is relaxed to protected (was private), since the
extending
InlineEnclosure class uses the method as well.

(Continue reading)

Frank van Lankvelt | 3 Mar 2011 12:59

ajax form submit invoked with scope window

debugging a problem with an external javascript library that's used in our
project, I'm seeing an onclick handler on a form button being invoked with
scope window.
I wasn't aware that this was legal and cannot see how the library is causing
this, but it did point me to the AjaxFormSubmitBehavior precondition script.

In there, it says on line 182 (wicket-1.4.x):

src/main/java/org/apache/wicket/ajax/form/AjaxFormSubmitBehavior.java
 <at>  <at>  -179,6 +179,6  <at>  <at> 
   <at> Override
  protected CharSequence getPreconditionScript()
  {
return "return Wicket.$$(this)&&Wicket.$$('" + getForm().getMarkupId() +
"')";
  }
 }

This appears to be the only place where $$(this) is used.  Removing the
check fixes my original problem, but it must be there for a reason.  Does
anyone know why?
(it was added at r574685 by Matej Knopp)

I'll continue trying to create a quickstart for the issue, that should help
discussing it ;-)

thanks, Frank

--

-- 
Hippo Europe  •  Amsterdam  Oosteinde 11  •  1017 WT Amsterdam  •  +31 (0)20
(Continue reading)

Zilvinas Vilutis | 3 Mar 2011 20:17
Picon
Gravatar

Re: [announce] Wicket Stuff Core 1.5-rc2 is released

Hi,

I'm getting a missing resource error:

Missing:
----------
1) org.wicketstuff:annotation:jar:1.5-rc2

  Try downloading the file manually from the project website.

Seems that the project version is not changed in the pom.xml:

https://github.com/wicketstuff/core/blob/wicketstuff-core-1.5-rc2/jdk-1.5-parent/annotation/pom.xml

Regards

Žilvinas Vilutis

Mobile:   (+370) 652 38353
E-mail:   cikasfm@...

On Sat, Feb 26, 2011 at 2:44 PM, Michael O'Cleirigh
<michael.ocleirigh@...> wrote:
> Hello,
>
> Following the release of wicket 1.5-rc2 I've cut a matching release for
> wicketstuff-core (https://github.com/wicketstuff/core).
>
> The artifacts have been promoted and are now available through the maven
> central repository.
(Continue reading)

Martin Grigorov | 4 Mar 2011 16:49
Picon
Favicon

WicketFilter works with only one filterPath

Hi,

In the context of https://issues.apache.org/jira/browse/WICKET-3497 I want
to ask other Wicket devs whether WicketFilter parses only one
<filter-mapping> and ignores others by intention ?
Debugging https://issues.apache.org/jira/browse/WICKET-3497 I think Wicket
1.4 handles the case with two or more <filter-mappings> on the same <filter>
by accident.

So my question is: were there any discussions (around Wicket 1.1/1.2) that
WicketFilter/WicketServlet should work only with the first <**-mapping> ?

Example from the ticket quickstart:

<servlet>
<servlet-name>wicket.getUrlTest</servlet-name>
<servlet-class>org.apache.wicket.protocol.http.WicketServlet</servlet-class>
 <init-param>
<param-name>applicationClassName</param-name>
 <param-value>fs.quick.wicket.WicketApplication</param-value>
</init-param>
 </servlet>

<servlet-mapping>
<servlet-name>wicket.getUrlTest</servlet-name>
 <url-pattern>/app/*</url-pattern>
</servlet-mapping>

 <servlet-mapping>
<servlet-name>wicket.getUrlTest</servlet-name>
(Continue reading)

Martijn Dashorst | 4 Mar 2011 21:01
Picon
Gravatar

Re: wicketstuff.org keeps giving 503 errors for hudson

I doubt there exist binaries for the version of freebsd that is
installed on the server. Perhaps it is time to reinstall the OS and
repurpose the machine with a sensible setup.

Martijn

On Wed, Mar 2, 2011 at 12:45 PM, Attila Király
<kiralyattila.hu@...> wrote:
> Sadly the builds are still failing. It seems git is not on the PATH causing
> the "wicketstuff core parent" project to fail:
> http://www.wicketstuff.org/hudson/job/Wicket%20Stuff%20Core%20Parent%20(wicket%201.5-SNAPSHOT)/118/console
> "ERROR: Cause: Error performing git clone -o origin git://
> github.com/wicketstuff/core.git /home/wicket/.hudson/jobs/Wicket Stuff Core
> Parent (wicket 1.5-SNAPSHOT)/workspace
> Cannot run program "git": java.io.IOException: error=2, No such file or
> directory"
>
> Other projects, like "wicketstuff core java5" are using the full path
> "/usr/bin/git" to invoke git. Could that be configured in hudson by someone
> for the "core parent" too?
>
> "wicketstuff core java5" is also failing but I see no reason in the hudson
> web log. It seems build is hanging at "Parsing POMs":
> http://www.wicketstuff.org/hudson/job/Wicket%20Stuff%20Core%20Java5%20(wicket%201.5-SNAPSHOT)/90/console
> Maybe after the "core parent" is repaired this one will work too.
>
> Attila
>
> 2011/3/1 Martijn Dashorst <martijn.dashorst@...>
>>
(Continue reading)


Gmane