Archive for the 'Coding' Category

May 04 2011

Cornerstone SVN – Phantom Folder Changes

Published by under Coding,Computing

I use cornerstone to manage my SVN repositories at work and I was getting frustrated that it kept detecting changes in folder but showed no files changed in that directory.

The problem I eventually discovered was that the .DS_Store file in the folder was changing and Cornerstone was picking up that change (but not showing the file in the interface).

To avoid this in the settings go to the Subversion tab and in General add *.DS_Store to the Global Ignores.

Save and the problem goes away ;o)

Comments Off on Cornerstone SVN – Phantom Folder Changes

Dec 10 2010

sessionStorage & cookie’s not disappearing in Firefox

Published by under Coding

Something that had me staring at my screen in exasperation recently is Firefox’s behaviour with cookies. Specifically cookies with no expiry date, which should disappear when the session ends – however I was closing Firefox, reopening and the cookie was still there. In all the other browsers things were working as expected with the cookie being deleted, just not in Firefox.

As it turns out the culprit was the ‘save my current tabs’ option, if you have this turned on, Firefox saves all your cookies (& now sessionStorage) so you can resume browsing where you left off – essentially it treats it as if your session never ends.

If you turn this option off you’ll see the cookies & sessionStorage being removed as you’d expect.

Comments Off on sessionStorage & cookie’s not disappearing in Firefox