Changeset - e397501bfa55
[Not reviewed]
0 3 0
Brett Smith (brett) - 3 years ago 2020-11-25 16:32:07
brett@sfconservancy.org
supporter: Collapse individual appeal sections.
3 files changed with 37 insertions and 1 deletions:
0 comments (0 inline, 0 general)
www/conservancy/static/css/conservancy.css
Show inline comments
...
 
@@ -18,4 +18,7 @@ body {
 
a { text-decoration: none; color: #557733; }
 
a:hover { text-decoration: underline; color: #577632; }
 
a.read-more {
 
    font-style: italic;
 
}
 

	
 
.toggle-control  {
www/conservancy/static/js/supporter-page.js
Show inline comments
 
/* Copyright (C) 2012-2013 Denver Gingerich, 
 
** Copyright (C) 2013-2014 Bradley M. Kuhn,
 
** Copyright (C) 2016 Brett Smith.
 
** Copyright (C) 2016, 2020 Brett Smith.
 
** License: GPLv3-or-later
 
**  Find a copy of GPL at https://sfconservancy.org/GPLv3
...
 
@@ -111,3 +111,21 @@ $(document).ready(function() {
 
        supportTypeSelector("#annual").click();
 
    }
 

	
 
    var want_id = window.location.hash.substr(1);
 
    $('a.read-more').each(function(index, readmore) {
 
        var $readmore = $(readmore)
 
        var $content = $(readmore.hash);
 
        var $header = $content.prev('h3');
 
        if (($header.length && $header[0].id === want_id) || readmore.id === want_id) {
 
            $readmore.hide();
 
        } else {
 
            $content.hide();
 
            $readmore.on('click', function(event) {
 
                $readmore.fadeOut('fast', function() {
 
                    $readmore.replaceWith($content);
 
                    $content.fadeIn('fast');
 
                });
 
            });
 
        }
 
    });
 
});
www/conservancy/templates/supporter/index.html
Show inline comments
...
 
@@ -103,4 +103,5 @@ even in the face of so many obstacles.</p>
 

	
 
<h3 id="StayingConnected">Staying Connected</h3>
 
<div id="ConnectedContent">
 
<p>We helped folks stay connected, even when travel
 
and in-person meetings could not happen. We gathered digitally every
...
 
@@ -111,6 +112,9 @@ presentations concerting copyleft to how to dismantle systemic racism in free so
 
important software freedom policy issues like standing up to fight the
 
DMCA.</p>
 
</div>
 
<p><a class="read-more" href="#ConnectedContent">Read more about staying connected</a></p>
 

	
 
<h3 id="PayingPeople">Paying People to Work on Software Freedom</h3>
 
<div id="PayingContent">
 
<p>Our Outreachy internship program became even more essential during this
 
difficult time.  Everyone needs remote work now, <em>and</em> to learn how
...
 
@@ -135,6 +139,9 @@ benefit their profit motive and self-interest.  We fund FOSS development that be
 
only fund software development that completely respects your software freedom and
 
rights.</p>
 
</div>
 
<p><a class="read-more" href="#PayingContent">Read more about paying people to work on software freedom</a></p>
 

	
 
<h3 id="Policy">Policy</h3>
 
<div id="PolicyContent">
 
<p>This year, we expanded our plans and involvement on key issues of software
 
freedom policy.  We are known throughout the FOSS community as the
...
 
@@ -152,10 +159,16 @@ that are now ubiquitous and used by everyone.  While we can only <a href="/blog/
 
year our <a href="/copyleft-compliance/enforcement-strategy.html">Strategic GPL Enforcement Plan</a>, and our companion <a href="/copyleft-compliance/firmware-liberation.html">Firmware Liberation Project</a>.  These two new initiatives have
 
just begun and they need your support and help to succeed.</p>
 
</div>
 
<p><a class="read-more" href="#PolicyContent">Read more about our policy work this year</a></p>
 

	
 
<h3 id="NewMembers">New Member Projects and New Board Member</h3>
 
<div id="NewContent">
 
<p>In 2020, Conservancy welcomed two important new projects.  The <a href="/news/2020/jul/21/ICRjoins/">Institute for Computing in Research</a> runs a mentoring program designed to bridge inequities in tech by training teenage students to do rigorous scientific research using free software. <a href="/news/2020/sep/10/openwrt-joins/">OpenWrt</a> is a critical FOSS wireless router project that demonstrates the long lasting positive  results of strategic GPL enforcement. We also recognize that communities change over time. In addition to adding new projects, we took the time this past year to sunset some of our projects that no longer had a charitable focus.</p>
 
<p>We were also pleased to welcome <a href="/news/2020/jan/03/arandal/">Allison Randal</a>, a steadfast advocate of software freedom, to our Board of Directors.</p>
 
</div>
 
<p><a class="read-more" href="#NewContent">Read more about our new member projects and board member</a></p>
 

	
 
<h3 id="Events">Events and Conferences</h3>
 
<div id="EventsContent">
 
<p>FOSS events and conferences have always been an essential component of FOSS,
 
but this year, the pandemic thwarted our usual event system an infrastructure.
...
 
@@ -177,4 +190,6 @@ as we look hopefully forward to an in-person Copyleft Conf 2022.</p>
 
<p>We also remain ready to continue our work of helping to sponsor travel for our member projects and their events when travel becomes safe again. Before we ceased our conferences and travel, we funded over $60,000 worth of travel to important events, on pace for what could have been one of our biggest travel sponsorship years.  We invested remaining travel funds into improving online infrastructure and planning
 
for how to keep FOSS engaged without these essential in-person events.</p>
 
</div>
 
<p><a class="read-more" href="#EventsContent">Read more about our events and conferences</a></p>
 

	
 
<h3 id="HelpUs">Help Us Continue our Mission</h3>
0 comments (0 inline, 0 general)