Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Coopdevs OCB mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Odoo
Coopdevs OCB mirror
Commits
540b753b
Commit
540b753b
authored
10 years ago
by
Fabien Meghazi
Browse files
Options
Downloads
Patches
Plain Diff
[ADD] Support for ir.attachments in assets bundles
bzr revid: fme@openerp.com-20140505160953-yk6688ey7eoz5579
parent
9ca54d43
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openerp/addons/base/ir/ir_qweb.py
+30
-26
30 additions, 26 deletions
openerp/addons/base/ir/ir_qweb.py
with
30 additions
and
26 deletions
openerp/addons/base/ir/ir_qweb.py
+
30
−
26
View file @
540b753b
...
...
@@ -23,9 +23,11 @@ import openerp.http
import
openerp.tools
import
openerp.tools.func
import
openerp.tools.lru
from
openerp.http
import
request
from
openerp.tools.safe_eval
import
safe_eval
as
eval
from
openerp.osv
import
osv
,
orm
,
fields
from
openerp.tools.translate
import
_
from
openerp
import
SUPERUSER_ID
_logger
=
logging
.
getLogger
(
__name__
)
...
...
@@ -1048,7 +1050,7 @@ class AssetsBundle(object):
self
.
cache
[
key
]
=
content
if
self
.
debug
:
return
"
/*
\n
%s
\n
*/
\n
"
%
'
\n
'
.
join
(
[
asset
.
filename
for
asset
in
self
.
javascripts
if
asset
.
filename
])
+
self
.
cache
[
key
]
[
asset
.
url
for
asset
in
self
.
javascripts
if
asset
.
url
])
+
self
.
cache
[
key
]
return
self
.
cache
[
key
]
def
css
(
self
):
...
...
@@ -1068,50 +1070,55 @@ class AssetsBundle(object):
self
.
cache
[
key
]
=
content
if
self
.
debug
:
return
"
/*
\n
%s
\n
*/
\n
"
%
'
\n
'
.
join
(
[
asset
.
filename
for
asset
in
self
.
javascripts
if
asset
.
filename
])
+
self
.
cache
[
key
]
[
asset
.
url
for
asset
in
self
.
javascripts
if
asset
.
url
])
+
self
.
cache
[
key
]
return
self
.
cache
[
key
]
class
WebAsset
(
object
):
def
__init__
(
self
,
source
=
None
,
url
=
None
):
self
.
source
=
source
self
.
url
=
url
self
.
_
filename
=
None
self
.
_
irattach
=
None
self
.
_content
=
None
@property
def
filename
(
self
):
if
self
.
_filename
is
None
and
self
.
url
:
self
.
filename
=
None
self
.
last_modified
=
None
if
source
:
self
.
last_modified
=
datetime
.
datetime
(
1970
,
1
,
1
)
if
url
:
module
=
filter
(
None
,
self
.
url
.
split
(
'
/
'
))[
0
]
try
:
# Test url against modules static assets
mpath
=
openerp
.
http
.
addons_manifest
[
module
][
'
addons_path
'
]
self
.
filename
=
mpath
+
self
.
url
.
replace
(
'
/
'
,
os
.
path
.
sep
)
self
.
last_modified
=
datetime
.
datetime
.
fromtimestamp
(
os
.
path
.
getmtime
(
self
.
filename
))
except
Exception
:
raise
KeyError
(
"
Could not find asset
'
%s
'
for
'
%s
'
addon
"
%
(
self
.
url
,
module
))
self
.
_filename
=
mpath
+
self
.
url
.
replace
(
'
/
'
,
os
.
path
.
sep
)
return
self
.
_filename
try
:
# Test url against ir.attachments
domain
=
[(
'
type
'
,
'
=
'
,
'
binary
'
),
(
'
url
'
,
'
=
'
,
self
.
url
)]
attach
=
request
.
registry
[
'
ir.attachment
'
].
search_read
(
request
.
cr
,
SUPERUSER_ID
,
domain
,
[
'
__last_update
'
,
'
datas
'
,
'
mimetype
'
],
context
=
request
.
context
)
self
.
_irattach
=
attach
[
0
]
server_format
=
openerp
.
tools
.
misc
.
DEFAULT_SERVER_DATETIME_FORMAT
try
:
self
.
last_modified
=
datetime
.
datetime
.
strptime
(
attach
[
0
][
'
__last_update
'
],
server_format
+
'
.%f
'
)
except
ValueError
:
self
.
last_modified
=
datetime
.
datetime
.
strptime
(
attach
[
0
][
'
__last_update
'
],
server_format
)
except
Exception
:
raise
KeyError
(
"
Could not find asset
'
%s
'
for
'
%s
'
addon
"
%
(
self
.
url
,
module
))
@property
@
openerp.tools.func.lazy_
property
def
content
(
self
):
if
self
.
_content
is
None
:
self
.
_content
=
self
.
get_content
()
return
self
.
_content
def
get_content
(
self
):
if
self
.
source
:
return
self
.
source
if
self
.
_irattach
:
return
self
.
_irattach
[
'
datas
'
].
decode
(
'
base64
'
)
return
self
.
get_content
()
def
get_content
(
self
):
with
open
(
self
.
filename
,
'
rb
'
)
as
fp
:
return
fp
.
read
().
decode
(
'
utf-8
'
)
def
minify
(
self
):
return
self
.
content
@property
def
last_modified
(
self
):
if
self
.
source
:
# TODO: return last_update of bundle's ir.ui.view
return
datetime
.
datetime
(
1970
,
1
,
1
)
return
datetime
.
datetime
.
fromtimestamp
(
os
.
path
.
getmtime
(
self
.
filename
))
class
JavascriptAsset
(
WebAsset
):
def
minify
(
self
):
return
rjsmin
(
self
.
content
)
...
...
@@ -1122,9 +1129,6 @@ class StylesheetAsset(WebAsset):
rx_sourceMap
=
re
.
compile
(
r
'
(/\*# sourceMappingURL=.*)
'
,
re
.
U
)
def
_get_content
(
self
):
if
self
.
source
:
return
self
.
source
with
open
(
self
.
filename
,
'
rb
'
)
as
fp
:
firstline
=
fp
.
readline
()
m
=
re
.
match
(
r
'
@charset
"
([^
"
]+)
"
;
'
,
firstline
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment