Skip to content
Snippets Groups Projects
  • Thibault Delavallée's avatar
    d79197f1
    [REF] various: remove usage and dependency on html2text library · d79197f1
    Thibault Delavallée authored
    
    We have our own html2plaintext, already used in lot of use cases instead of
    just a few for the html2txt library.
    
    Notably for emails: most emails going through Odoo stack use our simple
    html2plaintext to format the body alternative. When no body alternative
    is given to ``build_email`` an alternative is built using the library to
    remove. Using our own parser allows to have the same results compared to
    using ``MailMail.send()``. Difference lies in spaces and new lines as well
    as markdown. Our html2plaintext is a bit simple and does not try to generate
    Markdown but generates a simple plaintext version.
    
    This also helps solving some issues with depending on that library.
    
    Task-2702034
    
    closes odoo/odoo#82330
    
    X-original-commit: odoo/odoo@9b5f86e8fa5bef341ea7392b86987092d6f6933a
    Related: odoo/enterprise#23292
    Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
    d79197f1
    History
    [REF] various: remove usage and dependency on html2text library
    Thibault Delavallée authored
    
    We have our own html2plaintext, already used in lot of use cases instead of
    just a few for the html2txt library.
    
    Notably for emails: most emails going through Odoo stack use our simple
    html2plaintext to format the body alternative. When no body alternative
    is given to ``build_email`` an alternative is built using the library to
    remove. Using our own parser allows to have the same results compared to
    using ``MailMail.send()``. Difference lies in spaces and new lines as well
    as markdown. Our html2plaintext is a bit simple and does not try to generate
    Markdown but generates a simple plaintext version.
    
    This also helps solving some issues with depending on that library.
    
    Task-2702034
    
    closes odoo/odoo#82330
    
    X-original-commit: odoo/odoo@9b5f86e8fa5bef341ea7392b86987092d6f6933a
    Related: odoo/enterprise#23292
    Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
package.dfdebian 1.53 KiB
# Please note that this Dockerfile is used for testing nightly builds and should
# not be used to deploy Odoo
FROM debian:buster
MAINTAINER Odoo S.A. <info@odoo.com>

RUN apt-get update && \
    apt-get install -y locales && \
    rm -rf /var/lib/apt/lists/*

# Reconfigure locales such that postgresql uses UTF-8 encoding
RUN dpkg-reconfigure locales && \
    locale-gen C.UTF-8 && \
    /usr/sbin/update-locale LANG=C.UTF-8
ENV LC_ALL C.UTF-8
ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update -qq &&  \
    apt-get upgrade -qq -y && \
    apt-get install -qq -y\
        adduser \
        dh-python \
        packaging-dev \
        postgresql \
        postgresql-client \
        python3 \
        python3-babel \
        python3-dateutil \
        python3-decorator \
        python3-docutils \
        python3-gevent \
        python3-pil \
        python3-jinja2 \
        python3-libsass \
        python3-lxml \
        python3-mako \
        python3-ofxparse \
        python3-passlib \
        python3-polib \
        python3-psutil \
        python3-psycopg2 \
        python3-pydot \
        python3-pypdf2 \
        python3-qrcode \
        python3-renderpm \
        python3-reportlab \
        python3-requests \
        python3-serial \
        python3-setuptools \
        python3-stdnum \
        python3-tz \
        python3-usb \
        python3-vobject \
        python3-werkzeug \
        python3-xlsxwriter \
        python3-zeep \
        rsync && \
    rm -rf /var/lib/apt/lists/*

RUN echo "PS1=\"[\u@nightly-tests] # \"" > ~/.bashrc