浏览代码

Enable chat for the documentation as well.

JC Brand 10 年之前
父节点
当前提交
1be0917a7b
共有 2 个文件被更改,包括 31 次插入1 次删除
  1. 4 0
      docs/source/_static/style.css
  2. 27 1
      docs/source/_templates/layout.html

+ 4 - 0
docs/source/_static/style.css

@@ -1,3 +1,7 @@
+h1 {
+    font-size: 50px;
+}
+
 .navbar-brand {
     padding-top: 7px;
 }

+ 27 - 1
docs/source/_templates/layout.html

@@ -2,4 +2,30 @@
 {% extends "!layout.html" %}
 
 {# Custom CSS overrides #}
-{% set bootswatch_css_custom = ['_static/style.css'] %}
+{% set bootswatch_css_custom = ['_static/style.css', "../../css/converse.min.css"] %}
+{% set script_files = script_files + ["../../builds/converse.min.js"] %}
+
+{# Add some extra stuff before and use existing with 'super()' call. #}
+{% block footer %}
+    {{ super() }}
+    <script type="text/javascript">
+        var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+        document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+    </script>
+    <script type="text/javascript">try { var pageTracker = _gat._getTracker("UA-2128260-8"); pageTracker._trackPageview(); } catch(err) {}</script>
+    <script>
+        require(['converse'], function (converse) {
+            converse.initialize({
+                bosh_service_url: 'https://conversejs.org/http-bind/', // Please use this connection manager only for testing purposes
+                i18n: locales['en'], // Refer to ./locale/locales.js to see which locales are supported
+                keepalive: true,
+                play_sounds: true,
+                roster_groups: true,
+                debug: false,
+                xhr_user_search: false
+            });
+        });
+    </script>
+{% endblock %}
+
+