Skip to content

Commit

Permalink
Update icon font to new prefix.
Browse files Browse the repository at this point in the history
  • Loading branch information
dwt committed Jun 12, 2018
1 parent 29e3c72 commit dbff3cd
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/OFS/DTMLDocument.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class DTMLDocument(PropertyManager, DTMLMethod):
""" DocumentTemplate.HTML objects whose 'self' is the DTML object.
"""
meta_type = 'DTML Document'
zmi_icon = 'icon-doc'
zmi_icon = 'zmi-icon-doc'

manage_options = DTMLMethod.manage_options

Expand Down
2 changes: 1 addition & 1 deletion src/OFS/DTMLMethod.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class DTMLMethod(RestrictedDTML,
""" DocumentTemplate.HTML objects that act as methods of their containers.
"""
meta_type = 'DTML Method'
zmi_icon = 'icon-numbers'
zmi_icon = 'zmi-icon-numbers'
_proxy_roles = ()
index_html = None # Prevent accidental acquisition
_cache_namespace_keys = ()
Expand Down
2 changes: 1 addition & 1 deletion src/OFS/Folder.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class Folder(
a management interface and can have arbitrary properties.
"""
meta_type = 'Folder'
zmi_icon = 'icon-folder'
zmi_icon = 'zmi-icon-folder'

_properties = (
{'id': 'title', 'type': 'string', 'mode': 'wd'},
Expand Down
4 changes: 2 additions & 2 deletions src/OFS/Image.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class File(Persistent, Implicit, PropertyManager,
"""A File object is a content object for arbitrary files."""

meta_type = 'File'
zmi_icon = 'icon-file'
zmi_icon = 'zmi-icon-file'

security = ClassSecurityInfo()
security.declareObjectProtected(View)
Expand Down Expand Up @@ -798,7 +798,7 @@ class Image(File):
renders an HTML 'IMG' tag.
"""
meta_type = 'Image'
zmi_icon = 'icon-image'
zmi_icon = 'zmi-icon-image'

security = ClassSecurityInfo()
security.declareObjectProtected(View)
Expand Down
2 changes: 1 addition & 1 deletion src/OFS/OrderedFolder.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class OrderedFolder(OrderSupport, Folder):
""" Extends the default Folder by order support.
"""
meta_type = 'Folder (Ordered)'
zmi_icon = 'icon-folder2'
zmi_icon = 'zmi-icon-folder2'

manage_options = (
OrderSupport.manage_options +
Expand Down
2 changes: 1 addition & 1 deletion src/OFS/SimpleItem.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class Item(Base,
Owned):
"""A common base class for simple, non-container objects."""

zmi_icon = 'icon-file'
zmi_icon = 'zmi-icon-file'

security = ClassSecurityInfo()

Expand Down
2 changes: 1 addition & 1 deletion src/Products/PageTemplates/ZopePageTemplate.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ZopePageTemplate(Script, PageTemplate, Cacheable,
"Zope wrapper for Page Template using TAL, TALES, and METAL"

meta_type = 'Page Template'
zmi_icon = 'icon-markup'
zmi_icon = 'zmi-icon-markup'
output_encoding = 'utf-8' # provide default for old instances

__code__ = FuncCode((), 0)
Expand Down
2 changes: 1 addition & 1 deletion src/Products/SiteAccess/VirtualHostMonster.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class VirtualHostMonster(Persistent, Item, Implicit):
"""

meta_type = 'Virtual Host Monster'
zmi_icon = 'icon-monster'
zmi_icon = 'zmi-icon-monster'
priority = 25

id = 'virtual_hosting'
Expand Down

0 comments on commit dbff3cd

Please sign in to comment.