Commit 21b7c090 authored by Lennart Regebro's avatar Lennart Regebro

Added a favicon.ico to the standard root content.

parent c738b342
......@@ -48,6 +48,7 @@ Zope Changes
- Using FastCGI is offically deprecated.
Features added
- There is now a default favicon.ico.
- Experimental WSGI and Twisted support for http.
Zope now has a WSGI interface for integration with other
......
......@@ -891,6 +891,11 @@ def install_standards(app):
continue
app.manage_addProduct['PageTemplates'].manage_addPageTemplate(
id=fn, title='', text=open(ob.filename))
elif ext in ('.ico', '.gif', '.png'):
if hasattr(app, fn):
continue
app.manage_addProduct['OFSP'].manage_addImage(
id=fn, title='', file=open(os.path.join(std_dir, fn)))
else:
continue
wrote = 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment