Re: Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-21 Thread Josh Long

I went to try the context thing. that doesn't quite work for me yet,
though god knows im trying..
  asset name=dojoSource path=context:js/dojo_rrl/dojo.js /
   asset name=dojoPath path=context:js/dojo_rrl//
i also tried the same but with a leading /, so path =
context:/js/dojo_rrl/ etc

I made sure that by accessing [host]:8080/[context]/js/dojo_rrl/dojo.js i
could bring up dojo.js and sure enought htere it was but the entire page was
riddled with errors (ie, no dojo -- not just no images).

Anyway, thanks again for your continued indulgence,

Josh


On 11/20/06, Josh Long [EMAIL PROTECTED]  wrote:


eep.. ok, wait, whats the fix?

Actually, err, I don't think it's (strictly) a jetty bug, either, as my
test environment (tomcat) is dojo image-less as well.

What was the indication it was a jetty bug for you? How'd you fix it or
work around it?

Josh

On 11/19/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:

 Just took a look at this myself and found that images not showing up are
 a
 jetty bug. At least for me. I could be totally wrong, but since I had to
 add
 relative resource css path support to the Tapestry asset service it was
 easier to track down.

 The reason it works with the built in dojo version is because Tapestry
 manages ~all~ resource access for those paths.

 --
 Jesse Kuhnert
 Tapestry/Dojo/(and a dash of TestNG), team member/developer

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





Re: Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-18 Thread Sam Gendler

For what it is worth, I had problems (using a fairly old developer
snapshot of 4.1) getting a custom built dojo to work, too.  If you
continue to have problems, I solved it by using the built-in dojo (for
now, assuming it will be fixed eventually) and then put my custom
module in the classpath at the same relative location as the built-in
dojo. It wasn't pretty, but it got me up and running with my custom
module without forcing me into upgrading to the latest snapshot (I
didn't know the stability, so preferred to stick with what I had).

--sam



On 11/18/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:

You can now correctly include custom dojo builds as a context: resource or
classpath resource.

As for images not showing up, I would suggest trying to turn on
xmlhttprequest logging (via FireBug) to find one of the images not showing
up and trying to figure out who is handling serving that resource and why
it's not working. The generic this image has errors message doesn't seem
to say enough. Is your browser printing that image message out or something
else?

On 11/17/06, Josh Long [EMAIL PROTECTED] wrote:

 Also, fwiw, I'm more than content to just build a custom tapestry edition
 and modify the dojo thats included in that particular process. That would
 also solve my issue with making the various tapestry files i use part of
 the
 build as well: i can just modify your working profile and modify your dojo
 build : 2 birds with one pseudo-automated stone.

 Only thing is, I never did get how I would build tapestry and deploy it to
 my repository given that I would like to avoid always patching your pom to
 get it to deploy somewhere else..

 That's just another option and any insight is appreciated,

 Thanks,
 Josh


 On 11/17/06, Josh Long [EMAIL PROTECTED] wrote:
 
  OK I just got a chance to dig back into this very problematic issue--
  unfortunately the issue is still present. No images for the drop down or
  anything...
 
  I svn updated my dojo build and used it to build a new
  release/profile/edition/blah of dojo. I copied the resulting release
  directory into a resources/ folder of a  maven project and installed
 that
  project onto my classpath cuz i cant find a way to just get tpaestry to
  reference it from a context location (as opposed to a classpath
 location). I
  loaded my app (which in turn grabbed the latest and greatest tapestry
 build)
  and set the dojoSource/dojoPath params on the shell to the correct value
 (i
  know because the code all functions except the buttons/images) and its
 still
  not working... .
 
  Any help is appreciated,
 
  Thanks,
  Josh
 
 
 
 
 
  On 11/15/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:
  
   Fixed and deploying now. (I think... )
  
   On 11/15/06, Josh Long [EMAIL PROTECTED] wrote:
   
Oh man, so there _is_ a cure. Wonderful news.
   
I was pulling out my hair(s -- were down to just a few at this point
   that
have the staying power required of a programmers head of hair)..
   
Thanks again Jesse, let me know if there's any more feedback u might
need/anything I could (possibly) do.. :/
   
Thanks,
Josh
   
On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:

 Almost done, just a couple things to fix up on the dojo side
 first.
 (probably the part that will take the longest)

 On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:
 
  That doesn't sound like much fun. Sorry :/
 
  p.s. i'm working on it now so it'll likely be fixed today or
   tomorrow
 
  On 11/14/06, Josh Long  [EMAIL PROTECTED]  wrote:
  
   I think... that the original dojo/ in the tapestry jar is
   shadowing
 mine
   and
   so now whether i use dojoSource = .. and dojoPath or not, the
   same
 204k
   dojo.js is loaded. (this despite a few cache clearings)
  
   Anyway, that's a no-go..
  
   Thanks,
   Josh
  
  
   On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
   
Thats an idea! .. lemme give it a go and ill get back to
   you...
   
Thanks,
josh
   
On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:

 HmmI wonder what would happen if you renamed your
rrl_dojo_04
 directory
 to dojo ?

 On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
 
  I... dont see any errors in the logs... and that would
 be
   kind
 of
 weird
  because the images in my own custom widgets load just
   fine...
 
  And in fact it would be kind of weird if only because
 the
images
   in
 the
  default dojo distro (the one in the jars themselves)
 load
   just
   fine..
 
  Thanks,
  Josh
 
  On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:
  
   Contains Errors ? Does your server show any errors?
  
   Is it possible 

Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-17 Thread Josh Long

Also, fwiw, I'm more than content to just build a custom tapestry edition
and modify the dojo thats included in that particular process. That would
also solve my issue with making the various tapestry files i use part of the
build as well: i can just modify your working profile and modify your dojo
build : 2 birds with one pseudo-automated stone.

Only thing is, I never did get how I would build tapestry and deploy it to
my repository given that I would like to avoid always patching your pom to
get it to deploy somewhere else..

That's just another option and any insight is appreciated,

Thanks,
Josh


On 11/17/06, Josh Long [EMAIL PROTECTED] wrote:


OK I just got a chance to dig back into this very problematic issue--
unfortunately the issue is still present. No images for the drop down or
anything...

I svn updated my dojo build and used it to build a new
release/profile/edition/blah of dojo. I copied the resulting release
directory into a resources/ folder of a  maven project and installed that
project onto my classpath cuz i cant find a way to just get tpaestry to
reference it from a context location (as opposed to a classpath location). I
loaded my app (which in turn grabbed the latest and greatest tapestry build)
and set the dojoSource/dojoPath params on the shell to the correct value (i
know because the code all functions except the buttons/images) and its still
not working... .

Any help is appreciated,

Thanks,
Josh





On 11/15/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:

 Fixed and deploying now. (I think... )

 On 11/15/06, Josh Long [EMAIL PROTECTED] wrote:
 
  Oh man, so there _is_ a cure. Wonderful news.
 
  I was pulling out my hair(s -- were down to just a few at this point
 that
  have the staying power required of a programmers head of hair)..
 
  Thanks again Jesse, let me know if there's any more feedback u might
  need/anything I could (possibly) do.. :/
 
  Thanks,
  Josh
 
  On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:
  
   Almost done, just a couple things to fix up on the dojo side first.
   (probably the part that will take the longest)
  
   On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:
   
That doesn't sound like much fun. Sorry :/
   
p.s. i'm working on it now so it'll likely be fixed today or
 tomorrow
   
On 11/14/06, Josh Long  [EMAIL PROTECTED]  wrote:

 I think... that the original dojo/ in the tapestry jar is
 shadowing
   mine
 and
 so now whether i use dojoSource = .. and dojoPath or not, the
 same
   204k
 dojo.js is loaded. (this despite a few cache clearings)

 Anyway, that's a no-go..

 Thanks,
 Josh


 On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
 
  Thats an idea! .. lemme give it a go and ill get back to
 you...
 
  Thanks,
  josh
 
  On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:
  
   HmmI wonder what would happen if you renamed your
  rrl_dojo_04
   directory
   to dojo ?
  
   On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
   
I... dont see any errors in the logs... and that would be
 kind
   of
   weird
because the images in my own custom widgets load just
 fine...
   
And in fact it would be kind of weird if only because the
  images
 in
   the
default dojo distro (the one in the jars themselves) load
 just
 fine..
   
Thanks,
Josh
   
On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:

 Contains Errors ? Does your server show any errors?

 Is it possible that jetty or tomcat are deciding to
  interfere
 with
   the
 images as well?

 On 11/14/06, Josh Long  [EMAIL PROTECTED]  wrote:
 
  interesting... my firebug doesnt show the path to the
  image
 (nor
   does
it
  even say its requested it) in either the known-to-work
   version

   that
 comes
  back when i remove the dojoSource/dojoPath params or
 in my
 custom
build
 )
 
 
  However, I moused over oen fo the images and viewed
 the
 properties
   for
 the
  image (that is, i do have a blank square that acts as
 an
   image

   where
the
  image should be) and the source is:
 
 
 

   

  
 
 
http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png
  
 
  i went ot that url and got:
 
  The image
  
 

   
  
  
  
http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png


  
  cannot be displayed, because it contains errors.
 
  Anyway, thanks for your prompt reply,
 
  Josh
 

Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-15 Thread Josh Long

Oh man, so there _is_ a cure. Wonderful news.

I was pulling out my hair(s -- were down to just a few at this point that
have the staying power required of a programmers head of hair)..

Thanks again Jesse, let me know if there's any more feedback u might
need/anything I could (possibly) do.. :/

Thanks,
Josh

On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:


Almost done, just a couple things to fix up on the dojo side first.
(probably the part that will take the longest)

On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:

 That doesn't sound like much fun. Sorry :/

 p.s. i'm working on it now so it'll likely be fixed today or tomorrow

 On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
 
  I think... that the original dojo/ in the tapestry jar is shadowing
mine
  and
  so now whether i use dojoSource = .. and dojoPath or not, the same
204k
  dojo.js is loaded. (this despite a few cache clearings)
 
  Anyway, that's a no-go..
 
  Thanks,
  Josh
 
 
  On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
  
   Thats an idea! .. lemme give it a go and ill get back to you...
  
   Thanks,
   josh
  
   On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:
   
HmmI wonder what would happen if you renamed your rrl_dojo_04
directory
to dojo ?
   
On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:

 I... dont see any errors in the logs... and that would be kind
of
weird
 because the images in my own custom widgets load just fine...

 And in fact it would be kind of weird if only because the images
  in
the
 default dojo distro (the one in the jars themselves) load just
  fine..

 Thanks,
 Josh

 On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:
 
  Contains Errors ? Does your server show any errors?
 
  Is it possible that jetty or tomcat are deciding to interfere
  with
the
  images as well?
 
  On 11/14/06, Josh Long  [EMAIL PROTECTED]  wrote:
  
   interesting... my firebug doesnt show the path to the image
  (nor
does
 it
   even say its requested it) in either the known-to-work
version
 
that
  comes
   back when i remove the dojoSource/dojoPath params or in my
  custom
 build
  )
  
  
   However, I moused over oen fo the images and viewed the
  properties
for
  the
   image (that is, i do have a blank square that acts as an
image
 
where
 the
   image should be) and the source is:
  
  
  
 

 
http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png
   
  
   i went ot that url and got:
  
   The image
   
  
 

   
http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png
 
   
   cannot be displayed, because it contains errors.
  
   Anyway, thanks for your prompt reply,
  
   Josh
  
  
   On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED]  wrote:
   
Do you have FireBug installed? (or fiddler for ie)
   
Can you track the url request for one of these images that
aren't
   showing
up
and paste it into your location bar to hit it directly and
  tell
me
  what
happens?
   
On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:

 Images aren't showing up if I create my own dojo build
and
then
   instruct
 tapestry to use that buidl. Everything else seems to
work
fine,
 but
   the
 images for, say, the autocompleter dont show up.

 I'm not sure if this is a dojo or a tapestry question.

 Any help would be appreciated.

 Josh


   
   
--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team
member/developer
   
Open source based consulting work centered around
dojo/tapestry/tacos/hivemind.
  http://blog.opencomponentry.com
   
   
  
  
 
 
  --
  Jesse Kuhnert
  Tapestry/Dojo/(and a dash of TestNG), team member/developer
 
  Open source based consulting work centered around
  dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
 
 


   
   
--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer
   
Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
   
   
  
 
 


 --
 Jesse Kuhnert
 Tapestry/Dojo/(and a dash of TestNG), team member/developer

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




--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. 

Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-15 Thread Jesse Kuhnert

Fixed and deploying now. (I think... )

On 11/15/06, Josh Long [EMAIL PROTECTED] wrote:


Oh man, so there _is_ a cure. Wonderful news.

I was pulling out my hair(s -- were down to just a few at this point that
have the staying power required of a programmers head of hair)..

Thanks again Jesse, let me know if there's any more feedback u might
need/anything I could (possibly) do.. :/

Thanks,
Josh

On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:

 Almost done, just a couple things to fix up on the dojo side first.
 (probably the part that will take the longest)

 On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:
 
  That doesn't sound like much fun. Sorry :/
 
  p.s. i'm working on it now so it'll likely be fixed today or tomorrow
 
  On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
  
   I think... that the original dojo/ in the tapestry jar is shadowing
 mine
   and
   so now whether i use dojoSource = .. and dojoPath or not, the same
 204k
   dojo.js is loaded. (this despite a few cache clearings)
  
   Anyway, that's a no-go..
  
   Thanks,
   Josh
  
  
   On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
   
Thats an idea! .. lemme give it a go and ill get back to you...
   
Thanks,
josh
   
On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:

 HmmI wonder what would happen if you renamed your
rrl_dojo_04
 directory
 to dojo ?

 On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:
 
  I... dont see any errors in the logs... and that would be kind
 of
 weird
  because the images in my own custom widgets load just fine...
 
  And in fact it would be kind of weird if only because the
images
   in
 the
  default dojo distro (the one in the jars themselves) load just
   fine..
 
  Thanks,
  Josh
 
  On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:
  
   Contains Errors ? Does your server show any errors?
  
   Is it possible that jetty or tomcat are deciding to
interfere
   with
 the
   images as well?
  
   On 11/14/06, Josh Long  [EMAIL PROTECTED]  wrote:
   
interesting... my firebug doesnt show the path to the
image
   (nor
 does
  it
even say its requested it) in either the known-to-work
 version
  
 that
   comes
back when i remove the dojoSource/dojoPath params or in my
   custom
  build
   )
   
   
However, I moused over oen fo the images and viewed the
   properties
 for
   the
image (that is, i do have a blank square that acts as an
 image
  
 where
  the
image should be) and the source is:
   
   
   
  
 
  

http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png

   
i went ot that url and got:
   
The image

   
  
 


http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png
  

cannot be displayed, because it contains errors.
   
Anyway, thanks for your prompt reply,
   
Josh
   
   
On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED]  wrote:

 Do you have FireBug installed? (or fiddler for ie)

 Can you track the url request for one of these images
that
 aren't
showing
 up
 and paste it into your location bar to hit it directly
and
   tell
 me
   what
 happens?

 On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
 
  Images aren't showing up if I create my own dojo build
 and
 then
instruct
  tapestry to use that buidl. Everything else seems to
 work
 fine,
  but
the
  images for, say, the autocompleter dont show up.
 
  I'm not sure if this is a dojo or a tapestry question.
 
  Any help would be appreciated.
 
  Josh
 
 


 --
 Jesse Kuhnert
 Tapestry/Dojo/(and a dash of TestNG), team
 member/developer

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


   
   
  
  
   --
   Jesse Kuhnert
   Tapestry/Dojo/(and a dash of TestNG), team member/developer
  
   Open source based consulting work centered around
   dojo/tapestry/tacos/hivemind.
http://blog.opencomponentry.com
  
  
 
 


 --
 Jesse Kuhnert
 Tapestry/Dojo/(and a dash of TestNG), team member/developer

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


   
  
  
 
 
  --
  Jesse Kuhnert
  Tapestry/Dojo/(and a dash of TestNG), team member/developer
 
  Open source 

Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-14 Thread Jesse Kuhnert

Do you have FireBug installed? (or fiddler for ie)

Can you track the url request for one of these images that aren't showing up
and paste it into your location bar to hit it directly and tell me what
happens?

On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:


Images aren't showing up if I create my own dojo build and then instruct
tapestry to use that buidl. Everything else seems to work fine, but the
images for, say, the autocompleter dont show up.

I'm not sure if this is a dojo or a tapestry question.

Any help would be appreciated.

Josh





--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

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


Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-14 Thread Josh Long

interesting... my firebug doesnt show the path to the image (nor does it
even say its requested it) in either the known-to-work version that comes
back when i remove the dojoSource/dojoPath params or in my custom build )


However, I moused over oen fo the images and viewed the properties for the
image (that is, i do have a blank square that acts as an image where the
image should be) and the source is:

http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png

i went ot that url and got:

The image
http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png;
cannot be displayed, because it contains errors.

Anyway, thanks for your prompt reply,

Josh


On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:


Do you have FireBug installed? (or fiddler for ie)

Can you track the url request for one of these images that aren't showing
up
and paste it into your location bar to hit it directly and tell me what
happens?

On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:

 Images aren't showing up if I create my own dojo build and then instruct
 tapestry to use that buidl. Everything else seems to work fine, but the
 images for, say, the autocompleter dont show up.

 I'm not sure if this is a dojo or a tapestry question.

 Any help would be appreciated.

 Josh




--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

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




Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-14 Thread Josh Long

I... dont see any errors in the logs... and that would be kind of weird
because the images in my own custom widgets load just fine...

And in fact it would be kind of weird if only because the images in the
default dojo distro (the one in the jars themselves) load just fine..

Thanks,
Josh

On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:


Contains Errors ? Does your server show any errors?

Is it possible that jetty or tomcat are deciding to interfere with the
images as well?

On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:

 interesting... my firebug doesnt show the path to the image (nor does it
 even say its requested it) in either the known-to-work version that
comes
 back when i remove the dojoSource/dojoPath params or in my custom build
)


 However, I moused over oen fo the images and viewed the properties for
the
 image (that is, i do have a blank square that acts as an image where the
 image should be) and the source is:



http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png

 i went ot that url and got:

 The image
 

http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png
 
 cannot be displayed, because it contains errors.

 Anyway, thanks for your prompt reply,

 Josh


 On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:
 
  Do you have FireBug installed? (or fiddler for ie)
 
  Can you track the url request for one of these images that aren't
 showing
  up
  and paste it into your location bar to hit it directly and tell me
what
  happens?
 
  On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:
  
   Images aren't showing up if I create my own dojo build and then
 instruct
   tapestry to use that buidl. Everything else seems to work fine, but
 the
   images for, say, the autocompleter dont show up.
  
   I'm not sure if this is a dojo or a tapestry question.
  
   Any help would be appreciated.
  
   Josh
  
  
 
 
  --
  Jesse Kuhnert
  Tapestry/Dojo/(and a dash of TestNG), team member/developer
 
  Open source based consulting work centered around
  dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
 
 




--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

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




Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-14 Thread Jesse Kuhnert

HmmI wonder what would happen if you renamed your rrl_dojo_04 directory
to dojo ?

On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:


I... dont see any errors in the logs... and that would be kind of weird
because the images in my own custom widgets load just fine...

And in fact it would be kind of weird if only because the images in the
default dojo distro (the one in the jars themselves) load just fine..

Thanks,
Josh

On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:

 Contains Errors ? Does your server show any errors?

 Is it possible that jetty or tomcat are deciding to interfere with the
 images as well?

 On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:
 
  interesting... my firebug doesnt show the path to the image (nor does
it
  even say its requested it) in either the known-to-work version that
 comes
  back when i remove the dojoSource/dojoPath params or in my custom
build
 )
 
 
  However, I moused over oen fo the images and viewed the properties for
 the
  image (that is, i do have a blank square that acts as an image where
the
  image should be) and the source is:
 
 
 

http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png
 
  i went ot that url and got:
 
  The image
  
 

http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png
  
  cannot be displayed, because it contains errors.
 
  Anyway, thanks for your prompt reply,
 
  Josh
 
 
  On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:
  
   Do you have FireBug installed? (or fiddler for ie)
  
   Can you track the url request for one of these images that aren't
  showing
   up
   and paste it into your location bar to hit it directly and tell me
 what
   happens?
  
   On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:
   
Images aren't showing up if I create my own dojo build and then
  instruct
tapestry to use that buidl. Everything else seems to work fine,
but
  the
images for, say, the autocompleter dont show up.
   
I'm not sure if this is a dojo or a tapestry question.
   
Any help would be appreciated.
   
Josh
   
   
  
  
   --
   Jesse Kuhnert
   Tapestry/Dojo/(and a dash of TestNG), team member/developer
  
   Open source based consulting work centered around
   dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
  
  
 
 


 --
 Jesse Kuhnert
 Tapestry/Dojo/(and a dash of TestNG), team member/developer

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







--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

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


Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-14 Thread Josh Long

Thats an idea! .. lemme give it a go and ill get back to you...

Thanks,
josh

On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:


HmmI wonder what would happen if you renamed your rrl_dojo_04
directory
to dojo ?

On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:

 I... dont see any errors in the logs... and that would be kind of weird
 because the images in my own custom widgets load just fine...

 And in fact it would be kind of weird if only because the images in the
 default dojo distro (the one in the jars themselves) load just fine..

 Thanks,
 Josh

 On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:
 
  Contains Errors ? Does your server show any errors?
 
  Is it possible that jetty or tomcat are deciding to interfere with the
  images as well?
 
  On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:
  
   interesting... my firebug doesnt show the path to the image (nor
does
 it
   even say its requested it) in either the known-to-work version that
  comes
   back when i remove the dojoSource/dojoPath params or in my custom
 build
  )
  
  
   However, I moused over oen fo the images and viewed the properties
for
  the
   image (that is, i do have a blank square that acts as an image where
 the
   image should be) and the source is:
  
  
  
 

http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png
  
   i went ot that url and got:
  
   The image
   
  
 

http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png
   
   cannot be displayed, because it contains errors.
  
   Anyway, thanks for your prompt reply,
  
   Josh
  
  
   On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:
   
Do you have FireBug installed? (or fiddler for ie)
   
Can you track the url request for one of these images that aren't
   showing
up
and paste it into your location bar to hit it directly and tell me
  what
happens?
   
On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:

 Images aren't showing up if I create my own dojo build and then
   instruct
 tapestry to use that buidl. Everything else seems to work fine,
 but
   the
 images for, say, the autocompleter dont show up.

 I'm not sure if this is a dojo or a tapestry question.

 Any help would be appreciated.

 Josh


   
   
--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer
   
Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
   
   
  
  
 
 
  --
  Jesse Kuhnert
  Tapestry/Dojo/(and a dash of TestNG), team member/developer
 
  Open source based consulting work centered around
  dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
 
 




--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

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




Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-14 Thread Josh Long

I think... that the original dojo/ in the tapestry jar is shadowing mine and
so now whether i use dojoSource = .. and dojoPath or not, the same 204k
dojo.js is loaded. (this despite a few cache clearings)

Anyway, that's a no-go..

Thanks,
Josh


On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:


Thats an idea! .. lemme give it a go and ill get back to you...

Thanks,
josh

On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:

 HmmI wonder what would happen if you renamed your rrl_dojo_04
 directory
 to dojo ?

 On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:
 
  I... dont see any errors in the logs... and that would be kind of
 weird
  because the images in my own custom widgets load just fine...
 
  And in fact it would be kind of weird if only because the images in
 the
  default dojo distro (the one in the jars themselves) load just fine..
 
  Thanks,
  Josh
 
  On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:
  
   Contains Errors ? Does your server show any errors?
  
   Is it possible that jetty or tomcat are deciding to interfere with
 the
   images as well?
  
   On 11/14/06, Josh Long  [EMAIL PROTECTED]  wrote:
   
interesting... my firebug doesnt show the path to the image (nor
 does
  it
even say its requested it) in either the known-to-work version
 that
   comes
back when i remove the dojoSource/dojoPath params or in my custom
  build
   )
   
   
However, I moused over oen fo the images and viewed the properties
 for
   the
image (that is, i do have a blank square that acts as an image
 where
  the
image should be) and the source is:
   
   
   
  
  
http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png

   
i went ot that url and got:
   
The image

   
  
 
 
http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png

cannot be displayed, because it contains errors.
   
Anyway, thanks for your prompt reply,
   
Josh
   
   
On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED]  wrote:

 Do you have FireBug installed? (or fiddler for ie)

 Can you track the url request for one of these images that
 aren't
showing
 up
 and paste it into your location bar to hit it directly and tell
 me
   what
 happens?

 On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
 
  Images aren't showing up if I create my own dojo build and
 then
instruct
  tapestry to use that buidl. Everything else seems to work
 fine,
  but
the
  images for, say, the autocompleter dont show up.
 
  I'm not sure if this is a dojo or a tapestry question.
 
  Any help would be appreciated.
 
  Josh
 
 


 --
 Jesse Kuhnert
 Tapestry/Dojo/(and a dash of TestNG), team member/developer

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


   
   
  
  
   --
   Jesse Kuhnert
   Tapestry/Dojo/(and a dash of TestNG), team member/developer
  
   Open source based consulting work centered around
   dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
  
  
 
 


 --
 Jesse Kuhnert
 Tapestry/Dojo/(and a dash of TestNG), team member/developer

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





Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-14 Thread Jesse Kuhnert

That doesn't sound like much fun. Sorry :/

p.s. i'm working on it now so it'll likely be fixed today or tomorrow

On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:


I think... that the original dojo/ in the tapestry jar is shadowing mine
and
so now whether i use dojoSource = .. and dojoPath or not, the same 204k
dojo.js is loaded. (this despite a few cache clearings)

Anyway, that's a no-go..

Thanks,
Josh


On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:

 Thats an idea! .. lemme give it a go and ill get back to you...

 Thanks,
 josh

 On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:
 
  HmmI wonder what would happen if you renamed your rrl_dojo_04
  directory
  to dojo ?
 
  On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:
  
   I... dont see any errors in the logs... and that would be kind of
  weird
   because the images in my own custom widgets load just fine...
  
   And in fact it would be kind of weird if only because the images in
  the
   default dojo distro (the one in the jars themselves) load just
fine..
  
   Thanks,
   Josh
  
   On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:
   
Contains Errors ? Does your server show any errors?
   
Is it possible that jetty or tomcat are deciding to interfere with
  the
images as well?
   
On 11/14/06, Josh Long  [EMAIL PROTECTED]  wrote:

 interesting... my firebug doesnt show the path to the image (nor
  does
   it
 even say its requested it) in either the known-to-work version
  that
comes
 back when i remove the dojoSource/dojoPath params or in my
custom
   build
)


 However, I moused over oen fo the images and viewed the
properties
  for
the
 image (that is, i do have a blank square that acts as an image
  where
   the
 image should be) and the source is:



   
  
http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png
 

 i went ot that url and got:

 The image
 

   
  
 
http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png
 
 cannot be displayed, because it contains errors.

 Anyway, thanks for your prompt reply,

 Josh


 On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED]  wrote:
 
  Do you have FireBug installed? (or fiddler for ie)
 
  Can you track the url request for one of these images that
  aren't
 showing
  up
  and paste it into your location bar to hit it directly and
tell
  me
what
  happens?
 
  On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
  
   Images aren't showing up if I create my own dojo build and
  then
 instruct
   tapestry to use that buidl. Everything else seems to work
  fine,
   but
 the
   images for, say, the autocompleter dont show up.
  
   I'm not sure if this is a dojo or a tapestry question.
  
   Any help would be appreciated.
  
   Josh
  
  
 
 
  --
  Jesse Kuhnert
  Tapestry/Dojo/(and a dash of TestNG), team member/developer
 
  Open source based consulting work centered around
  dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
 
 


   
   
--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer
   
Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
   
   
  
  
 
 
  --
  Jesse Kuhnert
  Tapestry/Dojo/(and a dash of TestNG), team member/developer
 
  Open source based consulting work centered around
  dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
 
 






--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

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


Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-14 Thread Jesse Kuhnert

Almost done, just a couple things to fix up on the dojo side first.
(probably the part that will take the longest)

On 11/14/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:


That doesn't sound like much fun. Sorry :/

p.s. i'm working on it now so it'll likely be fixed today or tomorrow

On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:

 I think... that the original dojo/ in the tapestry jar is shadowing mine
 and
 so now whether i use dojoSource = .. and dojoPath or not, the same 204k
 dojo.js is loaded. (this despite a few cache clearings)

 Anyway, that's a no-go..

 Thanks,
 Josh


 On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
 
  Thats an idea! .. lemme give it a go and ill get back to you...
 
  Thanks,
  josh
 
  On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:
  
   HmmI wonder what would happen if you renamed your rrl_dojo_04
   directory
   to dojo ?
  
   On 11/14/06, Josh Long [EMAIL PROTECTED] wrote:
   
I... dont see any errors in the logs... and that would be kind of
   weird
because the images in my own custom widgets load just fine...
   
And in fact it would be kind of weird if only because the images
 in
   the
default dojo distro (the one in the jars themselves) load just
 fine..
   
Thanks,
Josh
   
On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED] wrote:

 Contains Errors ? Does your server show any errors?

 Is it possible that jetty or tomcat are deciding to interfere
 with
   the
 images as well?

 On 11/14/06, Josh Long  [EMAIL PROTECTED]  wrote:
 
  interesting... my firebug doesnt show the path to the image
 (nor
   does
it
  even say its requested it) in either the known-to-work version

   that
 comes
  back when i remove the dojoSource/dojoPath params or in my
 custom
build
 )
 
 
  However, I moused over oen fo the images and viewed the
 properties
   for
 the
  image (that is, i do have a blank square that acts as an image

   where
the
  image should be) and the source is:
 
 
 

   
 
http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png
  
 
  i went ot that url and got:
 
  The image
  
 

   
   
http://192.168.2.107:8080/view/assets/static/rrl_dojo_04/src/widget/templates/images/combo_box_arrow.png

  
  cannot be displayed, because it contains errors.
 
  Anyway, thanks for your prompt reply,
 
  Josh
 
 
  On 11/14/06, Jesse Kuhnert  [EMAIL PROTECTED]  wrote:
  
   Do you have FireBug installed? (or fiddler for ie)
  
   Can you track the url request for one of these images that
   aren't
  showing
   up
   and paste it into your location bar to hit it directly and
 tell
   me
 what
   happens?
  
   On 11/14/06, Josh Long  [EMAIL PROTECTED] wrote:
   
Images aren't showing up if I create my own dojo build and
   then
  instruct
tapestry to use that buidl. Everything else seems to work
   fine,
but
  the
images for, say, the autocompleter dont show up.
   
I'm not sure if this is a dojo or a tapestry question.
   
Any help would be appreciated.
   
Josh
   
   
  
  
   --
   Jesse Kuhnert
   Tapestry/Dojo/(and a dash of TestNG), team member/developer
  
   Open source based consulting work centered around
   dojo/tapestry/tacos/hivemind.
 http://blog.opencomponentry.com
  
  
 
 


 --
 Jesse Kuhnert
 Tapestry/Dojo/(and a dash of TestNG), team member/developer

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


   
   
  
  
   --
   Jesse Kuhnert
   Tapestry/Dojo/(and a dash of TestNG), team member/developer
  
   Open source based consulting work centered around
   dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com
  
  
 




--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

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





--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

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