Code from the genius himself
from the worst-code-ever-dept.
/**
* @author root
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
Things I wrote down to not forget
from the worst-code-ever-dept.
Favicons are small (16x16 or 32x32 pixels) page icons displayed in the browsers addressbar or your favorites listings (hence: favorites icon). Most modern browsers support favicons and therefore send a http request for either /facicon.ico or whatever is specified in the
<link rel="icon"...> tag specified in the header of the page. If the favicon.ico file does not exist browsers show a standard icon and ignore error responses from the server. Simlarly many web servers filter favicon related error messages to keep their error logs readable.
<security-constraint>
<web-resource-collection>
<web-resource-name>restricted</web-resource-name>
<url-pattern>/public/favicon.ico</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
</security-constraint>
<link rel="icon" href="public/favicon.ico" />
<link rel="shortcut icon" href="/public/favicon.ico" />
ClamXav comes with its own installer for the clamav engine. The installer, however, is not as frequently updated as is the clamav engine itself, yielding:
LibClamAV Warning: ********************************************************
LibClamAV Warning: *** This version of the ClamAV engine is outdated. ***
LibClamAV Warning: *** DON'T PANIC! Read http://www.clamav.net/faq.html ***
LibClamAV Warning: ********************************************************