Skip to content

Commit ecfe85d

Browse files
committed
[REF] web: static/src/(img|fonts) => static/(img|fonts)
1 parent f6c03b7 commit ecfe85d

File tree

249 files changed

+107
-107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

249 files changed

+107
-107
lines changed

addons/account/views/account_portal_templates.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
<div class="row">
120120
<div class="col flex-grow-0 pr-2">
121121
<img t-if="invoice.invoice_user_id.image_1024" class="rounded-circle mt-1 o_portal_contact_img" t-att-src="image_data_uri(invoice.invoice_user_id.image_1024)" alt="Contact"/>
122-
<img t-else="" class="rounded-circle mt-1 o_portal_contact_img" src="/web/static/src/img/user_menu_avatar.png" alt="Contact"/>
122+
<img t-else="" class="rounded-circle mt-1 o_portal_contact_img" src="/web/static/img/user_menu_avatar.png" alt="Contact"/>
123123
</div>
124124
<div class="col pl-0">
125125
<span t-field="invoice.invoice_user_id" t-options='{"widget": "contact", "fields": ["name", "phone"], "no_marker": True}'/>

addons/crm/models/crm_lead.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,7 @@ def action_set_won_rainbowman(self):
956956
'effect': {
957957
'fadeout': 'slow',
958958
'message': message,
959-
'img_url': '/web/image/%s/%s/image_1024' % (self.team_id.user_id._name, self.team_id.user_id.id) if self.team_id.user_id.image_1024 else '/web/static/src/img/smile.svg',
959+
'img_url': '/web/image/%s/%s/image_1024' % (self.team_id.user_id._name, self.team_id.user_id.id) if self.team_id.user_id.image_1024 else '/web/static/img/smile.svg',
960960
'type': 'rainbow_man',
961961
}
962962
}

addons/hw_drivers/views/pos_display.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<body>
5252
<div class="container-fluid">
5353
<div class="text-center pt-5">
54-
<img style="width: 150px;" src="/web/static/src/img/logo_inverse_white_206px.png">
54+
<img style="width: 150px;" src="/web/static/img/logo_inverse_white_206px.png">
5555
<p class="mt-3" style="color: #fff;font-size: 30px;">IoTBox</p>
5656
</div>
5757
<div class="pos-display-boxes">

addons/hw_posbox_homepage/views/loading.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="loading-block o_hide">
33
<div class="loading-message-block">
44
<div style="height: 50px">
5-
<img src="/web/static/src/img/spin.png" style="animation: spin 4s infinite linear;" alt="Loading...">
5+
<img src="/web/static/img/spin.png" style="animation: spin 4s infinite linear;" alt="Loading...">
66
</div>
77
<br>
88
<div class="loading-message">

addons/im_livechat/static/src/legacy/public_livechat.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ $o-mail-thread-window-zindex: $zindex-modal + 1 !default;
448448
&.o_neutral_face_icon:before {
449449
@extend %o-nocontent-init-image;
450450
@include size(120px, 140px);
451-
background: transparent url(/web/static/src/img/neutral_face.svg) no-repeat center;
451+
background: transparent url(/web/static/img/neutral_face.svg) no-repeat center;
452452
}
453453
}
454454

addons/mail/static/src/components/composer/composer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class Composer extends Component {
135135
id: this.env.messaging.currentUser.id,
136136
model: 'res.users',
137137
})
138-
: '/web/static/src/img/user_menu_avatar.png';
138+
: '/web/static/img/user_menu_avatar.png';
139139
return avatar;
140140
}
141141

addons/mail/static/src/components/message_list/message_list.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
&.o-neutral-face-icon:before {
9090
@extend %o-nocontent-init-image;
9191
@include size(120px, 140px);
92-
background: transparent url(/web/static/src/img/neutral_face.svg) no-repeat center;
92+
background: transparent url(/web/static/img/neutral_face.svg) no-repeat center;
9393
}
9494
}
9595

addons/mail/static/src/scss/thread.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
&.o_neutral_face_icon:before {
148148
@extend %o-nocontent-init-image;
149149
@include size(120px, 140px);
150-
background: transparent url(/web/static/src/img/neutral_face.svg) no-repeat center;
150+
background: transparent url(/web/static/img/neutral_face.svg) no-repeat center;
151151
}
152152
}
153153

addons/partner_autocomplete/static/tests/partner_autocomplete_tests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ odoo.define('partner_autocomplete.tests', function (require) {
207207
'<field name="vat"/>' +
208208
'</form>',
209209
mockRPC: function (route) {
210-
if (route === "/web/static/src/img/placeholder.png"
210+
if (route === "/web/static/img/placeholder.png"
211211
|| route === "odoo.com/logo.png"
212212
|| route === "data:image/png;base64,odoobase64") { // land here as it is not valid base64 content
213213
return Promise.resolve();
@@ -280,7 +280,7 @@ odoo.define('partner_autocomplete.tests', function (require) {
280280
'<field name="vat"/>' +
281281
'</form>',
282282
mockRPC: function (route) {
283-
if (route === "/web/static/src/img/placeholder.png"
283+
if (route === "/web/static/img/placeholder.png"
284284
|| route === "odoo.com/logo.png"
285285
|| route === "data:image/png;base64,odoobase64") { // land here as it is not valid base64 content
286286
return Promise.resolve();

addons/payment/static/src/js/post_processing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ odoo.define('payment.post_processing', function (require) {
124124
displayLoading: function () {
125125
var msg = _t("We are processing your payment, please wait ...");
126126
$.blockUI({
127-
'message': '<h2 class="text-white"><img src="/web/static/src/img/spin.png" class="fa-pulse"/>' +
127+
'message': '<h2 class="text-white"><img src="/web/static/img/spin.png" class="fa-pulse"/>' +
128128
' <br />' + msg +
129129
'</h2>'
130130
});

0 commit comments

Comments
 (0)