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
...
 
@@ -19,2 +19,5 @@ a { text-decoration: none; color: #557733; }
 
a:hover { text-decoration: underline; color: #577632; }
 
a.read-more {
 
    font-style: italic;
 
}
 

	
www/conservancy/static/js/supporter-page.js
Show inline comments
...
 
@@ -2,3 +2,3 @@
 
** Copyright (C) 2013-2014 Bradley M. Kuhn,
 
** Copyright (C) 2016 Brett Smith.
 
** Copyright (C) 2016, 2020 Brett Smith.
 
** License: GPLv3-or-later
...
 
@@ -112,2 +112,20 @@ $(document).ready(function() {
 
    }
 

	
 
    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
...
 
@@ -104,2 +104,3 @@ 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
...
 
@@ -112,4 +113,7 @@ 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
...
 
@@ -136,4 +140,7 @@ only fund software development that completely respects your software freedom an
 
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
...
 
@@ -153,8 +160,14 @@ year our <a href="/copyleft-compliance/enforcement-strategy.html">Strategic GPL
 
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,
...
 
@@ -178,2 +191,4 @@ as we look hopefully forward to an in-person Copyleft Conf 2022.</p>
 
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>
 

	
0 comments (0 inline, 0 general)