ФорумПрограммированиеPythonБатарейки → django-templated-email

django-templated-email

  • phpdude

    Сообщения: 26646 Репутация: N Группа: в ухо

    Spritz Март 8, 2014, 2:46 п.п.

    Мне очень симпатизирует эта батарейка.

    BradWhittington/django-templated-email [github.com]

    Даж pull request оформил с некоторым доп функционалом, на мой взгляд очень полезным.

    Support for TEMPLATED_EMAIL_PLAIN_FILTER by phpdude · Pull Request #35 · BradWhittington/django-templated-email [github.com]

    Сапожник без сапог
  • adw0rd

    Сообщения: 22959 Репутация: N Группа: в ухо

    Spritz Март 8, 2014, 3:01 п.п., спустя 14 минут 41 секунду

    Тревису не понравился твой коммит)

    Спустя 79 сек.

    А вообще всякие форматтеры надо оформлять в виде пайпов, а сейчас у тебя один только форматтер можно указать

    https://smappi.org/ - платформа по созданию API на все случаи жизни
  • phpdude

    Сообщения: 26646 Репутация: N Группа: в ухо

    Spritz Март 8, 2014, 3:04 п.п., спустя 2 минуты 58 секунд

    @adw0rd, покажи ка пример как надо.

    да тревис лох, у него нет auto add imports как оказалось )))))) комичу чтобы он сука сожрал)

    Спустя 29 сек.

    зы: 1го форматтера на мой взгляд тут достаточно, но интересно "как надо"

    Спустя 50 сек.

    эдво, и почему такая фигня произошла с подкатегорией? Screenshot “django-templated-email / Форум.png” [take.ms]

    Сапожник без сапог
  • adw0rd

    Сообщения: 22959 Репутация: N Группа: в ухо

    Spritz Март 8, 2014, 3:32 п.п., спустя 27 минут 45 секунд

    эдво, и почему такая фигня произошла с подкатегорией? http://take.ms/4elMY

    Это типа фишка, чтобы сокращать breadcrumbs, кто-то просил и вроде синклер делал, уже не помню

    Спустя 184 сек.

    @adw0rd, покажи ка пример как надо.

    Ну делаешь кортеж

    TEMPLATED_EMAIL_PLAIN_FILTERS = ('some_filter.one', 'some_filter.two', ...)
    

    Потом по нему идешь сверху в низ и скармливаешь выход предыдущего на вход следующего

    Спустя 26 сек.

    Вообщем как мидльвари устроены в жанге, только в одну сторону

    Спустя 40 сек.

    Это называется pipelines, я такое делал для мигратора даных с вордпресса на marcus adw0rd/marcus [github.com] (можешь тут глянуть примеры, README.rst и код)

    https://smappi.org/ - платформа по созданию API на все случаи жизни
  • phpdude

    Сообщения: 26646 Репутация: N Группа: в ухо

    Spritz Март 8, 2014, 3:39 п.п., спустя 7 минут 46 секунд

    @adw0rd, а, все, понял)

    ок, в след раз так и сделаю))) готовых просто фиьтров нет никаких, все равно custom. поэтому и подумал что нет смысла больше одного .. хотя могут появиться если идея сообществу понравится)))

    Очень удобно получается.

    https://gist.github.com/phpdude/c383a66f971c4bea1097

    --===============3044081452100014207==
    MIME-Version: 1.0
    Content-Type: text/plain; charset="utf-8"
    Content-Transfer-Encoding: 7bit
    # http://www.aaronsw.com/2002/html2text/
    html2text is a Python script that converts a page of HTML into clean, easy-to-
    read plain ASCII text. Better yet, that ASCII also happens to be valid
    Markdown (a text-to-HTML format).
    Usage: `html2text.py [(filename|url) [encoding]]`
    Options:
    --version show program's version number and exit
    -h, --help show this help message and exit
    --ignore-links don't include any formatting for links
    --ignore-images don't include any formatting for images
    -g, --google-doc convert an html-exported Google Document
    -d, --dash-unordered-list
    use a dash rather than a star for unordered list items
    -b BODY_WIDTH, --body-width=BODY_WIDTH
    number of characters per output line, 0 for no wrap
    -i LIST_INDENT, --google-list-indent=LIST_INDENT
    number of pixels Google indents nested lists
    -s, --hide-strikethrough
    hide strike-through text. only relevent when -g is
    specified as well
    Or you can use it from within Python:
    import html2text
    print html2text.html2text("<p>Hello, world.</p>")
    Or with some configuration options:
    import html2text
    h = html2text.HTML2Text()
    h.ignore_links = True
    print h.handle("<p>Hello, <a href='http://earth.google.com/'>world</a>!")
    Originally written by Aaron Swartz. This code is distributed under the GPLv3.
    ## How to do a release
    1. Update the version in `html2text.py`
    2. Update the version in `setup.py`
    3. Run `python setup.py sdist upload`
    ## How to run unit tests
    cd test/
    python run_tests.py
    http://travis-ci.org/aaronsw/html2text
    --===============3044081452100014207==
    MIME-Version: 1.0
    Content-Type: text/html; charset="utf-8"
    Content-Transfer-Encoding: 7bit
    <article itemprop="mainContentOfPage" class="markdown-body entry-content">
    <h1>
    <a href="#html2text" class="anchor" name="html2text"><span
    class="octicon octicon-link"></span></a><a
    href="http://www.aaronsw.com/2002/html2text/">html2text</a>
    </h1>
    <p>html2text is a Python script that converts a page of HTML into
    clean, easy-to-read plain ASCII text. Better yet, that ASCII also
    happens to be valid Markdown (a text-to-HTML format).</p>
    <p>Usage: <code>html2text.py [(filename|url) [encoding]]</code></p>
    <pre><code>Options:
    --version show program's version number and exit
    -h, --help show this help message and exit
    --ignore-links don't include any formatting for links
    --ignore-images don't include any formatting for images
    -g, --google-doc convert an html-exported Google Document
    -d, --dash-unordered-list
    use a dash rather than a star for unordered list items
    -b BODY_WIDTH, --body-width=BODY_WIDTH
    number of characters per output line, 0 for no wrap
    -i LIST_INDENT, --google-list-indent=LIST_INDENT
    number of pixels Google indents nested lists
    -s, --hide-strikethrough
    hide strike-through text. only relevent when -g is
    specified as well
    </code></pre>
    <p>Or you can use it from within Python:</p>
    <pre><code>import html2text
    print html2text.html2text("&lt;p&gt;Hello, world.&lt;/p&gt;")
    </code></pre>
    <p>Or with some configuration options:</p>
    <pre><code>import html2text
    h = html2text.HTML2Text()
    h.ignore_links = True
    print h.handle("&lt;p&gt;Hello, &lt;a href='http://earth.google.com/'&gt;world&lt;/a&gt;!")
    </code></pre>
    <p><em>Originally written by Aaron Swartz. This code is distributed
    under the GPLv3.</em></p>
    <h2>
    <a href="#how-to-do-a-release" class="anchor"
    name="how-to-do-a-release"><span
    class="octicon octicon-link"></span></a>How to do a release
    </h2>
    <ol>
    <li>Update the version in <code>html2text.py</code>
    </li>
    <li>Update the version in <code>setup.py</code>
    </li>
    <li>Run <code>python setup.py sdist upload</code>
    </li>
    </ol>
    <h2>
    <a href="#how-to-run-unit-tests" class="anchor"
    name="how-to-run-unit-tests"><span
    class="octicon octicon-link"></span></a>How to run unit
    tests</h2>
    <pre><code>cd test/
    python run_tests.py
    </code></pre>
    <p><a href="http://travis-ci.org/aaronsw/html2text"><img
    style="max-width:100%;" alt="Build Status"
    src="https://secure.travis-ci.org/aaronsw/html2text.png"></a>
    </p></article>
    --===============3044081452100014207==--
    ---------------------------------------------
    view raw email.log hosted with ❤ by GitHub

    с таким вот фильтриком

    def plainfilter(html):
        encoder = HTML2Text()
        encoder.ignore_images = True
        encoder.ignore_emphasis = True
        text = encoder.handle(html)
    
        text = re.sub(r&#39;\[[^\]]*\]\(([^\)]+)\)&#39;, &#39;\\1&#39;, text)
    
        return text
    

    Спустя 117 сек.

    Это типа фишка, чтобы сокращать breadcrumbs, кто-то просил и вроде синклер делал, уже не помню

    нахуй она нужна? уберите ... я там размер шрифта поправил щас красиво выглядеть будет)

    Сапожник без сапог
  • adw0rd

    Сообщения: 22959 Репутация: N Группа: в ухо

    Spritz Март 8, 2014, 4:08 п.п., спустя 28 минут 29 секунд

    Про breadcrumbs ответил в другом твоем посте)

    https://smappi.org/ - платформа по созданию API на все случаи жизни

Пожалуйста, авторизуйтесь, чтобы написать комментарий!