lol... sorry After I read through again... I totally missed the java
server part... but on the other... I posted in the wrong spot... sorry
about that...
> I thought you were looking for a way to download your .swf once instead of
> starting a bunch of simultaneous downloads for it.
that is what I am after here... controlling downloads of componets
called by jquery... I think this would be handy for a lot of other
things to... well I hope I haven't lost anyone ... :-) need all the
help I can get here... thanks again...
jeremyBass

On Sep 30, 2:12 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote:
> I am really lost now.
>
> I thought you were looking for a way to download your .swf once instead of
> starting a bunch of simultaneous downloads for it.
>
> I don't think a clone of mod_rewrite for Java servers would help you at all.
> (Is your server code in Java? Even if it is, it wouldn't help - you're
> trying to avoid hitting the server in the first place.)
>
> Now you found some JavaScript code to detect the user's language. How is
> that connected with the download issues?
>
> (scratching head)
>
> -Mike
>
>
>
> > From: jeremyBass
>
> > found this... may-be this may help ???
>
> > <script type="text/javascript">
> >  if (navigator.browserLanguage){language=navigator.browserLanguage}
> >  if (navigator.userLanguage){language=navigator.userLanguage}
> >  if (navigator.systemLanguage){language=navigator.systemLanguage}
> >  if (navigator.language){language=navigator.language}
> >  if (language.indexOf('-')==2) {language=language.substring(0,2);}
> >  if (language=='en') { document.write("Hello there!"); }  
> > else if (language=='jp') { document.write("Konichiwa!"); }  
> > else if (language=='fr') { document.write("Bonjour!"); }  </script>
>
> > On Sep 30, 9:47 am, jeremyBass <[EMAIL PROTECTED]> wrote:
> > > So I think this is the ticket... but I really am not to sure on the
> > > how yet...
>
> > >http://code.google.com/p/urlrewritefilter/
>
> > > anyone have a sec to help me out with this? thank you jeremyBass
>
> > > On Sep 29, 7:37 pm, jeremyBass <[EMAIL PROTECTED]> wrote:
>
> > > > I new that was to good to be true... well moving on to a
> > new view ....
> > > > There has to be a way to "capture" the HTTP requests ... I think
> > > > I've seen URL rewrites with javascript... so may-be I
> > could have it
> > > > so that it's more like this... if HTPP request is in
> > array die else
> > > > execute and push URL to array?  any ideas on that?
>
> > > > thanks for the help...
> > > > jeremyBass
>
> > > > On Sep 29, 4:13 pm, ricardobeat <[EMAIL PROTECTED]> wrote:
>
> > > > > Oops, sorry, what I meant is that cloning the elements
> > is the best
> > > > > optimization you can do. It will save you some processing time
> > > > > from not creating new elements (or maybe not, as jQuery will be
> > > > > re-creating the clone element), but the HTTP requests
> > will remain.
>
> > > > > $('#flash-round-corner-
>
> > thing').clone().appendTo('newcorner').clone().appendTo('anothercor
> > > > > ner')
> > > > > etc.
>
> > > > > On Sep 29, 1:08 am, jeremyBass <[EMAIL PROTECTED]> wrote:
>
> > > > > > Thank you for the help...
>
> > > > > > >>> And using dozens of flash objects to round
> > corners doesn't
> > > > > > >>> seem like a good idea...
>
> > > > > > Yeah I thought there would be alot of trouble to at
> > first... but
> > > > > > it's better then cornflex and jcorner altogether... it's
> > > > > > absolutely working perfectly.  the 10-12 calls are on
> > the first
> > > > > > download only and it's not the round boxes... it's mostly the
> > > > > > srif anyways... but that's ok... I'm just being anal
> > and trying
> > > > > > to work out everything before I share this with
> > everyone.  right
> > > > > > now the round box mod is total 1kb big if you already have
> > > > > > jflash.js.  And it's... well I'll share this all in
> > bit... I want to protect it and have never done that before...
> > > > > > like a gpl? or something... anyways...
>
> > > > > > >>> If the element is already being cloned instead of being
> > > > > > >>> created again,
> > > > > > >>>  there is no fix.
>
> > > > > > so if they aren't?  I could reuse the element with
> > the new vars?
> > > > > > then I would only have made one call as long as I
> > don't change
> > > > > > the source... smashing!  now how to write that... :-)
> >  any more
> > > > > > ideas on this?
>
> > > > > > thanks for the help...
> > > > > > jeremyBass
>
> > > > > > On Sep 28, 8:31 pm, ricardobeat <[EMAIL PROTECTED]> wrote:
>
> > > > > > > If the element is already being cloned instead of being
> > > > > > > created again, there is no fix. You can
> > > > > > > create/clone/append/modify an image or object tag,
> > but it will always need to request it's content from the server.
> > > > > > > And using dozens of flash objects to round corners doesn't
> > > > > > > seem like a good idea...
>
> > > > > > > On Sep 28, 6:14 pm, jeremyBass
> > <[EMAIL PROTECTED]> wrote:
>
> > > > > > > > I'm so it is be cahced but the HTTP requests on the dead
> > > > > > > > download is still high... I'm not sure how to stop it frm
> > > > > > > > makeing the requests sice the first time it runs
> > through the
> > > > > > > > functions it has downloaded the swf so no need to
> > make a new HTTP request... any ideas on this?
>
> > > > > > > > On Sep 28, 10:56 am, jeremyBass
> > <[EMAIL PROTECTED]> wrote:
>
> > > > > > > > > Does anyone have an idea on this... or , and I don't do
> > > > > > > > > this well and lot lol, but am I not being
> > clear?  I really
> > > > > > > > > need to figure this out... Thanks jeremyBass
>
> > > > > > > > > On Sep 27, 3:21 pm, jeremyBass
> > <[EMAIL PROTECTED]> wrote:
>
> > > > > > > > > > Hello, I want to reduce the header calls for a flash
> > > > > > > > > > file used repeatedly on a page.  There are 24 HTTP
> > > > > > > > > > requests for a file that is already
> > downloaded.. So My
> > > > > > > > > > question is how would I call it once and then
> > not again for the rest of the page?
>
> > > > > > > > > > the code area is like this
>
> > > > > > > > > > ex.1)
>
> > > > > > > > > > src: (p.path || '').replace(/([^\/])$/,
> > '$1/') + (p.font
> > > > > > > > > > ||
>
> > ele.css('fontFamily').replace(/^\s+|\s+$|,[\S|\s]+|'|"|(
> > > > > > > > > > ,)\s+/g, '$1')).replace(/([^\.][^s][^w][^f])$/,
> > > > > > > > > > '$1.swf'),
>
> > > > > > > > > > ex.2)
>
> > > > > > > > > > var SORUCE = 'Scripts/flash/rounded_rectangle.swf';
> > > > > > > > > > $('.Round_gen53').attr('rel',''+SORUCE
> > +':::transparent:
> > > > > > > > > > 45:0:100:57:0:0x000000:0xecffa4:15:2:2');
> > > > > > > > > > $('.Round_gen54').attr('rel',''+SORUCE
> > +':::transparent:
> > > > > > > > > > 45:0:100:57:0:0x000000:0xecffa4:15:2:2');
>
> > > > > > > > > > and the functions get ran for each element... but I
> > > > > > > > > > don't see why the repeated HTTP request is needed and
> > > > > > > > > > it's slowing my site down... So says YSlow
> > lol.... Any
> > > > > > > > > > ideas on how to fix/write this? thank you for
> > the help.
> > > > > > > > > > jeremyBass
>
> > > > > > > > > > Some other things...
> > > > > > > > > > Configure ETags
> > > > > > > > > > Expires header
> > > > > > > > > > are set
> > > > > > > > > > as well as
>
> > > > > > > > > > <FilesMatch "\.(js|css|swf|gz)$">
> > > > > > > > > >  Header set Cache-Control "max-age=604800"
> > > > > > > > > > </FilesMatch>
>
> > > > > > > > > > Thank again- Hide quoted text -
>
> > > > > > > > > - Show quoted text -- Hide quoted text -
>
> > > > > > > - Show quoted text -- Hide quoted text -
>
> > > > > - Show quoted text -- Hide quoted text -
>
> > > > - Show quoted text -- Hide quoted text -
>
> > > - Show quoted text -- Hide quoted text -
>
> - Show quoted text -

Reply via email to