Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
21b7c090
Commit
21b7c090
authored
May 02, 2006
by
Lennart Regebro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a favicon.ico to the standard root content.
parent
c738b342
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
doc/CHANGES.txt
doc/CHANGES.txt
+1
-0
lib/python/OFS/Application.py
lib/python/OFS/Application.py
+5
-0
lib/python/OFS/standard/favicon.ico
lib/python/OFS/standard/favicon.ico
+0
-0
No files found.
doc/CHANGES.txt
View file @
21b7c090
...
...
@@ -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
...
...
lib/python/OFS/Application.py
View file @
21b7c090
...
...
@@ -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
...
...
lib/python/OFS/standard/favicon.ico
0 → 100644
View file @
21b7c090
22 KB
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment