You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Ivan <xh...@gmail.com> on 2011/06/29 02:23:11 UTC

Please help to publish the latest MyFaces 2.0.8-SNAPSHOT

Hi, it seems that the latest MyFaces 2.0.8-SNAPSHOT is not published
correctly in the snapshot site,
https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/
Could you please help to publish it, thanks !

-- 
Ivan

Re: Please help to publish the latest MyFaces 2.0.8-SNAPSHOT

Posted by Leonardo Uribe <lu...@gmail.com>.
Ok, I already did that to speed it up. I'll check it tomorrow.

2011/6/28 Ivan <xh...@gmail.com>:
> Hmm, I did not see the Reopen Issue command on that JIRA, guess that I did
> not have related rights ...
>
> 2011/6/29 Leonardo Uribe <lu...@gmail.com>
>
>> Hi
>>
>> Ouch. Yes, it is a bug. Please reopen it.
>>
>> Leonardo Uribe
>>
>> 2011/6/28 Ivan <xh...@gmail.com>:
>> > OK, I was thinking that an old MyFaces snapshot is used as I got a
>> failure
>> > in my sample for some changes are done to UIRepeat tag in
>> > MYFACES-3034<https://issues.apache.org/jira/browse/MYFACES-3034> .
>> > After some investigation later, it seems that the changes brought a
>> problem.
>> > If repeat tag is used as :
>> > <ui:repeat var="listing" value="#{myListings.listings}"  offset="20">
>> > An exception is always thrown on line 457,
>> > --->
>> > if (size == -1) {
>> >            size = end;   <-- Should it be size = end - offset ?
>> >        }
>> >
>> >        if (end >= 0) {
>> >            if (size < 0) {
>> >                throw new FacesException ("iteration size cannot be less "
>> +
>> >                    "than zero");
>> >            }
>> >
>> >            else if ((begin + size) > end) {
>> >                throw new FacesException ("iteration size cannot be
>> greater
>> > " +    <--- Exception is always thrown
>> >                    "than collection size");
>> >            }
>> >        }
>> >
>> > 2011/6/29 Leonardo Uribe <lu...@gmail.com>
>> >
>> >> Hi
>> >>
>> >> Hudson is working well:
>> >>
>> >> https://builds.apache.org/view/M-R/view/MyFaces/
>> >>
>> >> The latest one is:
>> >>
>> >>
>> >>
>> https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/myfaces-bundle-2.0.8-20110627.034125-16.jar
>> >>
>> >> I don't see any problems.
>> >>
>> >> regards,
>> >>
>> >> Leonardo Uribe
>> >>
>> >> 2011/6/28 Ivan <xh...@gmail.com>:
>> >> > Hi, it seems that the latest MyFaces 2.0.8-SNAPSHOT is not published
>> >> > correctly in the snapshot site,
>> >> >
>> >>
>> https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/
>> >> > Could you please help to publish it, thanks !
>> >> >
>> >> > --
>> >> > Ivan
>> >> >
>> >>
>> >
>> >
>> >
>> > --
>> > Ivan
>> >
>>
>
>
>
> --
> Ivan
>

Re: Please help to publish the latest MyFaces 2.0.8-SNAPSHOT

Posted by Ivan <xh...@gmail.com>.
Hmm, I did not see the Reopen Issue command on that JIRA, guess that I did
not have related rights ...

2011/6/29 Leonardo Uribe <lu...@gmail.com>

> Hi
>
> Ouch. Yes, it is a bug. Please reopen it.
>
> Leonardo Uribe
>
> 2011/6/28 Ivan <xh...@gmail.com>:
> > OK, I was thinking that an old MyFaces snapshot is used as I got a
> failure
> > in my sample for some changes are done to UIRepeat tag in
> > MYFACES-3034<https://issues.apache.org/jira/browse/MYFACES-3034> .
> > After some investigation later, it seems that the changes brought a
> problem.
> > If repeat tag is used as :
> > <ui:repeat var="listing" value="#{myListings.listings}"  offset="20">
> > An exception is always thrown on line 457,
> > --->
> > if (size == -1) {
> >            size = end;   <-- Should it be size = end - offset ?
> >        }
> >
> >        if (end >= 0) {
> >            if (size < 0) {
> >                throw new FacesException ("iteration size cannot be less "
> +
> >                    "than zero");
> >            }
> >
> >            else if ((begin + size) > end) {
> >                throw new FacesException ("iteration size cannot be
> greater
> > " +    <--- Exception is always thrown
> >                    "than collection size");
> >            }
> >        }
> >
> > 2011/6/29 Leonardo Uribe <lu...@gmail.com>
> >
> >> Hi
> >>
> >> Hudson is working well:
> >>
> >> https://builds.apache.org/view/M-R/view/MyFaces/
> >>
> >> The latest one is:
> >>
> >>
> >>
> https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/myfaces-bundle-2.0.8-20110627.034125-16.jar
> >>
> >> I don't see any problems.
> >>
> >> regards,
> >>
> >> Leonardo Uribe
> >>
> >> 2011/6/28 Ivan <xh...@gmail.com>:
> >> > Hi, it seems that the latest MyFaces 2.0.8-SNAPSHOT is not published
> >> > correctly in the snapshot site,
> >> >
> >>
> https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/
> >> > Could you please help to publish it, thanks !
> >> >
> >> > --
> >> > Ivan
> >> >
> >>
> >
> >
> >
> > --
> > Ivan
> >
>



-- 
Ivan

Re: Please help to publish the latest MyFaces 2.0.8-SNAPSHOT

Posted by Leonardo Uribe <lu...@gmail.com>.
Hi

Ouch. Yes, it is a bug. Please reopen it.

Leonardo Uribe

2011/6/28 Ivan <xh...@gmail.com>:
> OK, I was thinking that an old MyFaces snapshot is used as I got a failure
> in my sample for some changes are done to UIRepeat tag in
> MYFACES-3034<https://issues.apache.org/jira/browse/MYFACES-3034> .
> After some investigation later, it seems that the changes brought a problem.
> If repeat tag is used as :
> <ui:repeat var="listing" value="#{myListings.listings}"  offset="20">
> An exception is always thrown on line 457,
> --->
> if (size == -1) {
>            size = end;   <-- Should it be size = end - offset ?
>        }
>
>        if (end >= 0) {
>            if (size < 0) {
>                throw new FacesException ("iteration size cannot be less " +
>                    "than zero");
>            }
>
>            else if ((begin + size) > end) {
>                throw new FacesException ("iteration size cannot be greater
> " +    <--- Exception is always thrown
>                    "than collection size");
>            }
>        }
>
> 2011/6/29 Leonardo Uribe <lu...@gmail.com>
>
>> Hi
>>
>> Hudson is working well:
>>
>> https://builds.apache.org/view/M-R/view/MyFaces/
>>
>> The latest one is:
>>
>>
>> https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/myfaces-bundle-2.0.8-20110627.034125-16.jar
>>
>> I don't see any problems.
>>
>> regards,
>>
>> Leonardo Uribe
>>
>> 2011/6/28 Ivan <xh...@gmail.com>:
>> > Hi, it seems that the latest MyFaces 2.0.8-SNAPSHOT is not published
>> > correctly in the snapshot site,
>> >
>> https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/
>> > Could you please help to publish it, thanks !
>> >
>> > --
>> > Ivan
>> >
>>
>
>
>
> --
> Ivan
>

Re: Please help to publish the latest MyFaces 2.0.8-SNAPSHOT

Posted by Ivan <xh...@gmail.com>.
OK, I was thinking that an old MyFaces snapshot is used as I got a failure
in my sample for some changes are done to UIRepeat tag in
MYFACES-3034<https://issues.apache.org/jira/browse/MYFACES-3034> .
After some investigation later, it seems that the changes brought a problem.
If repeat tag is used as :
<ui:repeat var="listing" value="#{myListings.listings}"  offset="20">
An exception is always thrown on line 457,
--->
if (size == -1) {
            size = end;   <-- Should it be size = end - offset ?
        }

        if (end >= 0) {
            if (size < 0) {
                throw new FacesException ("iteration size cannot be less " +
                    "than zero");
            }

            else if ((begin + size) > end) {
                throw new FacesException ("iteration size cannot be greater
" +    <--- Exception is always thrown
                    "than collection size");
            }
        }

2011/6/29 Leonardo Uribe <lu...@gmail.com>

> Hi
>
> Hudson is working well:
>
> https://builds.apache.org/view/M-R/view/MyFaces/
>
> The latest one is:
>
>
> https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/myfaces-bundle-2.0.8-20110627.034125-16.jar
>
> I don't see any problems.
>
> regards,
>
> Leonardo Uribe
>
> 2011/6/28 Ivan <xh...@gmail.com>:
> > Hi, it seems that the latest MyFaces 2.0.8-SNAPSHOT is not published
> > correctly in the snapshot site,
> >
> https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/
> > Could you please help to publish it, thanks !
> >
> > --
> > Ivan
> >
>



-- 
Ivan

Re: Please help to publish the latest MyFaces 2.0.8-SNAPSHOT

Posted by Leonardo Uribe <lu...@gmail.com>.
Hi

Hudson is working well:

https://builds.apache.org/view/M-R/view/MyFaces/

The latest one is:

https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/myfaces-bundle-2.0.8-20110627.034125-16.jar

I don't see any problems.

regards,

Leonardo Uribe

2011/6/28 Ivan <xh...@gmail.com>:
> Hi, it seems that the latest MyFaces 2.0.8-SNAPSHOT is not published
> correctly in the snapshot site,
> https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/
> Could you please help to publish it, thanks !
>
> --
> Ivan
>

Re: Please help to publish the latest MyFaces 2.0.8-SNAPSHOT

Posted by Leonardo Uribe <lu...@gmail.com>.
Hi

Hudson is working well:

https://builds.apache.org/view/M-R/view/MyFaces/

The latest one is:

https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/myfaces-bundle-2.0.8-20110627.034125-16.jar

I don't see any problems.

regards,

Leonardo Uribe

2011/6/28 Ivan <xh...@gmail.com>:
> Hi, it seems that the latest MyFaces 2.0.8-SNAPSHOT is not published
> correctly in the snapshot site,
> https://repository.apache.org/content/groups/snapshots/org/apache/myfaces/core/myfaces-bundle/2.0.8-SNAPSHOT/
> Could you please help to publish it, thanks !
>
> --
> Ivan
>