Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README Typoe #39

Closed
redbassett opened this issue May 18, 2014 · 1 comment
Closed

README Typoe #39

redbassett opened this issue May 18, 2014 · 1 comment

Comments

@redbassett
Copy link

Debian/Ubuntu

Add the the apt repository
@xmo-odoo
Copy link
Collaborator

Thanks.

vaab pushed a commit to 0k/odoo that referenced this issue Jul 24, 2014
Add OpenUpgrade addon check for travis
nabero pushed a commit that referenced this issue Aug 5, 2014
Avoid to get company names such as "L'abc" to be transformed as "L'abc" opw 607221
richard-willdooit pushed a commit to richard-willdooit/odoo that referenced this issue Oct 12, 2016
yelizariev pushed a commit to yelizariev/odoo that referenced this issue Jan 13, 2020
    res = re.sub("&odoo#39;", "'", res)
MustafaMagdi pushed a commit to tajawal/odoo that referenced this issue Mar 30, 2020
robodoo pushed a commit that referenced this issue Jan 26, 2023
The view `hr_job_search_view` needs an xpath anchor set on the view
`view_job_filter_recruitment`. Since both views have default priority
the order they are applied depends on their ID. In a normal install
process the views are created in the right order, but there are cases
where the IDs are not on the right order.

Steps to reproduce:
1. Install hr_recruitment in 15.0
2. Remove the view pointed by view_job_filter_recruitment
3. Update to 16.0

We get an error:
```
ValueError: Element '<xpath expr="//filter[@name=&#39;my_favorite_jobs&#39;]">' cannot be located in parent view
```
robodoo pushed a commit that referenced this issue Jan 26, 2023
The view `hr_job_search_view` needs an xpath anchor set on the view
`view_job_filter_recruitment`. Since both views have default priority
the order they are applied depends on their ID. In a normal install
process the views are created in the right order, but there are cases
where the IDs are not on the right order.

Steps to reproduce:
1. Install hr_recruitment in 15.0
2. Remove the view pointed by view_job_filter_recruitment
3. Update to 16.0

We get an error:
```
ValueError: Element '<xpath expr="//filter[@name=&#39;my_favorite_jobs&#39;]">' cannot be located in parent view
```

closes #111073

Signed-off-by: Christophe Simonis <chs@odoo.com>
robodoo pushed a commit that referenced this issue Jan 26, 2023
The view `hr_job_search_view` needs an xpath anchor set on the view
`view_job_filter_recruitment`. Since both views have default priority
the order they are applied depends on their ID. In a normal install
process the views are created in the right order, but there are cases
where the IDs are not on the right order.

Steps to reproduce:
1. Install hr_recruitment in 15.0
2. Remove the view pointed by view_job_filter_recruitment
3. Update to 16.0

We get an error:
```
ValueError: Element '<xpath expr="//filter[@name=&#39;my_favorite_jobs&#39;]">' cannot be located in parent view
```

X-original-commit: 1e77fab
robodoo pushed a commit that referenced this issue Jan 26, 2023
The view `hr_job_search_view` needs an xpath anchor set on the view
`view_job_filter_recruitment`. Since both views have default priority
the order they are applied depends on their ID. In a normal install
process the views are created in the right order, but there are cases
where the IDs are not on the right order.

Steps to reproduce:
1. Install hr_recruitment in 15.0
2. Remove the view pointed by view_job_filter_recruitment
3. Update to 16.0

We get an error:
```
ValueError: Element '<xpath expr="//filter[@name=&#39;my_favorite_jobs&#39;]">' cannot be located in parent view
```

closes #111140

X-original-commit: 1e77fab
Signed-off-by: Christophe Simonis <chs@odoo.com>
Signed-off-by: Alvaro Fuentes Suarez (afu) <afu@odoo.com>
robodoo pushed a commit that referenced this issue Jan 26, 2023
The view `hr_job_search_view` needs an xpath anchor set on the view
`view_job_filter_recruitment`. Since both views have default priority
the order they are applied depends on their ID. In a normal install
process the views are created in the right order, but there are cases
where the IDs are not on the right order.

Steps to reproduce:
1. Install hr_recruitment in 15.0
2. Remove the view pointed by view_job_filter_recruitment
3. Update to 16.0

We get an error:
```
ValueError: Element '<xpath expr="//filter[@name=&#39;my_favorite_jobs&#39;]">' cannot be located in parent view
```

X-original-commit: 1e77fab
robodoo pushed a commit that referenced this issue Jan 26, 2023
The view `hr_job_search_view` needs an xpath anchor set on the view
`view_job_filter_recruitment`. Since both views have default priority
the order they are applied depends on their ID. In a normal install
process the views are created in the right order, but there are cases
where the IDs are not on the right order.

Steps to reproduce:
1. Install hr_recruitment in 15.0
2. Remove the view pointed by view_job_filter_recruitment
3. Update to 16.0

We get an error:
```
ValueError: Element '<xpath expr="//filter[@name=&#39;my_favorite_jobs&#39;]">' cannot be located in parent view
```

closes #111123

X-original-commit: 1e77fab
Signed-off-by: Christophe Simonis <chs@odoo.com>
Signed-off-by: Alvaro Fuentes Suarez (afu) <afu@odoo.com>
robodoo pushed a commit that referenced this issue May 25, 2023
Since we've created unescapeHTML to replace the _.unescape function. The
issue is that _.unescape was using the hex code '&#x27," for the
character " ' ". And the new function uses the decimal code '&#39;', but
as there are some old domains for dashboard have ben stored escaped with
'&#x27', we are now unable to unescape them.
robodoo pushed a commit that referenced this issue May 25, 2023
Since we've created unescapeHTML to replace the _.unescape function. The
issue is that _.unescape was using the hex code '&#x27," for the
character " ' ". And the new function uses the decimal code '&#39;', but
as there are some old domains for dashboard have ben stored escaped with
'&#x27', we are now unable to unescape them.

closes #122312

Signed-off-by: Lucas Perais (lpe) <lpe@odoo.com>
robodoo pushed a commit that referenced this issue May 25, 2023
Since we've created unescapeHTML to replace the _.unescape function. The
issue is that _.unescape was using the hex code '&#x27," for the
character " ' ". And the new function uses the decimal code '&#39;', but
as there are some old domains for dashboard have ben stored escaped with
'&#x27', we are now unable to unescape them.

X-original-commit: 1516b52
robodoo pushed a commit that referenced this issue May 25, 2023
Since we've created unescapeHTML to replace the _.unescape function. The
issue is that _.unescape was using the hex code '&#x27," for the
character " ' ". And the new function uses the decimal code '&#39;', but
as there are some old domains for dashboard have ben stored escaped with
'&#x27', we are now unable to unescape them.

closes #122457

X-original-commit: 1516b52
Signed-off-by: Lucas Perais (lpe) <lpe@odoo.com>
Signed-off-by: Masereel Pierre <pim@odoo.com>
robodoo pushed a commit that referenced this issue Dec 13, 2023
Revert [1]

Changing `t` into `span` is not allowed in stable, in case some
customization already exist and have xpath that target `t`. The
change OE side [2] is problematic too: if a DB has the old XML version
(`t`) and the user tries to install `industry_fsm`, an error will be
raised:
`Element '<xpath expr="//span[@t-if=&#39;record.partner_id.value&#39;]">'`
`cannot be located in parent view`

[1] b3e3c92
[2] odoo/enterprise@0940096

OPW-3629163
sentry-4700256130

closes #146094

Related: odoo/enterprise#52682
Signed-off-by: Xavier Bol (xbo) <xbo@odoo.com>
robodoo pushed a commit that referenced this issue Feb 29, 2024
Current behavior:
When printing products ZPL Labels, special characters are not printed
correctly. e.g. quotes become &#39;

Steps to reproduce:
- Modify a product name with special characters
- Print a product label
- Select ZPL Labels

As the report is only rendered as text, the special characters are not
dangerous and can be printed as is.

opw-3684870

closes #152657

Signed-off-by: Quentin Wolfs (quwo) <quwo@odoo.com>
robodoo pushed a commit that referenced this issue Mar 5, 2024
Current behavior:
When printing products ZPL Labels, special characters are not printed
correctly. e.g. quotes become &#39;

Steps to reproduce:
- Modify a product name with special characters
- Print a product label
- Select ZPL Labels

As the report is only rendered as text, the special characters are not
dangerous and can be printed as is.

opw-3684870

closes #155853

X-original-commit: 4c2e92d
Signed-off-by: Quentin Wolfs (quwo) <quwo@odoo.com>
robodoo pushed a commit that referenced this issue Mar 5, 2024
Current behavior:
When printing products ZPL Labels, special characters are not printed
correctly. e.g. quotes become &#39;

Steps to reproduce:
- Modify a product name with special characters
- Print a product label
- Select ZPL Labels

As the report is only rendered as text, the special characters are not
dangerous and can be printed as is.

opw-3684870

closes #156472

X-original-commit: b05ff00
Signed-off-by: Quentin Wolfs (quwo) <quwo@odoo.com>
robodoo pushed a commit that referenced this issue Mar 6, 2024
Current behavior:
When printing products ZPL Labels, special characters are not printed
correctly. e.g. quotes become &#39;

Steps to reproduce:
- Modify a product name with special characters
- Print a product label
- Select ZPL Labels

As the report is only rendered as text, the special characters are not
dangerous and can be printed as is.

opw-3684870

closes #156607

X-original-commit: 7875c91
Signed-off-by: Quentin Wolfs (quwo) <quwo@odoo.com>
robodoo pushed a commit that referenced this issue Mar 6, 2024
Current behavior:
When printing products ZPL Labels, special characters are not printed
correctly. e.g. quotes become &#39;

Steps to reproduce:
- Modify a product name with special characters
- Print a product label
- Select ZPL Labels

As the report is only rendered as text, the special characters are not
dangerous and can be printed as is.

opw-3684870

closes #156566

X-original-commit: 7875c91
Signed-off-by: Quentin Wolfs (quwo) <quwo@odoo.com>
robodoo pushed a commit that referenced this issue Mar 6, 2024
Current behavior:
When printing products ZPL Labels, special characters are not printed
correctly. e.g. quotes become &#39;

Steps to reproduce:
- Modify a product name with special characters
- Print a product label
- Select ZPL Labels

As the report is only rendered as text, the special characters are not
dangerous and can be printed as is.

opw-3684870

closes #156583

X-original-commit: 7875c91
Signed-off-by: Quentin Wolfs (quwo) <quwo@odoo.com>
robodoo pushed a commit that referenced this issue Mar 6, 2024
Current behavior:
When printing products ZPL Labels, special characters are not printed
correctly. e.g. quotes become &#39;

Steps to reproduce:
- Modify a product name with special characters
- Print a product label
- Select ZPL Labels

As the report is only rendered as text, the special characters are not
dangerous and can be printed as is.

opw-3684870

closes #156597

X-original-commit: 7875c91
Signed-off-by: Quentin Wolfs (quwo) <quwo@odoo.com>
robodoo pushed a commit that referenced this issue Mar 6, 2024
Current behavior:
When printing products ZPL Labels, special characters are not printed
correctly. e.g. quotes become &#39;

Steps to reproduce:
- Modify a product name with special characters
- Print a product label
- Select ZPL Labels

As the report is only rendered as text, the special characters are not
dangerous and can be printed as is.

opw-3684870

closes #156624

X-original-commit: 7875c91
Signed-off-by: Quentin Wolfs (quwo) <quwo@odoo.com>
robodoo pushed a commit that referenced this issue Mar 7, 2024
Current behavior:
When printing products ZPL Labels, special characters are not printed
correctly. e.g. quotes become &#39;

Steps to reproduce:
- Modify a product name with special characters
- Print a product label
- Select ZPL Labels

As the report is only rendered as text, the special characters are not
dangerous and can be printed as is.

opw-3684870

closes #156803

X-original-commit: 531cb95
Signed-off-by: Quentin Wolfs (quwo) <quwo@odoo.com>
robodoo pushed a commit that referenced this issue Mar 8, 2024
Current behavior:
When printing products ZPL Labels, special characters are not printed
correctly. e.g. quotes become &#39;

Steps to reproduce:
- Modify a product name with special characters
- Print a product label
- Select ZPL Labels

As the report is only rendered as text, the special characters are not
dangerous and can be printed as is.

opw-3684870

closes #156814

X-original-commit: 531cb95
Signed-off-by: Quentin Wolfs (quwo) <quwo@odoo.com>
Signed-off-by: Tiffany Chang (tic) <tic@odoo.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants