2010-09-26 21:20:05 +00:00
{% extends "base_conservancy.html" %}
{% load date_within %}
2021-10-13 10:40:46 +00:00
{% load static %}
2021-10-20 18:34:24 +00:00
{% block category %}Home{% endblock %}
2010-09-26 21:20:05 +00:00
{% block head %}
2010-10-04 16:17:16 +00:00
< link rel = "alternate" type = "application/rss+xml" title = "Software Freedom Conservancy Complete Feed" href = "/feeds/omnibus/" / >
2010-09-26 21:20:05 +00:00
< link rel = "alternate" type = "application/rss+xml" title = "Software Freedom Conservancy News" href = "/feeds/news/" / >
2010-10-04 16:15:53 +00:00
< link rel = "alternate" type = "application/rss+xml" title = "Software Freedom Conservancy Blogs" href = "/feeds/blog/" / >
2021-10-13 10:40:46 +00:00
< style >
#mainContent hr {
/* Hide the < hr > elements in the list of news and blog items. */
display: none;
}
2021-10-13 13:21:44 +00:00
.date {
font-size: 1em;
2021-10-15 12:06:34 +00:00
font-style: normal;
2021-10-13 13:21:44 +00:00
margin-top: 0;
}
.press-release h3, .blog-entry h3 {
margin-bottom: 0;
}
2021-10-13 10:40:46 +00:00
< / style >
2010-09-26 21:20:05 +00:00
{% endblock %}
{% block content %}
2021-10-15 10:50:20 +00:00
< div class = "mt3 mh2-ns pt2 flex-ns" >
2021-10-15 08:35:40 +00:00
< section class = "w-70-ns mh2 mb3 mb0-ns pa2 ba bw1 b--light-blue overflow-auto" >
2021-10-19 15:35:41 +00:00
<!-- <img src="{% static 'img/FIXME - NEED - AN - IMAGE.jpg' %}" alt="" class="fl pr2" style="width: 175px;" /> -->
2021-10-21 15:36:23 +00:00
< p class = "mb0" style = "font-size: 18px" > Software Freedom Conservancy is a nonprofit organization
2021-10-18 16:58:33 +00:00
centered around ethical technology. Our mission is to ensure the right to
repair, improve and reinstall software. We promote and defend these rights
through fostering free and open source software (FOSS) projects, driving
initiatives that actively make technology more inclusive, and advancing policy
2021-10-19 00:33:21 +00:00
strategies that defend FOSS (such as copyleft). < a href = "/about" class = "orange" > Learn more.< / a > < / p >
2021-10-13 12:48:50 +00:00
< / section >
< section class = "w-30-ns mh2 pa3 bg-light-blue ba b--gray" >
2023-02-09 20:30:52 +00:00
< h2 class = "f4 ttu" > Sandler Receives Honorary Doctorate< / h2 >
< p > Our Executive Director, Karen M. Sandler, was awarded an honorary
doctorate in early February for her work on software rights and diversity
in the FOSS community.< / p >
< video class = "small-right" controls = "" poster = "/videos/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate_still.png" id = "doctorate_vid" >
< source src = "/videos/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.mp4" >
< track src = "/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.en.txt" kind = "subtitles" srclang = "en" label = "English" / >
< track src = "/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.nl.txt" kind = "subtitles" srclang = "nl" label = "Dutch (NL)" / >
< a href = "/videos/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.mp4" > Download the talk video< / a >
or < a href = "https://youtu.be/zca7dOU7jfs" > watch on YouTube< / a >
< / video >
< a href = "/news/2023/feb/02/karen-honorary-doctorate/" class = "f5 dib pa2 ttu b
2022-05-16 15:29:34 +00:00
btn-orange">More information< / a >
2021-10-13 12:48:50 +00:00
< / section >
2010-10-04 14:54:09 +00:00
< / div >
2010-09-26 21:20:05 +00:00
2021-11-19 06:02:59 +00:00
< div class = "mt3 mh2-ns mb4 flex-ns" >
2021-10-13 12:48:50 +00:00
< div class = "w-70-ns mh2" >
2021-10-22 03:38:52 +00:00
< section class = "mh0 pa3 bg-light-blue ba b--gray" >
2022-05-12 22:39:29 +00:00
< p > < video style = "width: 95%; height: auto;" controls = "" poster = "/videos/sfc-introduction-video_poster.jpg" >
2022-05-12 22:59:53 +00:00
< source src = "/videos/sfc-introduction_1080p.mp4" / >
Handle tricky problems to get subtitles working on intro video
First and foremost, the mime type has to be supported by the web
server. Either you have to add a `.vtt` mimetype, *or* just put it
as a `.txt` file. I chose the latter since it doesn't require a
custom Apache configuration.
Second, even if you make it a `.txt` file, using a CDN does not seem
to work. I suspect that maybe CDNs do really weird things with
mimetypes when they server them, or maybe the <track> element just
really doesn't like it when the URL is 301'd. 🤷
Anyway, with these two changes: using a `.txt` file, and hosting the
file locally, the subtitles now work properly!
Note, if you use the `default` attribute in the <track> tag, it'll
turn them on by default. Leaving it off does allow the user to turn
them on in my tests in both Chromium and Firefox.
2022-05-13 00:15:30 +00:00
< track src = "/docs/sfc-introduction-vtt-captions.txt" kind = "subtitles" srclang = "en" label = "English" / >
2022-05-12 22:39:29 +00:00
< a href = "/videos/sfc-introduction_1080p.mp4" > < img src = "/videos/sfc-introduction-video_poster.jpg" alt = "Software Freedom Conservancy introduction video" > < / a > < br / >
< a href = "https://youtu.be/yCCxMfW0LTM" > (watch on Youtube)< / a >
2022-05-12 22:26:51 +00:00
< / video > < / p >
2021-10-22 03:38:52 +00:00
< / section >
2021-10-13 13:21:44 +00:00
2021-10-13 12:48:50 +00:00
< section class = "mv3 ph2" >
2021-10-13 12:52:29 +00:00
< h2 class = "f4 mt0 mb2 ttu" > <!-- <a href="/feeds/news/" class="feedlink"><img src="/img/feed - icon - 14x14.png" alt="[RSS]"/></a> --> < a href = "/news/" class = "dark-gray" > News< / a > < / h2 >
2021-10-19 19:29:03 +00:00
{% for pressr in press_releases|slice:":4" %}
2021-10-13 10:40:46 +00:00
{% if forloop.first or pressr.pub_date|date_within_past_days:365 %}
2016-12-31 04:09:01 +00:00
{% if not forloop.first %}< hr class = "clear" > {% endif %}
2021-10-13 10:40:46 +00:00
{% include "news/pressrelease_partial.html" with pressr=pressr show="dateline" only %}
2016-12-31 04:09:01 +00:00
{% endif %}
{% endfor %}
2021-10-13 10:40:46 +00:00
<!-- <p><span class="continued"><a href="/news/">Conservancy News Archive…</a></span></p> -->
< / section >
2016-11-17 15:40:22 +00:00
2021-10-13 12:48:50 +00:00
< section class = "mt4 mb3 ph2" >
2021-10-13 12:52:29 +00:00
< h2 class = "f4 mb2 ttu" > <!-- <a href="/feeds/blog/" class="feedlink"><img src="/img/feed - icon - 14x14.png" alt="[RSS]"/></a> --> < a href = "/blog/" class = "dark-gray" > Articles< / a > < / h2 >
2016-12-30 23:06:20 +00:00
{% for entry in blog|slice:":5" %}
2021-10-13 10:40:46 +00:00
{% if forloop.first or entry.pub_date|date_within_past_days:180 %}
2016-12-31 03:13:50 +00:00
{% if not forloop.first %}< hr class = "clear" > {% endif %}
2021-10-13 10:40:46 +00:00
{% include "blog/entry_partial.html" with entry=entry show="dateline" only %}
2016-12-30 23:06:20 +00:00
{% endif %}
{% endfor %}
2015-12-18 20:06:57 +00:00
2021-10-13 10:40:46 +00:00
<!-- <p><span class="continued"><a href="/blog/">Conservancy Blog Archive…</a></span></p> -->
< / section >
2016-11-17 15:40:22 +00:00
< / div >
2015-12-18 20:06:57 +00:00
2021-10-13 12:48:50 +00:00
< div class = "w-30-ns mh2" >
< div class = "ph3 pv2 ba b--gray" >
2021-10-13 10:40:46 +00:00
< h3 class = "ttu" > Term of the week< / h3 >
2023-02-09 20:29:32 +00:00
< h4 id = "foss-commons" > proprietary relicensing< / h4 >
< p > < em > Proprietary relicensing< / em > is a toxic business model whereby a company
distributes software under a < a href = "/copyleft-compliance/glossary.html#copyleft" > < em > copyleft< / em > licenses< / a > , but refuses to
agree to the copyleft license themselves (by collecting rights to issue
proprietary,
non-< a href = "/copyleft-compliance/glossary.html#FOSS" > FOSS< / a > licenses
for the software separately). While the software is technically
available as FOSS, users must worry since the rights-holder usually
captiously (and often incorrectly) interprets the copyleft license and
demands licensing fees for acts that copyleft actually permits. Users
must chose whether to fight the proprietary relicensor in Court, buy a
proprietary license, or cease use of the software. This behavior is
widely consider by FOSS activists as an inappropriate use of copyleft
licensing.< / p >
2021-10-18 23:54:55 +00:00
< p > < a href = "/copyleft-compliance/glossary.html" class = "orange ttu" > Visit our glossary of terms< / a > < / p >
2021-10-13 10:40:46 +00:00
< / div >
2021-10-13 12:48:50 +00:00
< div class = "mh3 pt3" >
2021-10-19 11:11:55 +00:00
< h2 class = "f6 ttu mb1" > < a href = "https://lists.sfconservancy.org/mailman/listinfo/announce" > Subscribe to our email list< / a > < / h2 >
2021-10-19 00:33:21 +00:00
< br >
2021-10-13 10:40:46 +00:00
< h2 class = "f6 ttu mt2 mb1" > RSS feed< / h2 >
< div class = "ml2" >
< a href = "/feeds/omnibus" class = "mr2" > < svg class = "orange" style = "width: 30px; height: 30px;" > < use href = "{% static 'img/font_awesome.svg#rss-square' %}" > < / use > < / svg > < / a >
< / div >
2017-11-22 17:51:09 +00:00
2021-10-13 10:40:46 +00:00
< h2 class = "f6 ttu mt2 mb1" > Follow us< / h2 >
< div class = "ml2" >
{% include 'socials_partial.html' %}
2021-10-13 12:48:50 +00:00
< / div >
2017-11-22 17:51:09 +00:00
2021-10-13 10:40:46 +00:00
<!-- <h2>Support Conservancy</h2>
< p > As a 501(c)(3) non-profit charity, Conservancy relies on
charitable donations for its operations.
2021-12-17 10:55:47 +00:00
Please join {{ supporters_count }} others and < a href = "/sustainer/" > < strong > become a Conservancy Sustainer
2021-10-13 10:40:46 +00:00
today< / strong > < / a > and/or < a href = "/donate/" > donate generously< / a > to help our work!
< / p >
2016-11-17 15:40:22 +00:00
2021-10-13 10:40:46 +00:00
< h2 > Learn More about Conservancy< / h2 >
< p >
< span class = "continued" > < a href = "/about/" > An Overview of Conservancy… < / a > < / span >
< span class = "continued" > < a href = "/members/current/" > Conservancy's current member projects… < / a > < / span >
< span class = "continued" > < a href = "/members/services/" > Services Conservancy provides to its member projects… < / a > < / span >
< span class = "continued" > < a href = "/copyleft-compliance/" > Conservancy's unique work defending and upholding copyleft licenses (e.g., the GPL) … < / a > < / span >
< span class = "continued" > < a href = "/npoacct/" > Conservancy's Non-Profit Accounting Project … < / a > < / span >
< / p > -->
2010-10-04 14:54:09 +00:00
< / div >
2021-10-13 13:20:50 +00:00
< / div >
2010-10-04 14:54:09 +00:00
< / div >
2010-09-26 21:20:05 +00:00
{% endblock %}