From e8a0590f48e77e5eab3927d4025f23392304d753 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Wed, 30 Jul 2014 17:46:07 +0300 Subject: [PATCH] develop/httpserver.rst: fix links & HTML5 All links to the plugins went to ProgVal/Limnoria, most of them are really at ProgVal/Supybot-plugins. Code examples now use HTML5. --- develop/httpserver.rst | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/develop/httpserver.rst b/develop/httpserver.rst index 24a64eb..391d288 100644 --- a/develop/httpserver.rst +++ b/develop/httpserver.rst @@ -21,9 +21,9 @@ Some example plugins are `Factoids`_, `WebStats`_, `GitHub`_, UfrPaste, and `WebDoc`_ .. _Factoids: https://github.com/ProgVal/Limnoria/tree/master/plugins/Factoids -.. _WebStats: https://github.com/ProgVal/Limnoria/tree/master/plugins/WebStats -.. _GitHub: https://github.com/ProgVal/Limnoria/tree/master/plugins/GitHub -.. _WebDoc: https://github.com/ProgVal/Limnoria/tree/master/plugins/WebDoc +.. _WebStats: https://github.com/ProgVal/Supybot-plugins/tree/master/WebStats +.. _GitHub: https://github.com/ProgVal/Supybot-plugins/tree/master/GitHub +.. _WebDoc: https://github.com/ProgVal/Supybot-plugins/tree/master/WebDoc Using the HTTP server in a plugin @@ -143,8 +143,10 @@ Here is the code of the callback... pretty much simple, as ever:: handler.send_header('Content-type', 'text/html') # This is the MIME for HTML data handler.end_headers() # We won't send more headers handler.wfile.write(b""" + + Supystory @@ -163,8 +165,10 @@ Here is the code of the callback... pretty much simple, as ever:: handler.send_header('Content-type', 'text/html') # This is the MIME for HTML data handler.end_headers() # We won't send more headers handler.wfile.write(b""" + + Error @@ -200,8 +204,10 @@ are the only 'big' pages), like this:: DEFAULT_TEMPLATES = { 'supystory/index.html': """ + + Supystory @@ -215,8 +221,10 @@ are the only 'big' pages), like this:: """, 'supystory/error.html': """ + + Error