version

jquery version Issue

Hi, I was working with jquery v1.3.2 and following piece of code was all working nice $(".textid").live('click',function(){ textbox_input=true; }); But as soon as I updated to jquery v1.4.2 above piece of code just not working as expected!!. Just to test script identified the click event correctly I added following $(".textid").c...

Can i specify the productversion in a window title?

Hey guys, To let people know what version of the program they are using, i want to show the productversion in the title of the window. I can do that manually, but i want this to be dynamic, so i don't have to change both items everytime the version changes. Is this possible doing this in code behind without messing with the installer? ...

PHP: How to get version from android .apk file?

I am trying to create PHP script to get app version from Android APK file. Extracting xml file from APK (zip) file and then parsing XML is one way, but i guess it should be simpler. Something like PHP Manual, example #3. Any ideas how to create script? ...

Java EOSL for each version

What are the official dates when the different versions of Java (JDK 1.3, JDK 1.4, Java 5,...) have reached it's end of service life (EOSL)? ...

Tool for checking source for dependencies on specific Java versions

Is there a quick way (e.g. tool) to detect, from the source (or maybe even from compiled classes), which parts of an application call Java API methods that are only implemented in a specific Java version? (e.g. which parts of my app are Java6-specific) I don't necessarily want to hop through all ClassMismatchErrors and avoid the trial-a...

How to show only Major and Minor version usinf WIX

Hi.. Using WIX installer earlier we were showing full dll version (it was static), but now we changed it to dynamic. So I get dll version like 4.5.3422.2319 Using this my setup shows whole version. But I want to show only Major and Minor version i.e. 4.5 only. So can you please help me in doing so. ...

Assembly version from command line ?

Does it exist a ms tool to get the assembly version of a dll from a command line ? (I know that I can code my own tool) ...

FluentNHibernate: mapping a Version property

How do I map a Version property using conventions (e.g. IClassConvention, AutomapperConfiguration)? public abstract class Entity { ... public virtual int? Version { get; protected set; } ... } <class ...> <version name="Version" column="version" generated="never" type="Int32" unsaved-value="0" /> </class> ...

What version of Tomcat is contained in the Websphere Application Server 7

As far as I know the Websphere Application Server contains a Tomcat instance as servlet container. I'd like to know which version of Tomcat this is in the Websphere 7.0 Version, since we are planning to use Tomcat for development, but WAS for deployment. Obviously we would like to use the matching version. ...

Applescript uses wrong python version, how to change?

I recently installed python 2.6.5 over 2.6.1 on OS X. Everything works fine except when I try executing python scripts via the Applescript editor. If I execute the following line I get version 2.6.1: Applescript: do shell script "python -c \"from sys import version; print version\"" But if I execute the similar line in the OS X termi...

VS 2010 C++ unable to load references due to out of date version number

When I set references for a C++ project in Visual Studio 2010, it fails to load a reference dll from another c# project because of a version mismatch. Building a C# project that references another c# project is no issue for me. I tried hard coding the version number for the c# project which worked great, but that was simply for testing a...

Specifying the range of supported Rails versions in a project

The config/environment.rb of my rails project contains this line: RAILS_GEM_VERSION = '>= 2.3.2' unless defined? RAILS_GEM_VERSION Which makes sure that only Rails of version 2.3.2 or greater will be used to run this app. Is there a way of specifying both the lower and the upper boundary at the same time? So that it would run, say, o...

Auto increment build number using WIX

Hi.. I am using WIX tool for creating installation file for our project. I want to have the dynamic(incremental) build number. So can anyone please guide me. Please dont provide solution like 1.0.0.* as this gives any dynamic number at end. I want it incremental like 1.0.0.1, 1.0.0.2, 1.0.0.3,..... ...

android get version of system

Hi everybody! Does anyone know how can I check system version (1.0 .. 2.2) in run-time? Thanks ...

How do I obtain version information from the calling application

I have a web application written in C# and running as a dll under IIS. I also have some common code compiled to a separate assembly (dll). This common code contains a function that returns version information (as below). How can I modify this code so it returns the version information of the web app dll and NOT the common code dll a...

Why is System.Version in .NET defined as Major.Minor.Build.Revision?

Why is System.Version in .NET defined as Major.Minor.Build.Revision? Almost everyone (including me) seems to agree that revision belongs in third place, and "build" or whatever you'd like to call it belongs last. Does Microsoft even use the numbers in this haphazard way, e.g. 3.5.3858.2, or are the names themselves just backwards? For e...

Testing iPhone app on older OS versions in xCode

All, Is there a way to download older versions of the iPhone simulator to test an application with an older version of the iPhone OS? I'm running xCode 3.2.2. and it only has iPhone OS 3.1.3 and I need to test on 3.1.2. Thanks in advance ...

Mercurial - Is it possible to merge changes from the trunk to a branch, within the same repo?

Mercurial - Is it possible to merge changes from the trunk to a branch, within the same repository? If yes, is it possible with TortoiseHg? ...

conditionally import framework

Hi guys, well to begin with I'm sure this is a simple question. I am developing an iPhone app with the iAd Framework, which only runs for iOS 4.0 or higher. Still, I wanna choose a iPhone OS 3.0 deployment target, which causes everything to crash. How do I conditionally include the iAd framework? ...I mean, it would be something like...

Are Apps using iAd compatible with older iOS

Can I add the UIBannerViewDelegate protocol to my UIViewController subclass while remaining compatible with pre-iOS 4 devices? This is NOT a duplicate, the question is specifically related to the delegate protocol. ...