Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
K
klaus_wendelin
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
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
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Eteri
klaus_wendelin
Commits
881663d0
Commit
881663d0
authored
Nov 15, 2019
by
Klaus Wölfel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add conversion nump <-> wendelin format
parent
a27e547f
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
230 additions
and
0 deletions
+230
-0
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/Base_numpyToWendelinData.py
...em/portal_skins/erp5_wendelin/Base_numpyToWendelinData.py
+15
-0
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/Base_numpyToWendelinData.xml
...m/portal_skins/erp5_wendelin/Base_numpyToWendelinData.xml
+62
-0
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/Base_wendelinDataToNumpy.py
...em/portal_skins/erp5_wendelin/Base_wendelinDataToNumpy.py
+26
-0
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/Base_wendelinDataToNumpy.xml
...m/portal_skins/erp5_wendelin/Base_wendelinDataToNumpy.xml
+62
-0
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/Base_wendelinTextToNumpy.py
...em/portal_skins/erp5_wendelin/Base_wendelinTextToNumpy.py
+3
-0
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/Base_wendelinTextToNumpy.xml
...m/portal_skins/erp5_wendelin/Base_wendelinTextToNumpy.xml
+62
-0
No files found.
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/Base_numpyToWendelinData.py
0 → 100644
View file @
881663d0
import
binascii
import
numpy
as
np
import
struct
from
cStringIO
import
StringIO
MAGIC_HEADER
=
b'
\
x92
WEN
\
x00
\
x01
'
io
=
StringIO
()
np
.
save
(
io
,
array
)
io
.
seek
(
0
)
npy_data
=
io
.
read
()
io
.
close
()
crc
=
struct
.
pack
(
'<i'
,
binascii
.
crc32
(
npy_data
))
return
b''
.
join
([
MAGIC_HEADER
,
crc
,
npy_data
])
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/Base_numpyToWendelinData.xml
0 → 100644
View file @
881663d0
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"PythonScript"
module=
"Products.PythonScripts.PythonScript"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
Script_magic
</string>
</key>
<value>
<int>
3
</int>
</value>
</item>
<item>
<key>
<string>
_bind_names
</string>
</key>
<value>
<object>
<klass>
<global
name=
"NameAssignments"
module=
"Shared.DC.Scripts.Bindings"
/>
</klass>
<tuple/>
<state>
<dictionary>
<item>
<key>
<string>
_asgns
</string>
</key>
<value>
<dictionary>
<item>
<key>
<string>
name_container
</string>
</key>
<value>
<string>
container
</string>
</value>
</item>
<item>
<key>
<string>
name_context
</string>
</key>
<value>
<string>
context
</string>
</value>
</item>
<item>
<key>
<string>
name_m_self
</string>
</key>
<value>
<string>
script
</string>
</value>
</item>
<item>
<key>
<string>
name_subpath
</string>
</key>
<value>
<string>
traverse_subpath
</string>
</value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</state>
</object>
</value>
</item>
<item>
<key>
<string>
_params
</string>
</key>
<value>
<string>
array
</string>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
Base_numpyToWendelinData
</string>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/Base_wendelinDataToNumpy.py
0 → 100644
View file @
881663d0
import
binascii
import
struct
import
numpy
as
np
from
cStringIO
import
StringIO
MAGIC_PREFIX
=
b'
\
x92
WEN'
MAGIC_LEN
=
len
(
MAGIC_PREFIX
)
+
2
CR32_LEN
=
4
HEADER_LEN
=
MAGIC_LEN
+
CR32_LEN
# check that it is wendelin data
magic_str
=
data
[
0
:
MAGIC_LEN
]
assert
magic_str
[:
-
2
]
==
MAGIC_PREFIX
major
,
minor
=
map
(
ord
,
magic_str
[
-
2
:])
#python2
#major, minor = magic_str[-2:] #python 3
assert
major
==
0
and
minor
==
1
# verify crc32 checksum
checksum
=
struct
.
unpack
(
'<i'
,
data
[
MAGIC_LEN
:
HEADER_LEN
])[
0
]
assert
checksum
==
binascii
.
crc32
(
data
[
HEADER_LEN
:])
io
=
StringIO
()
io
.
write
(
data
[
HEADER_LEN
:])
io
.
seek
(
0
)
array
=
np
.
load
(
io
)
io
.
close
()
return
array
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/Base_wendelinDataToNumpy.xml
0 → 100644
View file @
881663d0
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"PythonScript"
module=
"Products.PythonScripts.PythonScript"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
Script_magic
</string>
</key>
<value>
<int>
3
</int>
</value>
</item>
<item>
<key>
<string>
_bind_names
</string>
</key>
<value>
<object>
<klass>
<global
name=
"NameAssignments"
module=
"Shared.DC.Scripts.Bindings"
/>
</klass>
<tuple/>
<state>
<dictionary>
<item>
<key>
<string>
_asgns
</string>
</key>
<value>
<dictionary>
<item>
<key>
<string>
name_container
</string>
</key>
<value>
<string>
container
</string>
</value>
</item>
<item>
<key>
<string>
name_context
</string>
</key>
<value>
<string>
context
</string>
</value>
</item>
<item>
<key>
<string>
name_m_self
</string>
</key>
<value>
<string>
script
</string>
</value>
</item>
<item>
<key>
<string>
name_subpath
</string>
</key>
<value>
<string>
traverse_subpath
</string>
</value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</state>
</object>
</value>
</item>
<item>
<key>
<string>
_params
</string>
</key>
<value>
<string>
data
</string>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
Base_wendelinDataToNumpy
</string>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/Base_wendelinTextToNumpy.py
0 → 100644
View file @
881663d0
import
base64
return
context
.
Base_wendelinDataToNumpy
(
base64
.
b64decode
(
text
))
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/Base_wendelinTextToNumpy.xml
0 → 100644
View file @
881663d0
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"PythonScript"
module=
"Products.PythonScripts.PythonScript"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
Script_magic
</string>
</key>
<value>
<int>
3
</int>
</value>
</item>
<item>
<key>
<string>
_bind_names
</string>
</key>
<value>
<object>
<klass>
<global
name=
"NameAssignments"
module=
"Shared.DC.Scripts.Bindings"
/>
</klass>
<tuple/>
<state>
<dictionary>
<item>
<key>
<string>
_asgns
</string>
</key>
<value>
<dictionary>
<item>
<key>
<string>
name_container
</string>
</key>
<value>
<string>
container
</string>
</value>
</item>
<item>
<key>
<string>
name_context
</string>
</key>
<value>
<string>
context
</string>
</value>
</item>
<item>
<key>
<string>
name_m_self
</string>
</key>
<value>
<string>
script
</string>
</value>
</item>
<item>
<key>
<string>
name_subpath
</string>
</key>
<value>
<string>
traverse_subpath
</string>
</value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</state>
</object>
</value>
</item>
<item>
<key>
<string>
_params
</string>
</key>
<value>
<string>
text
</string>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
Base_wendelinTextToNumpy
</string>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
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