Partner links

custom theme war file for Novell Identity Managers (IDM) User Application (UA or User App)

Was working on the software based on Novell Identity Management (IDM). IDM software package includes a peace of software called User Application – UA. It is user portal software which supports skins or templates. I had a lot of trouble to collect all the info needed to produce a custom theme. Novell documentation is [...]

strange javascript window.open problem on ie

Internet explorer fails to open popup window using window.open() if the name for the window contains at least minus symbol ‘-’. I guess it will fail in case of any other strange symbol.

<html> <body> <script language=”javascript” type=”text/javascript”> function illegal() { window.open(“http://are.ehibou.com”, “aaa-aaa”); } function legal() { window.open(“http://are.ehibou.com”, “aaaaaa”); } </script> <a [...]