Changeset - ce6be591bde2
[Not reviewed]
! ! !
Ben Sturmfels (bsturmfels) - 6 months ago 2023-10-25 02:01:21
ben@sturm.com.au
Rename "www" directory to "conservancy"
584 files changed with 73 insertions and 31 deletions:
0 comments (0 inline, 0 general)
conservancy/__init__.py
Show inline comments
 
new file 100644
 
import hashlib
 

	
 
from django.conf import settings
 

	
 

	
 
class ParameterValidator:
 
    def __init__(self, given_hash_or_params, params_hash_key=None):
 
        if params_hash_key is None:
 
            self.given_hash = given_hash_or_params
 
        else:
 
            self.given_hash = given_hash_or_params.get(params_hash_key)
 
        seed = getattr(settings, 'CONSERVANCY_SECRET_KEY', '').encode('utf-8')
 
        self.hasher = hashlib.sha256(seed)
 
        if isinstance(self.given_hash, str):
 
            self.hash_type = type(self.given_hash)
 
        else:
 
            self.hash_type = type(self.hasher.hexdigest())
 
        self.valid = None
 
        if not (self.given_hash and seed):
 
            self.fail()
 

	
 
    def __enter__(self):
 
        self.valid = self.valid and None
 
        return self
 

	
 
    def __exit__(self, exc_type, exc_value, exc_tb):
 
        if exc_type is None:
 
            self.check()
 
        else:
 
            self.fail()
 

	
 
    def validate(self, data):
 
        self.valid = self.valid and None
 
        self.hasher.update(data)
 

	
 
    def check(self):
 
        if self.valid or (self.valid is None):
 
            self.valid = self.hash_type(self.hasher.hexdigest()) == self.given_hash
 
        return self.valid
 

	
 
    def fail(self):
 
        self.valid = False
conservancy/assignment/__init__.py
Show inline comments
 
file renamed from www/assignment/__init__.py to conservancy/assignment/__init__.py
conservancy/assignment/apps.py
Show inline comments
 
file renamed from www/assignment/apps.py to conservancy/assignment/apps.py
...
 
@@ -2,4 +2,4 @@ from django.apps import AppConfig
 

	
 

	
 
class AssignmentConfig(AppConfig):
 
    name = 'www.assignment'
 
    name = 'conservancy.assignment'
conservancy/assignment/forms.py
Show inline comments
 
file renamed from www/assignment/forms.py to conservancy/assignment/forms.py
conservancy/assignment/migrations/0001_initial.py
Show inline comments
 
file renamed from www/assignment/migrations/0001_initial.py to conservancy/assignment/migrations/0001_initial.py
conservancy/assignment/migrations/0002_auto_20211206_2237.py
Show inline comments
 
file renamed from www/assignment/migrations/0002_auto_20211206_2237.py to conservancy/assignment/migrations/0002_auto_20211206_2237.py
conservancy/assignment/migrations/0003_auto_20211206_2249.py
Show inline comments
 
file renamed from www/assignment/migrations/0003_auto_20211206_2249.py to conservancy/assignment/migrations/0003_auto_20211206_2249.py
conservancy/assignment/migrations/0004_auto_20230127_0602.py
Show inline comments
 
file renamed from www/assignment/migrations/0004_auto_20230127_0602.py to conservancy/assignment/migrations/0004_auto_20230127_0602.py
conservancy/assignment/migrations/__init__.py
Show inline comments
 
file renamed from www/assignment/migrations/__init__.py to conservancy/assignment/migrations/__init__.py
conservancy/assignment/models.py
Show inline comments
 
file renamed from www/assignment/models.py to conservancy/assignment/models.py
conservancy/assignment/terms.py
Show inline comments
 
file renamed from www/assignment/terms.py to conservancy/assignment/terms.py
conservancy/assignment/urls.py
Show inline comments
 
file renamed from www/assignment/urls.py to conservancy/assignment/urls.py
conservancy/assignment/views.py
Show inline comments
 
file renamed from www/assignment/views.py to conservancy/assignment/views.py
conservancy/blog/__init__.py
Show inline comments
 
file renamed from www/blog/__init__.py to conservancy/blog/__init__.py
conservancy/blog/admin.py
Show inline comments
 
file renamed from www/blog/admin.py to conservancy/blog/admin.py
conservancy/blog/models.py
Show inline comments
 
file renamed from www/blog/models.py to conservancy/blog/models.py
conservancy/blog/urls.py
Show inline comments
 
file renamed from www/blog/urls.py to conservancy/blog/urls.py
conservancy/blog/views.py
Show inline comments
 
file renamed from www/blog/views.py to conservancy/blog/views.py
conservancy/bsoup.py
Show inline comments
 
file renamed from www/bsoup.py to conservancy/bsoup.py
conservancy/ccs_upload/__init__.py
Show inline comments
 
file renamed from www/ccs_upload/__init__.py to conservancy/ccs_upload/__init__.py
conservancy/ccs_upload/forms.py
Show inline comments
 
file renamed from www/ccs_upload/forms.py to conservancy/ccs_upload/forms.py
conservancy/ccs_upload/urls.py
Show inline comments
 
file renamed from www/ccs_upload/urls.py to conservancy/ccs_upload/urls.py
conservancy/ccs_upload/views.py
Show inline comments
 
file renamed from www/ccs_upload/views.py to conservancy/ccs_upload/views.py
conservancy/contacts/__init__.py
Show inline comments
 
file renamed from www/contacts/__init__.py to conservancy/contacts/__init__.py
conservancy/contacts/admin.py
Show inline comments
 
file renamed from www/contacts/admin.py to conservancy/contacts/admin.py
conservancy/contacts/models.py
Show inline comments
 
file renamed from www/contacts/models.py to conservancy/contacts/models.py
conservancy/contacts/urls.py
Show inline comments
 
file renamed from www/contacts/urls.py to conservancy/contacts/urls.py
conservancy/contacts/views.py
Show inline comments
 
file renamed from www/contacts/views.py to conservancy/contacts/views.py
conservancy/contractpatch/__init__.py
Show inline comments
 
file renamed from www/contractpatch/__init__.py to conservancy/contractpatch/__init__.py
conservancy/contractpatch/urls.py
Show inline comments
 
file renamed from www/contractpatch/urls.py to conservancy/contractpatch/urls.py
conservancy/contractpatch/views.py
Show inline comments
 
file renamed from www/contractpatch/views.py to conservancy/contractpatch/views.py
conservancy/events/__init__.py
Show inline comments
 
file renamed from www/events/__init__.py to conservancy/events/__init__.py
conservancy/events/admin.py
Show inline comments
 
file renamed from www/events/admin.py to conservancy/events/admin.py
conservancy/events/models.py
Show inline comments
 
file renamed from www/events/models.py to conservancy/events/models.py
conservancy/events/urls.py
Show inline comments
 
file renamed from www/events/urls.py to conservancy/events/urls.py
conservancy/events/view_helpers.py
Show inline comments
 
file renamed from www/events/view_helpers.py to conservancy/events/view_helpers.py
conservancy/events/views.py
Show inline comments
 
file renamed from www/events/views.py to conservancy/events/views.py
conservancy/feeds.py
Show inline comments
 
file renamed from www/feeds.py to conservancy/feeds.py
conservancy/fossy/__init__.py
Show inline comments
 
file renamed from www/fossy/__init__.py to conservancy/fossy/__init__.py
conservancy/fossy/admin.py
Show inline comments
 
file renamed from www/fossy/admin.py to conservancy/fossy/admin.py
conservancy/fossy/apps.py
Show inline comments
 
file renamed from www/fossy/apps.py to conservancy/fossy/apps.py
...
 
@@ -2,4 +2,4 @@ from django.apps import AppConfig
 

	
 

	
 
class FOSSYConfig(AppConfig):
 
    name = 'www.fossy'
 
    name = 'conservancy.fossy'
conservancy/fossy/forms.py
Show inline comments
 
file renamed from www/fossy/forms.py to conservancy/fossy/forms.py
conservancy/fossy/migrations/0001_initial.py
Show inline comments
 
file renamed from www/fossy/migrations/0001_initial.py to conservancy/fossy/migrations/0001_initial.py
conservancy/fossy/migrations/0002_auto_20230130_1841.py
Show inline comments
 
file renamed from www/fossy/migrations/0002_auto_20230130_1841.py to conservancy/fossy/migrations/0002_auto_20230130_1841.py
conservancy/fossy/migrations/__init__.py
Show inline comments
 
file renamed from www/fossy/migrations/__init__.py to conservancy/fossy/migrations/__init__.py
conservancy/fossy/models.py
Show inline comments
 
file renamed from www/fossy/models.py to conservancy/fossy/models.py
conservancy/fossy/urls.py
Show inline comments
 
file renamed from www/fossy/urls.py to conservancy/fossy/urls.py
conservancy/fossy/views.py
Show inline comments
 
file renamed from www/fossy/views.py to conservancy/fossy/views.py
conservancy/frontpage.py
Show inline comments
 
file renamed from www/frontpage.py to conservancy/frontpage.py
conservancy/fundgoal/__init__.py
Show inline comments
 
file renamed from www/fundgoal/__init__.py to conservancy/fundgoal/__init__.py
conservancy/fundgoal/admin.py
Show inline comments
 
file renamed from www/fundgoal/admin.py to conservancy/fundgoal/admin.py
conservancy/fundgoal/migrations/0001_initial.py
Show inline comments
 
file renamed from www/fundgoal/migrations/0001_initial.py to conservancy/fundgoal/migrations/0001_initial.py
conservancy/fundgoal/migrations/0002_goalprovider.py
Show inline comments
 
file renamed from www/fundgoal/migrations/0002_goalprovider.py to conservancy/fundgoal/migrations/0002_goalprovider.py
conservancy/fundgoal/migrations/0003_fundraisinggoal_fundraiser_endtime.py
Show inline comments
 
file renamed from www/fundgoal/migrations/0003_fundraisinggoal_fundraiser_endtime.py to conservancy/fundgoal/migrations/0003_fundraisinggoal_fundraiser_endtime.py
conservancy/fundgoal/migrations/__init__.py
Show inline comments
 
file renamed from www/fundgoal/migrations/__init__.py to conservancy/fundgoal/migrations/__init__.py
conservancy/fundgoal/models.py
Show inline comments
 
file renamed from www/fundgoal/models.py to conservancy/fundgoal/models.py
conservancy/fundgoal/templates/fundgoal/fundraiser_goal_banner_partial.html
Show inline comments
 
file renamed from www/fundgoal/templates/fundgoal/fundraiser_goal_banner_partial.html to conservancy/fundgoal/templates/fundgoal/fundraiser_goal_banner_partial.html
conservancy/fundgoal/views.py
Show inline comments
 
file renamed from www/fundgoal/views.py to conservancy/fundgoal/views.py
conservancy/local_context_processors.py
Show inline comments
 
file renamed from www/local_context_processors.py to conservancy/local_context_processors.py
conservancy/middleware.py
Show inline comments
 
file renamed from www/middleware.py to conservancy/middleware.py
conservancy/news/__init__.py
Show inline comments
 
file renamed from www/news/__init__.py to conservancy/news/__init__.py
conservancy/news/admin.py
Show inline comments
 
file renamed from www/news/admin.py to conservancy/news/admin.py
conservancy/news/models.py
Show inline comments
 
file renamed from www/news/models.py to conservancy/news/models.py
conservancy/news/templatetags/__init__.py
Show inline comments
 
file renamed from www/news/templatetags/__init__.py to conservancy/news/templatetags/__init__.py
conservancy/news/templatetags/date_within.py
Show inline comments
 
file renamed from www/news/templatetags/date_within.py to conservancy/news/templatetags/date_within.py
conservancy/news/templatetags/fill_url.py
Show inline comments
 
file renamed from www/news/templatetags/fill_url.py to conservancy/news/templatetags/fill_url.py
conservancy/news/templatetags/min.py
Show inline comments
 
file renamed from www/news/templatetags/min.py to conservancy/news/templatetags/min.py
conservancy/news/templatetags/subtract.py
Show inline comments
 
file renamed from www/news/templatetags/subtract.py to conservancy/news/templatetags/subtract.py
conservancy/news/urls.py
Show inline comments
 
file renamed from www/news/urls.py to conservancy/news/urls.py
conservancy/news/views.py
Show inline comments
 
file renamed from www/news/views.py to conservancy/news/views.py
conservancy/podjango/__init__.py
Show inline comments
 
file renamed from www/podjango/__init__.py to conservancy/podjango/__init__.py
conservancy/podjango/admin.py
Show inline comments
 
file renamed from www/podjango/admin.py to conservancy/podjango/admin.py
conservancy/podjango/feeds.py
Show inline comments
 
file renamed from www/podjango/feeds.py to conservancy/podjango/feeds.py
conservancy/podjango/frontpage.py
Show inline comments
 
file renamed from www/podjango/frontpage.py to conservancy/podjango/frontpage.py
conservancy/podjango/migrations/0001_initial.py
Show inline comments
 
file renamed from www/podjango/migrations/0001_initial.py to conservancy/podjango/migrations/0001_initial.py
conservancy/podjango/migrations/__init__.py
Show inline comments
 
file renamed from www/podjango/migrations/__init__.py to conservancy/podjango/migrations/__init__.py
conservancy/podjango/models.py
Show inline comments
 
file renamed from www/podjango/models.py to conservancy/podjango/models.py
conservancy/podjango/static/podjango/img/cast/audio_mp3_button.png
Show inline comments
 
file renamed from www/podjango/static/podjango/img/cast/audio_mp3_button.png to conservancy/podjango/static/podjango/img/cast/audio_mp3_button.png
Show images
conservancy/podjango/static/podjango/img/cast/audio_ogg_button.png
Show inline comments
 
file renamed from www/podjango/static/podjango/img/cast/audio_ogg_button.png to conservancy/podjango/static/podjango/img/cast/audio_ogg_button.png
Show images
conservancy/podjango/static/podjango/img/cast/faif_144x144.jpg
Show inline comments
 
file renamed from www/podjango/static/podjango/img/cast/faif_144x144.jpg to conservancy/podjango/static/podjango/img/cast/faif_144x144.jpg
Show images
conservancy/podjango/static/podjango/img/cast/faif_200x200.jpg
Show inline comments
 
file renamed from www/podjango/static/podjango/img/cast/faif_200x200.jpg to conservancy/podjango/static/podjango/img/cast/faif_200x200.jpg
Show images
conservancy/podjango/static/podjango/img/cast/faif_300x300.jpg
Show inline comments
 
file renamed from www/podjango/static/podjango/img/cast/faif_300x300.jpg to conservancy/podjango/static/podjango/img/cast/faif_300x300.jpg
Show images
conservancy/podjango/static/podjango/img/cast/faif_300x300.xcf
Show inline comments
 
file renamed from www/podjango/static/podjango/img/cast/faif_300x300.xcf to conservancy/podjango/static/podjango/img/cast/faif_300x300.xcf
conservancy/podjango/static/podjango/img/cast/halfbakedmedia-logo.png
Show inline comments
 
file renamed from www/podjango/static/podjango/img/cast/halfbakedmedia-logo.png to conservancy/podjango/static/podjango/img/cast/halfbakedmedia-logo.png
Show images
conservancy/podjango/static/podjango/img/cast/halfbakedmedia-logo_100px.png
Show inline comments
 
file renamed from www/podjango/static/podjango/img/cast/halfbakedmedia-logo_100px.png to conservancy/podjango/static/podjango/img/cast/halfbakedmedia-logo_100px.png
Show images
conservancy/podjango/static/podjango/img/cast/rss-audiomp3.png
Show inline comments
 
file renamed from www/podjango/static/podjango/img/cast/rss-audiomp3.png to conservancy/podjango/static/podjango/img/cast/rss-audiomp3.png
Show images
conservancy/podjango/static/podjango/img/cast/rss-audioogg.png
Show inline comments
 
file renamed from www/podjango/static/podjango/img/cast/rss-audioogg.png to conservancy/podjango/static/podjango/img/cast/rss-audioogg.png
Show images
conservancy/podjango/static/podjango/img/cast/rss-miro.png
Show inline comments
 
file renamed from www/podjango/static/podjango/img/cast/rss-miro.png to conservancy/podjango/static/podjango/img/cast/rss-miro.png
Show images
conservancy/podjango/static/podjango/img/feed-icon-14x14.png
Show inline comments
 
file renamed from www/podjango/static/podjango/img/feed-icon-14x14.png to conservancy/podjango/static/podjango/img/feed-icon-14x14.png
Show images
conservancy/podjango/static/podjango/license/index.html
Show inline comments
 
file renamed from www/podjango/static/podjango/license/index.html to conservancy/podjango/static/podjango/license/index.html
conservancy/podjango/templates/podjango/audio_mp3_button.inc.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/audio_mp3_button.inc.html to conservancy/podjango/templates/podjango/audio_mp3_button.inc.html
conservancy/podjango/templates/podjango/audio_ogg_button.inc.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/audio_ogg_button.inc.html to conservancy/podjango/templates/podjango/audio_ogg_button.inc.html
conservancy/podjango/templates/podjango/base_podcast.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/base_podcast.html to conservancy/podjango/templates/podjango/base_podcast.html
conservancy/podjango/templates/podjango/cast/cast_archive_day.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/cast/cast_archive_day.html to conservancy/podjango/templates/podjango/cast/cast_archive_day.html
conservancy/podjango/templates/podjango/cast/cast_archive_month.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/cast/cast_archive_month.html to conservancy/podjango/templates/podjango/cast/cast_archive_month.html
conservancy/podjango/templates/podjango/cast/cast_archive_year.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/cast/cast_archive_year.html to conservancy/podjango/templates/podjango/cast/cast_archive_year.html
conservancy/podjango/templates/podjango/cast/cast_detail.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/cast/cast_detail.html to conservancy/podjango/templates/podjango/cast/cast_detail.html
conservancy/podjango/templates/podjango/cast/cast_list.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/cast/cast_list.html to conservancy/podjango/templates/podjango/cast/cast_list.html
conservancy/podjango/templates/podjango/credits.inc.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/credits.inc.html to conservancy/podjango/templates/podjango/credits.inc.html
conservancy/podjango/templates/podjango/feed_links.inc.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/feed_links.inc.html to conservancy/podjango/templates/podjango/feed_links.inc.html
conservancy/podjango/templates/podjango/feedback.inc.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/feedback.inc.html to conservancy/podjango/templates/podjango/feedback.inc.html
conservancy/podjango/templates/podjango/feeds.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/feeds.html to conservancy/podjango/templates/podjango/feeds.html
conservancy/podjango/templates/podjango/feeds/podcast_description.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/feeds/podcast_description.html to conservancy/podjango/templates/podjango/feeds/podcast_description.html
conservancy/podjango/templates/podjango/feeds/podcast_title.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/feeds/podcast_title.html to conservancy/podjango/templates/podjango/feeds/podcast_title.html
conservancy/podjango/templates/podjango/frontpage.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/frontpage.html to conservancy/podjango/templates/podjango/frontpage.html
conservancy/podjango/templates/podjango/license.inc.html
Show inline comments
 
file renamed from www/podjango/templates/podjango/license.inc.html to conservancy/podjango/templates/podjango/license.inc.html
conservancy/podjango/templatetags/__init__.py
Show inline comments
 
file renamed from www/podjango/templatetags/__init__.py to conservancy/podjango/templatetags/__init__.py
conservancy/podjango/templatetags/date_within.py
Show inline comments
 
file renamed from www/podjango/templatetags/date_within.py to conservancy/podjango/templatetags/date_within.py
conservancy/podjango/urls.py
Show inline comments
 
file renamed from www/podjango/urls.py to conservancy/podjango/urls.py
conservancy/podjango/views.py
Show inline comments
 
file renamed from www/podjango/views.py to conservancy/podjango/views.py
conservancy/settings.py
Show inline comments
 
file renamed from www/settings.py to conservancy/settings.py
...
 
@@ -22,7 +22,7 @@ from pathlib import Path
 
from .djangocommonsettings import *
 

	
 
SITE_ID = 2
 
ROOT_URLCONF = 'www.urls'
 
ROOT_URLCONF = 'conservancy.urls'
 

	
 
FORCE_CANONICAL_HOSTNAME = False if DEBUG else 'sfconservancy.org'
 

	
...
 
@@ -87,20 +87,20 @@ INSTALLED_APPS = [
 
    'django.contrib.messages',
 
    'django.contrib.humanize',
 
    'django.contrib.staticfiles',
 
    'www.blog',
 
    'www.contacts',
 
    'www.contractpatch',
 
    'www.events',
 
    'www.news',
 
    'www.staff',
 
    # 'www.summit_registration',
 
    'www.worldmap',
 
    'www.supporters',
 
    'www.fundgoal',
 
    'www.assignment',
 
    'www.fossy',
 
    'www.podjango',
 
    'www.usethesource.apps.UseTheSourceConfig',
 
    'conservancy.blog',
 
    'conservancy.contacts',
 
    'conservancy.contractpatch',
 
    'conservancy.events',
 
    'conservancy.news',
 
    'conservancy.staff',
 
    # 'conservancy.summit_registration',
 
    'conservancy.worldmap',
 
    'conservancy.supporters',
 
    'conservancy.fundgoal',
 
    'conservancy.assignment',
 
    'conservancy.fossy',
 
    'conservancy.podjango',
 
    'conservancy.usethesource.apps.UseTheSourceConfig',
 
]
 

	
 
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
...
 
@@ -120,8 +120,8 @@ TEMPLATES = [
 
                'django.template.context_processors.request',
 
                'django.contrib.auth.context_processors.auth',
 
                'django.contrib.messages.context_processors.messages',
 
                'www.local_context_processors.host_url',
 
                'www.local_context_processors.sitefundraiser',
 
                'conservancy.local_context_processors.host_url',
 
                'conservancy.local_context_processors.sitefundraiser',
 
            ]
 
        }
 
    }
...
 
@@ -137,6 +137,6 @@ MIDDLEWARE = [
 
    'django.contrib.sessions.middleware.SessionMiddleware',
 
    'django.contrib.auth.middleware.AuthenticationMiddleware',
 
    'django.contrib.messages.middleware.MessageMiddleware',
 
    'www.middleware.ForceCanonicalHostnameMiddleware',
 
    'conservancy.middleware.ForceCanonicalHostnameMiddleware',
 
    # 'django.middleware.doc.XViewMiddleware',
 
]
conservancy/sponsors.py
Show inline comments
 
file renamed from www/sponsors.py to conservancy/sponsors.py
conservancy/staff/__init__.py
Show inline comments
 
file renamed from www/staff/__init__.py to conservancy/staff/__init__.py
conservancy/staff/admin.py
Show inline comments
 
file renamed from www/staff/admin.py to conservancy/staff/admin.py
conservancy/staff/migrations/0001_initial.py
Show inline comments
 
file renamed from www/staff/migrations/0001_initial.py to conservancy/staff/migrations/0001_initial.py
conservancy/staff/migrations/0002_auto_20211128_2112.py
Show inline comments
 
file renamed from www/staff/migrations/0002_auto_20211128_2112.py to conservancy/staff/migrations/0002_auto_20211128_2112.py
conservancy/staff/migrations/__init__.py
Show inline comments
 
file renamed from www/staff/migrations/__init__.py to conservancy/staff/migrations/__init__.py
conservancy/staff/models.py
Show inline comments
 
file renamed from www/staff/models.py to conservancy/staff/models.py
conservancy/static/GPLv3
Show inline comments
 
file renamed from www/static/GPLv3 to conservancy/static/GPLv3
conservancy/static/GiveUpGitHub/index.html
Show inline comments
 
file renamed from www/static/GiveUpGitHub/index.html to conservancy/static/GiveUpGitHub/index.html
conservancy/static/__init__.py
Show inline comments
 
file renamed from www/static/__init__.py to conservancy/static/__init__.py
conservancy/static/about/board/index.html
Show inline comments
 
file renamed from www/static/about/board/index.html to conservancy/static/about/board/index.html
conservancy/static/about/contact/accounts-taxinfo.asc
Show inline comments
 
file renamed from www/static/about/contact/accounts-taxinfo.asc to conservancy/static/about/contact/accounts-taxinfo.asc
conservancy/static/about/contact/index.html
Show inline comments
 
file renamed from www/static/about/contact/index.html to conservancy/static/about/contact/index.html
conservancy/static/about/eval-committee/index.html
Show inline comments
 
file renamed from www/static/about/eval-committee/index.html to conservancy/static/about/eval-committee/index.html
conservancy/static/about/index.html
Show inline comments
 
file renamed from www/static/about/index.html to conservancy/static/about/index.html
conservancy/static/about/license/index.html
Show inline comments
 
file renamed from www/static/about/license/index.html to conservancy/static/about/license/index.html
conservancy/static/about/outside/index.html
Show inline comments
 
file renamed from www/static/about/outside/index.html to conservancy/static/about/outside/index.html
conservancy/static/about/staff/index.html
Show inline comments
 
file renamed from www/static/about/staff/index.html to conservancy/static/about/staff/index.html
conservancy/static/about/transparency/index.html
Show inline comments
 
file renamed from www/static/about/transparency/index.html to conservancy/static/about/transparency/index.html
conservancy/static/activities/index.html
Show inline comments
 
file renamed from www/static/activities/index.html to conservancy/static/activities/index.html
conservancy/static/coming-soon.html
Show inline comments
 
file renamed from www/static/coming-soon.html to conservancy/static/coming-soon.html
conservancy/static/copyleft-compliance/about.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/about.html to conservancy/static/copyleft-compliance/about.html
conservancy/static/copyleft-compliance/enforcement-strategy.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/enforcement-strategy.html to conservancy/static/copyleft-compliance/enforcement-strategy.html
conservancy/static/copyleft-compliance/firmware-liberation.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/firmware-liberation.html to conservancy/static/copyleft-compliance/firmware-liberation.html
conservancy/static/copyleft-compliance/glossary.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/glossary.html to conservancy/static/copyleft-compliance/glossary.html
conservancy/static/copyleft-compliance/help.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/help.html to conservancy/static/copyleft-compliance/help.html
conservancy/static/copyleft-compliance/index.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/index.html to conservancy/static/copyleft-compliance/index.html
conservancy/static/copyleft-compliance/linux-vs-vmkernel_de.png
Show inline comments
 
file renamed from www/static/copyleft-compliance/linux-vs-vmkernel_de.png to conservancy/static/copyleft-compliance/linux-vs-vmkernel_de.png
Show images
conservancy/static/copyleft-compliance/linux-vs-vmkernel_de.svg
Show inline comments
 
file renamed from www/static/copyleft-compliance/linux-vs-vmkernel_de.svg to conservancy/static/copyleft-compliance/linux-vs-vmkernel_de.svg
conservancy/static/copyleft-compliance/linux-vs-vmkernel_en.png
Show inline comments
 
file renamed from www/static/copyleft-compliance/linux-vs-vmkernel_en.png to conservancy/static/copyleft-compliance/linux-vs-vmkernel_en.png
Show images
conservancy/static/copyleft-compliance/linux-vs-vmkernel_en.svg
Show inline comments
 
file renamed from www/static/copyleft-compliance/linux-vs-vmkernel_en.svg to conservancy/static/copyleft-compliance/linux-vs-vmkernel_en.svg
conservancy/static/copyleft-compliance/linux-vs-vmkernel_en_scaled.png
Show inline comments
 
file renamed from www/static/copyleft-compliance/linux-vs-vmkernel_en_scaled.png to conservancy/static/copyleft-compliance/linux-vs-vmkernel_en_scaled.png
Show images
conservancy/static/copyleft-compliance/past-lawsuits.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/past-lawsuits.html to conservancy/static/copyleft-compliance/past-lawsuits.html
conservancy/static/copyleft-compliance/principles.cn.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/principles.cn.html to conservancy/static/copyleft-compliance/principles.cn.html
conservancy/static/copyleft-compliance/principles.cn.pdf
Show inline comments
 
file renamed from www/static/copyleft-compliance/principles.cn.pdf to conservancy/static/copyleft-compliance/principles.cn.pdf
conservancy/static/copyleft-compliance/principles.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/principles.html to conservancy/static/copyleft-compliance/principles.html
conservancy/static/copyleft-compliance/principles.kr.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/principles.kr.html to conservancy/static/copyleft-compliance/principles.kr.html
conservancy/static/copyleft-compliance/principles.kr.pdf
Show inline comments
 
file renamed from www/static/copyleft-compliance/principles.kr.pdf to conservancy/static/copyleft-compliance/principles.kr.pdf
conservancy/static/copyleft-compliance/vizio-filing-press-release.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/vizio-filing-press-release.html to conservancy/static/copyleft-compliance/vizio-filing-press-release.html
conservancy/static/copyleft-compliance/vizio.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/vizio.html to conservancy/static/copyleft-compliance/vizio.html
conservancy/static/copyleft-compliance/vmware-code-similarity.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/vmware-code-similarity.html to conservancy/static/copyleft-compliance/vmware-code-similarity.html
conservancy/static/copyleft-compliance/vmware-lawsuit-appeal.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/vmware-lawsuit-appeal.html to conservancy/static/copyleft-compliance/vmware-lawsuit-appeal.html
conservancy/static/copyleft-compliance/vmware-lawsuit-faq.html
Show inline comments
 
file renamed from www/static/copyleft-compliance/vmware-lawsuit-faq.html to conservancy/static/copyleft-compliance/vmware-lawsuit-faq.html
conservancy/static/css/conservancy-bigscreen.css
Show inline comments
 
file renamed from www/static/css/conservancy-bigscreen.css to conservancy/static/css/conservancy-bigscreen.css
conservancy/static/css/conservancy.css
Show inline comments
 
file renamed from www/static/css/conservancy.css to conservancy/static/css/conservancy.css
conservancy/static/css/forms.css
Show inline comments
 
file renamed from www/static/css/forms.css to conservancy/static/css/forms.css
conservancy/static/css/tachyons.css
Show inline comments
 
file renamed from www/static/css/tachyons.css to conservancy/static/css/tachyons.css
conservancy/static/docs/2010-07-27_dj-opinion.pdf
Show inline comments
 
file renamed from www/static/docs/2010-07-27_dj-opinion.pdf to conservancy/static/docs/2010-07-27_dj-opinion.pdf
conservancy/static/docs/2010_Killed-by-Code.pdf
Show inline comments
 
file renamed from www/static/docs/2010_Killed-by-Code.pdf to conservancy/static/docs/2010_Killed-by-Code.pdf
conservancy/static/docs/2016-02-23_Contracts_Committee_testimony.pdf
Show inline comments
 
file renamed from www/static/docs/2016-02-23_Contracts_Committee_testimony.pdf to conservancy/static/docs/2016-02-23_Contracts_Committee_testimony.pdf
conservancy/static/docs/2017-08-01_1201-exemption-renewal.pdf
Show inline comments
 
file renamed from www/static/docs/2017-08-01_1201-exemption-renewal.pdf to conservancy/static/docs/2017-08-01_1201-exemption-renewal.pdf
conservancy/static/docs/2018-01-03_Arista_amicus-brief.pdf
Show inline comments
 
file renamed from www/static/docs/2018-01-03_Arista_amicus-brief.pdf to conservancy/static/docs/2018-01-03_Arista_amicus-brief.pdf
conservancy/static/docs/2019-09-18_Conservancy-USPTO-Petition-re-rule-2_189.pdf
Show inline comments
 
file renamed from www/static/docs/2019-09-18_Conservancy-USPTO-Petition-re-rule-2_189.pdf to conservancy/static/docs/2019-09-18_Conservancy-USPTO-Petition-re-rule-2_189.pdf
conservancy/static/docs/2020-12-14_Comment-Class-11_networking-devices.pdf
Show inline comments
 
file renamed from www/static/docs/2020-12-14_Comment-Class-11_networking-devices.pdf to conservancy/static/docs/2020-12-14_Comment-Class-11_networking-devices.pdf
conservancy/static/docs/2020-12-14_Comment-Class-13_privacy-research.pdf
Show inline comments
 
file renamed from www/static/docs/2020-12-14_Comment-Class-13_privacy-research.pdf to conservancy/static/docs/2020-12-14_Comment-Class-13_privacy-research.pdf
conservancy/static/docs/2020-12-14_Comment-Class-16_copyright-license-invesigation.pdf
Show inline comments
 
file renamed from www/static/docs/2020-12-14_Comment-Class-16_copyright-license-invesigation.pdf to conservancy/static/docs/2020-12-14_Comment-Class-16_copyright-license-invesigation.pdf
conservancy/static/docs/2022-02-01_open-letter-to-Biden-on-cybersecurity-and-FOSS.pdf
Show inline comments
 
file renamed from www/static/docs/2022-02-01_open-letter-to-Biden-on-cybersecurity-and-FOSS.pdf to conservancy/static/docs/2022-02-01_open-letter-to-Biden-on-cybersecurity-and-FOSS.pdf
conservancy/static/docs/2023-01-31_KU-Lueven_Sandler-Karen_Software-Rights-Accountability-and-Autonomy-in-Our-Technology.txt
Show inline comments
 
file renamed from www/static/docs/2023-01-31_KU-Lueven_Sandler-Karen_Software-Rights-Accountability-and-Autonomy-in-Our-Technology.txt to conservancy/static/docs/2023-01-31_KU-Lueven_Sandler-Karen_Software-Rights-Accountability-and-Autonomy-in-Our-Technology.txt
conservancy/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.en.txt
Show inline comments
 
file renamed from www/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.en.txt to conservancy/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.en.txt
conservancy/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.nl.txt
Show inline comments
 
file renamed from www/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.nl.txt to conservancy/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.nl.txt
conservancy/static/docs/GiveUpGitHub-README.md
Show inline comments
 
file renamed from www/static/docs/GiveUpGitHub-README.md to conservancy/static/docs/GiveUpGitHub-README.md
conservancy/static/docs/SupportGiveUpGitHub-README-snippet.md
Show inline comments
 
file renamed from www/static/docs/SupportGiveUpGitHub-README-snippet.md to conservancy/static/docs/SupportGiveUpGitHub-README-snippet.md
conservancy/static/docs/blank_anonymous-linux-enforcement-agreement.pdf
Show inline comments
 
file renamed from www/static/docs/blank_anonymous-linux-enforcement-agreement.pdf to conservancy/static/docs/blank_anonymous-linux-enforcement-agreement.pdf
conservancy/static/docs/blank_linux-enforcement-agreement.pdf
Show inline comments
 
file renamed from www/static/docs/blank_linux-enforcement-agreement.pdf to conservancy/static/docs/blank_linux-enforcement-agreement.pdf
conservancy/static/docs/busybox-complaint-2009-12-14.pdf
Show inline comments
 
file renamed from www/static/docs/busybox-complaint-2009-12-14.pdf to conservancy/static/docs/busybox-complaint-2009-12-14.pdf
conservancy/static/docs/conservancy-1201-long-form-comment-2015-02-06.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy-1201-long-form-comment-2015-02-06.pdf to conservancy/static/docs/conservancy-1201-long-form-comment-2015-02-06.pdf
conservancy/static/docs/conservancy-1201-petition-2014-10-31-no-letterhead.odt
Show inline comments
 
file renamed from www/static/docs/conservancy-1201-petition-2014-10-31-no-letterhead.odt to conservancy/static/docs/conservancy-1201-petition-2014-10-31-no-letterhead.odt
conservancy/static/docs/conservancy-1201-petition-2014-10-31.odt
Show inline comments
 
file renamed from www/static/docs/conservancy-1201-petition-2014-10-31.odt to conservancy/static/docs/conservancy-1201-petition-2014-10-31.odt
conservancy/static/docs/conservancy-1201-petition-2014-10-31.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy-1201-petition-2014-10-31.pdf to conservancy/static/docs/conservancy-1201-petition-2014-10-31.pdf
conservancy/static/docs/conservancy-CHAR-500-fy-2008.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy-CHAR-500-fy-2008.pdf to conservancy/static/docs/conservancy-CHAR-500-fy-2008.pdf
conservancy/static/docs/conservancy-form-990-fy-2008.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy-form-990-fy-2008.pdf to conservancy/static/docs/conservancy-form-990-fy-2008.pdf
conservancy/static/docs/conservancy_CHAR-500_fy-2006.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_CHAR-500_fy-2006.pdf to conservancy/static/docs/conservancy_CHAR-500_fy-2006.pdf
conservancy/static/docs/conservancy_CHAR-500_fy-2007.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_CHAR-500_fy-2007.pdf to conservancy/static/docs/conservancy_CHAR-500_fy-2007.pdf
conservancy/static/docs/conservancy_CHAR-500_fy-2009.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_CHAR-500_fy-2009.pdf to conservancy/static/docs/conservancy_CHAR-500_fy-2009.pdf
conservancy/static/docs/conservancy_CHAR-500_fy-2010.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_CHAR-500_fy-2010.pdf to conservancy/static/docs/conservancy_CHAR-500_fy-2010.pdf
conservancy/static/docs/conservancy_CHAR-500_fy-2011.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_CHAR-500_fy-2011.pdf to conservancy/static/docs/conservancy_CHAR-500_fy-2011.pdf
conservancy/static/docs/conservancy_CHAR-500_fy-2012.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_CHAR-500_fy-2012.pdf to conservancy/static/docs/conservancy_CHAR-500_fy-2012.pdf
conservancy/static/docs/conservancy_CHAR-500_fy-2013.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_CHAR-500_fy-2013.pdf to conservancy/static/docs/conservancy_CHAR-500_fy-2013.pdf
conservancy/static/docs/conservancy_CHAR-500_fy-2015.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_CHAR-500_fy-2015.pdf to conservancy/static/docs/conservancy_CHAR-500_fy-2015.pdf
conservancy/static/docs/conservancy_CHAR-500_fy-2016.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_CHAR-500_fy-2016.pdf to conservancy/static/docs/conservancy_CHAR-500_fy-2016.pdf
conservancy/static/docs/conservancy_CHAR-500_fy-2017.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_CHAR-500_fy-2017.pdf to conservancy/static/docs/conservancy_CHAR-500_fy-2017.pdf
conservancy/static/docs/conservancy_Form-1023.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_Form-1023.pdf to conservancy/static/docs/conservancy_Form-1023.pdf
conservancy/static/docs/conservancy_Form-990_fy-2007.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_Form-990_fy-2007.pdf to conservancy/static/docs/conservancy_Form-990_fy-2007.pdf
conservancy/static/docs/conservancy_Form-990_fy-2009.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_Form-990_fy-2009.pdf to conservancy/static/docs/conservancy_Form-990_fy-2009.pdf
conservancy/static/docs/conservancy_Form-990_fy-2010.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_Form-990_fy-2010.pdf to conservancy/static/docs/conservancy_Form-990_fy-2010.pdf
conservancy/static/docs/conservancy_Form-990_fy-2011.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_Form-990_fy-2011.pdf to conservancy/static/docs/conservancy_Form-990_fy-2011.pdf
conservancy/static/docs/conservancy_Form-990_fy-2012.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_Form-990_fy-2012.pdf to conservancy/static/docs/conservancy_Form-990_fy-2012.pdf
conservancy/static/docs/conservancy_Form-990_fy-2013.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_Form-990_fy-2013.pdf to conservancy/static/docs/conservancy_Form-990_fy-2013.pdf
conservancy/static/docs/conservancy_Form-990_fy-2014.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_Form-990_fy-2014.pdf to conservancy/static/docs/conservancy_Form-990_fy-2014.pdf
conservancy/static/docs/conservancy_Form-990_fy-2015.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_Form-990_fy-2015.pdf to conservancy/static/docs/conservancy_Form-990_fy-2015.pdf
conservancy/static/docs/conservancy_Form-990_fy-2016.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_Form-990_fy-2016.pdf to conservancy/static/docs/conservancy_Form-990_fy-2016.pdf
conservancy/static/docs/conservancy_Form-990_fy-2017.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_Form-990_fy-2017.pdf to conservancy/static/docs/conservancy_Form-990_fy-2017.pdf
conservancy/static/docs/conservancy_annual-report_fy-2011.odp
Show inline comments
 
file renamed from www/static/docs/conservancy_annual-report_fy-2011.odp to conservancy/static/docs/conservancy_annual-report_fy-2011.odp
conservancy/static/docs/conservancy_annual-report_fy-2011.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_annual-report_fy-2011.pdf to conservancy/static/docs/conservancy_annual-report_fy-2011.pdf
conservancy/static/docs/conservancy_annual-report_fy-2012.odp
Show inline comments
 
file renamed from www/static/docs/conservancy_annual-report_fy-2012.odp to conservancy/static/docs/conservancy_annual-report_fy-2012.odp
conservancy/static/docs/conservancy_annual-report_fy-2012.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_annual-report_fy-2012.pdf to conservancy/static/docs/conservancy_annual-report_fy-2012.pdf
conservancy/static/docs/conservancy_annual-report_fy-2013.odp
Show inline comments
 
file renamed from www/static/docs/conservancy_annual-report_fy-2013.odp to conservancy/static/docs/conservancy_annual-report_fy-2013.odp
conservancy/static/docs/conservancy_annual-report_fy-2013.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_annual-report_fy-2013.pdf to conservancy/static/docs/conservancy_annual-report_fy-2013.pdf
conservancy/static/docs/conservancy_by-laws.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_by-laws.pdf to conservancy/static/docs/conservancy_by-laws.pdf
conservancy/static/docs/conservancy_certificate-of-incorporation.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_certificate-of-incorporation.pdf to conservancy/static/docs/conservancy_certificate-of-incorporation.pdf
conservancy/static/docs/conservancy_independent-audit_fy-2010.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_independent-audit_fy-2010.pdf to conservancy/static/docs/conservancy_independent-audit_fy-2010.pdf
conservancy/static/docs/conservancy_independent-audit_fy-2011.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_independent-audit_fy-2011.pdf to conservancy/static/docs/conservancy_independent-audit_fy-2011.pdf
conservancy/static/docs/conservancy_independent-audit_fy-2012.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_independent-audit_fy-2012.pdf to conservancy/static/docs/conservancy_independent-audit_fy-2012.pdf
conservancy/static/docs/conservancy_independent-audit_fy-2013.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_independent-audit_fy-2013.pdf to conservancy/static/docs/conservancy_independent-audit_fy-2013.pdf
conservancy/static/docs/conservancy_independent-audit_fy-2014.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_independent-audit_fy-2014.pdf to conservancy/static/docs/conservancy_independent-audit_fy-2014.pdf
conservancy/static/docs/conservancy_independent-audit_fy-2015.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_independent-audit_fy-2015.pdf to conservancy/static/docs/conservancy_independent-audit_fy-2015.pdf
conservancy/static/docs/conservancy_independent-audit_fy-2016.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_independent-audit_fy-2016.pdf to conservancy/static/docs/conservancy_independent-audit_fy-2016.pdf
conservancy/static/docs/conservancy_independent-audit_fy-2017.pdf
Show inline comments
 
file renamed from www/static/docs/conservancy_independent-audit_fy-2017.pdf to conservancy/static/docs/conservancy_independent-audit_fy-2017.pdf
conservancy/static/docs/kuhn_expert-report-in-neo4j_5-18-cv-07182.pdf
Show inline comments
 
file renamed from www/static/docs/kuhn_expert-report-in-neo4j_5-18-cv-07182.pdf to conservancy/static/docs/kuhn_expert-report-in-neo4j_5-18-cv-07182.pdf
conservancy/static/docs/sfc-introduction-vtt-captions.txt
Show inline comments
 
file renamed from www/static/docs/sfc-introduction-vtt-captions.txt to conservancy/static/docs/sfc-introduction-vtt-captions.txt
conservancy/static/docs/software-freedom-conservancy-v-vizio-announce-press-kit.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy-v-vizio-announce-press-kit.pdf to conservancy/static/docs/software-freedom-conservancy-v-vizio-announce-press-kit.pdf
conservancy/static/docs/software-freedom-conservancy-v-vizio-complaint-2021-10-19.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy-v-vizio-complaint-2021-10-19.pdf to conservancy/static/docs/software-freedom-conservancy-v-vizio-complaint-2021-10-19.pdf
conservancy/static/docs/software-freedom-conservancy-v-vizio-q-and-a.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy-v-vizio-q-and-a.pdf to conservancy/static/docs/software-freedom-conservancy-v-vizio-q-and-a.pdf
conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2018-19.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy_CHAR500_fy-2018-19.pdf to conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2018-19.pdf
conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2019.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy_CHAR500_fy-2019.pdf to conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2019.pdf
conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2020.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy_CHAR500_fy-2020.pdf to conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2020.pdf
conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2021-22.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy_CHAR500_fy-2021-22.pdf to conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2021-22.pdf
conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2018-19.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy_Form-990_fy-2018-19.pdf to conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2018-19.pdf
conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2019.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy_Form-990_fy-2019.pdf to conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2019.pdf
conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2020.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy_Form-990_fy-2020.pdf to conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2020.pdf
conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2021-22.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy_Form-990_fy-2021-22.pdf to conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2021-22.pdf
conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2018-19.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy_independent-audit_fy-2018-19.pdf to conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2018-19.pdf
conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2019.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy_independent-audit_fy-2019.pdf to conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2019.pdf
conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2020.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy_independent-audit_fy-2020.pdf to conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2020.pdf
conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2021-22.pdf
Show inline comments
 
file renamed from www/static/docs/software-freedom-conservancy_independent-audit_fy-2021-22.pdf to conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2021-22.pdf
conservancy/static/docs/sponsorship-agreement-template.odt
Show inline comments
 
file renamed from www/static/docs/sponsorship-agreement-template.odt to conservancy/static/docs/sponsorship-agreement-template.odt
conservancy/static/docs/sponsorship-agreement-template.pdf
Show inline comments
 
file renamed from www/static/docs/sponsorship-agreement-template.pdf to conservancy/static/docs/sponsorship-agreement-template.pdf
conservancy/static/docs/sponsorship-agreement-template.tex
Show inline comments
 
file renamed from www/static/docs/sponsorship-agreement-template.tex to conservancy/static/docs/sponsorship-agreement-template.tex
conservancy/static/donate/index.html
Show inline comments
 
file renamed from www/static/donate/index.html to conservancy/static/donate/index.html
conservancy/static/error/401/index.html
Show inline comments
 
file renamed from www/static/error/401/index.html to conservancy/static/error/401/index.html
conservancy/static/error/403/index.html
Show inline comments
 
file renamed from www/static/error/403/index.html to conservancy/static/error/403/index.html
conservancy/static/error/404/index.html
Show inline comments
 
file renamed from www/static/error/404/index.html to conservancy/static/error/404/index.html
conservancy/static/error/500/index.html
Show inline comments
 
file renamed from www/static/error/500/index.html to conservancy/static/error/500/index.html
conservancy/static/favicon.ico
Show inline comments
 
file renamed from www/static/favicon.ico to conservancy/static/favicon.ico
conservancy/static/fossy.html
Show inline comments
 
file renamed from www/static/fossy.html to conservancy/static/fossy.html
conservancy/static/fossy/index.html
Show inline comments
 
file renamed from www/static/fossy/index.html to conservancy/static/fossy/index.html
conservancy/static/google536264c707362f55.html
Show inline comments
 
file renamed from www/static/google536264c707362f55.html to conservancy/static/google536264c707362f55.html
conservancy/static/img/2015-10_KCC_karen-speaking.jpg
Show inline comments
 
file renamed from www/static/img/2015-10_KCC_karen-speaking.jpg to conservancy/static/img/2015-10_KCC_karen-speaking.jpg
Show images
conservancy/static/img/2015-10_KCC_other-speakers.jpg
Show inline comments
 
file renamed from www/static/img/2015-10_KCC_other-speakers.jpg to conservancy/static/img/2015-10_KCC_other-speakers.jpg
Show images
conservancy/static/img/2016-02-23_karen-testifying-by-David-Moore-CC-BY-SA-4.jpg
Show inline comments
 
file renamed from www/static/img/2016-02-23_karen-testifying-by-David-Moore-CC-BY-SA-4.jpg to conservancy/static/img/2016-02-23_karen-testifying-by-David-Moore-CC-BY-SA-4.jpg
Show images
conservancy/static/img/2016-10_Hackey-New-School-1.jpg
Show inline comments
 
file renamed from www/static/img/2016-10_Hackey-New-School-1.jpg to conservancy/static/img/2016-10_Hackey-New-School-1.jpg
Show images
conservancy/static/img/2016-10_Hackey-New-School-2.jpg
Show inline comments
 
file renamed from www/static/img/2016-10_Hackey-New-School-2.jpg to conservancy/static/img/2016-10_Hackey-New-School-2.jpg
Show images
conservancy/static/img/2016-10_Karen-OSCon-EU-keynote.png
Show inline comments
 
file renamed from www/static/img/2016-10_Karen-OSCon-EU-keynote.png to conservancy/static/img/2016-10_Karen-OSCon-EU-keynote.png
Show images
conservancy/static/img/2016_Edward-Snowden_CC-BY-SA-4.0.jpg
Show inline comments
 
file renamed from www/static/img/2016_Edward-Snowden_CC-BY-SA-4.0.jpg to conservancy/static/img/2016_Edward-Snowden_CC-BY-SA-4.0.jpg
Show images
conservancy/static/img/2016_OutreachyBoothAtTapia.JPG
Show inline comments
 
file renamed from www/static/img/2016_OutreachyBoothAtTapia.JPG to conservancy/static/img/2016_OutreachyBoothAtTapia.JPG
conservancy/static/img/2017-01_LCA-Outreachy-donations.png
Show inline comments
 
file renamed from www/static/img/2017-01_LCA-Outreachy-donations.png to conservancy/static/img/2017-01_LCA-Outreachy-donations.png
Show images
conservancy/static/img/2017-02-fosdem-bradley-keynote.jpg
Show inline comments
 
file renamed from www/static/img/2017-02-fosdem-bradley-keynote.jpg to conservancy/static/img/2017-02-fosdem-bradley-keynote.jpg
Show images
conservancy/static/img/2017-02-fosdem-kid-plays-at-godot-booth.jpg
Show inline comments
 
file renamed from www/static/img/2017-02-fosdem-kid-plays-at-godot-booth.jpg to conservancy/static/img/2017-02-fosdem-kid-plays-at-godot-booth.jpg
Show images
conservancy/static/img/2017-02-fosdem-stand-karen-mike.jpg
Show inline comments
 
file renamed from www/static/img/2017-02-fosdem-stand-karen-mike.jpg to conservancy/static/img/2017-02-fosdem-stand-karen-mike.jpg
Show images
conservancy/static/img/2017-04_karen_defibrillator-interrogation.jpg
Show inline comments
 
file renamed from www/static/img/2017-04_karen_defibrillator-interrogation.jpg to conservancy/static/img/2017-04_karen_defibrillator-interrogation.jpg
Show images
conservancy/static/img/2017-04_karen_nurse-calling-manufacturers.jpg
Show inline comments
 
file renamed from www/static/img/2017-04_karen_nurse-calling-manufacturers.jpg to conservancy/static/img/2017-04_karen_nurse-calling-manufacturers.jpg
Show images
conservancy/static/img/2017-06_tony_OSCon-award.jpg
Show inline comments
 
file renamed from www/static/img/2017-06_tony_OSCon-award.jpg to conservancy/static/img/2017-06_tony_OSCon-award.jpg
Show images
conservancy/static/img/2017-09_froscon-signs.jpg
Show inline comments
 
file renamed from www/static/img/2017-09_froscon-signs.jpg to conservancy/static/img/2017-09_froscon-signs.jpg
Show images
conservancy/static/img/2017-09_karen-speaking-guadec.jpg
Show inline comments
 
file renamed from www/static/img/2017-09_karen-speaking-guadec.jpg to conservancy/static/img/2017-09_karen-speaking-guadec.jpg
Show images
conservancy/static/img/2017-09_outreachy-alums-debconf.jpg
Show inline comments
 
file renamed from www/static/img/2017-09_outreachy-alums-debconf.jpg to conservancy/static/img/2017-09_outreachy-alums-debconf.jpg
Show images
conservancy/static/img/2017-11_blog_currency.jpg
Show inline comments
 
file renamed from www/static/img/2017-11_blog_currency.jpg to conservancy/static/img/2017-11_blog_currency.jpg
Show images
conservancy/static/img/2017-12_blog_ChrisNeugebauer_poster.png
Show inline comments
 
file renamed from www/static/img/2017-12_blog_ChrisNeugebauer_poster.png to conservancy/static/img/2017-12_blog_ChrisNeugebauer_poster.png
Show images
conservancy/static/img/2017-12_blog_Judy-Gichoya_poster.png
Show inline comments
 
file renamed from www/static/img/2017-12_blog_Judy-Gichoya_poster.png to conservancy/static/img/2017-12_blog_Judy-Gichoya_poster.png
Show images
conservancy/static/img/2017-12_blog_group-support-thumbnail.png
Show inline comments
 
file renamed from www/static/img/2017-12_blog_group-support-thumbnail.png to conservancy/static/img/2017-12_blog_group-support-thumbnail.png
Show images
conservancy/static/img/2017-12_blog_gsoc-member-projects.jpg
Show inline comments
 
file renamed from www/static/img/2017-12_blog_gsoc-member-projects.jpg to conservancy/static/img/2017-12_blog_gsoc-member-projects.jpg
Show images
conservancy/static/img/2017-CWL-intro-poster.png
Show inline comments
 
file renamed from www/static/img/2017-CWL-intro-poster.png to conservancy/static/img/2017-CWL-intro-poster.png
Show images
conservancy/static/img/2017-JeremiahFoster_thumbnail.png
Show inline comments
 
file renamed from www/static/img/2017-JeremiahFoster_thumbnail.png to conservancy/static/img/2017-JeremiahFoster_thumbnail.png
Show images
conservancy/static/img/2017_GNUToolsCauldron_courtesy_of_mjw.jpg
Show inline comments
 
file renamed from www/static/img/2017_GNUToolsCauldron_courtesy_of_mjw.jpg to conservancy/static/img/2017_GNUToolsCauldron_courtesy_of_mjw.jpg
Show images
conservancy/static/img/2018-03_blog_Sandler-at-LibrePlanet.jpg
Show inline comments
 
file renamed from www/static/img/2018-03_blog_Sandler-at-LibrePlanet.jpg to conservancy/static/img/2018-03_blog_Sandler-at-LibrePlanet.jpg
Show images
conservancy/static/img/2018-11_Molly-de-Blanc-match-announcement-poster.png
Show inline comments
 
file renamed from www/static/img/2018-11_Molly-de-Blanc-match-announcement-poster.png to conservancy/static/img/2018-11_Molly-de-Blanc-match-announcement-poster.png
Show images
conservancy/static/img/2018-MollyandKarenatDebConf.jpg
Show inline comments
 
file renamed from www/static/img/2018-MollyandKarenatDebConf.jpg to conservancy/static/img/2018-MollyandKarenatDebConf.jpg
Show images
conservancy/static/img/2018-MollyandKarenatDebConf_cropped.png
Show inline comments
 
file renamed from www/static/img/2018-MollyandKarenatDebConf_cropped.png to conservancy/static/img/2018-MollyandKarenatDebConf_cropped.png
Show images
conservancy/static/img/2018_ConservancyCatsCC.BY.SA_byVMB.jpeg
Show inline comments
 
file renamed from www/static/img/2018_ConservancyCatsCC.BY.SA_byVMB.jpeg to conservancy/static/img/2018_ConservancyCatsCC.BY.SA_byVMB.jpeg
conservancy/static/img/2018_Deb-Nicholson_LibrePlanet-keynote-poster.png
Show inline comments
 
file renamed from www/static/img/2018_Deb-Nicholson_LibrePlanet-keynote-poster.png to conservancy/static/img/2018_Deb-Nicholson_LibrePlanet-keynote-poster.png
Show images
conservancy/static/img/2018_Deb-Nicholson_LibrePlenet-keynote-poster-2.png
Show inline comments
 
file renamed from www/static/img/2018_Deb-Nicholson_LibrePlenet-keynote-poster-2.png to conservancy/static/img/2018_Deb-Nicholson_LibrePlenet-keynote-poster-2.png
Show images
conservancy/static/img/2018_Deb-Nicholson_headshot.jpg
Show inline comments
 
file renamed from www/static/img/2018_Deb-Nicholson_headshot.jpg to conservancy/static/img/2018_Deb-Nicholson_headshot.jpg
Show images
conservancy/static/img/2018_ElanaHashman_ARR_CourtesyofElana.jpg
Show inline comments
 
file renamed from www/static/img/2018_ElanaHashman_ARR_CourtesyofElana.jpg to conservancy/static/img/2018_ElanaHashman_ARR_CourtesyofElana.jpg
Show images
conservancy/static/img/2018_ElanaHashman_ARR_CourtesyofElana_2.jpg
Show inline comments
 
file renamed from www/static/img/2018_ElanaHashman_ARR_CourtesyofElana_2.jpg to conservancy/static/img/2018_ElanaHashman_ARR_CourtesyofElana_2.jpg
Show images
conservancy/static/img/2018_GSOC-byJoshSimmons_high.JPG
Show inline comments
 
file renamed from www/static/img/2018_GSOC-byJoshSimmons_high.JPG to conservancy/static/img/2018_GSOC-byJoshSimmons_high.JPG
conservancy/static/img/2018_KeithandCat.jpg
Show inline comments
 
file renamed from www/static/img/2018_KeithandCat.jpg to conservancy/static/img/2018_KeithandCat.jpg
Show images
conservancy/static/img/2018_MattNotWiki_CC.BY.SA_by_tef_on_Wikipedia.jpeg
Show inline comments
 
file renamed from www/static/img/2018_MattNotWiki_CC.BY.SA_by_tef_on_Wikipedia.jpeg to conservancy/static/img/2018_MattNotWiki_CC.BY.SA_by_tef_on_Wikipedia.jpeg
conservancy/static/img/2018_MicroBlocks1.JPG
Show inline comments
 
file renamed from www/static/img/2018_MicroBlocks1.JPG to conservancy/static/img/2018_MicroBlocks1.JPG
conservancy/static/img/2018_MicroBlocks2.JPG
Show inline comments
 
file renamed from www/static/img/2018_MicroBlocks2.JPG to conservancy/static/img/2018_MicroBlocks2.JPG
conservancy/static/img/2018_Microblocks3.jpeg
Show inline comments
 
file renamed from www/static/img/2018_Microblocks3.jpeg to conservancy/static/img/2018_Microblocks3.jpeg
conservancy/static/img/2018_MollyandBash.jpg
Show inline comments
 
file renamed from www/static/img/2018_MollyandBash.jpg to conservancy/static/img/2018_MollyandBash.jpg
Show images
conservancy/static/img/2018_Sageanddaughter.jpg
Show inline comments
 
file renamed from www/static/img/2018_Sageanddaughter.jpg to conservancy/static/img/2018_Sageanddaughter.jpg
Show images
conservancy/static/img/2019-02_FOSDEM_keynote-poster.png
Show inline comments
 
file renamed from www/static/img/2019-02_FOSDEM_keynote-poster.png to conservancy/static/img/2019-02_FOSDEM_keynote-poster.png
Show images
conservancy/static/img/2019-04_Nicholson-Deb_LibrePlanet.png
Show inline comments
 
file renamed from www/static/img/2019-04_Nicholson-Deb_LibrePlanet.png to conservancy/static/img/2019-04_Nicholson-Deb_LibrePlanet.png
Show images
conservancy/static/img/2019-08-26_GUADECSupporterNightOne.jpg
Show inline comments
 
file renamed from www/static/img/2019-08-26_GUADECSupporterNightOne.jpg to conservancy/static/img/2019-08-26_GUADECSupporterNightOne.jpg
Show images
conservancy/static/img/2019-08-26_GUADECSupporterNightThree.jpg
Show inline comments
 
file renamed from www/static/img/2019-08-26_GUADECSupporterNightThree.jpg to conservancy/static/img/2019-08-26_GUADECSupporterNightThree.jpg
Show images
conservancy/static/img/2019-08-26_GUADECSupporterNightTwo.jpg
Show inline comments
 
file renamed from www/static/img/2019-08-26_GUADECSupporterNightTwo.jpg to conservancy/static/img/2019-08-26_GUADECSupporterNightTwo.jpg
Show images
conservancy/static/img/2019-08-26_Neil-alone_GUADECSupporterNight.jpg
Show inline comments
 
file renamed from www/static/img/2019-08-26_Neil-alone_GUADECSupporterNight.jpg to conservancy/static/img/2019-08-26_Neil-alone_GUADECSupporterNight.jpg
Show images
conservancy/static/img/2019-08-KarenatAbstractionsCC.BY_SarahWithee.jpeg
Show inline comments
 
file renamed from www/static/img/2019-08-KarenatAbstractionsCC.BY_SarahWithee.jpeg to conservancy/static/img/2019-08-KarenatAbstractionsCC.BY_SarahWithee.jpeg
conservancy/static/img/2019-08_KarenAbstractions_CC.BY Zach Harris.jpeg
Show inline comments
 
file renamed from www/static/img/2019-08_KarenAbstractions_CC.BY Zach Harris.jpeg to conservancy/static/img/2019-08_KarenAbstractions_CC.BY Zach Harris.jpeg
conservancy/static/img/2019-10-24_BowieExplained.png
Show inline comments
 
file renamed from www/static/img/2019-10-24_BowieExplained.png to conservancy/static/img/2019-10-24_BowieExplained.png
Show images
conservancy/static/img/2019-10-24_KarenExplained.png
Show inline comments
 
file renamed from www/static/img/2019-10-24_KarenExplained.png to conservancy/static/img/2019-10-24_KarenExplained.png
Show images
conservancy/static/img/2019-12-12_TheBestCats_CC.BY_byDanielleSucher.jpeg
Show inline comments
 
file renamed from www/static/img/2019-12-12_TheBestCats_CC.BY_byDanielleSucher.jpeg to conservancy/static/img/2019-12-12_TheBestCats_CC.BY_byDanielleSucher.jpeg
conservancy/static/img/2019.09_CC.BY.SA_BradleyKuhn_atKernelRecipes_byPatrickBoettcher.jpg
Show inline comments
 
file renamed from www/static/img/2019.09_CC.BY.SA_BradleyKuhn_atKernelRecipes_byPatrickBoettcher.jpg to conservancy/static/img/2019.09_CC.BY.SA_BradleyKuhn_atKernelRecipes_byPatrickBoettcher.jpg
Show images
conservancy/static/img/20190204_CopyleftConfFromDeb.jpg
Show inline comments
 
file renamed from www/static/img/20190204_CopyleftConfFromDeb.jpg to conservancy/static/img/20190204_CopyleftConfFromDeb.jpg
Show images
conservancy/static/img/20191116_FaifcastLiveAtSeaGL1.jpg
Show inline comments
 
file renamed from www/static/img/20191116_FaifcastLiveAtSeaGL1.jpg to conservancy/static/img/20191116_FaifcastLiveAtSeaGL1.jpg
Show images
conservancy/static/img/20191116_FaifcastLiveAtSeaGL2.jpg
Show inline comments
 
file renamed from www/static/img/20191116_FaifcastLiveAtSeaGL2.jpg to conservancy/static/img/20191116_FaifcastLiveAtSeaGL2.jpg
Show images
conservancy/static/img/20191116_FaifcastLiveAtSeaGL3.jpg
Show inline comments
 
file renamed from www/static/img/20191116_FaifcastLiveAtSeaGL3.jpg to conservancy/static/img/20191116_FaifcastLiveAtSeaGL3.jpg
Show images
conservancy/static/img/2019_CC.0_WineConf2019-Group-1_by_Francois_Gouget.jpg
Show inline comments
 
file renamed from www/static/img/2019_CC.0_WineConf2019-Group-1_by_Francois_Gouget.jpg to conservancy/static/img/2019_CC.0_WineConf2019-Group-1_by_Francois_Gouget.jpg
Show images
conservancy/static/img/2019_CopyleftConfByLeslieHawthorn.jpeg
Show inline comments
 
file renamed from www/static/img/2019_CopyleftConfByLeslieHawthorn.jpeg to conservancy/static/img/2019_CopyleftConfByLeslieHawthorn.jpeg
conservancy/static/img/2019_CopyleftConfByLeslieHawthorn_cropped.png
Show inline comments
 
file renamed from www/static/img/2019_CopyleftConfByLeslieHawthorn_cropped.png to conservancy/static/img/2019_CopyleftConfByLeslieHawthorn_cropped.png
Show images
conservancy/static/img/2019_FSFAwardPhotoofDebNicholson_CC.BY_by_AdamMonsen.jpg
Show inline comments
 
file renamed from www/static/img/2019_FSFAwardPhotoofDebNicholson_CC.BY_by_AdamMonsen.jpg to conservancy/static/img/2019_FSFAwardPhotoofDebNicholson_CC.BY_by_AdamMonsen.jpg
Show images
conservancy/static/img/2019_RB_group.gif
Show inline comments
 
file renamed from www/static/img/2019_RB_group.gif to conservancy/static/img/2019_RB_group.gif
Show images
conservancy/static/img/2020-01-17_bkuhn_lca-2020.png
Show inline comments
 
file renamed from www/static/img/2020-01-17_bkuhn_lca-2020.png to conservancy/static/img/2020-01-17_bkuhn_lca-2020.png
Show images
conservancy/static/img/2020-04_Deb-Nicholson_CHAOSScon-poster.png
Show inline comments
 
file renamed from www/static/img/2020-04_Deb-Nicholson_CHAOSScon-poster.png to conservancy/static/img/2020-04_Deb-Nicholson_CHAOSScon-poster.png
Show images
conservancy/static/img/2020-07_MicroBlocks1.png
Show inline comments
 
file renamed from www/static/img/2020-07_MicroBlocks1.png to conservancy/static/img/2020-07_MicroBlocks1.png
Show images
conservancy/static/img/2020-07_MicroBlocks2.png
Show inline comments
 
file renamed from www/static/img/2020-07_MicroBlocks2.png to conservancy/static/img/2020-07_MicroBlocks2.png
Show images
conservancy/static/img/2020-12-04_lots-vintage-shirts.jpg
Show inline comments
 
file renamed from www/static/img/2020-12-04_lots-vintage-shirts.jpg to conservancy/static/img/2020-12-04_lots-vintage-shirts.jpg
Show images
conservancy/static/img/2020.02.03_CC.BY.SA_SecondAnnualCopyleftConf_byDebNicholson.jpg
Show inline comments
 
file renamed from www/static/img/2020.02.03_CC.BY.SA_SecondAnnualCopyleftConf_byDebNicholson.jpg to conservancy/static/img/2020.02.03_CC.BY.SA_SecondAnnualCopyleftConf_byDebNicholson.jpg
Show images
conservancy/static/img/2020.02.03_Copyleft.CC.BY.SA_byDebNicholson.png
Show inline comments
 
file renamed from www/static/img/2020.02.03_Copyleft.CC.BY.SA_byDebNicholson.png to conservancy/static/img/2020.02.03_Copyleft.CC.BY.SA_byDebNicholson.png
Show images
conservancy/static/img/20200131_AISession_CC.BY.SA_byPeterWolanin.jpg
Show inline comments
 
file renamed from www/static/img/20200131_AISession_CC.BY.SA_byPeterWolanin.jpg to conservancy/static/img/20200131_AISession_CC.BY.SA_byPeterWolanin.jpg
Show images
conservancy/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.jpg.jpg
Show inline comments
 
file renamed from www/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.jpg.jpg to conservancy/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.jpg.jpg
Show images
conservancy/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.xcf
Show inline comments
 
file renamed from www/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.xcf to conservancy/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.xcf
conservancy/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin_cropped.png
Show inline comments
 
file renamed from www/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin_cropped.png to conservancy/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin_cropped.png
Show images
conservancy/static/img/2020_Allison_Randal_CC.BY.SA_byEvanCarroll.jpg
Show inline comments
 
file renamed from www/static/img/2020_Allison_Randal_CC.BY.SA_byEvanCarroll.jpg to conservancy/static/img/2020_Allison_Randal_CC.BY.SA_byEvanCarroll.jpg
Show images
conservancy/static/img/2020_JeremyAllison.jpg
Show inline comments
 
file renamed from www/static/img/2020_JeremyAllison.jpg to conservancy/static/img/2020_JeremyAllison.jpg
Show images
conservancy/static/img/2020_Leslie-Hawthorn.jpg
Show inline comments
 
file renamed from www/static/img/2020_Leslie-Hawthorn.jpg to conservancy/static/img/2020_Leslie-Hawthorn.jpg
Show images
conservancy/static/img/2020_Sebro-Tony_CopyleftConf.jpg
Show inline comments
 
file renamed from www/static/img/2020_Sebro-Tony_CopyleftConf.jpg to conservancy/static/img/2020_Sebro-Tony_CopyleftConf.jpg
Show images
conservancy/static/img/2020_Sebro_Tony.jpg
Show inline comments
 
file renamed from www/static/img/2020_Sebro_Tony.jpg to conservancy/static/img/2020_Sebro_Tony.jpg
Show images
conservancy/static/img/2020_Sharp_headshot.jpg
Show inline comments
 
file renamed from www/static/img/2020_Sharp_headshot.jpg to conservancy/static/img/2020_Sharp_headshot.jpg
Show images
conservancy/static/img/2020_WineBottle_CC.BY.SA_KarenSandler.png
Show inline comments
 
file renamed from www/static/img/2020_WineBottle_CC.BY.SA_KarenSandler.png to conservancy/static/img/2020_WineBottle_CC.BY.SA_KarenSandler.png
Show images
conservancy/static/img/2021-02-07_FOSDEM-Legal-Policy-DevRoom_organizers-panel.png
Show inline comments
 
file renamed from www/static/img/2021-02-07_FOSDEM-Legal-Policy-DevRoom_organizers-panel.png to conservancy/static/img/2021-02-07_FOSDEM-Legal-Policy-DevRoom_organizers-panel.png
Show images
conservancy/static/img/Backdrop-Logo-Vertical.png
Show inline comments
 
file renamed from www/static/img/Backdrop-Logo-Vertical.png to conservancy/static/img/Backdrop-Logo-Vertical.png
Show images
conservancy/static/img/BeerMatsfromLamby.jpeg
Show inline comments
 
file renamed from www/static/img/BeerMatsfromLamby.jpeg to conservancy/static/img/BeerMatsfromLamby.jpeg
conservancy/static/img/CC.BY.SA_Outreachy_at_Tapia_2016_Lidza_Louina.jpg
Show inline comments
 
file renamed from www/static/img/CC.BY.SA_Outreachy_at_Tapia_2016_Lidza_Louina.jpg to conservancy/static/img/CC.BY.SA_Outreachy_at_Tapia_2016_Lidza_Louina.jpg
Show images
conservancy/static/img/DanielVetter_bw.jpg
Show inline comments
 
file renamed from www/static/img/DanielVetter_bw.jpg to conservancy/static/img/DanielVetter_bw.jpg
Show images
conservancy/static/img/FariUse_Rainbow Logos from Reddit.png
Show inline comments
 
file renamed from www/static/img/FariUse_Rainbow Logos from Reddit.png to conservancy/static/img/FariUse_Rainbow Logos from Reddit.png
Show images
conservancy/static/img/GiveUpGitHub.png
Show inline comments
 
file renamed from www/static/img/GiveUpGitHub.png to conservancy/static/img/GiveUpGitHub.png
Show images
conservancy/static/img/GiveUpGitHub.svg
Show inline comments
 
file renamed from www/static/img/GiveUpGitHub.svg to conservancy/static/img/GiveUpGitHub.svg
conservancy/static/img/QEMU.svg
Show inline comments
 
file renamed from www/static/img/QEMU.svg to conservancy/static/img/QEMU.svg
conservancy/static/img/Sebro-headshot.jpg
Show inline comments
 
file renamed from www/static/img/Sebro-headshot.jpg to conservancy/static/img/Sebro-headshot.jpg
Show images
conservancy/static/img/ShraddhaBarkepicture.jpg
Show inline comments
 
file renamed from www/static/img/ShraddhaBarkepicture.jpg to conservancy/static/img/ShraddhaBarkepicture.jpg
Show images
conservancy/static/img/Urvika_Gola_former_Outreachy_intern_with_former_Google_Summer_of_Code_intern_Pranav_Jain-Photo_CC-BY-NC-SA_Sage Sharp.jpg
Show inline comments
 
file renamed from www/static/img/Urvika_Gola_former_Outreachy_intern_with_former_Google_Summer_of_Code_intern_Pranav_Jain-Photo_CC-BY-NC-SA_Sage Sharp.jpg to conservancy/static/img/Urvika_Gola_former_Outreachy_intern_with_former_Google_Summer_of_Code_intern_Pranav_Jain-Photo_CC-BY-NC-SA_Sage Sharp.jpg
Show images
conservancy/static/img/Vaishali.jpg
Show inline comments
 
file renamed from www/static/img/Vaishali.jpg to conservancy/static/img/Vaishali.jpg
Show images
conservancy/static/img/banners/2018-individual.jpg
Show inline comments
 
file renamed from www/static/img/banners/2018-individual.jpg to conservancy/static/img/banners/2018-individual.jpg
Show images
conservancy/static/img/banners/2018-project.jpg
Show inline comments
 
file renamed from www/static/img/banners/2018-project.jpg to conservancy/static/img/banners/2018-project.jpg
Show images
conservancy/static/img/banners/2019-individuals-banner.png
Show inline comments
 
file renamed from www/static/img/banners/2019-individuals-banner.png to conservancy/static/img/banners/2019-individuals-banner.png
Show images
conservancy/static/img/banners/2019-member-projects-banner.png
Show inline comments
 
file renamed from www/static/img/banners/2019-member-projects-banner.png to conservancy/static/img/banners/2019-member-projects-banner.png
Show images
conservancy/static/img/banners/2019_conservancy-card-terminal-snow.gif
Show inline comments
 
file renamed from www/static/img/banners/2019_conservancy-card-terminal-snow.gif to conservancy/static/img/banners/2019_conservancy-card-terminal-snow.gif
Show images
conservancy/static/img/brett-in-2018-shirt.jpg
Show inline comments
 
file renamed from www/static/img/brett-in-2018-shirt.jpg to conservancy/static/img/brett-in-2018-shirt.jpg
Show images
conservancy/static/img/cc-by-sa_88x31.png
Show inline comments
 
file renamed from www/static/img/cc-by-sa_88x31.png to conservancy/static/img/cc-by-sa_88x31.png
Show images
conservancy/static/img/conservancy-accounting-campaign-logo.png
Show inline comments
 
file renamed from www/static/img/conservancy-accounting-campaign-logo.png to conservancy/static/img/conservancy-accounting-campaign-logo.png
Show images
conservancy/static/img/conservancy-header.svg
Show inline comments
 
file renamed from www/static/img/conservancy-header.svg to conservancy/static/img/conservancy-header.svg
conservancy/static/img/conservancy-logo.png
Show inline comments
 
file renamed from www/static/img/conservancy-logo.png to conservancy/static/img/conservancy-logo.png
Show images
conservancy/static/img/conservancy-logo.svg
Show inline comments
 
file renamed from www/static/img/conservancy-logo.svg to conservancy/static/img/conservancy-logo.svg
conservancy/static/img/conservancy-logo_package.zip
Show inline comments
 
file renamed from www/static/img/conservancy-logo_package.zip to conservancy/static/img/conservancy-logo_package.zip
conservancy/static/img/conservancy-staff-photo.jpg
Show inline comments
 
file renamed from www/static/img/conservancy-staff-photo.jpg to conservancy/static/img/conservancy-staff-photo.jpg
Show images
conservancy/static/img/conservancy-supporter-header.png
Show inline comments
 
file renamed from www/static/img/conservancy-supporter-header.png to conservancy/static/img/conservancy-supporter-header.png
Show images
conservancy/static/img/conservancy-supporter-heart-3x.png
Show inline comments
 
file renamed from www/static/img/conservancy-supporter-heart-3x.png to conservancy/static/img/conservancy-supporter-heart-3x.png
Show images
conservancy/static/img/conservancy-supporter-heart-supporter.svg
Show inline comments
 
file renamed from www/static/img/conservancy-supporter-heart-supporter.svg to conservancy/static/img/conservancy-supporter-heart-supporter.svg
conservancy/static/img/conservancy-supporter-heart.png
Show inline comments
 
file renamed from www/static/img/conservancy-supporter-heart.png to conservancy/static/img/conservancy-supporter-heart.png
Show images
conservancy/static/img/conservancy-supporter-heart.svg
Show inline comments
 
file renamed from www/static/img/conservancy-supporter-heart.svg to conservancy/static/img/conservancy-supporter-heart.svg
conservancy/static/img/conservancy-t-shirt.jpg
Show inline comments
 
file renamed from www/static/img/conservancy-t-shirt.jpg to conservancy/static/img/conservancy-t-shirt.jpg
Show images
conservancy/static/img/conservancy_64x64.png
Show inline comments
 
file renamed from www/static/img/conservancy_64x64.png to conservancy/static/img/conservancy_64x64.png
Show images
conservancy/static/img/feed-icon-14x14.png
Show inline comments
 
file renamed from www/static/img/feed-icon-14x14.png to conservancy/static/img/feed-icon-14x14.png
Show images
conservancy/static/img/font_awesome.svg
Show inline comments
 
file renamed from www/static/img/font_awesome.svg to conservancy/static/img/font_awesome.svg
conservancy/static/img/gpl-heart.png
Show inline comments
 
file renamed from www/static/img/gpl-heart.png to conservancy/static/img/gpl-heart.png
Show images
conservancy/static/img/headerbg.png
Show inline comments
 
file renamed from www/static/img/headerbg.png to conservancy/static/img/headerbg.png
Show images
conservancy/static/img/jondale.jpg
Show inline comments
 
file renamed from www/static/img/jondale.jpg to conservancy/static/img/jondale.jpg
Show images
conservancy/static/img/laptop-stickers-bro-mug.jpg
Show inline comments
 
file renamed from www/static/img/laptop-stickers-bro-mug.jpg to conservancy/static/img/laptop-stickers-bro-mug.jpg
Show images
conservancy/static/img/lawall.jpg
Show inline comments
 
file renamed from www/static/img/lawall.jpg to conservancy/static/img/lawall.jpg
Show images
conservancy/static/img/member-project-logos.png
Show inline comments
 
file renamed from www/static/img/member-project-logos.png to conservancy/static/img/member-project-logos.png
Show images
conservancy/static/img/naomiwutweet.png
Show inline comments
 
file renamed from www/static/img/naomiwutweet.png to conservancy/static/img/naomiwutweet.png
Show images
conservancy/static/img/people/Christoph-Hellwig_2015.jpg
Show inline comments
 
file renamed from www/static/img/people/Christoph-Hellwig_2015.jpg to conservancy/static/img/people/Christoph-Hellwig_2015.jpg
Show images
conservancy/static/img/people/bdale-headshot-smaller.jpg
Show inline comments
 
file renamed from www/static/img/people/bdale-headshot-smaller.jpg to conservancy/static/img/people/bdale-headshot-smaller.jpg
Show images
conservancy/static/img/people/bdale-headshot.jpg
Show inline comments
 
file renamed from www/static/img/people/bdale-headshot.jpg to conservancy/static/img/people/bdale-headshot.jpg
Show images
conservancy/static/img/pono.jpg
Show inline comments
 
file renamed from www/static/img/pono.jpg to conservancy/static/img/pono.jpg
Show images
conservancy/static/img/projects/2018-10_Reproducible-Builds.svg
Show inline comments
 
file renamed from www/static/img/projects/2018-10_Reproducible-Builds.svg to conservancy/static/img/projects/2018-10_Reproducible-Builds.svg
conservancy/static/img/projects/CWL-Logo-nofonts.svg
Show inline comments
 
file renamed from www/static/img/projects/CWL-Logo-nofonts.svg to conservancy/static/img/projects/CWL-Logo-nofonts.svg
conservancy/static/img/projects/argouml.jpg
Show inline comments
 
file renamed from www/static/img/projects/argouml.jpg to conservancy/static/img/projects/argouml.jpg
Show images
conservancy/static/img/projects/bongo.png
Show inline comments
 
file renamed from www/static/img/projects/bongo.png to conservancy/static/img/projects/bongo.png
Show images
conservancy/static/img/projects/boost.png
Show inline comments
 
file renamed from www/static/img/projects/boost.png to conservancy/static/img/projects/boost.png
Show images
conservancy/static/img/projects/bro.png
Show inline comments
 
file renamed from www/static/img/projects/bro.png to conservancy/static/img/projects/bro.png
Show images
conservancy/static/img/projects/buildbot.png
Show inline comments
 
file renamed from www/static/img/projects/buildbot.png to conservancy/static/img/projects/buildbot.png
Show images
conservancy/static/img/projects/busybox.png
Show inline comments
 
file renamed from www/static/img/projects/busybox.png to conservancy/static/img/projects/busybox.png
Show images
conservancy/static/img/projects/clojars.png
Show inline comments
 
file renamed from www/static/img/projects/clojars.png to conservancy/static/img/projects/clojars.png
Show images
conservancy/static/img/projects/coreboot.svg
Show inline comments
 
file renamed from www/static/img/projects/coreboot.svg to conservancy/static/img/projects/coreboot.svg
conservancy/static/img/projects/darcs.svg
Show inline comments
 
file renamed from www/static/img/projects/darcs.svg to conservancy/static/img/projects/darcs.svg
conservancy/static/img/projects/etherpad.svg
Show inline comments
 
file renamed from www/static/img/projects/etherpad.svg to conservancy/static/img/projects/etherpad.svg
conservancy/static/img/projects/evergreen.svg
Show inline comments
 
file renamed from www/static/img/projects/evergreen.svg to conservancy/static/img/projects/evergreen.svg
conservancy/static/img/projects/freedv.png
Show inline comments
 
file renamed from www/static/img/projects/freedv.png to conservancy/static/img/projects/freedv.png
Show images
conservancy/static/img/projects/git.png
Show inline comments
 
file renamed from www/static/img/projects/git.png to conservancy/static/img/projects/git.png
Show images
conservancy/static/img/projects/godot/godot-logo.svg
Show inline comments
 
file renamed from www/static/img/projects/godot/godot-logo.svg to conservancy/static/img/projects/godot/godot-logo.svg
conservancy/static/img/projects/harvey.svg
Show inline comments
 
file renamed from www/static/img/projects/harvey.svg to conservancy/static/img/projects/harvey.svg
conservancy/static/img/projects/homebrew.svg
Show inline comments
 
file renamed from www/static/img/projects/homebrew.svg to conservancy/static/img/projects/homebrew.svg
conservancy/static/img/projects/inkscape.svg
Show inline comments
 
file renamed from www/static/img/projects/inkscape.svg to conservancy/static/img/projects/inkscape.svg
conservancy/static/img/projects/k3d.png
Show inline comments
 
file renamed from www/static/img/projects/k3d.png to conservancy/static/img/projects/k3d.png
Show images
conservancy/static/img/projects/kallithea.svg
Show inline comments
 
file renamed from www/static/img/projects/kallithea.svg to conservancy/static/img/projects/kallithea.svg
conservancy/static/img/projects/librehealth.png
Show inline comments
 
file renamed from www/static/img/projects/librehealth.png to conservancy/static/img/projects/librehealth.png
Show images
conservancy/static/img/projects/luxrender.png
Show inline comments
 
file renamed from www/static/img/projects/luxrender.png to conservancy/static/img/projects/luxrender.png
Show images
conservancy/static/img/projects/mercurial.svg
Show inline comments
 
file renamed from www/static/img/projects/mercurial.svg to conservancy/static/img/projects/mercurial.svg
conservancy/static/img/projects/metalink.svg
Show inline comments
 
file renamed from www/static/img/projects/metalink.svg to conservancy/static/img/projects/metalink.svg
conservancy/static/img/projects/microblocks.png
Show inline comments
 
file renamed from www/static/img/projects/microblocks.png to conservancy/static/img/projects/microblocks.png
Show images
conservancy/static/img/projects/north-bay-python.png
Show inline comments
 
file renamed from www/static/img/projects/north-bay-python.png to conservancy/static/img/projects/north-bay-python.png
Show images
conservancy/static/img/projects/opentripplanner.png
Show inline comments
 
file renamed from www/static/img/projects/opentripplanner.png to conservancy/static/img/projects/opentripplanner.png
Show images
conservancy/static/img/projects/openwrt-2020.svg
Show inline comments
 
file renamed from www/static/img/projects/openwrt-2020.svg to conservancy/static/img/projects/openwrt-2020.svg
conservancy/static/img/projects/openwrt.png
Show inline comments
 
file renamed from www/static/img/projects/openwrt.png to conservancy/static/img/projects/openwrt.png
Show images
conservancy/static/img/projects/outreachy.png
Show inline comments
 
file renamed from www/static/img/projects/outreachy.png to conservancy/static/img/projects/outreachy.png
Show images
conservancy/static/img/projects/outreachy/2016-05_team.jpg
Show inline comments
 
file renamed from www/static/img/projects/outreachy/2016-05_team.jpg to conservancy/static/img/projects/outreachy/2016-05_team.jpg
Show images
conservancy/static/img/projects/phpmyadmin.png
Show inline comments
 
file renamed from www/static/img/projects/phpmyadmin.png to conservancy/static/img/projects/phpmyadmin.png
Show images
conservancy/static/img/projects/pypy.svg
Show inline comments
 
file renamed from www/static/img/projects/pypy.svg to conservancy/static/img/projects/pypy.svg
conservancy/static/img/projects/qemu.svg
Show inline comments
 
file renamed from www/static/img/projects/qemu.svg to conservancy/static/img/projects/qemu.svg
conservancy/static/img/projects/racket.svg
Show inline comments
 
file renamed from www/static/img/projects/racket.svg to conservancy/static/img/projects/racket.svg
conservancy/static/img/projects/samba.png
Show inline comments
 
file renamed from www/static/img/projects/samba.png to conservancy/static/img/projects/samba.png
Show images
conservancy/static/img/projects/selenium.png
Show inline comments
 
file renamed from www/static/img/projects/selenium.png to conservancy/static/img/projects/selenium.png
Show images
conservancy/static/img/projects/sourceware.svg
Show inline comments
 
file renamed from www/static/img/projects/sourceware.svg to conservancy/static/img/projects/sourceware.svg
conservancy/static/img/projects/spec-ops.png
Show inline comments
 
file renamed from www/static/img/projects/spec-ops.png to conservancy/static/img/projects/spec-ops.png
Show images
conservancy/static/img/projects/squeak.svg
Show inline comments
 
file renamed from www/static/img/projects/squeak.svg to conservancy/static/img/projects/squeak.svg
conservancy/static/img/projects/sugar-labs.svg
Show inline comments
 
file renamed from www/static/img/projects/sugar-labs.svg to conservancy/static/img/projects/sugar-labs.svg
conservancy/static/img/projects/sugar/2015_Turtle-Art-Day.jpg
Show inline comments
 
file renamed from www/static/img/projects/sugar/2015_Turtle-Art-Day.jpg to conservancy/static/img/projects/sugar/2015_Turtle-Art-Day.jpg
Show images
conservancy/static/img/projects/surveyos.png
Show inline comments
 
file renamed from www/static/img/projects/surveyos.png to conservancy/static/img/projects/surveyos.png
Show images
conservancy/static/img/projects/swig.jpg
Show inline comments
 
file renamed from www/static/img/projects/swig.jpg to conservancy/static/img/projects/swig.jpg
Show images
conservancy/static/img/projects/teaching-open-source.png
Show inline comments
 
file renamed from www/static/img/projects/teaching-open-source.png to conservancy/static/img/projects/teaching-open-source.png
Show images
conservancy/static/img/projects/twisted.svg
Show inline comments
 
file renamed from www/static/img/projects/twisted.svg to conservancy/static/img/projects/twisted.svg
conservancy/static/img/projects/wine.png
Show inline comments
 
file renamed from www/static/img/projects/wine.png to conservancy/static/img/projects/wine.png
Show images
conservancy/static/img/projects/xapian.png
Show inline comments
 
file renamed from www/static/img/projects/xapian.png to conservancy/static/img/projects/xapian.png
Show images
conservancy/static/img/scaled-LLW-2015-Conservancy-Supporters-by-Carlo-Piana-CC-0.jpg
Show inline comments
 
file renamed from www/static/img/scaled-LLW-2015-Conservancy-Supporters-by-Carlo-Piana-CC-0.jpg to conservancy/static/img/scaled-LLW-2015-Conservancy-Supporters-by-Carlo-Piana-CC-0.jpg
Show images
conservancy/static/img/sfc_holiday_card_2021.jpg
Show inline comments
 
file renamed from www/static/img/sfc_holiday_card_2021.jpg to conservancy/static/img/sfc_holiday_card_2021.jpg
Show images
conservancy/static/img/sfc_holiday_card_video_done_smaller.mp4
Show inline comments
 
file renamed from www/static/img/sfc_holiday_card_video_done_smaller.mp4 to conservancy/static/img/sfc_holiday_card_video_done_smaller.mp4
conservancy/static/img/sponsors/ardc.svg
Show inline comments
 
file renamed from www/static/img/sponsors/ardc.svg to conservancy/static/img/sponsors/ardc.svg
conservancy/static/img/sponsors/arm.png
Show inline comments
 
file renamed from www/static/img/sponsors/arm.png to conservancy/static/img/sponsors/arm.png
Show images
conservancy/static/img/sponsors/codeweavers.png
Show inline comments
 
file renamed from www/static/img/sponsors/codeweavers.png to conservancy/static/img/sponsors/codeweavers.png
Show images
conservancy/static/img/sponsors/fossa.png
Show inline comments
 
file renamed from www/static/img/sponsors/fossa.png to conservancy/static/img/sponsors/fossa.png
Show images
conservancy/static/img/sponsors/google.png
Show inline comments
 
file renamed from www/static/img/sponsors/google.png to conservancy/static/img/sponsors/google.png
Show images
conservancy/static/img/sponsors/ifixit.png
Show inline comments
 
file renamed from www/static/img/sponsors/ifixit.png to conservancy/static/img/sponsors/ifixit.png
Show images
conservancy/static/img/sponsors/indeed.png
Show inline comments
 
file renamed from www/static/img/sponsors/indeed.png to conservancy/static/img/sponsors/indeed.png
Show images
conservancy/static/img/sponsors/intel.png
Show inline comments
 
file renamed from www/static/img/sponsors/intel.png to conservancy/static/img/sponsors/intel.png
Show images
conservancy/static/img/sponsors/jmp.svg
Show inline comments
 
file renamed from www/static/img/sponsors/jmp.svg to conservancy/static/img/sponsors/jmp.svg
conservancy/static/img/sponsors/lwn.png
Show inline comments
 
file renamed from www/static/img/sponsors/lwn.png to conservancy/static/img/sponsors/lwn.png
Show images
conservancy/static/img/sponsors/mozilla.png
Show inline comments
 
file renamed from www/static/img/sponsors/mozilla.png to conservancy/static/img/sponsors/mozilla.png
Show images
conservancy/static/img/sponsors/sakai.png
Show inline comments
 
file renamed from www/static/img/sponsors/sakai.png to conservancy/static/img/sponsors/sakai.png
Show images
conservancy/static/img/sponsors/sentry.png
Show inline comments
 
file renamed from www/static/img/sponsors/sentry.png to conservancy/static/img/sponsors/sentry.png
Show images
conservancy/static/img/supporter-badge.png
Show inline comments
 
file renamed from www/static/img/supporter-badge.png to conservancy/static/img/supporter-badge.png
Show images
conservancy/static/img/supporter-card-1.svg
Show inline comments
 
file renamed from www/static/img/supporter-card-1.svg to conservancy/static/img/supporter-card-1.svg
conservancy/static/img/supporter-card-2.svg
Show inline comments
 
file renamed from www/static/img/supporter-card-2.svg to conservancy/static/img/supporter-card-2.svg
conservancy/static/img/supporter-night-button.png
Show inline comments
 
file renamed from www/static/img/supporter-night-button.png to conservancy/static/img/supporter-night-button.png
Show images
conservancy/static/img/supporter-payment-button-annual.png
Show inline comments
 
file renamed from www/static/img/supporter-payment-button-annual.png to conservancy/static/img/supporter-payment-button-annual.png
Show images
conservancy/static/img/supporter-payment-button-monthly.png
Show inline comments
 
file renamed from www/static/img/supporter-payment-button-monthly.png to conservancy/static/img/supporter-payment-button-monthly.png
Show images
conservancy/static/img/supporter-payment-button-renewal.png
Show inline comments
 
file renamed from www/static/img/supporter-payment-button-renewal.png to conservancy/static/img/supporter-payment-button-renewal.png
Show images
conservancy/static/img/sustainer.svg
Show inline comments
 
file renamed from www/static/img/sustainer.svg to conservancy/static/img/sustainer.svg
conservancy/static/img/tshirt-2022.png
Show inline comments
 
file renamed from www/static/img/tshirt-2022.png to conservancy/static/img/tshirt-2022.png
Show images
conservancy/static/js/conservancy.js
Show inline comments
 
file renamed from www/static/js/conservancy.js to conservancy/static/js/conservancy.js
conservancy/static/js/jquery-1.7.2.js
Show inline comments
 
file renamed from www/static/js/jquery-1.7.2.js to conservancy/static/js/jquery-1.7.2.js
conservancy/static/js/supporter-page.js
Show inline comments
 
file renamed from www/static/js/supporter-page.js to conservancy/static/js/supporter-page.js
conservancy/static/learn/index.html
Show inline comments
 
file renamed from www/static/learn/index.html to conservancy/static/learn/index.html
conservancy/static/npoacct/index.html
Show inline comments
 
file renamed from www/static/npoacct/index.html to conservancy/static/npoacct/index.html
conservancy/static/press/index.html
Show inline comments
 
file renamed from www/static/press/index.html to conservancy/static/press/index.html
conservancy/static/press/inthenews.html
Show inline comments
 
file renamed from www/static/press/inthenews.html to conservancy/static/press/inthenews.html
conservancy/static/press/kit.html
Show inline comments
 
file renamed from www/static/press/kit.html to conservancy/static/press/kit.html
conservancy/static/press/qanda.html
Show inline comments
 
file renamed from www/static/press/qanda.html to conservancy/static/press/qanda.html
conservancy/static/press/vizio-coverage.html
Show inline comments
 
file renamed from www/static/press/vizio-coverage.html to conservancy/static/press/vizio-coverage.html
conservancy/static/privacy-policy/index.html
Show inline comments
 
file renamed from www/static/privacy-policy/index.html to conservancy/static/privacy-policy/index.html
conservancy/static/projects/apply/ConservancyFSATemplate.pdf
Show inline comments
 
file renamed from www/static/projects/apply/ConservancyFSATemplate.pdf to conservancy/static/projects/apply/ConservancyFSATemplate.pdf
conservancy/static/projects/apply/conservancy-fsa-template.odt
Show inline comments
 
file renamed from www/static/projects/apply/conservancy-fsa-template.odt to conservancy/static/projects/apply/conservancy-fsa-template.odt
conservancy/static/projects/apply/conservancy-fsa-template.tex
Show inline comments
 
file renamed from www/static/projects/apply/conservancy-fsa-template.tex to conservancy/static/projects/apply/conservancy-fsa-template.tex
conservancy/static/projects/apply/index.html
Show inline comments
 
file renamed from www/static/projects/apply/index.html to conservancy/static/projects/apply/index.html
conservancy/static/projects/current/index.html
Show inline comments
 
file renamed from www/static/projects/current/index.html to conservancy/static/projects/current/index.html
conservancy/static/projects/index.html
Show inline comments
 
file renamed from www/static/projects/index.html to conservancy/static/projects/index.html
conservancy/static/projects/policies/conflict-of-interest-policy.9ed5723d4fa0cd23ff52a8945bd8b82d0b80b590.html
Show inline comments
 
file renamed from www/static/projects/policies/conflict-of-interest-policy.9ed5723d4fa0cd23ff52a8945bd8b82d0b80b590.html to conservancy/static/projects/policies/conflict-of-interest-policy.9ed5723d4fa0cd23ff52a8945bd8b82d0b80b590.html
conservancy/static/projects/policies/conflict-of-interest-policy.d477e1b02e2093594db118aaa956da8c93129d58.html
Show inline comments
 
file renamed from www/static/projects/policies/conflict-of-interest-policy.d477e1b02e2093594db118aaa956da8c93129d58.html to conservancy/static/projects/policies/conflict-of-interest-policy.d477e1b02e2093594db118aaa956da8c93129d58.html
conservancy/static/projects/policies/conflict-of-interest-policy.html
Show inline comments
 
file renamed from www/static/projects/policies/conflict-of-interest-policy.html to conservancy/static/projects/policies/conflict-of-interest-policy.html
conservancy/static/projects/policies/conservancy-travel-policy.11ae065865d3a0b78bb5f2d894c5f955e49e4f0f.html
Show inline comments
 
file renamed from www/static/projects/policies/conservancy-travel-policy.11ae065865d3a0b78bb5f2d894c5f955e49e4f0f.html to conservancy/static/projects/policies/conservancy-travel-policy.11ae065865d3a0b78bb5f2d894c5f955e49e4f0f.html
conservancy/static/projects/policies/conservancy-travel-policy.3b1bc93469c1bb9ceb479f32c29fd7a8ee3521e3.html
Show inline comments
 
file renamed from www/static/projects/policies/conservancy-travel-policy.3b1bc93469c1bb9ceb479f32c29fd7a8ee3521e3.html to conservancy/static/projects/policies/conservancy-travel-policy.3b1bc93469c1bb9ceb479f32c29fd7a8ee3521e3.html
conservancy/static/projects/policies/conservancy-travel-policy.44cea2c1e51c72e115dcceeede92e755a1d41da6.html
Show inline comments
 
file renamed from www/static/projects/policies/conservancy-travel-policy.44cea2c1e51c72e115dcceeede92e755a1d41da6.html to conservancy/static/projects/policies/conservancy-travel-policy.44cea2c1e51c72e115dcceeede92e755a1d41da6.html
conservancy/static/projects/policies/conservancy-travel-policy.4b21de38c2eab014dbfb776460c7600716bd6653.html
Show inline comments
 
file renamed from www/static/projects/policies/conservancy-travel-policy.4b21de38c2eab014dbfb776460c7600716bd6653.html to conservancy/static/projects/policies/conservancy-travel-policy.4b21de38c2eab014dbfb776460c7600716bd6653.html
conservancy/static/projects/policies/conservancy-travel-policy.676ecf976cff8bf611cc045e6f351ce36f1009bb.html
Show inline comments
 
file renamed from www/static/projects/policies/conservancy-travel-policy.676ecf976cff8bf611cc045e6f351ce36f1009bb.html to conservancy/static/projects/policies/conservancy-travel-policy.676ecf976cff8bf611cc045e6f351ce36f1009bb.html
conservancy/static/projects/policies/conservancy-travel-policy.783dcdd92fc61f3f150e1c65782c0fe527c8ff52.html
Show inline comments
 
file renamed from www/static/projects/policies/conservancy-travel-policy.783dcdd92fc61f3f150e1c65782c0fe527c8ff52.html to conservancy/static/projects/policies/conservancy-travel-policy.783dcdd92fc61f3f150e1c65782c0fe527c8ff52.html
conservancy/static/projects/policies/conservancy-travel-policy.96a0a68c8e10ab4ea1f68faaf6573c141bbe7614.html
Show inline comments
 
file renamed from www/static/projects/policies/conservancy-travel-policy.96a0a68c8e10ab4ea1f68faaf6573c141bbe7614.html to conservancy/static/projects/policies/conservancy-travel-policy.96a0a68c8e10ab4ea1f68faaf6573c141bbe7614.html
conservancy/static/projects/policies/conservancy-travel-policy.9ef7fadc65c41438dd5dfeec3544bf80b53e4cea.html
Show inline comments
 
file renamed from www/static/projects/policies/conservancy-travel-policy.9ef7fadc65c41438dd5dfeec3544bf80b53e4cea.html to conservancy/static/projects/policies/conservancy-travel-policy.9ef7fadc65c41438dd5dfeec3544bf80b53e4cea.html
conservancy/static/projects/policies/conservancy-travel-policy.bfc2754decec9bf4b88c10accd4e44b33e4664e6.html
Show inline comments
 
file renamed from www/static/projects/policies/conservancy-travel-policy.bfc2754decec9bf4b88c10accd4e44b33e4664e6.html to conservancy/static/projects/policies/conservancy-travel-policy.bfc2754decec9bf4b88c10accd4e44b33e4664e6.html
conservancy/static/projects/policies/conservancy-travel-policy.d3640cc7e0181236b3b5a988328ab2ae82cd7c03.html
Show inline comments
 
file renamed from www/static/projects/policies/conservancy-travel-policy.d3640cc7e0181236b3b5a988328ab2ae82cd7c03.html to conservancy/static/projects/policies/conservancy-travel-policy.d3640cc7e0181236b3b5a988328ab2ae82cd7c03.html
conservancy/static/projects/policies/conservancy-travel-policy.efb14f1e18273e4f164e3b3a689a086fd511ba26.html
Show inline comments
 
file renamed from www/static/projects/policies/conservancy-travel-policy.efb14f1e18273e4f164e3b3a689a086fd511ba26.html to conservancy/static/projects/policies/conservancy-travel-policy.efb14f1e18273e4f164e3b3a689a086fd511ba26.html
conservancy/static/projects/policies/conservancy-travel-policy.html
Show inline comments
 
file renamed from www/static/projects/policies/conservancy-travel-policy.html to conservancy/static/projects/policies/conservancy-travel-policy.html
conservancy/static/projects/policies/index.html
Show inline comments
 
file renamed from www/static/projects/policies/index.html to conservancy/static/projects/policies/index.html
conservancy/static/projects/policies/publish-policy.py
Show inline comments
 
file renamed from www/static/projects/policies/publish-policy.py to conservancy/static/projects/policies/publish-policy.py
conservancy/static/projects/services/index.html
Show inline comments
 
file renamed from www/static/projects/services/index.html to conservancy/static/projects/services/index.html
conservancy/static/robots.txt
Show inline comments
 
file renamed from www/static/robots.txt to conservancy/static/robots.txt
conservancy/static/sustainer/event.html
Show inline comments
 
file renamed from www/static/sustainer/event.html to conservancy/static/sustainer/event.html
conservancy/static/sustainer/original-supporter-appeal.html
Show inline comments
 
file renamed from www/static/sustainer/original-supporter-appeal.html to conservancy/static/sustainer/original-supporter-appeal.html
conservancy/static/sustainer/thank-you-event.html
Show inline comments
 
file renamed from www/static/sustainer/thank-you-event.html to conservancy/static/sustainer/thank-you-event.html
conservancy/static/sustainer/thank-you.html
Show inline comments
 
file renamed from www/static/sustainer/thank-you.html to conservancy/static/sustainer/thank-you.html
conservancy/static/views.py
Show inline comments
 
file renamed from www/static/views.py to conservancy/static/views.py
conservancy/summit_registration/__init__.py
Show inline comments
 
file renamed from www/summit_registration/__init__.py to conservancy/summit_registration/__init__.py
conservancy/summit_registration/admin.py
Show inline comments
 
file renamed from www/summit_registration/admin.py to conservancy/summit_registration/admin.py
conservancy/summit_registration/models.py
Show inline comments
 
file renamed from www/summit_registration/models.py to conservancy/summit_registration/models.py
conservancy/summit_registration/urls.py
Show inline comments
 
file renamed from www/summit_registration/urls.py to conservancy/summit_registration/urls.py
conservancy/summit_registration/views.py
Show inline comments
 
file renamed from www/summit_registration/views.py to conservancy/summit_registration/views.py
conservancy/supporter/__init__.py
Show inline comments
 
file renamed from www/supporter/__init__.py to conservancy/supporter/__init__.py
conservancy/supporter/urls.py
Show inline comments
 
file renamed from www/supporter/urls.py to conservancy/supporter/urls.py
conservancy/supporter/views.py
Show inline comments
 
file renamed from www/supporter/views.py to conservancy/supporter/views.py
conservancy/supporters/__init__.py
Show inline comments
 
file renamed from www/supporters/__init__.py to conservancy/supporters/__init__.py
conservancy/supporters/admin.py
Show inline comments
 
file renamed from www/supporters/admin.py to conservancy/supporters/admin.py
conservancy/supporters/models.py
Show inline comments
 
file renamed from www/supporters/models.py to conservancy/supporters/models.py
conservancy/templates/500.html
Show inline comments
 
file renamed from www/templates/500.html to conservancy/templates/500.html
conservancy/templates/assignment/assignment_form.html
Show inline comments
 
file renamed from www/templates/assignment/assignment_form.html to conservancy/templates/assignment/assignment_form.html
conservancy/templates/assignment/base_assignment.html
Show inline comments
 
file renamed from www/templates/assignment/base_assignment.html to conservancy/templates/assignment/base_assignment.html
conservancy/templates/assignment/thanks.html
Show inline comments
 
file renamed from www/templates/assignment/thanks.html to conservancy/templates/assignment/thanks.html
conservancy/templates/base_about.html
Show inline comments
 
file renamed from www/templates/base_about.html to conservancy/templates/base_about.html
conservancy/templates/base_blog.html
Show inline comments
 
file renamed from www/templates/base_blog.html to conservancy/templates/base_blog.html
conservancy/templates/base_compliance.html
Show inline comments
 
file renamed from www/templates/base_compliance.html to conservancy/templates/base_compliance.html
conservancy/templates/base_conservancy.html
Show inline comments
 
file renamed from www/templates/base_conservancy.html to conservancy/templates/base_conservancy.html
conservancy/templates/base_error.html
Show inline comments
 
file renamed from www/templates/base_error.html to conservancy/templates/base_error.html
conservancy/templates/base_learn.html
Show inline comments
 
file renamed from www/templates/base_learn.html to conservancy/templates/base_learn.html
conservancy/templates/base_news.html
Show inline comments
 
file renamed from www/templates/base_news.html to conservancy/templates/base_news.html
conservancy/templates/base_press.html
Show inline comments
 
file renamed from www/templates/base_press.html to conservancy/templates/base_press.html
conservancy/templates/base_projects.html
Show inline comments
 
file renamed from www/templates/base_projects.html to conservancy/templates/base_projects.html
conservancy/templates/base_standard.html
Show inline comments
 
file renamed from www/templates/base_standard.html to conservancy/templates/base_standard.html
conservancy/templates/base_vizio.html
Show inline comments
 
file renamed from www/templates/base_vizio.html to conservancy/templates/base_vizio.html
conservancy/templates/blog/entry_archive_day.html
Show inline comments
 
file renamed from www/templates/blog/entry_archive_day.html to conservancy/templates/blog/entry_archive_day.html
conservancy/templates/blog/entry_archive_month.html
Show inline comments
 
file renamed from www/templates/blog/entry_archive_month.html to conservancy/templates/blog/entry_archive_month.html
conservancy/templates/blog/entry_archive_year.html
Show inline comments
 
file renamed from www/templates/blog/entry_archive_year.html to conservancy/templates/blog/entry_archive_year.html
conservancy/templates/blog/entry_detail.html
Show inline comments
 
file renamed from www/templates/blog/entry_detail.html to conservancy/templates/blog/entry_detail.html
conservancy/templates/blog/entry_list.html
Show inline comments
 
file renamed from www/templates/blog/entry_list.html to conservancy/templates/blog/entry_list.html
conservancy/templates/blog/entry_partial.html
Show inline comments
 
file renamed from www/templates/blog/entry_partial.html to conservancy/templates/blog/entry_partial.html
conservancy/templates/blog/query.html
Show inline comments
 
file renamed from www/templates/blog/query.html to conservancy/templates/blog/query.html
conservancy/templates/ccs_upload/upload.html
Show inline comments
 
file renamed from www/templates/ccs_upload/upload.html to conservancy/templates/ccs_upload/upload.html
conservancy/templates/contractpatch/index.html
Show inline comments
 
file renamed from www/templates/contractpatch/index.html to conservancy/templates/contractpatch/index.html
conservancy/templates/feeds.html
Show inline comments
 
file renamed from www/templates/feeds.html to conservancy/templates/feeds.html
conservancy/templates/feeds/blog_description.html
Show inline comments
 
file renamed from www/templates/feeds/blog_description.html to conservancy/templates/feeds/blog_description.html
conservancy/templates/feeds/blog_title.html
Show inline comments
 
file renamed from www/templates/feeds/blog_title.html to conservancy/templates/feeds/blog_title.html
conservancy/templates/feeds/news_description.html
Show inline comments
 
file renamed from www/templates/feeds/news_description.html to conservancy/templates/feeds/news_description.html
conservancy/templates/feeds/news_title.html
Show inline comments
 
file renamed from www/templates/feeds/news_title.html to conservancy/templates/feeds/news_title.html
conservancy/templates/feeds/omnibus_description.html
Show inline comments
 
file renamed from www/templates/feeds/omnibus_description.html to conservancy/templates/feeds/omnibus_description.html
conservancy/templates/feeds/omnibus_title.html
Show inline comments
 
file renamed from www/templates/feeds/omnibus_title.html to conservancy/templates/feeds/omnibus_title.html
conservancy/templates/fossy/base.html
Show inline comments
 
file renamed from www/templates/fossy/base.html to conservancy/templates/fossy/base.html
conservancy/templates/fossy/community_track_proposal_form.html
Show inline comments
 
file renamed from www/templates/fossy/community_track_proposal_form.html to conservancy/templates/fossy/community_track_proposal_form.html
conservancy/templates/fossy/thanks.html
Show inline comments
 
file renamed from www/templates/fossy/thanks.html to conservancy/templates/fossy/thanks.html
conservancy/templates/frontpage.html
Show inline comments
 
file renamed from www/templates/frontpage.html to conservancy/templates/frontpage.html
conservancy/templates/news/pressrelease_archive_day.html
Show inline comments
 
file renamed from www/templates/news/pressrelease_archive_day.html to conservancy/templates/news/pressrelease_archive_day.html
conservancy/templates/news/pressrelease_archive_month.html
Show inline comments
 
file renamed from www/templates/news/pressrelease_archive_month.html to conservancy/templates/news/pressrelease_archive_month.html
conservancy/templates/news/pressrelease_archive_year.html
Show inline comments
 
file renamed from www/templates/news/pressrelease_archive_year.html to conservancy/templates/news/pressrelease_archive_year.html
conservancy/templates/news/pressrelease_detail.html
Show inline comments
 
file renamed from www/templates/news/pressrelease_detail.html to conservancy/templates/news/pressrelease_detail.html
conservancy/templates/news/pressrelease_list.html
Show inline comments
 
file renamed from www/templates/news/pressrelease_list.html to conservancy/templates/news/pressrelease_list.html
conservancy/templates/news/pressrelease_partial.html
Show inline comments
 
file renamed from www/templates/news/pressrelease_partial.html to conservancy/templates/news/pressrelease_partial.html
conservancy/templates/opengraph_partial.html
Show inline comments
 
file renamed from www/templates/opengraph_partial.html to conservancy/templates/opengraph_partial.html
conservancy/templates/opengraph_urllist_partial.html
Show inline comments
 
file renamed from www/templates/opengraph_urllist_partial.html to conservancy/templates/opengraph_urllist_partial.html
conservancy/templates/socials_partial.html
Show inline comments
 
file renamed from www/templates/socials_partial.html to conservancy/templates/socials_partial.html
conservancy/templates/sponsors.html
Show inline comments
 
file renamed from www/templates/sponsors.html to conservancy/templates/sponsors.html
conservancy/templates/submenus/learn_partial.html
Show inline comments
 
file renamed from www/templates/submenus/learn_partial.html to conservancy/templates/submenus/learn_partial.html
conservancy/templates/submenus/news_partial.html
Show inline comments
 
file renamed from www/templates/submenus/news_partial.html to conservancy/templates/submenus/news_partial.html
conservancy/templates/submenus/press_partial.html
Show inline comments
 
file renamed from www/templates/submenus/press_partial.html to conservancy/templates/submenus/press_partial.html
conservancy/templates/submenus/what_we_do_partial.html
Show inline comments
 
file renamed from www/templates/submenus/what_we_do_partial.html to conservancy/templates/submenus/what_we_do_partial.html
conservancy/templates/submenus/who_we_are_partial.html
Show inline comments
 
file renamed from www/templates/submenus/who_we_are_partial.html to conservancy/templates/submenus/who_we_are_partial.html
conservancy/templates/supporter/banners.html
Show inline comments
 
file renamed from www/templates/supporter/banners.html to conservancy/templates/supporter/banners.html
conservancy/templates/supporter/form_partial.html
Show inline comments
 
file renamed from www/templates/supporter/form_partial.html to conservancy/templates/supporter/form_partial.html
conservancy/templates/supporter/index.html
Show inline comments
 
file renamed from www/templates/supporter/index.html to conservancy/templates/supporter/index.html
conservancy/urls.py
Show inline comments
 
file renamed from www/urls.py to conservancy/urls.py
...
 
@@ -42,8 +42,8 @@ urlpatterns = [
 
    url(r'^feeds/news/?$', feeds.PressReleaseFeed()),
 
    url(r'^feeds/omnibus/?$', feeds.OmnibusFeed()),
 
    url(r'^feeds/?$', feeds.view),
 
    url(r'^news/', include('www.news.urls')),
 
    url(r'^blog/', include('www.blog.urls')),
 
    url(r'^news/', include('conservancy.news.urls')),
 
    url(r'^blog/', include('conservancy.blog.urls')),
 
    # formerly static templated things... (dirs with templates)
 
    url(r'^error/(40[134]|500)(?:/index\.html|/|)$', static_views.handler),
 
    url(r'^error', static_views.index),
...
 
@@ -56,16 +56,16 @@ urlpatterns = [
 
    url(r'^projects', static_views.index),
 
    url(r'^GiveUpGitHub', static_views.index),
 
    url(r'^npoacct', static_views.index, {'fundraiser_sought': 'npoacct'}),
 
    url(r'^contractpatch', include('www.contractpatch.urls')),
 
    url(r'^contractpatch', include('conservancy.contractpatch.urls')),
 
    url(r'^overview', static_views.index),
 
    url(r'^privacy-policy', static_views.index),
 
    url(r'^sustainer/', include('www.supporter.urls')),
 
    url(r'^sustainer/', include('conservancy.supporter.urls')),
 
    url(r'^coming-soon.html', static_views.index),
 
    url(r'^fundraiser_data', fundgoal_views.view),
 
    url(r'^ccs-upload/', include('www.ccs_upload.urls', namespace='ccs_upload')),
 
    url(r'^assignment/', include('www.assignment.urls')),
 
    url(r'^ccs-upload/', include('conservancy.ccs_upload.urls', namespace='ccs_upload')),
 
    url(r'^assignment/', include('conservancy.assignment.urls')),
 
    url(r'^fossy/$', static_views.index),
 
    url(r'^fossy/', include('www.fossy.urls')),
 
    url(r'^cast/', include('www.podjango.urls')),
 
    path('usethesource/', include('www.usethesource.urls')),
 
    url(r'^fossy/', include('conservancy.fossy.urls')),
 
    url(r'^cast/', include('conservancy.podjango.urls')),
 
    path('usethesource/', include('conservancy.usethesource.urls')),
 
]
conservancy/usethesource/__init__.py
Show inline comments
 
file renamed from www/usethesource/__init__.py to conservancy/usethesource/__init__.py
conservancy/usethesource/admin.py
Show inline comments
 
file renamed from www/usethesource/admin.py to conservancy/usethesource/admin.py
conservancy/usethesource/apps.py
Show inline comments
 
file renamed from www/usethesource/apps.py to conservancy/usethesource/apps.py
...
 
@@ -3,4 +3,4 @@ from django.apps import AppConfig
 

	
 
class UseTheSourceConfig(AppConfig):
 
    default_auto_field = 'django.db.models.AutoField'
 
    name = 'usethesource'
 
    name = 'conservancy.usethesource'
conservancy/usethesource/migrations/0001_initial.py
Show inline comments
 
file renamed from www/usethesource/migrations/0001_initial.py to conservancy/usethesource/migrations/0001_initial.py
conservancy/usethesource/migrations/__init__.py
Show inline comments
 
file renamed from www/usethesource/migrations/__init__.py to conservancy/usethesource/migrations/__init__.py
conservancy/usethesource/models.py
Show inline comments
 
file renamed from www/usethesource/models.py to conservancy/usethesource/models.py
conservancy/usethesource/templates/usethesource/add_comment_button_partial.html
Show inline comments
 
file renamed from www/usethesource/templates/usethesource/add_comment_button_partial.html to conservancy/usethesource/templates/usethesource/add_comment_button_partial.html
conservancy/usethesource/templates/usethesource/base.html
Show inline comments
 
file renamed from www/usethesource/templates/usethesource/base.html to conservancy/usethesource/templates/usethesource/base.html
conservancy/usethesource/templates/usethesource/cancel_button_partial.html
Show inline comments
 
file renamed from www/usethesource/templates/usethesource/cancel_button_partial.html to conservancy/usethesource/templates/usethesource/cancel_button_partial.html
conservancy/usethesource/templates/usethesource/candidate.html
Show inline comments
 
file renamed from www/usethesource/templates/usethesource/candidate.html to conservancy/usethesource/templates/usethesource/candidate.html
conservancy/usethesource/templates/usethesource/comment_deleted.html
Show inline comments
 
file renamed from www/usethesource/templates/usethesource/comment_deleted.html to conservancy/usethesource/templates/usethesource/comment_deleted.html
conservancy/usethesource/templates/usethesource/comment_form.html
Show inline comments
 
file renamed from www/usethesource/templates/usethesource/comment_form.html to conservancy/usethesource/templates/usethesource/comment_form.html
conservancy/usethesource/templates/usethesource/comment_partial.html
Show inline comments
 
file renamed from www/usethesource/templates/usethesource/comment_partial.html to conservancy/usethesource/templates/usethesource/comment_partial.html
conservancy/usethesource/templates/usethesource/download.html
Show inline comments
 
file renamed from www/usethesource/templates/usethesource/download.html to conservancy/usethesource/templates/usethesource/download.html
conservancy/usethesource/templates/usethesource/edit_comment_form.html
Show inline comments
 
file renamed from www/usethesource/templates/usethesource/edit_comment_form.html to conservancy/usethesource/templates/usethesource/edit_comment_form.html
conservancy/usethesource/templates/usethesource/landing_page.html
Show inline comments
 
file renamed from www/usethesource/templates/usethesource/landing_page.html to conservancy/usethesource/templates/usethesource/landing_page.html
conservancy/usethesource/templates/usethesource/returned_comment.html
Show inline comments
 
file renamed from www/usethesource/templates/usethesource/returned_comment.html to conservancy/usethesource/templates/usethesource/returned_comment.html
conservancy/usethesource/templates/usethesource/save_button_partial.html
Show inline comments
 
file renamed from www/usethesource/templates/usethesource/save_button_partial.html to conservancy/usethesource/templates/usethesource/save_button_partial.html
conservancy/usethesource/urls.py
Show inline comments
 
file renamed from www/usethesource/urls.py to conservancy/usethesource/urls.py
conservancy/usethesource/views.py
Show inline comments
 
file renamed from www/usethesource/views.py to conservancy/usethesource/views.py
conservancy/worldmap/README
Show inline comments
 
file renamed from www/worldmap/README to conservancy/worldmap/README
conservancy/worldmap/__init__.py
Show inline comments
 
file renamed from www/worldmap/__init__.py to conservancy/worldmap/__init__.py
conservancy/worldmap/admin.py
Show inline comments
 
file renamed from www/worldmap/admin.py to conservancy/worldmap/admin.py
conservancy/worldmap/models.py
Show inline comments
 
file renamed from www/worldmap/models.py to conservancy/worldmap/models.py
conservancy/worldmap/templates/kml
Show inline comments
 
file renamed from www/worldmap/templates/kml to conservancy/worldmap/templates/kml
conservancy/wsgi.py
Show inline comments
 
file renamed from www/wsgi.py to conservancy/wsgi.py
manage.py
Show inline comments
...
 
@@ -7,7 +7,7 @@ import os
 
import sys
 

	
 
if __name__ == '__main__':
 
    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'www.settings')
 
    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'conservancy.settings')
 
    try:
 
        from django.core.management import execute_from_command_line
 
    except ImportError as exc:
0 comments (0 inline, 0 general)