Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
144
Merge Requests
144
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
f7c87125
Commit
f7c87125
authored
3 years ago
by
Aurel
Committed by
Arnaud Fontaine
1 year ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zope4: Fix imports.
parent
9bb11f12
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
bt5/erp5_safeimage/ExtensionTemplateItem/portal_components/extension.erp5.ERP5ZoomifyImage.py
...Item/portal_components/extension.erp5.ERP5ZoomifyImage.py
+4
-1
product/ERP5/bootstrap/erp5_core/ToolComponentTemplateItem/portal_components/tool.erp5.SimulationTool.py
...emplateItem/portal_components/tool.erp5.SimulationTool.py
+4
-1
product/ERP5Type/patches/PropertySheets.py
product/ERP5Type/patches/PropertySheets.py
+2
-1
No files found.
bt5/erp5_safeimage/ExtensionTemplateItem/portal_components/extension.erp5.ERP5ZoomifyImage.py
View file @
f7c87125
...
...
@@ -22,7 +22,10 @@ from zLOG import LOG,ERROR,INFO,WARNING
from
OFS.Image
import
File
,
Image
import
os
,
transaction
from
AccessControl
import
getSecurityManager
,
ClassSecurityInfo
from
Globals
import
package_home
try
:
from
App.Common
import
package_home
except
ImportError
:
# BBB Zope2
from
Globals
import
package_home
import
PIL.Image
as
PIL_Image
import
thread
import
random
...
...
This diff is collapsed.
Click to expand it.
product/ERP5/bootstrap/erp5_core/ToolComponentTemplateItem/portal_components/tool.erp5.SimulationTool.py
View file @
f7c87125
...
...
@@ -48,7 +48,10 @@ from Products.ZSQLCatalog.SQLCatalog import Query, ComplexQuery, SimpleQuery
from
Shared.DC.ZRDB.Results
import
Results
from
Products.ERP5Type.Utils
import
mergeZRDBResults
from
App.Extensions
import
getBrain
try
:
# BBB Zope 2.12
from
App.Extensions
import
getBrain
except
ImportError
:
from
Shared.DC.ZRDB.DA
import
getBrain
from
MySQLdb
import
ProgrammingError
from
MySQLdb.constants.ER
import
NO_SUCH_TABLE
...
...
This diff is collapsed.
Click to expand it.
product/ERP5Type/patches/PropertySheets.py
View file @
f7c87125
...
...
@@ -13,7 +13,8 @@
#
##############################################################################
from
OFS.PropertySheets
import
DAVProperties
,
isDavCollection
from
OFS.PropertySheets
import
DAVProperties
from
webdav.common
import
isDavCollection
from
Acquisition
import
aq_base
# This is required to make an ERP5 Document (folderish) look like a file (non folderish)
...
...
This diff is collapsed.
Click to expand it.
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