You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by Sean Schofield <se...@gmail.com> on 2005/04/05 23:29:34 UTC

[ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

A new (and hopefully final) release candidate is now available. 
Please use JIRA to report any siginficant bugs that you discover.

http://cvs.apache.org/builds/myfaces/release/

Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Rob Decker <ro...@objectsource.org>.
Aside from a few changes in the examples/tests changes from rc2-rc3 are:

 * $Log: _SharedRendererUtils.java,v $
 * Revision 1.4  2005/03/31 22:47:14  schof
 * Whitney Hunter's patch for MYFACES-157


----- Original Message ----- 
From: "MarcV" <ma...@gmail.com>
To: "MyFaces Discussion" <my...@incubator.apache.org>
Sent: Thursday, April 07, 2005 7:51 AM
Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available


> Hello,
> 
> do you have the list of new features / bug fixes for that new release ?
> 
> On Apr 5, 2005 11:29 PM, Sean Schofield <se...@gmail.com> wrote:
> > A new (and hopefully final) release candidate is now available.
> > Please use JIRA to report any siginficant bugs that you discover.
> > 
> > http://cvs.apache.org/builds/myfaces/release/
> > 
> 
> 
> -- 
> A+,
> MarcV.

Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Sean Schofield <se...@gmail.com>.
You can look in JIRA for things marked fixed with version 1.0.9 or
nightly.  I think we have a rough list of this somewhere but when we
officially release we should have the list of features.  Please hang
in there as we are a new project (but growing stronger every day.)

sean


On Apr 7, 2005 7:51 AM, MarcV <ma...@gmail.com> wrote:
> Hello,
> 
> do you have the list of new features / bug fixes for that new release ?
> 
> On Apr 5, 2005 11:29 PM, Sean Schofield <se...@gmail.com> wrote:
> > A new (and hopefully final) release candidate is now available.
> > Please use JIRA to report any siginficant bugs that you discover.
> >
> > http://cvs.apache.org/builds/myfaces/release/
> >
> 
> --
> A+,
> MarcV.
>

Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by MarcV <ma...@gmail.com>.
Hello,

do you have the list of new features / bug fixes for that new release ?

On Apr 5, 2005 11:29 PM, Sean Schofield <se...@gmail.com> wrote:
> A new (and hopefully final) release candidate is now available.
> Please use JIRA to report any siginficant bugs that you discover.
> 
> http://cvs.apache.org/builds/myfaces/release/
> 


-- 
A+,
MarcV.

Re: JSF to JFC

Posted by Heath Borders <he...@gmail.com>.
Well, my suggestion would be largely theoretical and probably a bit of a 
hack, but basically, you'd have to have your build your own renderkit. 
Rather than having that renderkit render a String of HTML, it would have to 
render a JComponent.

That would be the basic concept, but obviously there are a lot more details 
to work out than that, as well as a little bit of hacking to build a 
Swing-viewer for this new client app.
 The difference would be rather than parsing HTML, it would read in a 
Serialized Swing JComponent tree which you would then render on the client.
 This might not even be feasible like that.

 On Apr 6, 2005 1:50 PM, reza@voicegenesis.com <re...@voicegenesis.com> 
wrote: 
> 
> Hi Heath:
> 
> Thanks for the response. I think the overwhelming reason to have such a
> functionality is to be able to write one application that, given a local
> web server, can be both a thin and a thick client. Local web application
> can do data replication/synchronization with remote hosts.
> 
> For many rich clients that require lots of data entry, etc. AJAX is not
> acceptable because of transactional integrity and server round trips are
> not acceptable because of usability issues. The ideal would be if I can
> write my JSF app one time and then have a resulting Web Start application
> as well as a thin client (XHTML, HTML, etc., currently supported by 
> MyJSF).
> A great proposition would be: "here, give me X amount of dollars to build
> the app and you'll have both thin and thick if we do it with JSF"...
> 
> I'd like to hear what you'd suggest in the way of a solution 
> implementation.
> 
> R
> 
> >-- Original Message --
> >Reply-To: "MyFaces Discussion" <my...@incubator.apache.org>
> >Date: Wed, 6 Apr 2005 12:15:29 -0500
> >From: Heath Borders <he...@gmail.com>
> >Reply-To: hborders@mail.win.org
> >To: MyFaces Discussion <my...@incubator.apache.org>,
> > reza@voicegenesis.com
> >Subject: Re: JSF to JFC
> >
> >
> >There's really no reason that it couldn't, however, it would require a
> good
> >
> >deal of hacking the ResponseWriter, etc. It is theoretically possible,
> but
> >
> >I'm not sure a lot of people need this functionality.
> >
> >On 06 Apr 2005 08:52:34 -0700, Reza B'Far <re...@voicegenesis.com> wrote:
> >
> >>
> >> Folks:
> >>
> >> Does anyone know if there is any project anywhere that allows for
> >> rendering
> >> of JSF to JFC? I'm looking for a presentation layer that can be 
> rendered
> >> both as a thin and a thick client...not talking about XForms and XUL,
> 
> >> rather
> >> a framework that actually does the work of rendering to JFC widgets and
> >
> >> HTML
> >> widgets (both).
> >>
> >> R
> >>
> >>
> >
> >
> >--
> >-Heath Borders-Wing
> >hborders@mail.win.org
> 
> 


-- 
-Heath Borders-Wing
hborders@mail.win.org

Re: JSF to JFC

Posted by re...@voicegenesis.com.
Hi Heath:

Thanks for the response.  I think the overwhelming reason to have such a
functionality is to be able to write one application that, given a local
web server, can be both a thin and a thick client.  Local web application
can do data replication/synchronization with remote hosts.

For many rich clients that require lots of data entry, etc.  AJAX is not
acceptable because of transactional integrity and server round trips are
not acceptable because of usability issues.  The ideal would be if I can
write my JSF app one time and then have a resulting Web Start application
as well as a thin client (XHTML, HTML, etc., currently supported by MyJSF).
 A great proposition would be: "here, give me X amount of dollars to build
the app and you'll have both thin and thick if we do it with JSF"... 

I'd like to hear what you'd suggest in the way of a solution implementation.

R

>-- Original Message --
>Reply-To: "MyFaces Discussion" <my...@incubator.apache.org>
>Date: Wed, 6 Apr 2005 12:15:29 -0500
>From: Heath Borders <he...@gmail.com>
>Reply-To: hborders@mail.win.org
>To: MyFaces Discussion <my...@incubator.apache.org>,
>        reza@voicegenesis.com
>Subject: Re: JSF to JFC
>
>
>There's really no reason that it couldn't, however, it would require a
good
>
>deal of hacking the ResponseWriter, etc. It is theoretically possible,
but
>
>I'm not sure a lot of people need this functionality.
>
>On 06 Apr 2005 08:52:34 -0700, Reza B'Far <re...@voicegenesis.com> wrote:
>
>> 
>> Folks:
>> 
>> Does anyone know if there is any project anywhere that allows for 
>> rendering
>> of JSF to JFC? I'm looking for a presentation layer that can be rendered
>> both as a thin and a thick client...not talking about XForms and XUL,

>> rather
>> a framework that actually does the work of rendering to JFC widgets and
>
>> HTML
>> widgets (both).
>> 
>> R
>> 
>> 
>
>
>-- 
>-Heath Borders-Wing
>hborders@mail.win.org



Re: JSF to JFC

Posted by Heath Borders <he...@gmail.com>.
There's really no reason that it couldn't, however, it would require a good 
deal of hacking the ResponseWriter, etc. It is theoretically possible, but 
I'm not sure a lot of people need this functionality.

On 06 Apr 2005 08:52:34 -0700, Reza B'Far <re...@voicegenesis.com> wrote: 
> 
> Folks:
> 
> Does anyone know if there is any project anywhere that allows for 
> rendering
> of JSF to JFC? I'm looking for a presentation layer that can be rendered
> both as a thin and a thick client...not talking about XForms and XUL, 
> rather
> a framework that actually does the work of rendering to JFC widgets and 
> HTML
> widgets (both).
> 
> R
> 
> 


-- 
-Heath Borders-Wing
hborders@mail.win.org

Re: JSF to JFC

Posted by Heath Borders <he...@gmail.com>.
That's ok. Its really an interesting idea, I'm just not much of a Swing 
developer anymore.

On Apr 6, 2005 6:36 PM, reza@voicegenesis.com <re...@voicegenesis.com> wrote: 
> 
> Thanks Heath... Sorry, I didn't mean to slam you with a bunch of emails...
> I'm sure you're plenty busy. This just seems like such a common problem
> and I can't believe that no one has solved it yet!
> 
> Thanks again.
> Reza
> >-- Original Message --
> >Reply-To: "MyFaces Discussion" <my...@incubator.apache.org>
> >Date: Wed, 6 Apr 2005 18:30:08 -0500
> >From: Heath Borders <he...@gmail.com>
> >Reply-To: hborders@mail.win.org
> >To: MyFaces Discussion <my...@incubator.apache.org>
> >Subject: Re: JSF to JFC
> >
> >
> >I don't really know anything about Tapestry, so I'm afraid I can't help
> you
> >
> >out there.
> >
> >On Apr 6, 2005 6:28 PM, reza@voicegenesis.com <re...@voicegenesis.com> 
> wrote:
> >
> >>
> >> Yeah, but it's not clear to me how I can create one presentation layer
> >and
> >> render to both thick and thin clients. Would you care to elaborate on
> how
> >> you think Tapestry/JSF combo may solve this problem?
> >>
> >> Reza
> >> >-- Original Message --
> >> >Date: Wed, 6 Apr 2005 16:13:31 -0700
> >> >From: Michael McGrady <mi...@gmail.com>
> >> >Reply-To: Michael McGrady <mi...@gmail.com>
> >> >To: MyFaces Discussion <my...@incubator.apache.org>,
> >> > reza@voicegenesis.com
> >> >Subject: Re: JSF to JFC
> >> >
> >> >
> >> >Have you checked out Tapestry?
> >> >
> >> >On 06 Apr 2005 08:52:34 -0700, Reza B'Far <re...@voicegenesis.com> 
> wrote:
> >> >> Folks:
> >> >>
> >> >> Does anyone know if there is any project anywhere that allows for
> 
> >> rendering
> >> >> of JSF to JFC? I'm looking for a presentation layer that can be
> >> rendered
> >> >> both as a thin and a thick client...not talking about XForms and 
> XUL,
> >> rather
> >> >> a framework that actually does the work of rendering to JFC widgets
> >and
> >> >HTML
> >> >> widgets (both).
> >> >>
> >> >> R
> >> >>
> >> >>
> >>
> >>
> >
> >
> >--
> >-Heath Borders-Wing
> >hborders@mail.win.org
> 
> 


-- 
-Heath Borders-Wing
hborders@mail.win.org

Re: JSF to JFC

Posted by Heath Borders <he...@gmail.com>.
I don't really know anything about Tapestry, so I'm afraid I can't help you 
out there.

On Apr 6, 2005 6:28 PM, reza@voicegenesis.com <re...@voicegenesis.com> wrote: 
> 
> Yeah, but it's not clear to me how I can create one presentation layer and
> render to both thick and thin clients. Would you care to elaborate on how
> you think Tapestry/JSF combo may solve this problem?
> 
> Reza
> >-- Original Message --
> >Date: Wed, 6 Apr 2005 16:13:31 -0700
> >From: Michael McGrady <mi...@gmail.com>
> >Reply-To: Michael McGrady <mi...@gmail.com>
> >To: MyFaces Discussion <my...@incubator.apache.org>,
> > reza@voicegenesis.com
> >Subject: Re: JSF to JFC
> >
> >
> >Have you checked out Tapestry?
> >
> >On 06 Apr 2005 08:52:34 -0700, Reza B'Far <re...@voicegenesis.com> wrote:
> >> Folks:
> >>
> >> Does anyone know if there is any project anywhere that allows for 
> rendering
> >> of JSF to JFC? I'm looking for a presentation layer that can be 
> rendered
> >> both as a thin and a thick client...not talking about XForms and XUL,
> rather
> >> a framework that actually does the work of rendering to JFC widgets and
> >HTML
> >> widgets (both).
> >>
> >> R
> >>
> >>
> 
> 


-- 
-Heath Borders-Wing
hborders@mail.win.org

RE: JSF to JFC

Posted by Reza B'Far <re...@voicegenesis.com>.
Hi Stefan:

I believe there is one feasible way to do this with JSF:

To write an XForms set of components.  If you render to XForms instead of
XHTML, etc., XForms can be used as the "intermediate" language.  XForms is
generic enough that rendering a thin-client or thick client from it is
reasonable (I've done this part before).  What I like about JSF (and MyJSF
in particular) is the elegant approach to producing the output markup
language.  The only difference would be that we'd need to figure out how to
transform the event model as well as the presentation because the nature of
events (navigation, etc.) in a thick client is quite different than a thin
client.  There is something called XForms Events so that would probably
work.

"How" to do this is fairly obvious to me.  The problem is that it's a fairly
big job and that, as you have mentioned, building it from scratch for any
one project is out of the question... however, it would make a great open
source project.

Reza

-----Original Message-----
From: Stefan Langer [mailto:myfaces@bettsockentraeger.de]
Sent: Thursday, April 07, 2005 1:17 AM
To: MyFaces Discussion
Subject: Re: JSF to JFC


Hello,

I tried something like that a while ago (pre JSF), but we stopped doing
it. Problem back then was we needed to setup our own layout and widget
language (used a custom xml dialect) which resultet in a lot of parsing
of xml and we had to develope most components from scratch. IMHO you
have to get away from your jsp pages or else you need to parse your html
and transform it into a layout for your swing app. Anything else will
produce a gui you won't be happy with. (And this is just one of many
problems)
BTW we stopped the whole thing because it would have cost us too much
time. It's easier to provide the two different presentation layers and
use same backend logic.
If you find a feasable solution be sure to report it as I'm interested
on how they solved the problems we encountered.

Regards
Stefan




Re: JSF to JFC

Posted by Stefan Langer <my...@bettsockentraeger.de>.
Hello,

I tried something like that a while ago (pre JSF), but we stopped doing 
it. Problem back then was we needed to setup our own layout and widget 
language (used a custom xml dialect) which resultet in a lot of parsing 
of xml and we had to develope most components from scratch. IMHO you 
have to get away from your jsp pages or else you need to parse your html 
and transform it into a layout for your swing app. Anything else will 
produce a gui you won't be happy with. (And this is just one of many 
problems)
BTW we stopped the whole thing because it would have cost us too much 
time. It's easier to provide the two different presentation layers and 
use same backend logic.
If you find a feasable solution be sure to report it as I'm interested 
on how they solved the problems we encountered.

Regards
Stefan


Re: JSF to JFC

Posted by re...@voicegenesis.com.
Yeah, but it's not clear to me how I can create one presentation layer and
render to both thick and thin clients.  Would you care to elaborate on how
you think Tapestry/JSF combo may solve this problem?

Reza
>-- Original Message --
>Date: Wed, 6 Apr 2005 16:13:31 -0700
>From: Michael McGrady <mi...@gmail.com>
>Reply-To: Michael McGrady <mi...@gmail.com>
>To: MyFaces Discussion <my...@incubator.apache.org>,
>        reza@voicegenesis.com
>Subject: Re: JSF to JFC
>
>
>Have you checked out Tapestry?
>
>On 06 Apr 2005 08:52:34 -0700, Reza B'Far <re...@voicegenesis.com> wrote:
>> Folks:
>> 
>> Does anyone know if there is any project anywhere that allows for rendering
>> of JSF to JFC?  I'm looking for a presentation layer that can be rendered
>> both as a thin and a thick client...not talking about XForms and XUL,
rather
>> a framework that actually does the work of rendering to JFC widgets and
>HTML
>> widgets (both).
>> 
>> R
>> 
>>



Re: JSF to JFC

Posted by Michael McGrady <mi...@gmail.com>.
Have you checked out Tapestry?

On 06 Apr 2005 08:52:34 -0700, Reza B'Far <re...@voicegenesis.com> wrote:
> Folks:
> 
> Does anyone know if there is any project anywhere that allows for rendering
> of JSF to JFC?  I'm looking for a presentation layer that can be rendered
> both as a thin and a thick client...not talking about XForms and XUL, rather
> a framework that actually does the work of rendering to JFC widgets and HTML
> widgets (both).
> 
> R
> 
>

Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Matthias Wessendorf <mw...@gmail.com>.
oh... I use them online (for reading JavaDoc and TldDoc)

-Matthias

On Apr 6, 2005 5:23 PM, Jonathan Eric Miller <je...@uchicago.edu> wrote:
> I figured that was why, but, it seems like it would be nice if the
> documentation were bundled with MyFaces so that you don't have to download
> the RI if you don't want to.
> 
> Jon
> 
> ----- Original Message -----
> From: "Matthias Wessendorf" <mw...@gmail.com>
> To: "MyFaces Discussion" <my...@incubator.apache.org>
> Sent: Wednesday, April 06, 2005 10:21 AM
> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> 
> > h: and f: is *better* documented by SPEC lead (SUN)
> > ... :-)
> >
> > -Matthias
> >
> > On Apr 6, 2005 5:13 PM, Jonathan Eric Miller <je...@uchicago.edu>
> > wrote:
> >> Same here now that you mentioned it. Actually, I've been wondering why
> >> MyFaces doesn't include docs for the f: and h: prefixes? Before, it was
> >> only
> >> x: and wap.
> >>
> >> Jon
> >>
> >> ----- Original Message -----
> >> From: "Rob Decker" <ro...@objectsource.org>
> >> To: "MyFaces Discussion" <my...@incubator.apache.org>
> >> Sent: Wednesday, April 06, 2005 9:43 AM
> >> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> >>
> >> >I only see tld docs for wap.
> >> >
> >> > --
> >> > Rob
> >> >
> >> > @objectsource.org
> >> >
> >> >
> >> > ---------- Original Message -----------
> >> > From: "Jonathan Eric Miller" <je...@uchicago.edu>
> >> > To: "MyFaces Discussion" <my...@incubator.apache.org>
> >> > Sent: Wed, 6 Apr 2005 09:20:08 -0500
> >> > Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> >> >
> >> >> Heh, took the words right out of my mouth. ;-) The TLD docs are back.
> >> >> Also,
> >> >> I like the fact that the directory name includes the "rc3" at the end.
> >> >> Seems
> >> >> trivial, but, it's helpful if you are downloading and testing a lot of
> >> >> different versions. If only there were a .zip file, I'd be in heaven!
> >> >> :-)
> >> >>
> >> >> Jon
> >> >>
> >> >> ----- Original Message -----
> >> >> From: "Sean Schofield" <se...@gmail.com>
> >> >> To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion"
> >> >> <my...@incubator.apache.org>
> >> >> Sent: Tuesday, April 05, 2005 4:47 PM
> >> >> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> >> >>
> >> >> > Just haven't gotten around to it yet.  There hasn't been a zip
> >> >> > version
> >> >> > of MyFaces up to this point but stuff like this will be added as we
> >> >> > go
> >> >> > (and when we get time.)  For now you can use the .tgz version with
> >> >> > almost and windows zip utility (winace, winrar, etc.)
> >> >> >
> >> >> > sean
> >> >> >
> >> >> > On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com>
> >> >> > wrote:
> >> >> >> Why isn't there a zip version?
> >> >> >>
> >> >> >> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com>
> >> >> >> wrote:
> >> >> >> > A new (and hopefully final) release candidate is now available.
> >> >> >> > Please use JIRA to report any siginficant bugs that you discover.
> >> >> >> >
> >> >> >> > http://cvs.apache.org/builds/myfaces/release/
> >> >> >> >
> >> >> >>
> >> >> >
> >> > ------- End of Original Message -------
> >> >
> >>
> >>
> >
> >
> > --
> > Matthias Wessendorf
> >
> 
> 


-- 
Matthias Wessendorf

Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Jonathan Eric Miller <je...@uchicago.edu>.
I figured that was why, but, it seems like it would be nice if the 
documentation were bundled with MyFaces so that you don't have to download 
the RI if you don't want to.

Jon

----- Original Message ----- 
From: "Matthias Wessendorf" <mw...@gmail.com>
To: "MyFaces Discussion" <my...@incubator.apache.org>
Sent: Wednesday, April 06, 2005 10:21 AM
Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available


> h: and f: is *better* documented by SPEC lead (SUN)
> ... :-)
>
> -Matthias
>
> On Apr 6, 2005 5:13 PM, Jonathan Eric Miller <je...@uchicago.edu> 
> wrote:
>> Same here now that you mentioned it. Actually, I've been wondering why
>> MyFaces doesn't include docs for the f: and h: prefixes? Before, it was 
>> only
>> x: and wap.
>>
>> Jon
>>
>> ----- Original Message -----
>> From: "Rob Decker" <ro...@objectsource.org>
>> To: "MyFaces Discussion" <my...@incubator.apache.org>
>> Sent: Wednesday, April 06, 2005 9:43 AM
>> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
>>
>> >I only see tld docs for wap.
>> >
>> > --
>> > Rob
>> >
>> > @objectsource.org
>> >
>> >
>> > ---------- Original Message -----------
>> > From: "Jonathan Eric Miller" <je...@uchicago.edu>
>> > To: "MyFaces Discussion" <my...@incubator.apache.org>
>> > Sent: Wed, 6 Apr 2005 09:20:08 -0500
>> > Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
>> >
>> >> Heh, took the words right out of my mouth. ;-) The TLD docs are back.
>> >> Also,
>> >> I like the fact that the directory name includes the "rc3" at the end.
>> >> Seems
>> >> trivial, but, it's helpful if you are downloading and testing a lot of
>> >> different versions. If only there were a .zip file, I'd be in heaven! 
>> >> :-)
>> >>
>> >> Jon
>> >>
>> >> ----- Original Message -----
>> >> From: "Sean Schofield" <se...@gmail.com>
>> >> To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion"
>> >> <my...@incubator.apache.org>
>> >> Sent: Tuesday, April 05, 2005 4:47 PM
>> >> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
>> >>
>> >> > Just haven't gotten around to it yet.  There hasn't been a zip 
>> >> > version
>> >> > of MyFaces up to this point but stuff like this will be added as we 
>> >> > go
>> >> > (and when we get time.)  For now you can use the .tgz version with
>> >> > almost and windows zip utility (winace, winrar, etc.)
>> >> >
>> >> > sean
>> >> >
>> >> > On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com>
>> >> > wrote:
>> >> >> Why isn't there a zip version?
>> >> >>
>> >> >> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com>
>> >> >> wrote:
>> >> >> > A new (and hopefully final) release candidate is now available.
>> >> >> > Please use JIRA to report any siginficant bugs that you discover.
>> >> >> >
>> >> >> > http://cvs.apache.org/builds/myfaces/release/
>> >> >> >
>> >> >>
>> >> >
>> > ------- End of Original Message -------
>> >
>>
>>
>
>
> -- 
> Matthias Wessendorf
> 


Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Matthias Wessendorf <mw...@gmail.com>.
h: and f: is *better* documented by SPEC lead (SUN)
... :-)

-Matthias

On Apr 6, 2005 5:13 PM, Jonathan Eric Miller <je...@uchicago.edu> wrote:
> Same here now that you mentioned it. Actually, I've been wondering why
> MyFaces doesn't include docs for the f: and h: prefixes? Before, it was only
> x: and wap.
> 
> Jon
> 
> ----- Original Message -----
> From: "Rob Decker" <ro...@objectsource.org>
> To: "MyFaces Discussion" <my...@incubator.apache.org>
> Sent: Wednesday, April 06, 2005 9:43 AM
> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> 
> >I only see tld docs for wap.
> >
> > --
> > Rob
> >
> > @objectsource.org
> >
> >
> > ---------- Original Message -----------
> > From: "Jonathan Eric Miller" <je...@uchicago.edu>
> > To: "MyFaces Discussion" <my...@incubator.apache.org>
> > Sent: Wed, 6 Apr 2005 09:20:08 -0500
> > Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> >
> >> Heh, took the words right out of my mouth. ;-) The TLD docs are back.
> >> Also,
> >> I like the fact that the directory name includes the "rc3" at the end.
> >> Seems
> >> trivial, but, it's helpful if you are downloading and testing a lot of
> >> different versions. If only there were a .zip file, I'd be in heaven! :-)
> >>
> >> Jon
> >>
> >> ----- Original Message -----
> >> From: "Sean Schofield" <se...@gmail.com>
> >> To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion"
> >> <my...@incubator.apache.org>
> >> Sent: Tuesday, April 05, 2005 4:47 PM
> >> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> >>
> >> > Just haven't gotten around to it yet.  There hasn't been a zip version
> >> > of MyFaces up to this point but stuff like this will be added as we go
> >> > (and when we get time.)  For now you can use the .tgz version with
> >> > almost and windows zip utility (winace, winrar, etc.)
> >> >
> >> > sean
> >> >
> >> > On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com>
> >> > wrote:
> >> >> Why isn't there a zip version?
> >> >>
> >> >> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com>
> >> >> wrote:
> >> >> > A new (and hopefully final) release candidate is now available.
> >> >> > Please use JIRA to report any siginficant bugs that you discover.
> >> >> >
> >> >> > http://cvs.apache.org/builds/myfaces/release/
> >> >> >
> >> >>
> >> >
> > ------- End of Original Message -------
> >
> 
> 


-- 
Matthias Wessendorf

JSF to JFC

Posted by Reza B'Far <re...@voicegenesis.com>.
Folks:

Does anyone know if there is any project anywhere that allows for rendering
of JSF to JFC?  I'm looking for a presentation layer that can be rendered
both as a thin and a thick client...not talking about XForms and XUL, rather
a framework that actually does the work of rendering to JFC widgets and HTML
widgets (both).

R




Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Jonathan Eric Miller <je...@uchicago.edu>.
Same here now that you mentioned it. Actually, I've been wondering why 
MyFaces doesn't include docs for the f: and h: prefixes? Before, it was only 
x: and wap.

Jon

----- Original Message ----- 
From: "Rob Decker" <ro...@objectsource.org>
To: "MyFaces Discussion" <my...@incubator.apache.org>
Sent: Wednesday, April 06, 2005 9:43 AM
Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available


>I only see tld docs for wap.
>
> --
> Rob
>
> @objectsource.org
>
>
> ---------- Original Message -----------
> From: "Jonathan Eric Miller" <je...@uchicago.edu>
> To: "MyFaces Discussion" <my...@incubator.apache.org>
> Sent: Wed, 6 Apr 2005 09:20:08 -0500
> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
>
>> Heh, took the words right out of my mouth. ;-) The TLD docs are back. 
>> Also,
>> I like the fact that the directory name includes the "rc3" at the end. 
>> Seems
>> trivial, but, it's helpful if you are downloading and testing a lot of
>> different versions. If only there were a .zip file, I'd be in heaven! :-)
>>
>> Jon
>>
>> ----- Original Message ----- 
>> From: "Sean Schofield" <se...@gmail.com>
>> To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion"
>> <my...@incubator.apache.org>
>> Sent: Tuesday, April 05, 2005 4:47 PM
>> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
>>
>> > Just haven't gotten around to it yet.  There hasn't been a zip version
>> > of MyFaces up to this point but stuff like this will be added as we go
>> > (and when we get time.)  For now you can use the .tgz version with
>> > almost and windows zip utility (winace, winrar, etc.)
>> >
>> > sean
>> >
>> > On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com> 
>> > wrote:
>> >> Why isn't there a zip version?
>> >>
>> >> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com> 
>> >> wrote:
>> >> > A new (and hopefully final) release candidate is now available.
>> >> > Please use JIRA to report any siginficant bugs that you discover.
>> >> >
>> >> > http://cvs.apache.org/builds/myfaces/release/
>> >> >
>> >>
>> >
> ------- End of Original Message -------
> 


Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Rob Decker <ro...@objectsource.org>.
I only see tld docs for wap. 

--
Rob

@objectsource.org


---------- Original Message -----------
From: "Jonathan Eric Miller" <je...@uchicago.edu>
To: "MyFaces Discussion" <my...@incubator.apache.org>
Sent: Wed, 6 Apr 2005 09:20:08 -0500
Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

> Heh, took the words right out of my mouth. ;-) The TLD docs are back. Also, 
> I like the fact that the directory name includes the "rc3" at the end. Seems 
> trivial, but, it's helpful if you are downloading and testing a lot of 
> different versions. If only there were a .zip file, I'd be in heaven! :-)
> 
> Jon
> 
> ----- Original Message ----- 
> From: "Sean Schofield" <se...@gmail.com>
> To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion" 
> <my...@incubator.apache.org>
> Sent: Tuesday, April 05, 2005 4:47 PM
> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> 
> > Just haven't gotten around to it yet.  There hasn't been a zip version
> > of MyFaces up to this point but stuff like this will be added as we go
> > (and when we get time.)  For now you can use the .tgz version with
> > almost and windows zip utility (winace, winrar, etc.)
> >
> > sean
> >
> > On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com> wrote:
> >> Why isn't there a zip version?
> >>
> >> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com> wrote:
> >> > A new (and hopefully final) release candidate is now available.
> >> > Please use JIRA to report any siginficant bugs that you discover.
> >> >
> >> > http://cvs.apache.org/builds/myfaces/release/
> >> >
> >>
> >
------- End of Original Message -------


Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Sean Schofield <se...@gmail.com>.
Jon,

Your script work fine but I had to make some major modifications to
simplify it.  Since I use the webapps dir to run a local copy of the
webapps in my IDE the source build was picking up all of the crap in
the classes dir (that was always the case nothing to do with your
changes.)  When I went to fix it I realized I now had to do that in
two places.  So I consolidated the list of the files to be bundled in
one spot and now we have two smaller zip and tar targets.

Thanks for contributing to MyFaces.

sean

On Apr 6, 2005 2:06 PM, Jonathan Eric Miller <je...@uchicago.edu> wrote:
> OK, here it is. I made a slight change from how I had it originally.
> Originally, I had separate properties for the .tgz and .zip file names. I
> changed it so that the properties are just for the base file name and the
> appropriate extensions are appended where appropriate.
> 
> Jon
> 
> ----- Original Message -----
> From: "Sean Schofield" <se...@gmail.com>
> To: "Jonathan Eric Miller" <je...@uchicago.edu>
> Sent: Wednesday, April 06, 2005 12:47 PM
> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> 
> > Go ahead and send me the build.xml.  I will take a look.
> >
> > sean
> >
> >
> > On Apr 6, 2005 11:54 AM, Jonathan Eric Miller <je...@uchicago.edu>
> > wrote:
> >> OK, I modified it so that it zips the src and app bundles too. I
> >> mistakenly
> >> said that I modifed the file from RC2, but, I modified it from RC3.
> >>
> >> Jon
> >>
> >> ----- Original Message -----
> >> From: "Jonathan Eric Miller" <je...@uchicago.edu>
> >> To: "MyFaces Discussion" <my...@incubator.apache.org>; "Sean
> >> Schofield" <se...@gmail.com>
> >> Sent: Wednesday, April 06, 2005 10:42 AM
> >> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> >>
> >> > Yes. I think I basically having it working. I have it working for the
> >> > bin
> >> > distribution and I can easily add the others. Basically, all I did was
> >> > copy and paste the tar task and do a replace of tar with zip in the
> >> > pasted
> >> > text (zip and tar tasks are pretty much identical) and then I added a
> >> > bin.release.bundle.zip property at the top for the file name. I didn't
> >> > actually do a CVS checkout or anything (just downloaded the src dist
> >> > for
> >> > RC2). Do I need to give you a diff or something, or, can I just give
> >> > you
> >> > the modified file?
> >> >
> >> > Jon
> >> >
> >> > ----- Original Message -----
> >> > From: "Sean Schofield" <se...@gmail.com>
> >> > To: "MyFaces Discussion" <my...@incubator.apache.org>
> >> > Sent: Wednesday, April 06, 2005 9:29 AM
> >> > Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> >> >
> >> >
> >> >> Are you familiar with Ant?  If so take a look at the build.xml script
> >> >> and feel free to tweak.  I'd like zip files too but I am tied up with
> >> >> some work stuff (and tree2 issues) right now.
> >> >>
> >> >> sean
> >> >>
> >> >>
> >> >> On Apr 6, 2005 10:20 AM, Jonathan Eric Miller <je...@uchicago.edu>
> >> >> wrote:
> >> >>> Heh, took the words right out of my mouth. ;-) The TLD docs are back.
> >> >>> Also,
> >> >>> I like the fact that the directory name includes the "rc3" at the
> >> >>> end.
> >> >>> Seems
> >> >>> trivial, but, it's helpful if you are downloading and testing a lot
> >> >>> of
> >> >>> different versions. If only there were a .zip file, I'd be in heaven!
> >> >>> :-)
> >> >>>
> >> >>> Jon
> >> >>>
> >> >>> ----- Original Message -----
> >> >>> From: "Sean Schofield" <se...@gmail.com>
> >> >>> To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion"
> >> >>> <my...@incubator.apache.org>
> >> >>> Sent: Tuesday, April 05, 2005 4:47 PM
> >> >>> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> >> >>>
> >> >>> > Just haven't gotten around to it yet.  There hasn't been a zip
> >> >>> > version
> >> >>> > of MyFaces up to this point but stuff like this will be added as we
> >> >>> > go
> >> >>> > (and when we get time.)  For now you can use the .tgz version with
> >> >>> > almost and windows zip utility (winace, winrar, etc.)
> >> >>> >
> >> >>> > sean
> >> >>> >
> >> >>> > On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com>
> >> >>> > wrote:
> >> >>> >> Why isn't there a zip version?
> >> >>> >>
> >> >>> >> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com>
> >> >>> >> wrote:
> >> >>> >> > A new (and hopefully final) release candidate is now available.
> >> >>> >> > Please use JIRA to report any siginficant bugs that you
> >> >>> >> > discover.
> >> >>> >> >
> >> >>> >> > http://cvs.apache.org/builds/myfaces/release/
> >> >>> >> >
> >> >>> >>
> >> >>> >
> >> >>>
> >> >>>
> >> >>
> >> >
> >>
> >>
> >
> 
> 
>

Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Jonathan Eric Miller <je...@uchicago.edu>.
OK, I modified it so that it zips the src and app bundles too. I mistakenly 
said that I modifed the file from RC2, but, I modified it from RC3.

Jon

----- Original Message ----- 
From: "Jonathan Eric Miller" <je...@uchicago.edu>
To: "MyFaces Discussion" <my...@incubator.apache.org>; "Sean 
Schofield" <se...@gmail.com>
Sent: Wednesday, April 06, 2005 10:42 AM
Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available


> Yes. I think I basically having it working. I have it working for the bin 
> distribution and I can easily add the others. Basically, all I did was 
> copy and paste the tar task and do a replace of tar with zip in the pasted 
> text (zip and tar tasks are pretty much identical) and then I added a 
> bin.release.bundle.zip property at the top for the file name. I didn't 
> actually do a CVS checkout or anything (just downloaded the src dist for 
> RC2). Do I need to give you a diff or something, or, can I just give you 
> the modified file?
>
> Jon
>
> ----- Original Message ----- 
> From: "Sean Schofield" <se...@gmail.com>
> To: "MyFaces Discussion" <my...@incubator.apache.org>
> Sent: Wednesday, April 06, 2005 9:29 AM
> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
>
>
>> Are you familiar with Ant?  If so take a look at the build.xml script
>> and feel free to tweak.  I'd like zip files too but I am tied up with
>> some work stuff (and tree2 issues) right now.
>>
>> sean
>>
>>
>> On Apr 6, 2005 10:20 AM, Jonathan Eric Miller <je...@uchicago.edu> 
>> wrote:
>>> Heh, took the words right out of my mouth. ;-) The TLD docs are back. 
>>> Also,
>>> I like the fact that the directory name includes the "rc3" at the end. 
>>> Seems
>>> trivial, but, it's helpful if you are downloading and testing a lot of
>>> different versions. If only there were a .zip file, I'd be in heaven! 
>>> :-)
>>>
>>> Jon
>>>
>>> ----- Original Message -----
>>> From: "Sean Schofield" <se...@gmail.com>
>>> To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion"
>>> <my...@incubator.apache.org>
>>> Sent: Tuesday, April 05, 2005 4:47 PM
>>> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
>>>
>>> > Just haven't gotten around to it yet.  There hasn't been a zip version
>>> > of MyFaces up to this point but stuff like this will be added as we go
>>> > (and when we get time.)  For now you can use the .tgz version with
>>> > almost and windows zip utility (winace, winrar, etc.)
>>> >
>>> > sean
>>> >
>>> > On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com> 
>>> > wrote:
>>> >> Why isn't there a zip version?
>>> >>
>>> >> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com> 
>>> >> wrote:
>>> >> > A new (and hopefully final) release candidate is now available.
>>> >> > Please use JIRA to report any siginficant bugs that you discover.
>>> >> >
>>> >> > http://cvs.apache.org/builds/myfaces/release/
>>> >> >
>>> >>
>>> >
>>>
>>>
>>
> 


Re: Where's RC3

Posted by Sean Schofield <se...@gmail.com>.
Website has not been updated with the new location yet.  That is why
its not in the old location.

sean


On Apr 6, 2005 12:12 PM, David Heffelfinger <dh...@gmail.com> wrote:
> http://cvs.apache.org/builds/myfaces/release/
> 
> David
> 
> On Apr 6, 2005 12:03 PM, Roger Lee, NOTiFY <ro...@notify.co.uk> wrote:
> > Can only see RC2?
> >
> > Thanks,
> >
> > Roger Lee
> >
> > Internet communications are not secure and therefore NOTiFY
> > does not accept legal responsibility for the contents of this message.
> > Although NOTiFY operates anti-virus programmes, it does not
> > accept responsibility for any damage whatsoever that is caused by
> > viruses being passed.  Any views or opinions presented are solely those
> > of the author and do not necessarily represent those of NOTiFY.
> > Replies to this email may be monitored by NOTiFY for operational or
> > business reasons.
> >
> > ----- Original Message -----
> > From: "Jonathan Eric Miller" <je...@uchicago.edu>
> > To: "MyFaces Discussion" <my...@incubator.apache.org>; "Sean
> > Schofield" <se...@gmail.com>
> > Sent: Wednesday, April 06, 2005 4:42 PM
> > Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> >
> > > Yes. I think I basically having it working. I have it working for the bin
> > > distribution and I can easily add the others. Basically, all I did was
> > > copy and paste the tar task and do a replace of tar with zip in the pasted
> > > text (zip and tar tasks are pretty much identical) and then I added a
> > > bin.release.bundle.zip property at the top for the file name. I didn't
> > > actually do a CVS checkout or anything (just downloaded the src dist for
> > > RC2). Do I need to give you a diff or something, or, can I just give you
> > > the modified file?
> > >
> > > Jon
> > >
> > > ----- Original Message -----
> > > From: "Sean Schofield" <se...@gmail.com>
> > > To: "MyFaces Discussion" <my...@incubator.apache.org>
> > > Sent: Wednesday, April 06, 2005 9:29 AM
> > > Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> > >
> > >
> > >> Are you familiar with Ant?  If so take a look at the build.xml script
> > >> and feel free to tweak.  I'd like zip files too but I am tied up with
> > >> some work stuff (and tree2 issues) right now.
> > >>
> > >> sean
> > >>
> > >>
> > >> On Apr 6, 2005 10:20 AM, Jonathan Eric Miller <je...@uchicago.edu>
> > >> wrote:
> > >>> Heh, took the words right out of my mouth. ;-) The TLD docs are back.
> > >>> Also,
> > >>> I like the fact that the directory name includes the "rc3" at the end.
> > >>> Seems
> > >>> trivial, but, it's helpful if you are downloading and testing a lot of
> > >>> different versions. If only there were a .zip file, I'd be in heaven!
> > >>> :-)
> > >>>
> > >>> Jon
> > >>>
> > >>> ----- Original Message -----
> > >>> From: "Sean Schofield" <se...@gmail.com>
> > >>> To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion"
> > >>> <my...@incubator.apache.org>
> > >>> Sent: Tuesday, April 05, 2005 4:47 PM
> > >>> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> > >>>
> > >>> > Just haven't gotten around to it yet.  There hasn't been a zip version
> > >>> > of MyFaces up to this point but stuff like this will be added as we go
> > >>> > (and when we get time.)  For now you can use the .tgz version with
> > >>> > almost and windows zip utility (winace, winrar, etc.)
> > >>> >
> > >>> > sean
> > >>> >
> > >>> > On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com>
> > >>> > wrote:
> > >>> >> Why isn't there a zip version?
> > >>> >>
> > >>> >> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com>
> > >>> >> wrote:
> > >>> >> > A new (and hopefully final) release candidate is now available.
> > >>> >> > Please use JIRA to report any siginficant bugs that you discover.
> > >>> >> >
> > >>> >> > http://cvs.apache.org/builds/myfaces/release/
> > >>> >> >
> > >>> >>
> > >>> >
> > >>>
> > >>>
> > >>
> > >
> > >
> >
> >
>

Re: Where's RC3

Posted by David Heffelfinger <dh...@gmail.com>.
http://cvs.apache.org/builds/myfaces/release/

David

On Apr 6, 2005 12:03 PM, Roger Lee, NOTiFY <ro...@notify.co.uk> wrote:
> Can only see RC2?
> 
> Thanks,
> 
> Roger Lee
> 
> Internet communications are not secure and therefore NOTiFY
> does not accept legal responsibility for the contents of this message.
> Although NOTiFY operates anti-virus programmes, it does not
> accept responsibility for any damage whatsoever that is caused by
> viruses being passed.  Any views or opinions presented are solely those
> of the author and do not necessarily represent those of NOTiFY.
> Replies to this email may be monitored by NOTiFY for operational or
> business reasons.
> 
> ----- Original Message -----
> From: "Jonathan Eric Miller" <je...@uchicago.edu>
> To: "MyFaces Discussion" <my...@incubator.apache.org>; "Sean
> Schofield" <se...@gmail.com>
> Sent: Wednesday, April 06, 2005 4:42 PM
> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> 
> > Yes. I think I basically having it working. I have it working for the bin
> > distribution and I can easily add the others. Basically, all I did was
> > copy and paste the tar task and do a replace of tar with zip in the pasted
> > text (zip and tar tasks are pretty much identical) and then I added a
> > bin.release.bundle.zip property at the top for the file name. I didn't
> > actually do a CVS checkout or anything (just downloaded the src dist for
> > RC2). Do I need to give you a diff or something, or, can I just give you
> > the modified file?
> >
> > Jon
> >
> > ----- Original Message -----
> > From: "Sean Schofield" <se...@gmail.com>
> > To: "MyFaces Discussion" <my...@incubator.apache.org>
> > Sent: Wednesday, April 06, 2005 9:29 AM
> > Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> >
> >
> >> Are you familiar with Ant?  If so take a look at the build.xml script
> >> and feel free to tweak.  I'd like zip files too but I am tied up with
> >> some work stuff (and tree2 issues) right now.
> >>
> >> sean
> >>
> >>
> >> On Apr 6, 2005 10:20 AM, Jonathan Eric Miller <je...@uchicago.edu>
> >> wrote:
> >>> Heh, took the words right out of my mouth. ;-) The TLD docs are back.
> >>> Also,
> >>> I like the fact that the directory name includes the "rc3" at the end.
> >>> Seems
> >>> trivial, but, it's helpful if you are downloading and testing a lot of
> >>> different versions. If only there were a .zip file, I'd be in heaven!
> >>> :-)
> >>>
> >>> Jon
> >>>
> >>> ----- Original Message -----
> >>> From: "Sean Schofield" <se...@gmail.com>
> >>> To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion"
> >>> <my...@incubator.apache.org>
> >>> Sent: Tuesday, April 05, 2005 4:47 PM
> >>> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> >>>
> >>> > Just haven't gotten around to it yet.  There hasn't been a zip version
> >>> > of MyFaces up to this point but stuff like this will be added as we go
> >>> > (and when we get time.)  For now you can use the .tgz version with
> >>> > almost and windows zip utility (winace, winrar, etc.)
> >>> >
> >>> > sean
> >>> >
> >>> > On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com>
> >>> > wrote:
> >>> >> Why isn't there a zip version?
> >>> >>
> >>> >> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com>
> >>> >> wrote:
> >>> >> > A new (and hopefully final) release candidate is now available.
> >>> >> > Please use JIRA to report any siginficant bugs that you discover.
> >>> >> >
> >>> >> > http://cvs.apache.org/builds/myfaces/release/
> >>> >> >
> >>> >>
> >>> >
> >>>
> >>>
> >>
> >
> >
> 
>

Where's RC3

Posted by "Roger Lee, NOTiFY" <ro...@notify.co.uk>.
Can only see RC2?

Thanks,

Roger Lee

Internet communications are not secure and therefore NOTiFY
does not accept legal responsibility for the contents of this message.
Although NOTiFY operates anti-virus programmes, it does not
accept responsibility for any damage whatsoever that is caused by
viruses being passed.  Any views or opinions presented are solely those
of the author and do not necessarily represent those of NOTiFY.
Replies to this email may be monitored by NOTiFY for operational or
business reasons.


----- Original Message ----- 
From: "Jonathan Eric Miller" <je...@uchicago.edu>
To: "MyFaces Discussion" <my...@incubator.apache.org>; "Sean 
Schofield" <se...@gmail.com>
Sent: Wednesday, April 06, 2005 4:42 PM
Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available


> Yes. I think I basically having it working. I have it working for the bin 
> distribution and I can easily add the others. Basically, all I did was 
> copy and paste the tar task and do a replace of tar with zip in the pasted 
> text (zip and tar tasks are pretty much identical) and then I added a 
> bin.release.bundle.zip property at the top for the file name. I didn't 
> actually do a CVS checkout or anything (just downloaded the src dist for 
> RC2). Do I need to give you a diff or something, or, can I just give you 
> the modified file?
>
> Jon
>
> ----- Original Message ----- 
> From: "Sean Schofield" <se...@gmail.com>
> To: "MyFaces Discussion" <my...@incubator.apache.org>
> Sent: Wednesday, April 06, 2005 9:29 AM
> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
>
>
>> Are you familiar with Ant?  If so take a look at the build.xml script
>> and feel free to tweak.  I'd like zip files too but I am tied up with
>> some work stuff (and tree2 issues) right now.
>>
>> sean
>>
>>
>> On Apr 6, 2005 10:20 AM, Jonathan Eric Miller <je...@uchicago.edu> 
>> wrote:
>>> Heh, took the words right out of my mouth. ;-) The TLD docs are back. 
>>> Also,
>>> I like the fact that the directory name includes the "rc3" at the end. 
>>> Seems
>>> trivial, but, it's helpful if you are downloading and testing a lot of
>>> different versions. If only there were a .zip file, I'd be in heaven! 
>>> :-)
>>>
>>> Jon
>>>
>>> ----- Original Message -----
>>> From: "Sean Schofield" <se...@gmail.com>
>>> To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion"
>>> <my...@incubator.apache.org>
>>> Sent: Tuesday, April 05, 2005 4:47 PM
>>> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
>>>
>>> > Just haven't gotten around to it yet.  There hasn't been a zip version
>>> > of MyFaces up to this point but stuff like this will be added as we go
>>> > (and when we get time.)  For now you can use the .tgz version with
>>> > almost and windows zip utility (winace, winrar, etc.)
>>> >
>>> > sean
>>> >
>>> > On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com> 
>>> > wrote:
>>> >> Why isn't there a zip version?
>>> >>
>>> >> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com> 
>>> >> wrote:
>>> >> > A new (and hopefully final) release candidate is now available.
>>> >> > Please use JIRA to report any siginficant bugs that you discover.
>>> >> >
>>> >> > http://cvs.apache.org/builds/myfaces/release/
>>> >> >
>>> >>
>>> >
>>>
>>>
>>
>
> 



Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Jonathan Eric Miller <je...@uchicago.edu>.
Yes. I think I basically having it working. I have it working for the bin 
distribution and I can easily add the others. Basically, all I did was copy 
and paste the tar task and do a replace of tar with zip in the pasted text 
(zip and tar tasks are pretty much identical) and then I added a 
bin.release.bundle.zip property at the top for the file name. I didn't 
actually do a CVS checkout or anything (just downloaded the src dist for 
RC2). Do I need to give you a diff or something, or, can I just give you the 
modified file?

Jon

----- Original Message ----- 
From: "Sean Schofield" <se...@gmail.com>
To: "MyFaces Discussion" <my...@incubator.apache.org>
Sent: Wednesday, April 06, 2005 9:29 AM
Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available


> Are you familiar with Ant?  If so take a look at the build.xml script
> and feel free to tweak.  I'd like zip files too but I am tied up with
> some work stuff (and tree2 issues) right now.
>
> sean
>
>
> On Apr 6, 2005 10:20 AM, Jonathan Eric Miller <je...@uchicago.edu> 
> wrote:
>> Heh, took the words right out of my mouth. ;-) The TLD docs are back. 
>> Also,
>> I like the fact that the directory name includes the "rc3" at the end. 
>> Seems
>> trivial, but, it's helpful if you are downloading and testing a lot of
>> different versions. If only there were a .zip file, I'd be in heaven! :-)
>>
>> Jon
>>
>> ----- Original Message -----
>> From: "Sean Schofield" <se...@gmail.com>
>> To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion"
>> <my...@incubator.apache.org>
>> Sent: Tuesday, April 05, 2005 4:47 PM
>> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
>>
>> > Just haven't gotten around to it yet.  There hasn't been a zip version
>> > of MyFaces up to this point but stuff like this will be added as we go
>> > (and when we get time.)  For now you can use the .tgz version with
>> > almost and windows zip utility (winace, winrar, etc.)
>> >
>> > sean
>> >
>> > On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com> 
>> > wrote:
>> >> Why isn't there a zip version?
>> >>
>> >> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com> 
>> >> wrote:
>> >> > A new (and hopefully final) release candidate is now available.
>> >> > Please use JIRA to report any siginficant bugs that you discover.
>> >> >
>> >> > http://cvs.apache.org/builds/myfaces/release/
>> >> >
>> >>
>> >
>>
>>
> 


Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Sean Schofield <se...@gmail.com>.
Are you familiar with Ant?  If so take a look at the build.xml script
and feel free to tweak.  I'd like zip files too but I am tied up with
some work stuff (and tree2 issues) right now.

sean


On Apr 6, 2005 10:20 AM, Jonathan Eric Miller <je...@uchicago.edu> wrote:
> Heh, took the words right out of my mouth. ;-) The TLD docs are back. Also,
> I like the fact that the directory name includes the "rc3" at the end. Seems
> trivial, but, it's helpful if you are downloading and testing a lot of
> different versions. If only there were a .zip file, I'd be in heaven! :-)
> 
> Jon
> 
> ----- Original Message -----
> From: "Sean Schofield" <se...@gmail.com>
> To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion"
> <my...@incubator.apache.org>
> Sent: Tuesday, April 05, 2005 4:47 PM
> Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available
> 
> > Just haven't gotten around to it yet.  There hasn't been a zip version
> > of MyFaces up to this point but stuff like this will be added as we go
> > (and when we get time.)  For now you can use the .tgz version with
> > almost and windows zip utility (winace, winrar, etc.)
> >
> > sean
> >
> > On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com> wrote:
> >> Why isn't there a zip version?
> >>
> >> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com> wrote:
> >> > A new (and hopefully final) release candidate is now available.
> >> > Please use JIRA to report any siginficant bugs that you discover.
> >> >
> >> > http://cvs.apache.org/builds/myfaces/release/
> >> >
> >>
> >
> 
>

Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Jonathan Eric Miller <je...@uchicago.edu>.
Heh, took the words right out of my mouth. ;-) The TLD docs are back. Also, 
I like the fact that the directory name includes the "rc3" at the end. Seems 
trivial, but, it's helpful if you are downloading and testing a lot of 
different versions. If only there were a .zip file, I'd be in heaven! :-)

Jon

----- Original Message ----- 
From: "Sean Schofield" <se...@gmail.com>
To: "Brandon Goodin" <br...@gmail.com>; "MyFaces Discussion" 
<my...@incubator.apache.org>
Sent: Tuesday, April 05, 2005 4:47 PM
Subject: Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available


> Just haven't gotten around to it yet.  There hasn't been a zip version
> of MyFaces up to this point but stuff like this will be added as we go
> (and when we get time.)  For now you can use the .tgz version with
> almost and windows zip utility (winace, winrar, etc.)
>
> sean
>
> On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com> wrote:
>> Why isn't there a zip version?
>>
>> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com> wrote:
>> > A new (and hopefully final) release candidate is now available.
>> > Please use JIRA to report any siginficant bugs that you discover.
>> >
>> > http://cvs.apache.org/builds/myfaces/release/
>> >
>>
> 


Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Sean Schofield <se...@gmail.com>.
Just haven't gotten around to it yet.  There hasn't been a zip version
of MyFaces up to this point but stuff like this will be added as we go
(and when we get time.)  For now you can use the .tgz version with
almost and windows zip utility (winace, winrar, etc.)

sean

On Apr 5, 2005 5:40 PM, Brandon Goodin <br...@gmail.com> wrote:
> Why isn't there a zip version?
> 
> On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com> wrote:
> > A new (and hopefully final) release candidate is now available.
> > Please use JIRA to report any siginficant bugs that you discover.
> >
> > http://cvs.apache.org/builds/myfaces/release/
> >
>

Re: [ANNOUNCEMENT] MyFaces 1.0.9 RC3 now available

Posted by Brandon Goodin <br...@gmail.com>.
Why isn't there a zip version?

On Apr 5, 2005 3:29 PM, Sean Schofield <se...@gmail.com> wrote:
> A new (and hopefully final) release candidate is now available.
> Please use JIRA to report any siginficant bugs that you discover.
> 
> http://cvs.apache.org/builds/myfaces/release/
>