I have a bunch of configuration files which are usually properties files which are opened from application and edited like notepad.Now the requirement is pick each property and find which HTML tag does it fit through and display the whole properties file as HTML page. For eg:
Security.Properties file
//This property checks if the user has already logged or not
//Possible values Y N
order.security.Login=Y
So the above property has two possible values Y N .The equivalent HTML format can be a radio button with Y N. Similarly if another property takes values 1,2, the HTML is Listbox with these two values.
I know this is little cumbersome but has to done. Development is JAVA JAVASCRIPT VELOCITY My idea is convert all properties files into XML then use XSLT to render as HTML. I would like to hear more ideas including performance issues.