Files @ 9b48cc94e651
Branch filter:

Location: website/www/conservancy/templates/base_compliance.html

Bradley M. Kuhn
Continuing saga of the sizing chart problems for original shirts

Gildan removed the sizing chart entirely from their website again
after yet another redesign. Originally, we deep-linked into files in
their CDN for the charts, but it appears that in 5c72071 that I
introduced cut-and-paste error on the sizing charts. I cannot find
the original links, but finally I simply decided we'd mirror the
files in our CDN, which is where these now link to.

I suspect that I didn't do this to start for worrying about copyright
infringement, but upon second thought, I think it's very reasonably
fair use for us to distribute these images. We bought a lot of
t-shirts from Gildan and just trying to sell through.
{% extends "base_conservancy.html" %}
{% block category %}WhatWeDo{% endblock %}
{% load cache %}
{% load humanize %}
{% block head %}
<link href="/jquery-ui.css" rel="stylesheet" type="text/css"/>
<link href="/forms.css" rel="stylesheet" type="text/css"/>

{% endblock %}

{% block outercontent %}
<div class="content-with-donate-sidebar">
    <div id="container">
         <div id="mainContent">{% block content %}{% endblock %}</div>
         <div id="sidebar" class="{% block submenuselection %}{% endblock %}">
            <h2>What We Do</h2>
            {% include 'submenus/what_we_do_partial.html' %}
            <h2>Vizio Lawsuit</h2>
            <ul>
            <li class="VizioMain"><a href="/copyleft-compliance/vizio.html">About the Lawsuit</a></li>
            <li class="VizioPressRelease"><a href="/copyleft-compliance/vizio.html">Press Release</a></li>
            <li class="VizioComplaint"><a href="/docs/software-freedom-conservancy-v-vizio-complaint-2021-10-19.pdf">Complaint</a></li>
            <li class="VizioQandA"><a href="/press/qanda.html">Q&amp;A</a></li>
            </ul>
            <h2>Resources for Journalists on Vizio</h2>
            <ul>
            <li class="VizioPressKit"><a href="/docs/software-freedom-conservancy-v-vizio-announce-press-kit.pdf">Press Kit</a></li>
            <li class="VizioPhotoAssets"><a href="/docs/software-freedom-conservancy-v-vizio-photo-assets.zip">Photo Assets</a></li>
            <li class="Glossary"><a href="/copyleft-compliance/glossary.html">Glossary</a></li>
            </ul>
            <h2>More About Copyleft Compliance</h2>
            <ul>
            <li class="HelpComply"><a href="/copyleft-compliance/help.html">How To Help</a></li>
            <li class="EnforcementStrategy"><a href="/copyleft-compliance/enforcement-strategy.html">Strategic GPL Enforcement Initiative</a></li>
            <li class="CopyleftPrinciples"><a href="/copyleft-compliance/principles.html">Principles of Community-Oriented GPL Enforcement</a></li>
            <li class="LiberateFirmware"><a href="/copyleft-compliance/firmware-liberation.html">Liberate IoT Firmware via GPL Enforcement</a></li>
            <li class="PastLawsuits"><a href="/copyleft-compliance/past-lawsuits.html">Previous Copyleft Litigation</a></li>
            <li class="CopyleftOrg"><a href="https://copyleft.org/">copyleft.org</a></li>
            </ul>
         </div>
    </div>
    <div class="donate-sidebar">
  <details>
    <summary>Support Now!</summary>

    <h3>Support Copyleft Enforcement Now!</h3>

    <p>
      To support our copyleft compliance &amp; enforcement work,
      please <a href="/sustainer/#annual"><span class="donate-box-highlight">become a Conservancy
      Sustainer <strong>right now</strong></span></a>.  We can't sustain
      this work without ongoing support from donors like you!</p>
  </details>
</div>
</div>
{% endblock %}