Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/webcheck/templates/about.html
blob: cee0830e13a83c0e5fe6348f0b20afc041d8d953 (plain)
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
{#
 # about.html - template for webcheck about plugin
 #
 # Copyright (C) 2013 Arthur de Jong
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 #
 # The files produced as output from the software do not automatically fall
 # under the copyright of the software, unless explicitly stated otherwise.
 #}

{% extends 'base.html' %}

{% block content %}
  <p>
    This is a website report generated by <tt>webcheck</tt> {{ webcheck.__version__ }}.
    <tt>webcheck</tt> is a website checking tool for webmasters. It crawls a
    given website and does a number of tests to see if links and pages are
    valid.
    More information about <tt>webcheck</tt> can be found at the
    <tt>webcheck</tt> homepage which is located at
    <a href="{{ webcheck.__homepage__ }}">{{ webcheck.__homepage__ }}</a>.
  </p>
  <p>
    This report was generated on {{ time }}, a total of {{ numlinks }}
    links were found.
  </p>

  <h3>Copyright</h3>
  <p>
    <tt>webcheck</tt> was originally named <tt>linbot</tt> which was
    developed by Albert Hopkins (marduk).
    Versions up till 1.0 were maintained by Mike W. Meyer who changed the
    name to <tt>webcheck</tt>.
    After that Arthur de Jong did a complete rewrite.
    <tt>webcheck</tt> is <i>free software</i>; you can redistribute it
    and/or modify it under the terms of the
    <a href="http://www.gnu.org/copyleft/gpl.html">GNU General Public License</a>
    (version 2 or later).
    There is no warranty; not even for merchantability or fitness for a
    particular purpose. See the source for further details.
  </p>
  <p>
    Copyright &copy; 1998-2013 Albert Hopkins (marduk),
    Mike W. Meyer and Arthur de Jong
  </p>
  <p>
    The files in this generated report do not automatically fall under
    the copyright of the software, unless explicitly stated otherwise.
  </p>
  <p>
    <tt>webcheck</tt> includes the
    <a href="http://victr.lm85.com/projects/fancytooltips/">FancyTooltips</a>
    javascript library to display readable tooltips. FancyTooltips is
    distributed under the MIT license and has the following copyright
    notices (see <tt>fancytooltips.js</tt> for details):
  </p>
  <p>
    Copyright &copy; 2003-2005 Stuart Langridge, Paul McLanahan,
    Peter Janes, Brad Choate, Dunstan Orchard, Ethan Marcotte,
    Mark Wubben and Victor Kulinski
  </p>

  <h3>Plugins</h3>
  <ul>
    {% for plugin in crawler.plugins %}
      <li>
        <strong>{{ plugin.__title__ }}</strong><br />
        {% if plugin.__doc__ %}
          {{ plugin.__doc__ }}<br />
        {% endif %}
      </li>
    {% endfor %}
  </ul>
{% endblock %}