Subversion keeps changing permissions of my files [FIX]

On my Unix machine whenever I did an “svn update” and files were actually updated, the permissions would change, rendering them inaccessible to the httpd process, therefore 403 Forbidden errors in the browser. After much searching that yielded a lot of results about storing executable flags in SVN using propset. This didn’t help as I didn’t want it to be executable, just world readable. Turns out the problem was in my .profile, my umask setting was 077. Changing it to 012 solved it for me. Note: 012 makes files you create group writable. Snippet from my .profile

#umask 077
umask 012
export SVN_SSH=”ssh -l olore”
export EDITOR=”/usr/bin/vi”

Read more about umask on Wikipedia

Dojo 1.1 and 1.3 on the same page

Today I dug into the deep dark world of running multiple versions of Dojo on the same page. Turns out, it’s not all that dark! Working with some pages as my guide I was able to get 1.1 & 1.3 working in the same page. This is a step towards running multiple versions withing WebSphere Portal, which I’ll likely be dealing with in the near future.

Dojo 1.1 and Dojo 1.3 together on the same page

<!-- Bring in Dojo 1.1.x –>

<!-- test it –>

Dojo 1.1 and Dojo 1.3 together on the same page