Monday 29 April 2013

Finding files with time stamp linux

Problem:  Find files should list time stamp along with file name.

Solution
find -name demo.jar -printf '%Tc %p\n'

The above command will search for "demo.jar" file in current working directory and list results along with time stamp

Monday 22 April 2013

HTML Encoding of data in EXT Template

Problem: HTML Encoding of data in  EXT Template.
Solution:
Ext provided an attribute "htmlEncode" to support encoding.

Example:

var tpl = new Ext.XTemplate('<p>Name: {name:htmlEncode}</p>');