Coder Social home page Coder Social logo

tengine-website's Issues

build warning

sphinx-build -b html -d build/doctrees source build/html
Making output directory...
Running Sphinx v1.1.3
number_ref loaded
number_label loaded
loading translations [zh_CN]... done
loading pickled environment... not yet created
building [html]: targets for 20 source files that are out of date
updating environment: 20 added, 0 changed, 0 removed
reading sources... [100%] source_analysis
/home/wenjing.ywb/trunk/source/appendix_a.rst:28: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-1.JPG
/home/wenjing.ywb/trunk/source/appendix_a.rst:: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-2.JPG
/home/wenjing.ywb/trunk/source/appendix_a.rst:45: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-3.JPG
/home/wenjing.ywb/trunk/source/appendix_a.rst:53: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-4.JPG
/home/wenjing.ywb/trunk/source/appendix_a.rst:57: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-5.JPG
/home/wenjing.ywb/trunk/source/appendix_a.rst:: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-6.JPG
/home/wenjing.ywb/trunk/source/appendix_a.rst:70: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-7.JPG
/home/wenjing.ywb/trunk/source/appendix_a.rst:: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-8.JPG
/home/wenjing.ywb/trunk/source/appendix_a.rst:: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-9.JPG
/home/wenjing.ywb/trunk/source/appendix_a.rst:: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-10.JPG
/home/wenjing.ywb/trunk/source/appendix_a.rst:: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-11.JPG
/home/wenjing.ywb/trunk/source/appendix_a.rst:: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-12.JPG
/home/wenjing.ywb/trunk/source/appendix_a.rst:107: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/code-style-13.JPG
/home/wenjing.ywb/trunk/source/appendix_c.rst:258: WARNING: Title underline too short.

Nginx?Windows?????nginx??
^^^^^^^^^^^^^^^^^^^^^^^^
/home/wenjing.ywb/trunk/source/appendix_c.rst:258: WARNING: Title underline too short.

Nginx?Windows?????nginx??
^^^^^^^^^^^^^^^^^^^^^^^^
/home/wenjing.ywb/trunk/source/appendix_c.rst:275: WARNING: Title underline too short.

Nginx?Linux?????nginx??
^^^^^^^^^^^^^^^^^^^^^^^^
/home/wenjing.ywb/trunk/source/appendix_c.rst:275: WARNING: Title underline too short.

Nginx?Linux?????nginx??
^^^^^^^^^^^^^^^^^^^^^^^^
/home/wenjing.ywb/trunk/source/appendix_c.rst:481: WARNING: Title underline too short.

?????????????
^^^^^^^^^^^^^^^^^^^^^^^^
/home/wenjing.ywb/trunk/source/appendix_c.rst:481: WARNING: Title underline too short.

?????????????
^^^^^^^^^^^^^^^^^^^^^^^^
/home/wenjing.ywb/trunk/source/appendix_c.rst:537: WARNING: Title underline too short.

C.3 ??GDB??
+++++++++++++
/home/wenjing.ywb/trunk/source/appendix_c.rst:537: WARNING: Title underline too short.

C.3 ??GDB??
+++++++++++++
/home/wenjing.ywb/trunk/source/appendix_c.rst:547: WARNING: Title underline too short.

C.5 ??/????
++++++++++++++++
/home/wenjing.ywb/trunk/source/appendix_c.rst:547: WARNING: Title underline too short.

C.5 ??/????
++++++++++++++++
/home/wenjing.ywb/trunk/source/chapter_02.rst:1211: WARNING: Inline emphasis start-string without end-string.
/home/wenjing.ywb/trunk/source/chapter_02.rst:: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/chapter-2-1.PNG
/home/wenjing.ywb/trunk/source/chapter_02.rst:: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/chapter-2-2.PNG
/home/wenjing.ywb/trunk/source/chapter_04.rst:70: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/chapter-4-1.png
/home/wenjing.ywb/trunk/source/chapter_04.rst:164: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/chapter-4-2.png
/home/wenjing.ywb/trunk/source/chapter_05.rst:325: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/chapter-5-1.PNG
/home/wenjing.ywb/trunk/source/chapter_05.rst:389: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/chapter-5-2.PNG
/home/wenjing.ywb/trunk/source/chapter_09.rst:49: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/chapter-9-1.jpg
/home/wenjing.ywb/trunk/source/chapter_10.rst:168: ERROR: Error in "code" directive:
maximum 1 argument(s) allowed, 10 supplied.

.. code:: c
ngx_pool_cleanup_t *
ngx_pool_cleanup_add(ngx_pool_t *p, size_t size)
{
ngx_pool_cleanup_t *c;

    c = ngx_palloc(p, sizeof(ngx_pool_cleanup_t));
    if (c == NULL) {
        return NULL;
    }

    if (size) {
        c->data = ngx_palloc(p, size);
        if (c->data == NULL) {
            return NULL;
        }

    } else {
        c->data = NULL;
    }

    c->handler = NULL;
    c->next = p->cleanup;

    p->cleanup = c;

    ngx_log_debug1(NGX_LOG_DEBUG_ALLOC, p->log, 0, "add cleanup: %p", c);

    return c;
}

/home/wenjing.ywb/trunk/source/chapter_10.rst:: WARNING: nonlocal image URI found: https://raw.github.com/yzprofile/nginx-book/master/source/images/chapter-10-1.PNG
/home/wenjing.ywb/trunk/source/chapter_12.rst:1593: WARNING: Inline emphasis start-string without end-string.
/home/wenjing.ywb/trunk/source/chapter_12.rst:1737: ERROR: Content block expected for the "code" directive; none found.
/home/wenjing.ywb/trunk/source/chapter_12.rst:1739: WARNING: Inline emphasis start-string without end-string.
/home/wenjing.ywb/trunk/source/chapter_12.rst:1739: WARNING: Inline emphasis start-string without end-string.
/home/wenjing.ywb/trunk/source/chapter_12.rst:2356: WARNING: Inline emphasis start-string without end-string.
/home/wenjing.ywb/trunk/source/chapter_12.rst:2982: ERROR: Error in "code" directive:
maximum 1 argument(s) allowed, 9 supplied.

.. code:: c
#if NGX_HTTP_SSL
/* http ssl code */
#endif
/home/wenjing.ywb/trunk/source/chapter_12.rst:: WARNING: nonlocal image URI found: http://tengine.taobao.org/book/_images/chapter-12-1.png

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.