Commit c2ce4798 authored by Tres Seaver's avatar Tres Seaver

Wrap long lines.

parent 9c262db0
...@@ -227,7 +227,8 @@ class ObjectManager(CopyContainer, ...@@ -227,7 +227,8 @@ class ObjectManager(CopyContainer,
# Look at all globally visible meta types. # Look at all globally visible meta types.
for entry in Products.meta_types: for entry in Products.meta_types:
if ( (interfaces is not None) or (entry.get("visibility", None)=="Global") ): if ((interfaces is not None) or
(entry.get("visibility", None)=="Global")):
external_candidates.append(entry) external_candidates.append(entry)
# Filter the list of external candidates based on the # Filter the list of external candidates based on the
...@@ -235,7 +236,7 @@ class ObjectManager(CopyContainer, ...@@ -235,7 +236,7 @@ class ObjectManager(CopyContainer,
if interfaces is None: if interfaces is None:
interface_constrained_meta_types = external_candidates interface_constrained_meta_types = external_candidates
else: else:
interface_constrained_meta_types = [] interface_constrained_meta_types = icmt = []
for entry in external_candidates: for entry in external_candidates:
try: try:
eil = entry.get('interfaces',None) eil = entry.get('interfaces',None)
...@@ -243,7 +244,7 @@ class ObjectManager(CopyContainer, ...@@ -243,7 +244,7 @@ class ObjectManager(CopyContainer,
for ei in eil: for ei in eil:
for i in interfaces: for i in interfaces:
if ei is i or ei.extends(i): if ei is i or ei.extends(i):
interface_constrained_meta_types.append(entry) icmt.append(entry)
raise BreakoutException # only append 1ce raise BreakoutException # only append 1ce
except BreakoutException: except BreakoutException:
pass pass
...@@ -702,7 +703,8 @@ class ObjectManager(CopyContainer, ...@@ -702,7 +703,8 @@ class ObjectManager(CopyContainer,
all_files = copy.copy(files) all_files = copy.copy(files)
for f in files: for f in files:
if hasattr(aq_base(f[1]), 'isPrincipiaFolderish') and f[1].isPrincipiaFolderish: if (hasattr(aq_base(f[1]), 'isPrincipiaFolderish') and
f[1].isPrincipiaFolderish):
all_files.extend(findChildren(f[1])) all_files.extend(findChildren(f[1]))
files = all_files files = all_files
...@@ -824,7 +826,8 @@ def findChildren(obj,dirname=''): ...@@ -824,7 +826,8 @@ def findChildren(obj,dirname=''):
lst = [] lst = []
for name, child in obj.objectItems(): for name, child in obj.objectItems():
if hasattr(aq_base(child), 'isPrincipiaFolderish') and child.isPrincipiaFolderish: if (hasattr(aq_base(child), 'isPrincipiaFolderish') and
child.isPrincipiaFolderish):
lst.extend(findChildren(child, dirname + obj.id + '/')) lst.extend(findChildren(child, dirname + obj.id + '/'))
else: else:
lst.append((dirname + obj.id + "/" + name, child)) lst.append((dirname + obj.id + "/" + name, child))
......
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