Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

124
votes
20answers
29k views

What is an elegant way to force browsers to reload cached CSS/JS files?

I have noticed that some browsers (in particular, Firefox and Opera) are very zealous in using cached copies of .css and .js files, even between browser sessions. This leads to a problem when you ...
5
votes
1answer
231 views

How to make android:versionName in AndroidManifest.xml changed automatically in eclipse?

I want to change android:versionName each time when I release apk. Are there any eclipse plugin or some other ways that can help it automatically change along with my code's compilation? For ...
4
votes
1answer
175 views

Are the new Delphi XE2 autogenerated build numbers linked to 1.1.2000 00:00:00?

In Delphi XE2 the automatically generated build numbers functionality now uses some kind of date and time generated values, like this: 2.4.4386.838 The last two numbers change each time you build ...
4
votes
3answers
963 views

Auto-versioning of static content with JBoss

As per the Q&A here, I'd like to implement a similar auto-versioning system for a web app running in JBoss 5. Is there anything already out there to do this sort of thing, or will I need to write ...
2
votes
2answers
62 views

Does NHibernate update version on select?

I have a very simple mapping like: public abstract class EntityMap<TEnt, TId, TDto> : ClassMap<TEnt> where TEnt: Entity<TId, TDto> where TDto : DataTransferObject<TDto, ...
1
vote
1answer
78 views

NHIbernate bidirectional many to many mapping insert update problem

I have a class called Shape that has a many to many relation with Package. The meaning of this bidirectional relation is that if a Product has a certain Shape, it can be Packaged by the Packages the ...
0
votes
1answer
311 views

Accessing ScriptManager proxies in code

I have a situation where I'd like to add a "last modified" timestamp to the paths of my js files (ex. "custom.js?2009082020091417") that are referenced in my ScriptManager (contained in my MasterPage) ...