[google-appengine] Re: CSS file not updating when deploying app

2011-12-02 Thread Rohan Chandiramani
I think Ctrl-F5 solves this.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/pP0B0lBQKWgJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: CSS file not updating when deploying app

2011-12-02 Thread Mike
Ctrl + F5 was my first solution, needless to say it doesn't work as
Brandon suggested.

I have set the expiration of css files to 7 days in my appengine-
web.xml, I'm sure this hasn't caused an issue before when updating CSS
files though.

Would it be worth reducing this or am I just going to have to wait 7
days before app engine "updates" the CSS to the new version I
deployed?

Thanks

On Dec 2, 10:57 am, "Brandon Wirtz"  wrote:
> Not if edgecache locked on to it. If it is local then yes.
>
> Also consider installing Fiddler 2 on your system, it helps make sure you
> are always looking at live versions, and will tell you what cache headers
> are being sent.  It will also tell you of 301's 302's and the latency and
> through put of your requests.
>
> From: google-appengine@googlegroups.com
> [mailto:google-appengine@googlegroups.com] On Behalf Of Rohan Chandiramani
> Sent: Friday, December 02, 2011 2:52 AM
> To: google-appengine@googlegroups.com
> Subject: [google-appengine] Re: CSS file not updating when deploying app
>
> I think Ctrl-F5 solves this.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To view this discussion on the web 
> visithttps://groups.google.com/d/msg/google-appengine/-/pP0B0lBQKWgJ.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group 
> athttp://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: CSS file not updating when deploying app

2011-12-02 Thread voscausa
I never have these problems. 
I see my changes right away. I'am using Stylizer to change my CSS in real 
time and for testing in different browsers. And than I save (update) my 
changed CSS in my Eclipse / Pydev static folder of my project. 
After uploading the new changed CSS I also see the changes. Most of the 
time I'am using Chrome with Firebug Lite and Firefox with webtools.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/ylPU-WwfmwYJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: CSS file not updating when deploying app

2011-12-02 Thread JH
try using a cache-busting stragegy, like "mystyle.css?1234"  You could
even insert the current built of your app for 1234 so all caches break
each time you update your app

On Dec 2, 4:32 am, Mike  wrote:
> Hey
>
> I have made changes to one of my CSS files, however after deploying my
> application the changes to the CSS are not being reflected in the live
> CSS. If I go to the explicit version number of the app I.e.
> 1.myappid.appspot.com the changes to the CSS are apparent.
>
> Is this a server caching issue that will sort itself out or do I need
> to do something to "fix" this?
>
> Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



RE: [google-appengine] Re: CSS file not updating when deploying app

2011-12-02 Thread Brandon Wirtz
Not if edgecache locked on to it. If it is local then yes.  

 

Also consider installing Fiddler 2 on your system, it helps make sure you
are always looking at live versions, and will tell you what cache headers
are being sent.  It will also tell you of 301's 302's and the latency and
through put of your requests.

 

From: google-appengine@googlegroups.com
[mailto:google-appengine@googlegroups.com] On Behalf Of Rohan Chandiramani
Sent: Friday, December 02, 2011 2:52 AM
To: google-appengine@googlegroups.com
Subject: [google-appengine] Re: CSS file not updating when deploying app

 

I think Ctrl-F5 solves this. 

-- 
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-appengine/-/pP0B0lBQKWgJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



RE: [google-appengine] Re: CSS file not updating when deploying app

2011-12-02 Thread Brandon Wirtz
Don't put Query strings in your css links, that is a horrible hack. Set your
cache headers, or version your files in the name.

Query strings for cache busting hard coded in the HTML will bust caching for
users later as well.


-Original Message-
From: google-appengine@googlegroups.com
[mailto:google-appengine@googlegroups.com] On Behalf Of JH
Sent: Friday, December 02, 2011 6:00 AM
To: Google App Engine
Subject: [google-appengine] Re: CSS file not updating when deploying app

try using a cache-busting stragegy, like "mystyle.css?1234"  You could even
insert the current built of your app for 1234 so all caches break each time
you update your app

On Dec 2, 4:32 am, Mike  wrote:
> Hey
>
> I have made changes to one of my CSS files, however after deploying my 
> application the changes to the CSS are not being reflected in the live 
> CSS. If I go to the explicit version number of the app I.e.
> 1.myappid.appspot.com the changes to the CSS are apparent.
>
> Is this a server caching issue that will sort itself out or do I need 
> to do something to "fix" this?
>
> Thanks

--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: CSS file not updating when deploying app

2017-12-28 Thread Shubham Yedage
Hello Brandon, I am facing same issue where even after updating java script 
I am not able to look changes on my local browser. I guess for my IP app 
engine has cached changes. Can you provide descriptive steps for 
identifying and fixing issue. Thanks!

On Friday, December 2, 2011 at 4:27:02 PM UTC+5:30, Brandon Wirtz wrote:
>
> Not if edgecache locked on to it. If it is local then yes.  
>
>  
>
> Also consider installing Fiddler 2 on your system, it helps make sure you 
> are always looking at live versions, and will tell you what cache headers 
> are being sent.  It will also tell you of 301’s 302’s and the latency and 
> through put of your requests.
>
>  
>
> *From:* google-a...@googlegroups.com  [mailto:
> google-a...@googlegroups.com ] *On Behalf Of *Rohan 
> Chandiramani
> *Sent:* Friday, December 02, 2011 2:52 AM
> *To:* google-a...@googlegroups.com 
> *Subject:* [google-appengine] Re: CSS file not updating when deploying app
>
>  
>
> I think Ctrl-F5 solves this. 
>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Google App Engine" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msg/google-appengine/-/pP0B0lBQKWgJ.
> To post to this group, send email to google-a...@googlegroups.com 
> .
> To unsubscribe from this group, send email to 
> google-appengi...@googlegroups.com .
> For more options, visit this group at 
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/e88c6706-e6c3-4f2f-883c-1d24e72d55ee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.