Ben Sturmfels
c0acfde9c3
It's a little awkward for now with podjango also having an "apps" module, but we can clean that up later. I've excluded any JS and HTML that's likely not required. To accomodate this merging, I moved the templates into a "podjango" subdirectory and, added a "podjango" namespace to the URLconf and converted a bunch of hard-coded links to use the "url" template tag since there will now be a "/faif/" prefix.
50 lines
2.7 KiB
HTML
50 lines
2.7 KiB
HTML
{% extends "base_standard.html" %}
|
|
|
|
{% block content %}
|
|
<h1>License and Source For This Website</h1>
|
|
|
|
<p>The software running this website is copyrighted © 2007-2008,
|
|
Software Freedom Law Center, Inc. and copyrighted © 2010, 2016 Bradley M.
|
|
Kuhn. The software licensed under the terms of
|
|
the <a href="http://www.gnu.org/licenses/agpl-3.0.html">AGPLv3</a>-or-later.
|
|
You can find a <a href="/source/">copy the sources of the Debian packages on
|
|
this site</a>, but it may be more interesting to know that the site is
|
|
running on stock Debian lenny with Apache, Django, mod_python, and
|
|
sqlite installed, and that the main sources for the site's code itself
|
|
is <a href="https://github.com/bkuhn/podjango/tree/deployments/faif">hosted
|
|
on Github (temporarily, hopefully)</a>.</p>
|
|
|
|
<p>The documents on this website are copyrighted © 2010, 2012, 2015, 2016 Bradley
|
|
M. Kuhn and Karen M. Sandler, and are licensed
|
|
as <a href="http://creativecommons.org/licenses/by-sa/3.0/">CC-By-SA-4.0
|
|
International</a>. In some cases, the documents are dual-licensed
|
|
(AGPLv3-or-later|CC-By-SA-4.0-International), to make it more
|
|
convenient to intermix the document with code.</p>
|
|
|
|
<p><a rel="license"
|
|
href="http://creativecommons.org/licenses/by-sa/3.0/us/"><img alt="Creative
|
|
Commons License" style="border-width:0"
|
|
src="http://i.creativecommons.org/l/by-sa/3.0/us/88x31.png" hspace=10
|
|
/></a>The content of <span xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
href="http://purl.org/dc/dcmitype/Sound" rel="dc:type">this
|
|
audcast</span>, the accompanying show notes and music are copyrighted
|
|
© 2010, 2011, 2012, 2013, 2014, 2015, 2016 by <a href="http://ebb.org/bkuhn">Bradley M. Kuhn</a>,
|
|
<a href="http://gnomg.org">Karen M. Sandler</a>, <a href="http://danlynch.org/">Dan Lynch</a>, and <a href="http://www.miketarantino.com">Mike
|
|
Tarantino</a>. Some speech recording and other materials are
|
|
copyrighted by the individual speakers.</p>
|
|
|
|
<p><p><a rel="license"
|
|
href="https://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0"
|
|
src="http://i.creativecommons.org/l/by-sa/4.0/88x31.png" hspace=10 /></a>
|
|
The content
|
|
of <span xmlns:dc="http://purl.org/dc/elements/1.1/" href="http://purl.org/dc/dcmitype/Sound" rel="dc:type">this
|
|
audcast</span>, and the accompanying show notes and music are licensed
|
|
under the <a rel="license"
|
|
href="https://creativecommons.org/licenses/by-sa/4.0/">Creative
|
|
Commons Attribution-Share-Alike 3.0 USA license (CC BY-SA 4.0)</a>.
|
|
|
|
<p>The icons for the RSS audio feeds and direct audio links are borrowed from
|
|
the <a href="http://www.mightyseek.com/podpress/">PodPress</a> project
|
|
and are licensed under <a href="/gplv2.txt">GPLv2</a>.</p>
|
|
|
|
{% endblock %}
|