/usr/share/doc/isso/html/faq.html is in isso 0.9.9-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Frequently asked question</title>
<!--link rel="stylesheet" href="_static/css/site.css" type="text/css" /-->
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/site.css"/>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.9.9',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="shortcut icon" href="_static/favicon.ico"/>
<link rel="top" title="Isso 0.9.9 documentation" href="index.html" />
</head>
<body>
<div class="wrapper">
<div class="header">
<header>
<img class="logo" src="_static/isso.svg" alt="Wynaut by @veekun"/>
<div class="title">
<a href="..html">
<h1>Isso</h1>
<h2>a commenting server similar to Disqus</h2>
</a>
</div>
</header>
<nav>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="contribute.html">Contribute</a></li>
<li><a href="docs.html">Documentation</a></li>
</ul>
</nav>
</div>
<div class="outer">
<header>
<h1>Frequently asked question</h1>
</header>
</div>
<main>
<div class="sidebar">
</div>
<div class="docs">
<div class="section" id="frequently-asked-question">
<div class="section" id="why-not-use-gravatar-libravatar">
<h2>Why not use Gravatar/Libravatar/... ?<a class="headerlink" href="#why-not-use-gravatar-libravatar" title="Permalink to this headline">¶</a></h2>
<p>Various people asked or complained about the generated icons next to their
comments. First, it is not an avatar, it is an identicon used to
<em>identify</em> an author of multiple comments without leaking personal
informations (unlike Gravatar).</p>
<p>If you are in need of <a class="reference external" href="https://secure.gravatar.com/">Gravatar</a>, then use Disqus. If you run your own
<a class="reference external" href="http://libravatar.org/">Libravatar</a> server, you can work on a patch for Isso which adds <em>optional</em>
support for avatars.</p>
</div>
<div class="section" id="why-sqlite3">
<h2>Why SQLite3?<a class="headerlink" href="#why-sqlite3" title="Permalink to this headline">¶</a></h2>
<p>Although partially answered on the index page, here a more complete answer: If
you manage massive amounts of comments, Isso is a really bad choice. Isso is
designed to be simple and easy to setup, not optimizied for high-traffic
websites (use a <a class="reference internal" href="#dedicated-disqus">dedicated Disqus</a> instance then).</p>
<blockquote>
<div>comments are not big data</div></blockquote>
<p>For example, 209 threads and 778 comments in total only need 620K (kilobyte)
memory. Excellent use case for SQLite.</p>
<span class="target" id="dedicated-disqus"></span></div>
</div>
</div>
</main>
<div class="push"></div>
</div>
<div class="outer footer">
<footer>
© Copyright 2014, Martin Zimmermann.
Made with <a href="http://sphinx-doc.org/">Sphinx</a>.
</footer>
</div>
</body>
</html>
|