Adding Dojo when not using the Shell Component

View: New views
17 Messages — Rating Filter:   Alert me  

Adding Dojo when not using the Shell Component

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

According to: http://tapestry.apache.org/tapestry4.1/javascript/index.html

By default, the Shell component will include the core dojo javascript object dojo.js, as well as the new core Tapestry javascript object - core.js. This means that you don't have to worry about how to include dojo or Tapestry javascript on any of your pages, they will already be available.
I'm currently using SiteMesh instead of the Shell component.  How would I add dojo to my SiteMesh decorator?

Thanks,

Matt

Re: Adding Dojo when not using the Shell Component

by Jessek :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

For you I think the ScriptIncludes component will make more sense:

http://tapestry.apache.org/tapestry4.1/components/general/scriptincludes.html

This is partially covered in the very incomplete 4.0 > 4.1 upgrade
guide as well:

http://tapestry.apache.org/tapestry4.1/usersguide/upgrade4.0.html

On 12/28/06, mraible <matt@...> wrote:

>
> According to: http://tapestry.apache.org/tapestry4.1/javascript/index.html
>
>
>
> > By default, the Shell component will include the core dojo javascript
> > object dojo.js, as well as the new core Tapestry javascript object -
> > core.js. This means that you don't have to worry about how to include dojo
> > or Tapestry javascript on any of your pages, they will already be
> > available.
> >
>
> I'm currently using SiteMesh instead of the Shell component.  How would I
> add dojo to my SiteMesh decorator?
>
> Thanks,
>
> Matt
> --
> View this message in context: http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8072384
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>


--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Parent Message unknown RE: Adding Dojo when not using the Shell Component

by Greg.L.Cormier :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Matt, here's how I did mine, I just dropped in the ScriptIncludes...

<html dir="ltr">
    <head>
      <meta http-equiv="Content-type" content="text/html;charset=iso-8859-1">
      <link href="global.css" type="text/css" rel="stylesheet">
      <link href="menu.css" type="text/css" rel="stylesheet">
      <script type="text/javascript" src="expandableMenu.js"></script>
      <span jwcid="@ScriptIncludes" />
      <title><span jwcid="@Insert" value="message:tooltitle" /></title>
      <meta name="DC.Subject" content="" scheme="GCCore">
...etcetcetc

-----Original Message-----
From: Jesse Kuhnert [mailto:jkuhnert@...]
Sent: Thursday, December 28, 2006 9:59 AM
To: Tapestry users
Subject: Re: Adding Dojo when not using the Shell Component


For you I think the ScriptIncludes component will make more sense:

http://tapestry.apache.org/tapestry4.1/components/general/scriptincludes.html

This is partially covered in the very incomplete 4.0 > 4.1 upgrade
guide as well:

http://tapestry.apache.org/tapestry4.1/usersguide/upgrade4.0.html

On 12/28/06, mraible <matt@...> wrote:

>
> According to: http://tapestry.apache.org/tapestry4.1/javascript/index.html
>
>
>
> > By default, the Shell component will include the core dojo javascript
> > object dojo.js, as well as the new core Tapestry javascript object -
> > core.js. This means that you don't have to worry about how to include dojo
> > or Tapestry javascript on any of your pages, they will already be
> > available.
> >
>
> I'm currently using SiteMesh instead of the Shell component.  How would I
> add dojo to my SiteMesh decorator?
>
> Thanks,
>
> Matt
> --
> View this message in context: http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8072384
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>


--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Adding Dojo when not using the Shell Component

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks - this does seem to work.  However, it also causes an issue.  For some reason, I'm now getting the good ol' "browser hang" issue.  The page looks like it's finished rendering, but the status/progress bar indicates otherwise and "hangs" at 98% (or something like that).  After about a minute, it times out and says "Done".  If I disable JavaScript, this doesn't happen.  I can deploy a demo if that helps.

Matt

Jessek wrote:
For you I think the ScriptIncludes component will make more sense:

http://tapestry.apache.org/tapestry4.1/components/general/scriptincludes.html

This is partially covered in the very incomplete 4.0 > 4.1 upgrade
guide as well:

http://tapestry.apache.org/tapestry4.1/usersguide/upgrade4.0.html

On 12/28/06, mraible <matt@raibledesigns.com> wrote:
>
> According to: http://tapestry.apache.org/tapestry4.1/javascript/index.html
>
>
>
> > By default, the Shell component will include the core dojo javascript
> > object dojo.js, as well as the new core Tapestry javascript object -
> > core.js. This means that you don't have to worry about how to include dojo
> > or Tapestry javascript on any of your pages, they will already be
> > available.
> >
>
> I'm currently using SiteMesh instead of the Shell component.  How would I
> add dojo to my SiteMesh decorator?
>
> Thanks,
>
> Matt
> --
> View this message in context: http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8072384
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>


--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org

Re: Adding Dojo when not using the Shell Component

by Jessek :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

A demo may help. Sounds like some sort of resource can't be resolved.
(I'm guessing it is probably including dojo at all )

On 12/28/06, mraible <matt@...> wrote:

>
> Thanks - this does seem to work.  However, it also causes an issue.  For some
> reason, I'm now getting the good ol' "browser hang" issue.  The page looks
> like it's finished rendering, but the status/progress bar indicates
> otherwise and "hangs" at 98% (or something like that).  After about a
> minute, it times out and says "Done".  If I disable JavaScript, this doesn't
> happen.  I can deploy a demo if that helps.
>
> Matt
>
>
> Jessek wrote:
> >
> > For you I think the ScriptIncludes component will make more sense:
> >
> > http://tapestry.apache.org/tapestry4.1/components/general/scriptincludes.html
> >
> > This is partially covered in the very incomplete 4.0 > 4.1 upgrade
> > guide as well:
> >
> > http://tapestry.apache.org/tapestry4.1/usersguide/upgrade4.0.html
> >
> > On 12/28/06, mraible <matt@...> wrote:
> >>
> >> According to:
> >> http://tapestry.apache.org/tapestry4.1/javascript/index.html
> >>
> >>
> >>
> >> > By default, the Shell component will include the core dojo javascript
> >> > object dojo.js, as well as the new core Tapestry javascript object -
> >> > core.js. This means that you don't have to worry about how to include
> >> dojo
> >> > or Tapestry javascript on any of your pages, they will already be
> >> > available.
> >> >
> >>
> >> I'm currently using SiteMesh instead of the Shell component.  How would I
> >> add dojo to my SiteMesh decorator?
> >>
> >> Thanks,
> >>
> >> Matt
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8072384
> >> Sent from the Tapestry - User mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@...
> >> For additional commands, e-mail: users-help@...
> >>
> >>
> >
> >
> > --
> > Jesse Kuhnert
> > Tapestry/Dojo team member/developer
> >
> > Open source based consulting work centered around
> > dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@...
> > For additional commands, e-mail: users-help@...
> >
> >
> >
>
> --
> View this message in context: http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8078089
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>


--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Parent Message unknown Sortable tables?

by Greg.L.Cormier :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I do vaguely remember having clickable table headers so you could sort by that column in Tapestry 3..

Can anyone point me to going about this in Tap 4.1? Even just a few breadcrumbs... In the documentation I don't see any components that look related to this.

Thanks!
Greg

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Sortable tables?

by Daniel Jue :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Contrib:table

On 12/28/06, Greg.L.Cormier@...
<Greg.L.Cormier@...> wrote:

> I do vaguely remember having clickable table headers so you could sort by that column in Tapestry 3..
>
> Can anyone point me to going about this in Tap 4.1? Even just a few breadcrumbs... In the documentation I don't see any components that look related to this.
>
> Thanks!
> Greg
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Adding Dojo when not using the Shell Component

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

It looks like Dojo is getting included, but there's a 404 somewhere along the way as well.  Here's a demo:

http://demo.raibledesigns.com/equinox-tapestry-4.1.1/userForm.html

Here's from the above URLs log file when I first access the page:

2006-12-28 14:07:58.476695500 [14:07:58.476] Compiling _jsp/_404__jsp.java

Matt


Jessek wrote:
A demo may help. Sounds like some sort of resource can't be resolved.
(I'm guessing it is probably including dojo at all )

On 12/28/06, mraible <matt@raibledesigns.com> wrote:
>
> Thanks - this does seem to work.  However, it also causes an issue.  For some
> reason, I'm now getting the good ol' "browser hang" issue.  The page looks
> like it's finished rendering, but the status/progress bar indicates
> otherwise and "hangs" at 98% (or something like that).  After about a
> minute, it times out and says "Done".  If I disable JavaScript, this doesn't
> happen.  I can deploy a demo if that helps.
>
> Matt
>
>
> Jessek wrote:
> >
> > For you I think the ScriptIncludes component will make more sense:
> >
> > http://tapestry.apache.org/tapestry4.1/components/general/scriptincludes.html
> >
> > This is partially covered in the very incomplete 4.0 > 4.1 upgrade
> > guide as well:
> >
> > http://tapestry.apache.org/tapestry4.1/usersguide/upgrade4.0.html
> >
> > On 12/28/06, mraible <matt@raibledesigns.com> wrote:
> >>
> >> According to:
> >> http://tapestry.apache.org/tapestry4.1/javascript/index.html
> >>
> >>
> >>
> >> > By default, the Shell component will include the core dojo javascript
> >> > object dojo.js, as well as the new core Tapestry javascript object -
> >> > core.js. This means that you don't have to worry about how to include
> >> dojo
> >> > or Tapestry javascript on any of your pages, they will already be
> >> > available.
> >> >
> >>
> >> I'm currently using SiteMesh instead of the Shell component.  How would I
> >> add dojo to my SiteMesh decorator?
> >>
> >> Thanks,
> >>
> >> Matt
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8072384
> >> Sent from the Tapestry - User mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> For additional commands, e-mail: users-help@tapestry.apache.org
> >>
> >>
> >
> >
> > --
> > Jesse Kuhnert
> > Tapestry/Dojo team member/developer
> >
> > Open source based consulting work centered around
> > dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> >
> >
> >
>
> --
> View this message in context: http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8078089
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>


--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org

Parent Message unknown RE: Sortable tables?

by Greg.L.Cormier :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Of course, it was in contrib :) Found it.

http://tapestry.apache.org/tapestry4.1/tapestry-contrib/componentreference/table.html

Thanks for the tip!

Greg


-----Original Message-----
From: Daniel Jue [mailto:teamphy6@...]
Sent: Thursday, December 28, 2006 2:25 PM
To: Tapestry users
Subject: Re: Sortable tables?


Contrib:table

On 12/28/06, Greg.L.Cormier@...
<Greg.L.Cormier@...> wrote:

> I do vaguely remember having clickable table headers so you could sort by that column in Tapestry 3..
>
> Can anyone point me to going about this in Tap 4.1? Even just a few breadcrumbs... In the documentation I don't see any components that look related to this.
>
> Thanks!
> Greg
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Adding Dojo when not using the Shell Component

by Jessek :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Ah, I can see what the problem is now. Or...At least why it's
"hanging". The "var calendar_start " variable isn't resolvable later
on and subsequently breaks most of the javascript.

It looks like a Tapestry bug (I think), won't know more until I run
some separate tests of my own. (you aren't using a custom component
for that DatePicker by any chance are you ? )

On 12/28/06, mraible <matt@...> wrote:

>
> It looks like Dojo is getting included, but there's a 404 somewhere along the
> way as well.  Here's a demo:
>
> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/userForm.html
>
> Here's from the above URLs log file when I first access the page:
>
> 2006-12-28 14:07:58.476695500 [14:07:58.476] Compiling _jsp/_404__jsp.java
>
> Matt
>
>
>


--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Adding Dojo when not using the Shell Component

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I'm not using a custom component for the DatePicker - just the standard stuff that comes with Tapestry.  

While the calendar JavaScript may be causing issues with the form, it doesn't explain why the following list screen hangs:

http://demo.raibledesigns.com/equinox-tapestry-4.1.1/users.html

I've included @ScriptIncludes in the source, but I don't believe it's used. To see the source, go to http://tinyurl.com/yxhhna and "view source" in your browser.

Matt

Jessek wrote:
Ah, I can see what the problem is now. Or...At least why it's
"hanging". The "var calendar_start " variable isn't resolvable later
on and subsequently breaks most of the javascript.

It looks like a Tapestry bug (I think), won't know more until I run
some separate tests of my own. (you aren't using a custom component
for that DatePicker by any chance are you ? )

On 12/28/06, mraible <matt@raibledesigns.com> wrote:
>
> It looks like Dojo is getting included, but there's a 404 somewhere along the
> way as well.  Here's a demo:
>
> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/userForm.html
>
> Here's from the above URLs log file when I first access the page:
>
> 2006-12-28 14:07:58.476695500 [14:07:58.476] Compiling _jsp/_404__jsp.java
>
> Matt
>
>
>


--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org

Re: Adding Dojo when not using the Shell Component

by Jessek :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Ahhh. . Good ol FireBug.

If you change your view to "Net" and select to see "All" in the top
(using FireBug) you'll see that assets/static/dojo/iframe_history.html
seems to be the culprit.

I think that something other than tapestry must be handling the
request in this instance. If it were tapestry and that asset service
couldn't find it a 404 response could would be returned in the very
worst case.

Could it be a web.xml servlet mapping / friendly url configuration issue ?

On 12/28/06, mraible <matt@...> wrote:

>
> I'm not using a custom component for the DatePicker - just the standard stuff
> that comes with Tapestry.
>
> While the calendar JavaScript may be causing issues with the form, it
> doesn't explain why the following list screen hangs:
>
> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/users.html
>
> I've included @ScriptIncludes in the source, but I don't believe it's used.
> To see the source, go to http://tinyurl.com/yxhhna and "view source" in your
> browser.
>
> Matt
>
>
> Jessek wrote:
> >
> > Ah, I can see what the problem is now. Or...At least why it's
> > "hanging". The "var calendar_start " variable isn't resolvable later
> > on and subsequently breaks most of the javascript.
> >
> > It looks like a Tapestry bug (I think), won't know more until I run
> > some separate tests of my own. (you aren't using a custom component
> > for that DatePicker by any chance are you ? )
> >
> > On 12/28/06, mraible <matt@...> wrote:
> >>
> >> It looks like Dojo is getting included, but there's a 404 somewhere along
> >> the
> >> way as well.  Here's a demo:
> >>
> >> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/userForm.html
> >>
> >> Here's from the above URLs log file when I first access the page:
> >>
> >> 2006-12-28 14:07:58.476695500 [14:07:58.476] Compiling
> >> _jsp/_404__jsp.java
> >>
> >> Matt
> >>
> >>
> >>
> >
> >
> > --
> > Jesse Kuhnert
> > Tapestry/Dojo team member/developer
> >
> > Open source based consulting work centered around
> > dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@...
> > For additional commands, e-mail: users-help@...
> >
> >
> >
>
> --
> View this message in context: http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8080347
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>


--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Adding Dojo when not using the Shell Component

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

It could be a friendly URL servlet-mapping situation.  I'm using *.html as my "friendly URL" extension.  I've experienced issues in the past when using .html with WebWork and Dojo. The strange thing is it works for some assets, but not others. Maybe I should try *.htm instead?  IMO, it seems strange that I'm having to change my apps more and more to workaround dojo features added to web frameworks. ;-)

I tried http://demo.raibledesigns.com/equinox-tapestry-4.1.1/assets/static/dojo/iframe_history.html and it does indeed hang.  Any idea why it doesn't fail-fast?

Matt

Jessek wrote:
Ahhh. . Good ol FireBug.

If you change your view to "Net" and select to see "All" in the top
(using FireBug) you'll see that assets/static/dojo/iframe_history.html
seems to be the culprit.

I think that something other than tapestry must be handling the
request in this instance. If it were tapestry and that asset service
couldn't find it a 404 response could would be returned in the very
worst case.

Could it be a web.xml servlet mapping / friendly url configuration issue ?

On 12/28/06, mraible <matt@raibledesigns.com> wrote:
>
> I'm not using a custom component for the DatePicker - just the standard stuff
> that comes with Tapestry.
>
> While the calendar JavaScript may be causing issues with the form, it
> doesn't explain why the following list screen hangs:
>
> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/users.html
>
> I've included @ScriptIncludes in the source, but I don't believe it's used.
> To see the source, go to http://tinyurl.com/yxhhna and "view source" in your
> browser.
>
> Matt
>
>
> Jessek wrote:
> >
> > Ah, I can see what the problem is now. Or...At least why it's
> > "hanging". The "var calendar_start " variable isn't resolvable later
> > on and subsequently breaks most of the javascript.
> >
> > It looks like a Tapestry bug (I think), won't know more until I run
> > some separate tests of my own. (you aren't using a custom component
> > for that DatePicker by any chance are you ? )
> >
> > On 12/28/06, mraible <matt@raibledesigns.com> wrote:
> >>
> >> It looks like Dojo is getting included, but there's a 404 somewhere along
> >> the
> >> way as well.  Here's a demo:
> >>
> >> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/userForm.html
> >>
> >> Here's from the above URLs log file when I first access the page:
> >>
> >> 2006-12-28 14:07:58.476695500 [14:07:58.476] Compiling
> >> _jsp/_404__jsp.java
> >>
> >> Matt
> >>
> >>
> >>
> >
> >
> > --
> > Jesse Kuhnert
> > Tapestry/Dojo team member/developer
> >
> > Open source based consulting work centered around
> > dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> >
> >
> >
>
> --
> View this message in context: http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8080347
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>


--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org

RE: Adding Dojo when not using the Shell Component

by Leffel, Daniel :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I've never been able to get Sitemesh to work with Tapestry, Dojo and
friendly URLs. The most reliable solution was to write a custom URL
encoder and differentially encode URLs based on the asset type, but even
that wasn't 100%. I finally gave up and jettisoned Sitemesh from my
project.

-----Original Message-----
From: mraible [mailto:matt@...]
Sent: Thursday, December 28, 2006 1:58 PM
To: users@...
Subject: Re: Adding Dojo when not using the Shell Component


It could be a friendly URL servlet-mapping situation.  I'm using *.html
as my
"friendly URL" extension.  I've experienced issues in the past when
using
.html with WebWork and Dojo. The strange thing is it works for some
assets,
but not others. Maybe I should try *.htm instead?  IMO, it seems strange
that I'm having to change my apps more and more to workaround dojo
features
added to web frameworks. ;-)

I tried
http://demo.raibledesigns.com/equinox-tapestry-4.1.1/assets/static/dojo/
iframe_history.html
and it does indeed hang.  Any idea why it doesn't fail-fast?

Matt


Jessek wrote:

>
> Ahhh. . Good ol FireBug.
>
> If you change your view to "Net" and select to see "All" in the top
> (using FireBug) you'll see that assets/static/dojo/iframe_history.html
> seems to be the culprit.
>
> I think that something other than tapestry must be handling the
> request in this instance. If it were tapestry and that asset service
> couldn't find it a 404 response could would be returned in the very
> worst case.
>
> Could it be a web.xml servlet mapping / friendly url configuration
issue ?
>
> On 12/28/06, mraible <matt@...> wrote:
>>
>> I'm not using a custom component for the DatePicker - just the
standard

>> stuff
>> that comes with Tapestry.
>>
>> While the calendar JavaScript may be causing issues with the form, it
>> doesn't explain why the following list screen hangs:
>>
>> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/users.html
>>
>> I've included @ScriptIncludes in the source, but I don't believe it's
>> used.
>> To see the source, go to http://tinyurl.com/yxhhna and "view source"
in

>> your
>> browser.
>>
>> Matt
>>
>>
>> Jessek wrote:
>> >
>> > Ah, I can see what the problem is now. Or...At least why it's
>> > "hanging". The "var calendar_start " variable isn't resolvable
later
>> > on and subsequently breaks most of the javascript.
>> >
>> > It looks like a Tapestry bug (I think), won't know more until I run
>> > some separate tests of my own. (you aren't using a custom component
>> > for that DatePicker by any chance are you ? )
>> >
>> > On 12/28/06, mraible <matt@...> wrote:
>> >>
>> >> It looks like Dojo is getting included, but there's a 404
somewhere

>> along
>> >> the
>> >> way as well.  Here's a demo:
>> >>
>> >> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/userForm.html
>> >>
>> >> Here's from the above URLs log file when I first access the page:
>> >>
>> >> 2006-12-28 14:07:58.476695500 [14:07:58.476] Compiling
>> >> _jsp/_404__jsp.java
>> >>
>> >> Matt
>> >>
>> >>
>> >>
>> >
>> >
>> > --
>> > Jesse Kuhnert
>> > Tapestry/Dojo team member/developer
>> >
>> > Open source based consulting work centered around
>> > dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
>> >
>> >
---------------------------------------------------------------------
>> > To unsubscribe, e-mail: users-unsubscribe@...
>> > For additional commands, e-mail: users-help@...
>> >
>> >
>> >
>>
>> --
>> View this message in context:
>>
http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2
889469.html#a8080347

>> Sent from the Tapestry - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@...
>> For additional commands, e-mail: users-help@...
>>
>>
>
>
> --
> Jesse Kuhnert
> Tapestry/Dojo team member/developer
>
> Open source based consulting work centered around
> dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>
>

--
View this message in context:
http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2
889469.html#a8080807
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Adding Dojo when not using the Shell Component

by Jessek :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I think this is less an issue with Dojo or Tapestry (or WebWork) than
it is with something else you are using. (ie sitemesh or your servlet
container).

Doing an http request for any resource should ~never~ cause a hang
like this. Tapestry won't make it hang, and Dojo only sites and waits
for an http response. (even if it's a bad one)

Given that you mentioned a 404 jsp page in your first email I'm going
to guess this is something like (sitemesh or whoever) getting an
internal error -> throwing one of those god forsaken jsp type
exception thing a majiggers -> forwarding the request or expecting it
to go to a 404.jsp page. (instead of correctly setting the http
response header to 404 not found and ~then~ rendering whatever you
want )

Something like that anyways. Do let me know what you find. I've got
100% access to every single line of code involved from
browser->server->back except for sitemesh so there isn't likely to be
any guessing/pondering what the issue is.

On 12/28/06, mraible <matt@...> wrote:

>
> It could be a friendly URL servlet-mapping situation.  I'm using *.html as my
> "friendly URL" extension.  I've experienced issues in the past when using
> .html with WebWork and Dojo. The strange thing is it works for some assets,
> but not others. Maybe I should try *.htm instead?  IMO, it seems strange
> that I'm having to change my apps more and more to workaround dojo features
> added to web frameworks. ;-)
>
> I tried
> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/assets/static/dojo/iframe_history.html
> and it does indeed hang.  Any idea why it doesn't fail-fast?
>
> Matt
>
>
> Jessek wrote:
> >
> > Ahhh. . Good ol FireBug.
> >
> > If you change your view to "Net" and select to see "All" in the top
> > (using FireBug) you'll see that assets/static/dojo/iframe_history.html
> > seems to be the culprit.
> >
> > I think that something other than tapestry must be handling the
> > request in this instance. If it were tapestry and that asset service
> > couldn't find it a 404 response could would be returned in the very
> > worst case.
> >
> > Could it be a web.xml servlet mapping / friendly url configuration issue ?
> >
> > On 12/28/06, mraible <matt@...> wrote:
> >>
> >> I'm not using a custom component for the DatePicker - just the standard
> >> stuff
> >> that comes with Tapestry.
> >>
> >> While the calendar JavaScript may be causing issues with the form, it
> >> doesn't explain why the following list screen hangs:
> >>
> >> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/users.html
> >>
> >> I've included @ScriptIncludes in the source, but I don't believe it's
> >> used.
> >> To see the source, go to http://tinyurl.com/yxhhna and "view source" in
> >> your
> >> browser.
> >>
> >> Matt
> >>
> >>
> >> Jessek wrote:
> >> >
> >> > Ah, I can see what the problem is now. Or...At least why it's
> >> > "hanging". The "var calendar_start " variable isn't resolvable later
> >> > on and subsequently breaks most of the javascript.
> >> >
> >> > It looks like a Tapestry bug (I think), won't know more until I run
> >> > some separate tests of my own. (you aren't using a custom component
> >> > for that DatePicker by any chance are you ? )
> >> >
> >> > On 12/28/06, mraible <matt@...> wrote:
> >> >>
> >> >> It looks like Dojo is getting included, but there's a 404 somewhere
> >> along
> >> >> the
> >> >> way as well.  Here's a demo:
> >> >>
> >> >> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/userForm.html
> >> >>
> >> >> Here's from the above URLs log file when I first access the page:
> >> >>
> >> >> 2006-12-28 14:07:58.476695500 [14:07:58.476] Compiling
> >> >> _jsp/_404__jsp.java
> >> >>
> >> >> Matt
> >> >>
> >> >>
> >> >>
> >> >
> >> >
> >> > --
> >> > Jesse Kuhnert
> >> > Tapestry/Dojo team member/developer
> >> >
> >> > Open source based consulting work centered around
> >> > dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
> >> >
> >> > ---------------------------------------------------------------------
> >> > To unsubscribe, e-mail: users-unsubscribe@...
> >> > For additional commands, e-mail: users-help@...
> >> >
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8080347
> >> Sent from the Tapestry - User mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@...
> >> For additional commands, e-mail: users-help@...
> >>
> >>
> >
> >
> > --
> > Jesse Kuhnert
> > Tapestry/Dojo team member/developer
> >
> > Open source based consulting work centered around
> > dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@...
> > For additional commands, e-mail: users-help@...
> >
> >
> >
>
> --
> View this message in context: http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8080807
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>


--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Adding Dojo when not using the Shell Component

by Jessek :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thinking on it more I'm fully convinced the problem is however
sitemesh integrates with <name> framework.

The iframe_history.html url is an XHR / ajax request that doesn't map
to any specific tapestry/context/whatever page and would only be
resolved correctly by the Tapestry asset service.

I'm sure the integration works differently for each framework, but
either way it looks like something that they should probably think
about resolving either way..? (I think they'll kind of owe me one
somehow when I'm done with my ognl changes anyways...if they use ognl
)

On 12/28/06, Jesse Kuhnert <jkuhnert@...> wrote:

> I think this is less an issue with Dojo or Tapestry (or WebWork) than
> it is with something else you are using. (ie sitemesh or your servlet
> container).
>
> Doing an http request for any resource should ~never~ cause a hang
> like this. Tapestry won't make it hang, and Dojo only sites and waits
> for an http response. (even if it's a bad one)
>
> Given that you mentioned a 404 jsp page in your first email I'm going
> to guess this is something like (sitemesh or whoever) getting an
> internal error -> throwing one of those god forsaken jsp type
> exception thing a majiggers -> forwarding the request or expecting it
> to go to a 404.jsp page. (instead of correctly setting the http
> response header to 404 not found and ~then~ rendering whatever you
> want )
>
> Something like that anyways. Do let me know what you find. I've got
> 100% access to every single line of code involved from
> browser->server->back except for sitemesh so there isn't likely to be
> any guessing/pondering what the issue is.
>
> On 12/28/06, mraible <matt@...> wrote:
> >
> > It could be a friendly URL servlet-mapping situation.  I'm using *.html as my
> > "friendly URL" extension.  I've experienced issues in the past when using
> > .html with WebWork and Dojo. The strange thing is it works for some assets,
> > but not others. Maybe I should try *.htm instead?  IMO, it seems strange
> > that I'm having to change my apps more and more to workaround dojo features
> > added to web frameworks. ;-)
> >
> > I tried
> > http://demo.raibledesigns.com/equinox-tapestry-4.1.1/assets/static/dojo/iframe_history.html
> > and it does indeed hang.  Any idea why it doesn't fail-fast?
> >
> > Matt
> >
> >
> > Jessek wrote:
> > >
> > > Ahhh. . Good ol FireBug.
> > >
> > > If you change your view to "Net" and select to see "All" in the top
> > > (using FireBug) you'll see that assets/static/dojo/iframe_history.html
> > > seems to be the culprit.
> > >
> > > I think that something other than tapestry must be handling the
> > > request in this instance. If it were tapestry and that asset service
> > > couldn't find it a 404 response could would be returned in the very
> > > worst case.
> > >
> > > Could it be a web.xml servlet mapping / friendly url configuration issue ?
> > >
> > > On 12/28/06, mraible <matt@...> wrote:
> > >>
> > >> I'm not using a custom component for the DatePicker - just the standard
> > >> stuff
> > >> that comes with Tapestry.
> > >>
> > >> While the calendar JavaScript may be causing issues with the form, it
> > >> doesn't explain why the following list screen hangs:
> > >>
> > >> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/users.html
> > >>
> > >> I've included @ScriptIncludes in the source, but I don't believe it's
> > >> used.
> > >> To see the source, go to http://tinyurl.com/yxhhna and "view source" in
> > >> your
> > >> browser.
> > >>
> > >> Matt
> > >>
> > >>
> > >> Jessek wrote:
> > >> >
> > >> > Ah, I can see what the problem is now. Or...At least why it's
> > >> > "hanging". The "var calendar_start " variable isn't resolvable later
> > >> > on and subsequently breaks most of the javascript.
> > >> >
> > >> > It looks like a Tapestry bug (I think), won't know more until I run
> > >> > some separate tests of my own. (you aren't using a custom component
> > >> > for that DatePicker by any chance are you ? )
> > >> >
> > >> > On 12/28/06, mraible <matt@...> wrote:
> > >> >>
> > >> >> It looks like Dojo is getting included, but there's a 404 somewhere
> > >> along
> > >> >> the
> > >> >> way as well.  Here's a demo:
> > >> >>
> > >> >> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/userForm.html
> > >> >>
> > >> >> Here's from the above URLs log file when I first access the page:
> > >> >>
> > >> >> 2006-12-28 14:07:58.476695500 [14:07:58.476] Compiling
> > >> >> _jsp/_404__jsp.java
> > >> >>
> > >> >> Matt
> > >> >>
> > >> >>
> > >> >>
> > >> >
> > >> >
> > >> > --
> > >> > Jesse Kuhnert
> > >> > Tapestry/Dojo team member/developer
> > >> >
> > >> > Open source based consulting work centered around
> > >> > dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
> > >> >
> > >> > ---------------------------------------------------------------------
> > >> > To unsubscribe, e-mail: users-unsubscribe@...
> > >> > For additional commands, e-mail: users-help@...
> > >> >
> > >> >
> > >> >
> > >>
> > >> --
> > >> View this message in context:
> > >> http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8080347
> > >> Sent from the Tapestry - User mailing list archive at Nabble.com.
> > >>
> > >>
> > >> ---------------------------------------------------------------------
> > >> To unsubscribe, e-mail: users-unsubscribe@...
> > >> For additional commands, e-mail: users-help@...
> > >>
> > >>
> > >
> > >
> > > --
> > > Jesse Kuhnert
> > > Tapestry/Dojo team member/developer
> > >
> > > Open source based consulting work centered around
> > > dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@...
> > > For additional commands, e-mail: users-help@...
> > >
> > >
> > >
> >
> > --
> > View this message in context: http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8080807
> > Sent from the Tapestry - User mailing list archive at Nabble.com.
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@...
> > For additional commands, e-mail: users-help@...
> >
> >
>
>
> --
> Jesse Kuhnert
> Tapestry/Dojo team member/developer
>
> Open source based consulting work centered around
> dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
>


--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Adding Dojo when not using the Shell Component

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Removing Scriptaculous and Prototype in my SiteMesh decorator fixed the problem.  After that, I tried upgrading to Scriptaculous 1.6.5 and that appears to fix the problem as well.

Thanks for all the responses and help!

Matt

Jessek wrote:
I think this is less an issue with Dojo or Tapestry (or WebWork) than
it is with something else you are using. (ie sitemesh or your servlet
container).

Doing an http request for any resource should ~never~ cause a hang
like this. Tapestry won't make it hang, and Dojo only sites and waits
for an http response. (even if it's a bad one)

Given that you mentioned a 404 jsp page in your first email I'm going
to guess this is something like (sitemesh or whoever) getting an
internal error -> throwing one of those god forsaken jsp type
exception thing a majiggers -> forwarding the request or expecting it
to go to a 404.jsp page. (instead of correctly setting the http
response header to 404 not found and ~then~ rendering whatever you
want )

Something like that anyways. Do let me know what you find. I've got
100% access to every single line of code involved from
browser->server->back except for sitemesh so there isn't likely to be
any guessing/pondering what the issue is.

On 12/28/06, mraible <matt@raibledesigns.com> wrote:
>
> It could be a friendly URL servlet-mapping situation.  I'm using *.html as my
> "friendly URL" extension.  I've experienced issues in the past when using
> .html with WebWork and Dojo. The strange thing is it works for some assets,
> but not others. Maybe I should try *.htm instead?  IMO, it seems strange
> that I'm having to change my apps more and more to workaround dojo features
> added to web frameworks. ;-)
>
> I tried
> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/assets/static/dojo/iframe_history.html
> and it does indeed hang.  Any idea why it doesn't fail-fast?
>
> Matt
>
>
> Jessek wrote:
> >
> > Ahhh. . Good ol FireBug.
> >
> > If you change your view to "Net" and select to see "All" in the top
> > (using FireBug) you'll see that assets/static/dojo/iframe_history.html
> > seems to be the culprit.
> >
> > I think that something other than tapestry must be handling the
> > request in this instance. If it were tapestry and that asset service
> > couldn't find it a 404 response could would be returned in the very
> > worst case.
> >
> > Could it be a web.xml servlet mapping / friendly url configuration issue ?
> >
> > On 12/28/06, mraible <matt@raibledesigns.com> wrote:
> >>
> >> I'm not using a custom component for the DatePicker - just the standard
> >> stuff
> >> that comes with Tapestry.
> >>
> >> While the calendar JavaScript may be causing issues with the form, it
> >> doesn't explain why the following list screen hangs:
> >>
> >> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/users.html
> >>
> >> I've included @ScriptIncludes in the source, but I don't believe it's
> >> used.
> >> To see the source, go to http://tinyurl.com/yxhhna and "view source" in
> >> your
> >> browser.
> >>
> >> Matt
> >>
> >>
> >> Jessek wrote:
> >> >
> >> > Ah, I can see what the problem is now. Or...At least why it's
> >> > "hanging". The "var calendar_start " variable isn't resolvable later
> >> > on and subsequently breaks most of the javascript.
> >> >
> >> > It looks like a Tapestry bug (I think), won't know more until I run
> >> > some separate tests of my own. (you aren't using a custom component
> >> > for that DatePicker by any chance are you ? )
> >> >
> >> > On 12/28/06, mraible <matt@raibledesigns.com> wrote:
> >> >>
> >> >> It looks like Dojo is getting included, but there's a 404 somewhere
> >> along
> >> >> the
> >> >> way as well.  Here's a demo:
> >> >>
> >> >> http://demo.raibledesigns.com/equinox-tapestry-4.1.1/userForm.html
> >> >>
> >> >> Here's from the above URLs log file when I first access the page:
> >> >>
> >> >> 2006-12-28 14:07:58.476695500 [14:07:58.476] Compiling
> >> >> _jsp/_404__jsp.java
> >> >>
> >> >> Matt
> >> >>
> >> >>
> >> >>
> >> >
> >> >
> >> > --
> >> > Jesse Kuhnert
> >> > Tapestry/Dojo team member/developer
> >> >
> >> > Open source based consulting work centered around
> >> > dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
> >> >
> >> > ---------------------------------------------------------------------
> >> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> > For additional commands, e-mail: users-help@tapestry.apache.org
> >> >
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8080347
> >> Sent from the Tapestry - User mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> For additional commands, e-mail: users-help@tapestry.apache.org
> >>
> >>
> >
> >
> > --
> > Jesse Kuhnert
> > Tapestry/Dojo team member/developer
> >
> > Open source based consulting work centered around
> > dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> >
> >
> >
>
> --
> View this message in context: http://www.nabble.com/Adding-Dojo-when-not-using-the-Shell-Component-tf2889469.html#a8080807
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>


--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org