This page last changed on Feb 13, 2009 by pwy4104.

Mock Objects

http://java.sun.com/developer/Books/javaprogramming/Massol/massol_ch07.pdf

Obtaining VIEW Definitions

Potentially very useful book for JDBC/mysql/oracle:

http://library.books24x7.com.ezproxy.rit.edu/toc.asp?site=K7ECY&bookid=14651

- also at the RIT library

Cross Browser JS support

Use jquery things we have found that break IE are:

  • setting innerHTML on a DOM element (for example el.innerHTML="hello") should become jQuery(el).html("hello")
  • getting innerHTML of a DOM element (for example var text = el.innerHTML; ) should become jQuery(el).text()
  • Getting the index of an element in an array using indexOf (for example array.indexOf('hi')) should become jQuery.inArray('hi', array);
Document generated by Confluence on May 21, 2009 10:23