diff --git a/conservancy/__init__.py b/conservancy/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..a1dc7528f84ed98408a52d904df97101d500ea51 --- /dev/null +++ b/conservancy/__init__.py @@ -0,0 +1,42 @@ +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 diff --git a/www/assignment/__init__.py b/conservancy/assignment/__init__.py similarity index 100% rename from www/assignment/__init__.py rename to conservancy/assignment/__init__.py diff --git a/www/assignment/apps.py b/conservancy/assignment/apps.py similarity index 66% rename from www/assignment/apps.py rename to conservancy/assignment/apps.py index ac76db17e1888fbe1e3a0698205770c9424234a8..67341d55f80678d35cf8b970d76b3c04e056a6f1 100644 --- a/www/assignment/apps.py +++ b/conservancy/assignment/apps.py @@ -2,4 +2,4 @@ from django.apps import AppConfig class AssignmentConfig(AppConfig): - name = 'www.assignment' + name = 'conservancy.assignment' diff --git a/www/assignment/forms.py b/conservancy/assignment/forms.py similarity index 100% rename from www/assignment/forms.py rename to conservancy/assignment/forms.py diff --git a/www/assignment/migrations/0001_initial.py b/conservancy/assignment/migrations/0001_initial.py similarity index 100% rename from www/assignment/migrations/0001_initial.py rename to conservancy/assignment/migrations/0001_initial.py diff --git a/www/assignment/migrations/0002_auto_20211206_2237.py b/conservancy/assignment/migrations/0002_auto_20211206_2237.py similarity index 100% rename from www/assignment/migrations/0002_auto_20211206_2237.py rename to conservancy/assignment/migrations/0002_auto_20211206_2237.py diff --git a/www/assignment/migrations/0003_auto_20211206_2249.py b/conservancy/assignment/migrations/0003_auto_20211206_2249.py similarity index 100% rename from www/assignment/migrations/0003_auto_20211206_2249.py rename to conservancy/assignment/migrations/0003_auto_20211206_2249.py diff --git a/www/assignment/migrations/0004_auto_20230127_0602.py b/conservancy/assignment/migrations/0004_auto_20230127_0602.py similarity index 100% rename from www/assignment/migrations/0004_auto_20230127_0602.py rename to conservancy/assignment/migrations/0004_auto_20230127_0602.py diff --git a/www/assignment/migrations/__init__.py b/conservancy/assignment/migrations/__init__.py similarity index 100% rename from www/assignment/migrations/__init__.py rename to conservancy/assignment/migrations/__init__.py diff --git a/www/assignment/models.py b/conservancy/assignment/models.py similarity index 100% rename from www/assignment/models.py rename to conservancy/assignment/models.py diff --git a/www/assignment/terms.py b/conservancy/assignment/terms.py similarity index 100% rename from www/assignment/terms.py rename to conservancy/assignment/terms.py diff --git a/www/assignment/urls.py b/conservancy/assignment/urls.py similarity index 100% rename from www/assignment/urls.py rename to conservancy/assignment/urls.py diff --git a/www/assignment/views.py b/conservancy/assignment/views.py similarity index 100% rename from www/assignment/views.py rename to conservancy/assignment/views.py diff --git a/www/blog/__init__.py b/conservancy/blog/__init__.py similarity index 100% rename from www/blog/__init__.py rename to conservancy/blog/__init__.py diff --git a/www/blog/admin.py b/conservancy/blog/admin.py similarity index 100% rename from www/blog/admin.py rename to conservancy/blog/admin.py diff --git a/www/blog/models.py b/conservancy/blog/models.py similarity index 100% rename from www/blog/models.py rename to conservancy/blog/models.py diff --git a/www/blog/urls.py b/conservancy/blog/urls.py similarity index 100% rename from www/blog/urls.py rename to conservancy/blog/urls.py diff --git a/www/blog/views.py b/conservancy/blog/views.py similarity index 100% rename from www/blog/views.py rename to conservancy/blog/views.py diff --git a/www/bsoup.py b/conservancy/bsoup.py similarity index 100% rename from www/bsoup.py rename to conservancy/bsoup.py diff --git a/www/ccs_upload/__init__.py b/conservancy/ccs_upload/__init__.py similarity index 100% rename from www/ccs_upload/__init__.py rename to conservancy/ccs_upload/__init__.py diff --git a/www/ccs_upload/forms.py b/conservancy/ccs_upload/forms.py similarity index 100% rename from www/ccs_upload/forms.py rename to conservancy/ccs_upload/forms.py diff --git a/www/ccs_upload/urls.py b/conservancy/ccs_upload/urls.py similarity index 100% rename from www/ccs_upload/urls.py rename to conservancy/ccs_upload/urls.py diff --git a/www/ccs_upload/views.py b/conservancy/ccs_upload/views.py similarity index 100% rename from www/ccs_upload/views.py rename to conservancy/ccs_upload/views.py diff --git a/www/contacts/__init__.py b/conservancy/contacts/__init__.py similarity index 100% rename from www/contacts/__init__.py rename to conservancy/contacts/__init__.py diff --git a/www/contacts/admin.py b/conservancy/contacts/admin.py similarity index 100% rename from www/contacts/admin.py rename to conservancy/contacts/admin.py diff --git a/www/contacts/models.py b/conservancy/contacts/models.py similarity index 100% rename from www/contacts/models.py rename to conservancy/contacts/models.py diff --git a/www/contacts/urls.py b/conservancy/contacts/urls.py similarity index 100% rename from www/contacts/urls.py rename to conservancy/contacts/urls.py diff --git a/www/contacts/views.py b/conservancy/contacts/views.py similarity index 100% rename from www/contacts/views.py rename to conservancy/contacts/views.py diff --git a/www/contractpatch/__init__.py b/conservancy/contractpatch/__init__.py similarity index 100% rename from www/contractpatch/__init__.py rename to conservancy/contractpatch/__init__.py diff --git a/www/contractpatch/urls.py b/conservancy/contractpatch/urls.py similarity index 100% rename from www/contractpatch/urls.py rename to conservancy/contractpatch/urls.py diff --git a/www/contractpatch/views.py b/conservancy/contractpatch/views.py similarity index 100% rename from www/contractpatch/views.py rename to conservancy/contractpatch/views.py diff --git a/www/events/__init__.py b/conservancy/events/__init__.py similarity index 100% rename from www/events/__init__.py rename to conservancy/events/__init__.py diff --git a/www/events/admin.py b/conservancy/events/admin.py similarity index 100% rename from www/events/admin.py rename to conservancy/events/admin.py diff --git a/www/events/models.py b/conservancy/events/models.py similarity index 100% rename from www/events/models.py rename to conservancy/events/models.py diff --git a/www/events/urls.py b/conservancy/events/urls.py similarity index 100% rename from www/events/urls.py rename to conservancy/events/urls.py diff --git a/www/events/view_helpers.py b/conservancy/events/view_helpers.py similarity index 100% rename from www/events/view_helpers.py rename to conservancy/events/view_helpers.py diff --git a/www/events/views.py b/conservancy/events/views.py similarity index 100% rename from www/events/views.py rename to conservancy/events/views.py diff --git a/www/feeds.py b/conservancy/feeds.py similarity index 100% rename from www/feeds.py rename to conservancy/feeds.py diff --git a/www/fossy/__init__.py b/conservancy/fossy/__init__.py similarity index 100% rename from www/fossy/__init__.py rename to conservancy/fossy/__init__.py diff --git a/www/fossy/admin.py b/conservancy/fossy/admin.py similarity index 100% rename from www/fossy/admin.py rename to conservancy/fossy/admin.py diff --git a/www/fossy/apps.py b/conservancy/fossy/apps.py similarity index 68% rename from www/fossy/apps.py rename to conservancy/fossy/apps.py index ba2ca4ade3d96d2e1910dad16d1e5f045fb9cc8c..aef11e926fd414c0370011d48b2766f04293867f 100644 --- a/www/fossy/apps.py +++ b/conservancy/fossy/apps.py @@ -2,4 +2,4 @@ from django.apps import AppConfig class FOSSYConfig(AppConfig): - name = 'www.fossy' + name = 'conservancy.fossy' diff --git a/www/fossy/forms.py b/conservancy/fossy/forms.py similarity index 100% rename from www/fossy/forms.py rename to conservancy/fossy/forms.py diff --git a/www/fossy/migrations/0001_initial.py b/conservancy/fossy/migrations/0001_initial.py similarity index 100% rename from www/fossy/migrations/0001_initial.py rename to conservancy/fossy/migrations/0001_initial.py diff --git a/www/fossy/migrations/0002_auto_20230130_1841.py b/conservancy/fossy/migrations/0002_auto_20230130_1841.py similarity index 100% rename from www/fossy/migrations/0002_auto_20230130_1841.py rename to conservancy/fossy/migrations/0002_auto_20230130_1841.py diff --git a/www/fossy/migrations/__init__.py b/conservancy/fossy/migrations/__init__.py similarity index 100% rename from www/fossy/migrations/__init__.py rename to conservancy/fossy/migrations/__init__.py diff --git a/www/fossy/models.py b/conservancy/fossy/models.py similarity index 100% rename from www/fossy/models.py rename to conservancy/fossy/models.py diff --git a/www/fossy/urls.py b/conservancy/fossy/urls.py similarity index 100% rename from www/fossy/urls.py rename to conservancy/fossy/urls.py diff --git a/www/fossy/views.py b/conservancy/fossy/views.py similarity index 100% rename from www/fossy/views.py rename to conservancy/fossy/views.py diff --git a/www/frontpage.py b/conservancy/frontpage.py similarity index 100% rename from www/frontpage.py rename to conservancy/frontpage.py diff --git a/www/fundgoal/__init__.py b/conservancy/fundgoal/__init__.py similarity index 100% rename from www/fundgoal/__init__.py rename to conservancy/fundgoal/__init__.py diff --git a/www/fundgoal/admin.py b/conservancy/fundgoal/admin.py similarity index 100% rename from www/fundgoal/admin.py rename to conservancy/fundgoal/admin.py diff --git a/www/fundgoal/migrations/0001_initial.py b/conservancy/fundgoal/migrations/0001_initial.py similarity index 100% rename from www/fundgoal/migrations/0001_initial.py rename to conservancy/fundgoal/migrations/0001_initial.py diff --git a/www/fundgoal/migrations/0002_goalprovider.py b/conservancy/fundgoal/migrations/0002_goalprovider.py similarity index 100% rename from www/fundgoal/migrations/0002_goalprovider.py rename to conservancy/fundgoal/migrations/0002_goalprovider.py diff --git a/www/fundgoal/migrations/0003_fundraisinggoal_fundraiser_endtime.py b/conservancy/fundgoal/migrations/0003_fundraisinggoal_fundraiser_endtime.py similarity index 100% rename from www/fundgoal/migrations/0003_fundraisinggoal_fundraiser_endtime.py rename to conservancy/fundgoal/migrations/0003_fundraisinggoal_fundraiser_endtime.py diff --git a/www/fundgoal/migrations/__init__.py b/conservancy/fundgoal/migrations/__init__.py similarity index 100% rename from www/fundgoal/migrations/__init__.py rename to conservancy/fundgoal/migrations/__init__.py diff --git a/www/fundgoal/models.py b/conservancy/fundgoal/models.py similarity index 100% rename from www/fundgoal/models.py rename to conservancy/fundgoal/models.py diff --git a/www/fundgoal/templates/fundgoal/fundraiser_goal_banner_partial.html b/conservancy/fundgoal/templates/fundgoal/fundraiser_goal_banner_partial.html similarity index 100% rename from www/fundgoal/templates/fundgoal/fundraiser_goal_banner_partial.html rename to conservancy/fundgoal/templates/fundgoal/fundraiser_goal_banner_partial.html diff --git a/www/fundgoal/views.py b/conservancy/fundgoal/views.py similarity index 100% rename from www/fundgoal/views.py rename to conservancy/fundgoal/views.py diff --git a/www/local_context_processors.py b/conservancy/local_context_processors.py similarity index 100% rename from www/local_context_processors.py rename to conservancy/local_context_processors.py diff --git a/www/middleware.py b/conservancy/middleware.py similarity index 100% rename from www/middleware.py rename to conservancy/middleware.py diff --git a/www/news/__init__.py b/conservancy/news/__init__.py similarity index 100% rename from www/news/__init__.py rename to conservancy/news/__init__.py diff --git a/www/news/admin.py b/conservancy/news/admin.py similarity index 100% rename from www/news/admin.py rename to conservancy/news/admin.py diff --git a/www/news/models.py b/conservancy/news/models.py similarity index 100% rename from www/news/models.py rename to conservancy/news/models.py diff --git a/www/news/templatetags/__init__.py b/conservancy/news/templatetags/__init__.py similarity index 100% rename from www/news/templatetags/__init__.py rename to conservancy/news/templatetags/__init__.py diff --git a/www/news/templatetags/date_within.py b/conservancy/news/templatetags/date_within.py similarity index 100% rename from www/news/templatetags/date_within.py rename to conservancy/news/templatetags/date_within.py diff --git a/www/news/templatetags/fill_url.py b/conservancy/news/templatetags/fill_url.py similarity index 100% rename from www/news/templatetags/fill_url.py rename to conservancy/news/templatetags/fill_url.py diff --git a/www/news/templatetags/min.py b/conservancy/news/templatetags/min.py similarity index 100% rename from www/news/templatetags/min.py rename to conservancy/news/templatetags/min.py diff --git a/www/news/templatetags/subtract.py b/conservancy/news/templatetags/subtract.py similarity index 100% rename from www/news/templatetags/subtract.py rename to conservancy/news/templatetags/subtract.py diff --git a/www/news/urls.py b/conservancy/news/urls.py similarity index 100% rename from www/news/urls.py rename to conservancy/news/urls.py diff --git a/www/news/views.py b/conservancy/news/views.py similarity index 100% rename from www/news/views.py rename to conservancy/news/views.py diff --git a/www/podjango/__init__.py b/conservancy/podjango/__init__.py similarity index 100% rename from www/podjango/__init__.py rename to conservancy/podjango/__init__.py diff --git a/www/podjango/admin.py b/conservancy/podjango/admin.py similarity index 100% rename from www/podjango/admin.py rename to conservancy/podjango/admin.py diff --git a/www/podjango/feeds.py b/conservancy/podjango/feeds.py similarity index 100% rename from www/podjango/feeds.py rename to conservancy/podjango/feeds.py diff --git a/www/podjango/frontpage.py b/conservancy/podjango/frontpage.py similarity index 100% rename from www/podjango/frontpage.py rename to conservancy/podjango/frontpage.py diff --git a/www/podjango/migrations/0001_initial.py b/conservancy/podjango/migrations/0001_initial.py similarity index 100% rename from www/podjango/migrations/0001_initial.py rename to conservancy/podjango/migrations/0001_initial.py diff --git a/www/podjango/migrations/__init__.py b/conservancy/podjango/migrations/__init__.py similarity index 100% rename from www/podjango/migrations/__init__.py rename to conservancy/podjango/migrations/__init__.py diff --git a/www/podjango/models.py b/conservancy/podjango/models.py similarity index 100% rename from www/podjango/models.py rename to conservancy/podjango/models.py diff --git a/www/podjango/static/podjango/img/cast/audio_mp3_button.png b/conservancy/podjango/static/podjango/img/cast/audio_mp3_button.png similarity index 100% rename from www/podjango/static/podjango/img/cast/audio_mp3_button.png rename to conservancy/podjango/static/podjango/img/cast/audio_mp3_button.png diff --git a/www/podjango/static/podjango/img/cast/audio_ogg_button.png b/conservancy/podjango/static/podjango/img/cast/audio_ogg_button.png similarity index 100% rename from www/podjango/static/podjango/img/cast/audio_ogg_button.png rename to conservancy/podjango/static/podjango/img/cast/audio_ogg_button.png diff --git a/www/podjango/static/podjango/img/cast/faif_144x144.jpg b/conservancy/podjango/static/podjango/img/cast/faif_144x144.jpg similarity index 100% rename from www/podjango/static/podjango/img/cast/faif_144x144.jpg rename to conservancy/podjango/static/podjango/img/cast/faif_144x144.jpg diff --git a/www/podjango/static/podjango/img/cast/faif_200x200.jpg b/conservancy/podjango/static/podjango/img/cast/faif_200x200.jpg similarity index 100% rename from www/podjango/static/podjango/img/cast/faif_200x200.jpg rename to conservancy/podjango/static/podjango/img/cast/faif_200x200.jpg diff --git a/www/podjango/static/podjango/img/cast/faif_300x300.jpg b/conservancy/podjango/static/podjango/img/cast/faif_300x300.jpg similarity index 100% rename from www/podjango/static/podjango/img/cast/faif_300x300.jpg rename to conservancy/podjango/static/podjango/img/cast/faif_300x300.jpg diff --git a/www/podjango/static/podjango/img/cast/faif_300x300.xcf b/conservancy/podjango/static/podjango/img/cast/faif_300x300.xcf similarity index 100% rename from www/podjango/static/podjango/img/cast/faif_300x300.xcf rename to conservancy/podjango/static/podjango/img/cast/faif_300x300.xcf diff --git a/www/podjango/static/podjango/img/cast/halfbakedmedia-logo.png b/conservancy/podjango/static/podjango/img/cast/halfbakedmedia-logo.png similarity index 100% rename from www/podjango/static/podjango/img/cast/halfbakedmedia-logo.png rename to conservancy/podjango/static/podjango/img/cast/halfbakedmedia-logo.png diff --git a/www/podjango/static/podjango/img/cast/halfbakedmedia-logo_100px.png b/conservancy/podjango/static/podjango/img/cast/halfbakedmedia-logo_100px.png similarity index 100% rename from www/podjango/static/podjango/img/cast/halfbakedmedia-logo_100px.png rename to conservancy/podjango/static/podjango/img/cast/halfbakedmedia-logo_100px.png diff --git a/www/podjango/static/podjango/img/cast/rss-audiomp3.png b/conservancy/podjango/static/podjango/img/cast/rss-audiomp3.png similarity index 100% rename from www/podjango/static/podjango/img/cast/rss-audiomp3.png rename to conservancy/podjango/static/podjango/img/cast/rss-audiomp3.png diff --git a/www/podjango/static/podjango/img/cast/rss-audioogg.png b/conservancy/podjango/static/podjango/img/cast/rss-audioogg.png similarity index 100% rename from www/podjango/static/podjango/img/cast/rss-audioogg.png rename to conservancy/podjango/static/podjango/img/cast/rss-audioogg.png diff --git a/www/podjango/static/podjango/img/cast/rss-miro.png b/conservancy/podjango/static/podjango/img/cast/rss-miro.png similarity index 100% rename from www/podjango/static/podjango/img/cast/rss-miro.png rename to conservancy/podjango/static/podjango/img/cast/rss-miro.png diff --git a/www/podjango/static/podjango/img/feed-icon-14x14.png b/conservancy/podjango/static/podjango/img/feed-icon-14x14.png similarity index 100% rename from www/podjango/static/podjango/img/feed-icon-14x14.png rename to conservancy/podjango/static/podjango/img/feed-icon-14x14.png diff --git a/www/podjango/static/podjango/license/index.html b/conservancy/podjango/static/podjango/license/index.html similarity index 100% rename from www/podjango/static/podjango/license/index.html rename to conservancy/podjango/static/podjango/license/index.html diff --git a/www/podjango/templates/podjango/audio_mp3_button.inc.html b/conservancy/podjango/templates/podjango/audio_mp3_button.inc.html similarity index 100% rename from www/podjango/templates/podjango/audio_mp3_button.inc.html rename to conservancy/podjango/templates/podjango/audio_mp3_button.inc.html diff --git a/www/podjango/templates/podjango/audio_ogg_button.inc.html b/conservancy/podjango/templates/podjango/audio_ogg_button.inc.html similarity index 100% rename from www/podjango/templates/podjango/audio_ogg_button.inc.html rename to conservancy/podjango/templates/podjango/audio_ogg_button.inc.html diff --git a/www/podjango/templates/podjango/base_podcast.html b/conservancy/podjango/templates/podjango/base_podcast.html similarity index 100% rename from www/podjango/templates/podjango/base_podcast.html rename to conservancy/podjango/templates/podjango/base_podcast.html diff --git a/www/podjango/templates/podjango/cast/cast_archive_day.html b/conservancy/podjango/templates/podjango/cast/cast_archive_day.html similarity index 100% rename from www/podjango/templates/podjango/cast/cast_archive_day.html rename to conservancy/podjango/templates/podjango/cast/cast_archive_day.html diff --git a/www/podjango/templates/podjango/cast/cast_archive_month.html b/conservancy/podjango/templates/podjango/cast/cast_archive_month.html similarity index 100% rename from www/podjango/templates/podjango/cast/cast_archive_month.html rename to conservancy/podjango/templates/podjango/cast/cast_archive_month.html diff --git a/www/podjango/templates/podjango/cast/cast_archive_year.html b/conservancy/podjango/templates/podjango/cast/cast_archive_year.html similarity index 100% rename from www/podjango/templates/podjango/cast/cast_archive_year.html rename to conservancy/podjango/templates/podjango/cast/cast_archive_year.html diff --git a/www/podjango/templates/podjango/cast/cast_detail.html b/conservancy/podjango/templates/podjango/cast/cast_detail.html similarity index 100% rename from www/podjango/templates/podjango/cast/cast_detail.html rename to conservancy/podjango/templates/podjango/cast/cast_detail.html diff --git a/www/podjango/templates/podjango/cast/cast_list.html b/conservancy/podjango/templates/podjango/cast/cast_list.html similarity index 100% rename from www/podjango/templates/podjango/cast/cast_list.html rename to conservancy/podjango/templates/podjango/cast/cast_list.html diff --git a/www/podjango/templates/podjango/credits.inc.html b/conservancy/podjango/templates/podjango/credits.inc.html similarity index 100% rename from www/podjango/templates/podjango/credits.inc.html rename to conservancy/podjango/templates/podjango/credits.inc.html diff --git a/www/podjango/templates/podjango/feed_links.inc.html b/conservancy/podjango/templates/podjango/feed_links.inc.html similarity index 100% rename from www/podjango/templates/podjango/feed_links.inc.html rename to conservancy/podjango/templates/podjango/feed_links.inc.html diff --git a/www/podjango/templates/podjango/feedback.inc.html b/conservancy/podjango/templates/podjango/feedback.inc.html similarity index 100% rename from www/podjango/templates/podjango/feedback.inc.html rename to conservancy/podjango/templates/podjango/feedback.inc.html diff --git a/www/podjango/templates/podjango/feeds.html b/conservancy/podjango/templates/podjango/feeds.html similarity index 100% rename from www/podjango/templates/podjango/feeds.html rename to conservancy/podjango/templates/podjango/feeds.html diff --git a/www/podjango/templates/podjango/feeds/podcast_description.html b/conservancy/podjango/templates/podjango/feeds/podcast_description.html similarity index 100% rename from www/podjango/templates/podjango/feeds/podcast_description.html rename to conservancy/podjango/templates/podjango/feeds/podcast_description.html diff --git a/www/podjango/templates/podjango/feeds/podcast_title.html b/conservancy/podjango/templates/podjango/feeds/podcast_title.html similarity index 100% rename from www/podjango/templates/podjango/feeds/podcast_title.html rename to conservancy/podjango/templates/podjango/feeds/podcast_title.html diff --git a/www/podjango/templates/podjango/frontpage.html b/conservancy/podjango/templates/podjango/frontpage.html similarity index 100% rename from www/podjango/templates/podjango/frontpage.html rename to conservancy/podjango/templates/podjango/frontpage.html diff --git a/www/podjango/templates/podjango/license.inc.html b/conservancy/podjango/templates/podjango/license.inc.html similarity index 100% rename from www/podjango/templates/podjango/license.inc.html rename to conservancy/podjango/templates/podjango/license.inc.html diff --git a/www/podjango/templatetags/__init__.py b/conservancy/podjango/templatetags/__init__.py similarity index 100% rename from www/podjango/templatetags/__init__.py rename to conservancy/podjango/templatetags/__init__.py diff --git a/www/podjango/templatetags/date_within.py b/conservancy/podjango/templatetags/date_within.py similarity index 100% rename from www/podjango/templatetags/date_within.py rename to conservancy/podjango/templatetags/date_within.py diff --git a/www/podjango/urls.py b/conservancy/podjango/urls.py similarity index 100% rename from www/podjango/urls.py rename to conservancy/podjango/urls.py diff --git a/www/podjango/views.py b/conservancy/podjango/views.py similarity index 100% rename from www/podjango/views.py rename to conservancy/podjango/views.py diff --git a/www/settings.py b/conservancy/settings.py similarity index 84% rename from www/settings.py rename to conservancy/settings.py index 05ad3f5e6f61de22d231f09420a39b092f134d56..dc2464393a6e043ecbc659afed17023e99bb2c66 100644 --- a/www/settings.py +++ b/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', ] diff --git a/www/sponsors.py b/conservancy/sponsors.py similarity index 100% rename from www/sponsors.py rename to conservancy/sponsors.py diff --git a/www/staff/__init__.py b/conservancy/staff/__init__.py similarity index 100% rename from www/staff/__init__.py rename to conservancy/staff/__init__.py diff --git a/www/staff/admin.py b/conservancy/staff/admin.py similarity index 100% rename from www/staff/admin.py rename to conservancy/staff/admin.py diff --git a/www/staff/migrations/0001_initial.py b/conservancy/staff/migrations/0001_initial.py similarity index 100% rename from www/staff/migrations/0001_initial.py rename to conservancy/staff/migrations/0001_initial.py diff --git a/www/staff/migrations/0002_auto_20211128_2112.py b/conservancy/staff/migrations/0002_auto_20211128_2112.py similarity index 100% rename from www/staff/migrations/0002_auto_20211128_2112.py rename to conservancy/staff/migrations/0002_auto_20211128_2112.py diff --git a/www/staff/migrations/__init__.py b/conservancy/staff/migrations/__init__.py similarity index 100% rename from www/staff/migrations/__init__.py rename to conservancy/staff/migrations/__init__.py diff --git a/www/staff/models.py b/conservancy/staff/models.py similarity index 100% rename from www/staff/models.py rename to conservancy/staff/models.py diff --git a/www/static/GPLv3 b/conservancy/static/GPLv3 similarity index 100% rename from www/static/GPLv3 rename to conservancy/static/GPLv3 diff --git a/www/static/GiveUpGitHub/index.html b/conservancy/static/GiveUpGitHub/index.html similarity index 100% rename from www/static/GiveUpGitHub/index.html rename to conservancy/static/GiveUpGitHub/index.html diff --git a/www/static/__init__.py b/conservancy/static/__init__.py similarity index 100% rename from www/static/__init__.py rename to conservancy/static/__init__.py diff --git a/www/static/about/board/index.html b/conservancy/static/about/board/index.html similarity index 100% rename from www/static/about/board/index.html rename to conservancy/static/about/board/index.html diff --git a/www/static/about/contact/accounts-taxinfo.asc b/conservancy/static/about/contact/accounts-taxinfo.asc similarity index 100% rename from www/static/about/contact/accounts-taxinfo.asc rename to conservancy/static/about/contact/accounts-taxinfo.asc diff --git a/www/static/about/contact/index.html b/conservancy/static/about/contact/index.html similarity index 100% rename from www/static/about/contact/index.html rename to conservancy/static/about/contact/index.html diff --git a/www/static/about/eval-committee/index.html b/conservancy/static/about/eval-committee/index.html similarity index 100% rename from www/static/about/eval-committee/index.html rename to conservancy/static/about/eval-committee/index.html diff --git a/www/static/about/index.html b/conservancy/static/about/index.html similarity index 100% rename from www/static/about/index.html rename to conservancy/static/about/index.html diff --git a/www/static/about/license/index.html b/conservancy/static/about/license/index.html similarity index 100% rename from www/static/about/license/index.html rename to conservancy/static/about/license/index.html diff --git a/www/static/about/outside/index.html b/conservancy/static/about/outside/index.html similarity index 100% rename from www/static/about/outside/index.html rename to conservancy/static/about/outside/index.html diff --git a/www/static/about/staff/index.html b/conservancy/static/about/staff/index.html similarity index 100% rename from www/static/about/staff/index.html rename to conservancy/static/about/staff/index.html diff --git a/www/static/about/transparency/index.html b/conservancy/static/about/transparency/index.html similarity index 100% rename from www/static/about/transparency/index.html rename to conservancy/static/about/transparency/index.html diff --git a/www/static/activities/index.html b/conservancy/static/activities/index.html similarity index 100% rename from www/static/activities/index.html rename to conservancy/static/activities/index.html diff --git a/www/static/coming-soon.html b/conservancy/static/coming-soon.html similarity index 100% rename from www/static/coming-soon.html rename to conservancy/static/coming-soon.html diff --git a/www/static/copyleft-compliance/about.html b/conservancy/static/copyleft-compliance/about.html similarity index 100% rename from www/static/copyleft-compliance/about.html rename to conservancy/static/copyleft-compliance/about.html diff --git a/www/static/copyleft-compliance/enforcement-strategy.html b/conservancy/static/copyleft-compliance/enforcement-strategy.html similarity index 100% rename from www/static/copyleft-compliance/enforcement-strategy.html rename to conservancy/static/copyleft-compliance/enforcement-strategy.html diff --git a/www/static/copyleft-compliance/firmware-liberation.html b/conservancy/static/copyleft-compliance/firmware-liberation.html similarity index 100% rename from www/static/copyleft-compliance/firmware-liberation.html rename to conservancy/static/copyleft-compliance/firmware-liberation.html diff --git a/www/static/copyleft-compliance/glossary.html b/conservancy/static/copyleft-compliance/glossary.html similarity index 100% rename from www/static/copyleft-compliance/glossary.html rename to conservancy/static/copyleft-compliance/glossary.html diff --git a/www/static/copyleft-compliance/help.html b/conservancy/static/copyleft-compliance/help.html similarity index 100% rename from www/static/copyleft-compliance/help.html rename to conservancy/static/copyleft-compliance/help.html diff --git a/www/static/copyleft-compliance/index.html b/conservancy/static/copyleft-compliance/index.html similarity index 100% rename from www/static/copyleft-compliance/index.html rename to conservancy/static/copyleft-compliance/index.html diff --git a/www/static/copyleft-compliance/linux-vs-vmkernel_de.png b/conservancy/static/copyleft-compliance/linux-vs-vmkernel_de.png similarity index 100% rename from www/static/copyleft-compliance/linux-vs-vmkernel_de.png rename to conservancy/static/copyleft-compliance/linux-vs-vmkernel_de.png diff --git a/www/static/copyleft-compliance/linux-vs-vmkernel_de.svg b/conservancy/static/copyleft-compliance/linux-vs-vmkernel_de.svg similarity index 100% rename from www/static/copyleft-compliance/linux-vs-vmkernel_de.svg rename to conservancy/static/copyleft-compliance/linux-vs-vmkernel_de.svg diff --git a/www/static/copyleft-compliance/linux-vs-vmkernel_en.png b/conservancy/static/copyleft-compliance/linux-vs-vmkernel_en.png similarity index 100% rename from www/static/copyleft-compliance/linux-vs-vmkernel_en.png rename to conservancy/static/copyleft-compliance/linux-vs-vmkernel_en.png diff --git a/www/static/copyleft-compliance/linux-vs-vmkernel_en.svg b/conservancy/static/copyleft-compliance/linux-vs-vmkernel_en.svg similarity index 100% rename from www/static/copyleft-compliance/linux-vs-vmkernel_en.svg rename to conservancy/static/copyleft-compliance/linux-vs-vmkernel_en.svg diff --git a/www/static/copyleft-compliance/linux-vs-vmkernel_en_scaled.png b/conservancy/static/copyleft-compliance/linux-vs-vmkernel_en_scaled.png similarity index 100% rename from www/static/copyleft-compliance/linux-vs-vmkernel_en_scaled.png rename to conservancy/static/copyleft-compliance/linux-vs-vmkernel_en_scaled.png diff --git a/www/static/copyleft-compliance/past-lawsuits.html b/conservancy/static/copyleft-compliance/past-lawsuits.html similarity index 100% rename from www/static/copyleft-compliance/past-lawsuits.html rename to conservancy/static/copyleft-compliance/past-lawsuits.html diff --git a/www/static/copyleft-compliance/principles.cn.html b/conservancy/static/copyleft-compliance/principles.cn.html similarity index 100% rename from www/static/copyleft-compliance/principles.cn.html rename to conservancy/static/copyleft-compliance/principles.cn.html diff --git a/www/static/copyleft-compliance/principles.cn.pdf b/conservancy/static/copyleft-compliance/principles.cn.pdf similarity index 100% rename from www/static/copyleft-compliance/principles.cn.pdf rename to conservancy/static/copyleft-compliance/principles.cn.pdf diff --git a/www/static/copyleft-compliance/principles.html b/conservancy/static/copyleft-compliance/principles.html similarity index 100% rename from www/static/copyleft-compliance/principles.html rename to conservancy/static/copyleft-compliance/principles.html diff --git a/www/static/copyleft-compliance/principles.kr.html b/conservancy/static/copyleft-compliance/principles.kr.html similarity index 100% rename from www/static/copyleft-compliance/principles.kr.html rename to conservancy/static/copyleft-compliance/principles.kr.html diff --git a/www/static/copyleft-compliance/principles.kr.pdf b/conservancy/static/copyleft-compliance/principles.kr.pdf similarity index 100% rename from www/static/copyleft-compliance/principles.kr.pdf rename to conservancy/static/copyleft-compliance/principles.kr.pdf diff --git a/www/static/copyleft-compliance/vizio-filing-press-release.html b/conservancy/static/copyleft-compliance/vizio-filing-press-release.html similarity index 100% rename from www/static/copyleft-compliance/vizio-filing-press-release.html rename to conservancy/static/copyleft-compliance/vizio-filing-press-release.html diff --git a/www/static/copyleft-compliance/vizio.html b/conservancy/static/copyleft-compliance/vizio.html similarity index 100% rename from www/static/copyleft-compliance/vizio.html rename to conservancy/static/copyleft-compliance/vizio.html diff --git a/www/static/copyleft-compliance/vmware-code-similarity.html b/conservancy/static/copyleft-compliance/vmware-code-similarity.html similarity index 100% rename from www/static/copyleft-compliance/vmware-code-similarity.html rename to conservancy/static/copyleft-compliance/vmware-code-similarity.html diff --git a/www/static/copyleft-compliance/vmware-lawsuit-appeal.html b/conservancy/static/copyleft-compliance/vmware-lawsuit-appeal.html similarity index 100% rename from www/static/copyleft-compliance/vmware-lawsuit-appeal.html rename to conservancy/static/copyleft-compliance/vmware-lawsuit-appeal.html diff --git a/www/static/copyleft-compliance/vmware-lawsuit-faq.html b/conservancy/static/copyleft-compliance/vmware-lawsuit-faq.html similarity index 100% rename from www/static/copyleft-compliance/vmware-lawsuit-faq.html rename to conservancy/static/copyleft-compliance/vmware-lawsuit-faq.html diff --git a/www/static/css/conservancy-bigscreen.css b/conservancy/static/css/conservancy-bigscreen.css similarity index 100% rename from www/static/css/conservancy-bigscreen.css rename to conservancy/static/css/conservancy-bigscreen.css diff --git a/www/static/css/conservancy.css b/conservancy/static/css/conservancy.css similarity index 100% rename from www/static/css/conservancy.css rename to conservancy/static/css/conservancy.css diff --git a/www/static/css/forms.css b/conservancy/static/css/forms.css similarity index 100% rename from www/static/css/forms.css rename to conservancy/static/css/forms.css diff --git a/www/static/css/tachyons.css b/conservancy/static/css/tachyons.css similarity index 100% rename from www/static/css/tachyons.css rename to conservancy/static/css/tachyons.css diff --git a/www/static/docs/2010-07-27_dj-opinion.pdf b/conservancy/static/docs/2010-07-27_dj-opinion.pdf similarity index 100% rename from www/static/docs/2010-07-27_dj-opinion.pdf rename to conservancy/static/docs/2010-07-27_dj-opinion.pdf diff --git a/www/static/docs/2010_Killed-by-Code.pdf b/conservancy/static/docs/2010_Killed-by-Code.pdf similarity index 100% rename from www/static/docs/2010_Killed-by-Code.pdf rename to conservancy/static/docs/2010_Killed-by-Code.pdf diff --git a/www/static/docs/2016-02-23_Contracts_Committee_testimony.pdf b/conservancy/static/docs/2016-02-23_Contracts_Committee_testimony.pdf similarity index 100% rename from www/static/docs/2016-02-23_Contracts_Committee_testimony.pdf rename to conservancy/static/docs/2016-02-23_Contracts_Committee_testimony.pdf diff --git a/www/static/docs/2017-08-01_1201-exemption-renewal.pdf b/conservancy/static/docs/2017-08-01_1201-exemption-renewal.pdf similarity index 100% rename from www/static/docs/2017-08-01_1201-exemption-renewal.pdf rename to conservancy/static/docs/2017-08-01_1201-exemption-renewal.pdf diff --git a/www/static/docs/2018-01-03_Arista_amicus-brief.pdf b/conservancy/static/docs/2018-01-03_Arista_amicus-brief.pdf similarity index 100% rename from www/static/docs/2018-01-03_Arista_amicus-brief.pdf rename to conservancy/static/docs/2018-01-03_Arista_amicus-brief.pdf diff --git a/www/static/docs/2019-09-18_Conservancy-USPTO-Petition-re-rule-2_189.pdf b/conservancy/static/docs/2019-09-18_Conservancy-USPTO-Petition-re-rule-2_189.pdf similarity index 100% rename from www/static/docs/2019-09-18_Conservancy-USPTO-Petition-re-rule-2_189.pdf rename to conservancy/static/docs/2019-09-18_Conservancy-USPTO-Petition-re-rule-2_189.pdf diff --git a/www/static/docs/2020-12-14_Comment-Class-11_networking-devices.pdf b/conservancy/static/docs/2020-12-14_Comment-Class-11_networking-devices.pdf similarity index 100% rename from www/static/docs/2020-12-14_Comment-Class-11_networking-devices.pdf rename to conservancy/static/docs/2020-12-14_Comment-Class-11_networking-devices.pdf diff --git a/www/static/docs/2020-12-14_Comment-Class-13_privacy-research.pdf b/conservancy/static/docs/2020-12-14_Comment-Class-13_privacy-research.pdf similarity index 100% rename from www/static/docs/2020-12-14_Comment-Class-13_privacy-research.pdf rename to conservancy/static/docs/2020-12-14_Comment-Class-13_privacy-research.pdf diff --git a/www/static/docs/2020-12-14_Comment-Class-16_copyright-license-invesigation.pdf b/conservancy/static/docs/2020-12-14_Comment-Class-16_copyright-license-invesigation.pdf similarity index 100% rename from www/static/docs/2020-12-14_Comment-Class-16_copyright-license-invesigation.pdf rename to conservancy/static/docs/2020-12-14_Comment-Class-16_copyright-license-invesigation.pdf diff --git a/www/static/docs/2022-02-01_open-letter-to-Biden-on-cybersecurity-and-FOSS.pdf b/conservancy/static/docs/2022-02-01_open-letter-to-Biden-on-cybersecurity-and-FOSS.pdf similarity index 100% rename from www/static/docs/2022-02-01_open-letter-to-Biden-on-cybersecurity-and-FOSS.pdf rename to conservancy/static/docs/2022-02-01_open-letter-to-Biden-on-cybersecurity-and-FOSS.pdf diff --git a/www/static/docs/2023-01-31_KU-Lueven_Sandler-Karen_Software-Rights-Accountability-and-Autonomy-in-Our-Technology.txt b/conservancy/static/docs/2023-01-31_KU-Lueven_Sandler-Karen_Software-Rights-Accountability-and-Autonomy-in-Our-Technology.txt similarity index 100% rename from www/static/docs/2023-01-31_KU-Lueven_Sandler-Karen_Software-Rights-Accountability-and-Autonomy-in-Our-Technology.txt rename to conservancy/static/docs/2023-01-31_KU-Lueven_Sandler-Karen_Software-Rights-Accountability-and-Autonomy-in-Our-Technology.txt diff --git a/www/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.en.txt b/conservancy/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.en.txt similarity index 100% rename from www/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.en.txt rename to conservancy/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.en.txt diff --git a/www/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.nl.txt b/conservancy/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.nl.txt similarity index 100% rename from www/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.nl.txt rename to conservancy/static/docs/2023-02-02_Sandler-Karen_KU-Leuven_Honorary-Doctorate.nl.txt diff --git a/www/static/docs/GiveUpGitHub-README.md b/conservancy/static/docs/GiveUpGitHub-README.md similarity index 100% rename from www/static/docs/GiveUpGitHub-README.md rename to conservancy/static/docs/GiveUpGitHub-README.md diff --git a/www/static/docs/SupportGiveUpGitHub-README-snippet.md b/conservancy/static/docs/SupportGiveUpGitHub-README-snippet.md similarity index 100% rename from www/static/docs/SupportGiveUpGitHub-README-snippet.md rename to conservancy/static/docs/SupportGiveUpGitHub-README-snippet.md diff --git a/www/static/docs/blank_anonymous-linux-enforcement-agreement.pdf b/conservancy/static/docs/blank_anonymous-linux-enforcement-agreement.pdf similarity index 100% rename from www/static/docs/blank_anonymous-linux-enforcement-agreement.pdf rename to conservancy/static/docs/blank_anonymous-linux-enforcement-agreement.pdf diff --git a/www/static/docs/blank_linux-enforcement-agreement.pdf b/conservancy/static/docs/blank_linux-enforcement-agreement.pdf similarity index 100% rename from www/static/docs/blank_linux-enforcement-agreement.pdf rename to conservancy/static/docs/blank_linux-enforcement-agreement.pdf diff --git a/www/static/docs/busybox-complaint-2009-12-14.pdf b/conservancy/static/docs/busybox-complaint-2009-12-14.pdf similarity index 100% rename from www/static/docs/busybox-complaint-2009-12-14.pdf rename to conservancy/static/docs/busybox-complaint-2009-12-14.pdf diff --git a/www/static/docs/conservancy-1201-long-form-comment-2015-02-06.pdf b/conservancy/static/docs/conservancy-1201-long-form-comment-2015-02-06.pdf similarity index 100% rename from www/static/docs/conservancy-1201-long-form-comment-2015-02-06.pdf rename to conservancy/static/docs/conservancy-1201-long-form-comment-2015-02-06.pdf diff --git a/www/static/docs/conservancy-1201-petition-2014-10-31-no-letterhead.odt b/conservancy/static/docs/conservancy-1201-petition-2014-10-31-no-letterhead.odt similarity index 100% rename from www/static/docs/conservancy-1201-petition-2014-10-31-no-letterhead.odt rename to conservancy/static/docs/conservancy-1201-petition-2014-10-31-no-letterhead.odt diff --git a/www/static/docs/conservancy-1201-petition-2014-10-31.odt b/conservancy/static/docs/conservancy-1201-petition-2014-10-31.odt similarity index 100% rename from www/static/docs/conservancy-1201-petition-2014-10-31.odt rename to conservancy/static/docs/conservancy-1201-petition-2014-10-31.odt diff --git a/www/static/docs/conservancy-1201-petition-2014-10-31.pdf b/conservancy/static/docs/conservancy-1201-petition-2014-10-31.pdf similarity index 100% rename from www/static/docs/conservancy-1201-petition-2014-10-31.pdf rename to conservancy/static/docs/conservancy-1201-petition-2014-10-31.pdf diff --git a/www/static/docs/conservancy-CHAR-500-fy-2008.pdf b/conservancy/static/docs/conservancy-CHAR-500-fy-2008.pdf similarity index 100% rename from www/static/docs/conservancy-CHAR-500-fy-2008.pdf rename to conservancy/static/docs/conservancy-CHAR-500-fy-2008.pdf diff --git a/www/static/docs/conservancy-form-990-fy-2008.pdf b/conservancy/static/docs/conservancy-form-990-fy-2008.pdf similarity index 100% rename from www/static/docs/conservancy-form-990-fy-2008.pdf rename to conservancy/static/docs/conservancy-form-990-fy-2008.pdf diff --git a/www/static/docs/conservancy_CHAR-500_fy-2006.pdf b/conservancy/static/docs/conservancy_CHAR-500_fy-2006.pdf similarity index 100% rename from www/static/docs/conservancy_CHAR-500_fy-2006.pdf rename to conservancy/static/docs/conservancy_CHAR-500_fy-2006.pdf diff --git a/www/static/docs/conservancy_CHAR-500_fy-2007.pdf b/conservancy/static/docs/conservancy_CHAR-500_fy-2007.pdf similarity index 100% rename from www/static/docs/conservancy_CHAR-500_fy-2007.pdf rename to conservancy/static/docs/conservancy_CHAR-500_fy-2007.pdf diff --git a/www/static/docs/conservancy_CHAR-500_fy-2009.pdf b/conservancy/static/docs/conservancy_CHAR-500_fy-2009.pdf similarity index 100% rename from www/static/docs/conservancy_CHAR-500_fy-2009.pdf rename to conservancy/static/docs/conservancy_CHAR-500_fy-2009.pdf diff --git a/www/static/docs/conservancy_CHAR-500_fy-2010.pdf b/conservancy/static/docs/conservancy_CHAR-500_fy-2010.pdf similarity index 100% rename from www/static/docs/conservancy_CHAR-500_fy-2010.pdf rename to conservancy/static/docs/conservancy_CHAR-500_fy-2010.pdf diff --git a/www/static/docs/conservancy_CHAR-500_fy-2011.pdf b/conservancy/static/docs/conservancy_CHAR-500_fy-2011.pdf similarity index 100% rename from www/static/docs/conservancy_CHAR-500_fy-2011.pdf rename to conservancy/static/docs/conservancy_CHAR-500_fy-2011.pdf diff --git a/www/static/docs/conservancy_CHAR-500_fy-2012.pdf b/conservancy/static/docs/conservancy_CHAR-500_fy-2012.pdf similarity index 100% rename from www/static/docs/conservancy_CHAR-500_fy-2012.pdf rename to conservancy/static/docs/conservancy_CHAR-500_fy-2012.pdf diff --git a/www/static/docs/conservancy_CHAR-500_fy-2013.pdf b/conservancy/static/docs/conservancy_CHAR-500_fy-2013.pdf similarity index 100% rename from www/static/docs/conservancy_CHAR-500_fy-2013.pdf rename to conservancy/static/docs/conservancy_CHAR-500_fy-2013.pdf diff --git a/www/static/docs/conservancy_CHAR-500_fy-2015.pdf b/conservancy/static/docs/conservancy_CHAR-500_fy-2015.pdf similarity index 100% rename from www/static/docs/conservancy_CHAR-500_fy-2015.pdf rename to conservancy/static/docs/conservancy_CHAR-500_fy-2015.pdf diff --git a/www/static/docs/conservancy_CHAR-500_fy-2016.pdf b/conservancy/static/docs/conservancy_CHAR-500_fy-2016.pdf similarity index 100% rename from www/static/docs/conservancy_CHAR-500_fy-2016.pdf rename to conservancy/static/docs/conservancy_CHAR-500_fy-2016.pdf diff --git a/www/static/docs/conservancy_CHAR-500_fy-2017.pdf b/conservancy/static/docs/conservancy_CHAR-500_fy-2017.pdf similarity index 100% rename from www/static/docs/conservancy_CHAR-500_fy-2017.pdf rename to conservancy/static/docs/conservancy_CHAR-500_fy-2017.pdf diff --git a/www/static/docs/conservancy_Form-1023.pdf b/conservancy/static/docs/conservancy_Form-1023.pdf similarity index 100% rename from www/static/docs/conservancy_Form-1023.pdf rename to conservancy/static/docs/conservancy_Form-1023.pdf diff --git a/www/static/docs/conservancy_Form-990_fy-2007.pdf b/conservancy/static/docs/conservancy_Form-990_fy-2007.pdf similarity index 100% rename from www/static/docs/conservancy_Form-990_fy-2007.pdf rename to conservancy/static/docs/conservancy_Form-990_fy-2007.pdf diff --git a/www/static/docs/conservancy_Form-990_fy-2009.pdf b/conservancy/static/docs/conservancy_Form-990_fy-2009.pdf similarity index 100% rename from www/static/docs/conservancy_Form-990_fy-2009.pdf rename to conservancy/static/docs/conservancy_Form-990_fy-2009.pdf diff --git a/www/static/docs/conservancy_Form-990_fy-2010.pdf b/conservancy/static/docs/conservancy_Form-990_fy-2010.pdf similarity index 100% rename from www/static/docs/conservancy_Form-990_fy-2010.pdf rename to conservancy/static/docs/conservancy_Form-990_fy-2010.pdf diff --git a/www/static/docs/conservancy_Form-990_fy-2011.pdf b/conservancy/static/docs/conservancy_Form-990_fy-2011.pdf similarity index 100% rename from www/static/docs/conservancy_Form-990_fy-2011.pdf rename to conservancy/static/docs/conservancy_Form-990_fy-2011.pdf diff --git a/www/static/docs/conservancy_Form-990_fy-2012.pdf b/conservancy/static/docs/conservancy_Form-990_fy-2012.pdf similarity index 100% rename from www/static/docs/conservancy_Form-990_fy-2012.pdf rename to conservancy/static/docs/conservancy_Form-990_fy-2012.pdf diff --git a/www/static/docs/conservancy_Form-990_fy-2013.pdf b/conservancy/static/docs/conservancy_Form-990_fy-2013.pdf similarity index 100% rename from www/static/docs/conservancy_Form-990_fy-2013.pdf rename to conservancy/static/docs/conservancy_Form-990_fy-2013.pdf diff --git a/www/static/docs/conservancy_Form-990_fy-2014.pdf b/conservancy/static/docs/conservancy_Form-990_fy-2014.pdf similarity index 100% rename from www/static/docs/conservancy_Form-990_fy-2014.pdf rename to conservancy/static/docs/conservancy_Form-990_fy-2014.pdf diff --git a/www/static/docs/conservancy_Form-990_fy-2015.pdf b/conservancy/static/docs/conservancy_Form-990_fy-2015.pdf similarity index 100% rename from www/static/docs/conservancy_Form-990_fy-2015.pdf rename to conservancy/static/docs/conservancy_Form-990_fy-2015.pdf diff --git a/www/static/docs/conservancy_Form-990_fy-2016.pdf b/conservancy/static/docs/conservancy_Form-990_fy-2016.pdf similarity index 100% rename from www/static/docs/conservancy_Form-990_fy-2016.pdf rename to conservancy/static/docs/conservancy_Form-990_fy-2016.pdf diff --git a/www/static/docs/conservancy_Form-990_fy-2017.pdf b/conservancy/static/docs/conservancy_Form-990_fy-2017.pdf similarity index 100% rename from www/static/docs/conservancy_Form-990_fy-2017.pdf rename to conservancy/static/docs/conservancy_Form-990_fy-2017.pdf diff --git a/www/static/docs/conservancy_annual-report_fy-2011.odp b/conservancy/static/docs/conservancy_annual-report_fy-2011.odp similarity index 100% rename from www/static/docs/conservancy_annual-report_fy-2011.odp rename to conservancy/static/docs/conservancy_annual-report_fy-2011.odp diff --git a/www/static/docs/conservancy_annual-report_fy-2011.pdf b/conservancy/static/docs/conservancy_annual-report_fy-2011.pdf similarity index 100% rename from www/static/docs/conservancy_annual-report_fy-2011.pdf rename to conservancy/static/docs/conservancy_annual-report_fy-2011.pdf diff --git a/www/static/docs/conservancy_annual-report_fy-2012.odp b/conservancy/static/docs/conservancy_annual-report_fy-2012.odp similarity index 100% rename from www/static/docs/conservancy_annual-report_fy-2012.odp rename to conservancy/static/docs/conservancy_annual-report_fy-2012.odp diff --git a/www/static/docs/conservancy_annual-report_fy-2012.pdf b/conservancy/static/docs/conservancy_annual-report_fy-2012.pdf similarity index 100% rename from www/static/docs/conservancy_annual-report_fy-2012.pdf rename to conservancy/static/docs/conservancy_annual-report_fy-2012.pdf diff --git a/www/static/docs/conservancy_annual-report_fy-2013.odp b/conservancy/static/docs/conservancy_annual-report_fy-2013.odp similarity index 100% rename from www/static/docs/conservancy_annual-report_fy-2013.odp rename to conservancy/static/docs/conservancy_annual-report_fy-2013.odp diff --git a/www/static/docs/conservancy_annual-report_fy-2013.pdf b/conservancy/static/docs/conservancy_annual-report_fy-2013.pdf similarity index 100% rename from www/static/docs/conservancy_annual-report_fy-2013.pdf rename to conservancy/static/docs/conservancy_annual-report_fy-2013.pdf diff --git a/www/static/docs/conservancy_by-laws.pdf b/conservancy/static/docs/conservancy_by-laws.pdf similarity index 100% rename from www/static/docs/conservancy_by-laws.pdf rename to conservancy/static/docs/conservancy_by-laws.pdf diff --git a/www/static/docs/conservancy_certificate-of-incorporation.pdf b/conservancy/static/docs/conservancy_certificate-of-incorporation.pdf similarity index 100% rename from www/static/docs/conservancy_certificate-of-incorporation.pdf rename to conservancy/static/docs/conservancy_certificate-of-incorporation.pdf diff --git a/www/static/docs/conservancy_independent-audit_fy-2010.pdf b/conservancy/static/docs/conservancy_independent-audit_fy-2010.pdf similarity index 100% rename from www/static/docs/conservancy_independent-audit_fy-2010.pdf rename to conservancy/static/docs/conservancy_independent-audit_fy-2010.pdf diff --git a/www/static/docs/conservancy_independent-audit_fy-2011.pdf b/conservancy/static/docs/conservancy_independent-audit_fy-2011.pdf similarity index 100% rename from www/static/docs/conservancy_independent-audit_fy-2011.pdf rename to conservancy/static/docs/conservancy_independent-audit_fy-2011.pdf diff --git a/www/static/docs/conservancy_independent-audit_fy-2012.pdf b/conservancy/static/docs/conservancy_independent-audit_fy-2012.pdf similarity index 100% rename from www/static/docs/conservancy_independent-audit_fy-2012.pdf rename to conservancy/static/docs/conservancy_independent-audit_fy-2012.pdf diff --git a/www/static/docs/conservancy_independent-audit_fy-2013.pdf b/conservancy/static/docs/conservancy_independent-audit_fy-2013.pdf similarity index 100% rename from www/static/docs/conservancy_independent-audit_fy-2013.pdf rename to conservancy/static/docs/conservancy_independent-audit_fy-2013.pdf diff --git a/www/static/docs/conservancy_independent-audit_fy-2014.pdf b/conservancy/static/docs/conservancy_independent-audit_fy-2014.pdf similarity index 100% rename from www/static/docs/conservancy_independent-audit_fy-2014.pdf rename to conservancy/static/docs/conservancy_independent-audit_fy-2014.pdf diff --git a/www/static/docs/conservancy_independent-audit_fy-2015.pdf b/conservancy/static/docs/conservancy_independent-audit_fy-2015.pdf similarity index 100% rename from www/static/docs/conservancy_independent-audit_fy-2015.pdf rename to conservancy/static/docs/conservancy_independent-audit_fy-2015.pdf diff --git a/www/static/docs/conservancy_independent-audit_fy-2016.pdf b/conservancy/static/docs/conservancy_independent-audit_fy-2016.pdf similarity index 100% rename from www/static/docs/conservancy_independent-audit_fy-2016.pdf rename to conservancy/static/docs/conservancy_independent-audit_fy-2016.pdf diff --git a/www/static/docs/conservancy_independent-audit_fy-2017.pdf b/conservancy/static/docs/conservancy_independent-audit_fy-2017.pdf similarity index 100% rename from www/static/docs/conservancy_independent-audit_fy-2017.pdf rename to conservancy/static/docs/conservancy_independent-audit_fy-2017.pdf diff --git a/www/static/docs/kuhn_expert-report-in-neo4j_5-18-cv-07182.pdf b/conservancy/static/docs/kuhn_expert-report-in-neo4j_5-18-cv-07182.pdf similarity index 100% rename from www/static/docs/kuhn_expert-report-in-neo4j_5-18-cv-07182.pdf rename to conservancy/static/docs/kuhn_expert-report-in-neo4j_5-18-cv-07182.pdf diff --git a/www/static/docs/sfc-introduction-vtt-captions.txt b/conservancy/static/docs/sfc-introduction-vtt-captions.txt similarity index 100% rename from www/static/docs/sfc-introduction-vtt-captions.txt rename to conservancy/static/docs/sfc-introduction-vtt-captions.txt diff --git a/www/static/docs/software-freedom-conservancy-v-vizio-announce-press-kit.pdf b/conservancy/static/docs/software-freedom-conservancy-v-vizio-announce-press-kit.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy-v-vizio-announce-press-kit.pdf rename to conservancy/static/docs/software-freedom-conservancy-v-vizio-announce-press-kit.pdf diff --git a/www/static/docs/software-freedom-conservancy-v-vizio-complaint-2021-10-19.pdf b/conservancy/static/docs/software-freedom-conservancy-v-vizio-complaint-2021-10-19.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy-v-vizio-complaint-2021-10-19.pdf rename to conservancy/static/docs/software-freedom-conservancy-v-vizio-complaint-2021-10-19.pdf diff --git a/www/static/docs/software-freedom-conservancy-v-vizio-q-and-a.pdf b/conservancy/static/docs/software-freedom-conservancy-v-vizio-q-and-a.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy-v-vizio-q-and-a.pdf rename to conservancy/static/docs/software-freedom-conservancy-v-vizio-q-and-a.pdf diff --git a/www/static/docs/software-freedom-conservancy_CHAR500_fy-2018-19.pdf b/conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2018-19.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy_CHAR500_fy-2018-19.pdf rename to conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2018-19.pdf diff --git a/www/static/docs/software-freedom-conservancy_CHAR500_fy-2019.pdf b/conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2019.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy_CHAR500_fy-2019.pdf rename to conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2019.pdf diff --git a/www/static/docs/software-freedom-conservancy_CHAR500_fy-2020.pdf b/conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2020.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy_CHAR500_fy-2020.pdf rename to conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2020.pdf diff --git a/www/static/docs/software-freedom-conservancy_CHAR500_fy-2021-22.pdf b/conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2021-22.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy_CHAR500_fy-2021-22.pdf rename to conservancy/static/docs/software-freedom-conservancy_CHAR500_fy-2021-22.pdf diff --git a/www/static/docs/software-freedom-conservancy_Form-990_fy-2018-19.pdf b/conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2018-19.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy_Form-990_fy-2018-19.pdf rename to conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2018-19.pdf diff --git a/www/static/docs/software-freedom-conservancy_Form-990_fy-2019.pdf b/conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2019.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy_Form-990_fy-2019.pdf rename to conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2019.pdf diff --git a/www/static/docs/software-freedom-conservancy_Form-990_fy-2020.pdf b/conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2020.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy_Form-990_fy-2020.pdf rename to conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2020.pdf diff --git a/www/static/docs/software-freedom-conservancy_Form-990_fy-2021-22.pdf b/conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2021-22.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy_Form-990_fy-2021-22.pdf rename to conservancy/static/docs/software-freedom-conservancy_Form-990_fy-2021-22.pdf diff --git a/www/static/docs/software-freedom-conservancy_independent-audit_fy-2018-19.pdf b/conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2018-19.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy_independent-audit_fy-2018-19.pdf rename to conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2018-19.pdf diff --git a/www/static/docs/software-freedom-conservancy_independent-audit_fy-2019.pdf b/conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2019.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy_independent-audit_fy-2019.pdf rename to conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2019.pdf diff --git a/www/static/docs/software-freedom-conservancy_independent-audit_fy-2020.pdf b/conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2020.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy_independent-audit_fy-2020.pdf rename to conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2020.pdf diff --git a/www/static/docs/software-freedom-conservancy_independent-audit_fy-2021-22.pdf b/conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2021-22.pdf similarity index 100% rename from www/static/docs/software-freedom-conservancy_independent-audit_fy-2021-22.pdf rename to conservancy/static/docs/software-freedom-conservancy_independent-audit_fy-2021-22.pdf diff --git a/www/static/docs/sponsorship-agreement-template.odt b/conservancy/static/docs/sponsorship-agreement-template.odt similarity index 100% rename from www/static/docs/sponsorship-agreement-template.odt rename to conservancy/static/docs/sponsorship-agreement-template.odt diff --git a/www/static/docs/sponsorship-agreement-template.pdf b/conservancy/static/docs/sponsorship-agreement-template.pdf similarity index 100% rename from www/static/docs/sponsorship-agreement-template.pdf rename to conservancy/static/docs/sponsorship-agreement-template.pdf diff --git a/www/static/docs/sponsorship-agreement-template.tex b/conservancy/static/docs/sponsorship-agreement-template.tex similarity index 100% rename from www/static/docs/sponsorship-agreement-template.tex rename to conservancy/static/docs/sponsorship-agreement-template.tex diff --git a/www/static/donate/index.html b/conservancy/static/donate/index.html similarity index 100% rename from www/static/donate/index.html rename to conservancy/static/donate/index.html diff --git a/www/static/error/401/index.html b/conservancy/static/error/401/index.html similarity index 100% rename from www/static/error/401/index.html rename to conservancy/static/error/401/index.html diff --git a/www/static/error/403/index.html b/conservancy/static/error/403/index.html similarity index 100% rename from www/static/error/403/index.html rename to conservancy/static/error/403/index.html diff --git a/www/static/error/404/index.html b/conservancy/static/error/404/index.html similarity index 100% rename from www/static/error/404/index.html rename to conservancy/static/error/404/index.html diff --git a/www/static/error/500/index.html b/conservancy/static/error/500/index.html similarity index 100% rename from www/static/error/500/index.html rename to conservancy/static/error/500/index.html diff --git a/www/static/favicon.ico b/conservancy/static/favicon.ico similarity index 100% rename from www/static/favicon.ico rename to conservancy/static/favicon.ico diff --git a/www/static/fossy.html b/conservancy/static/fossy.html similarity index 100% rename from www/static/fossy.html rename to conservancy/static/fossy.html diff --git a/www/static/fossy/index.html b/conservancy/static/fossy/index.html similarity index 100% rename from www/static/fossy/index.html rename to conservancy/static/fossy/index.html diff --git a/www/static/google536264c707362f55.html b/conservancy/static/google536264c707362f55.html similarity index 100% rename from www/static/google536264c707362f55.html rename to conservancy/static/google536264c707362f55.html diff --git a/www/static/img/2015-10_KCC_karen-speaking.jpg b/conservancy/static/img/2015-10_KCC_karen-speaking.jpg similarity index 100% rename from www/static/img/2015-10_KCC_karen-speaking.jpg rename to conservancy/static/img/2015-10_KCC_karen-speaking.jpg diff --git a/www/static/img/2015-10_KCC_other-speakers.jpg b/conservancy/static/img/2015-10_KCC_other-speakers.jpg similarity index 100% rename from www/static/img/2015-10_KCC_other-speakers.jpg rename to conservancy/static/img/2015-10_KCC_other-speakers.jpg diff --git a/www/static/img/2016-02-23_karen-testifying-by-David-Moore-CC-BY-SA-4.jpg b/conservancy/static/img/2016-02-23_karen-testifying-by-David-Moore-CC-BY-SA-4.jpg similarity index 100% rename from www/static/img/2016-02-23_karen-testifying-by-David-Moore-CC-BY-SA-4.jpg rename to conservancy/static/img/2016-02-23_karen-testifying-by-David-Moore-CC-BY-SA-4.jpg diff --git a/www/static/img/2016-10_Hackey-New-School-1.jpg b/conservancy/static/img/2016-10_Hackey-New-School-1.jpg similarity index 100% rename from www/static/img/2016-10_Hackey-New-School-1.jpg rename to conservancy/static/img/2016-10_Hackey-New-School-1.jpg diff --git a/www/static/img/2016-10_Hackey-New-School-2.jpg b/conservancy/static/img/2016-10_Hackey-New-School-2.jpg similarity index 100% rename from www/static/img/2016-10_Hackey-New-School-2.jpg rename to conservancy/static/img/2016-10_Hackey-New-School-2.jpg diff --git a/www/static/img/2016-10_Karen-OSCon-EU-keynote.png b/conservancy/static/img/2016-10_Karen-OSCon-EU-keynote.png similarity index 100% rename from www/static/img/2016-10_Karen-OSCon-EU-keynote.png rename to conservancy/static/img/2016-10_Karen-OSCon-EU-keynote.png diff --git a/www/static/img/2016_Edward-Snowden_CC-BY-SA-4.0.jpg b/conservancy/static/img/2016_Edward-Snowden_CC-BY-SA-4.0.jpg similarity index 100% rename from www/static/img/2016_Edward-Snowden_CC-BY-SA-4.0.jpg rename to conservancy/static/img/2016_Edward-Snowden_CC-BY-SA-4.0.jpg diff --git a/www/static/img/2016_OutreachyBoothAtTapia.JPG b/conservancy/static/img/2016_OutreachyBoothAtTapia.JPG similarity index 100% rename from www/static/img/2016_OutreachyBoothAtTapia.JPG rename to conservancy/static/img/2016_OutreachyBoothAtTapia.JPG diff --git a/www/static/img/2017-01_LCA-Outreachy-donations.png b/conservancy/static/img/2017-01_LCA-Outreachy-donations.png similarity index 100% rename from www/static/img/2017-01_LCA-Outreachy-donations.png rename to conservancy/static/img/2017-01_LCA-Outreachy-donations.png diff --git a/www/static/img/2017-02-fosdem-bradley-keynote.jpg b/conservancy/static/img/2017-02-fosdem-bradley-keynote.jpg similarity index 100% rename from www/static/img/2017-02-fosdem-bradley-keynote.jpg rename to conservancy/static/img/2017-02-fosdem-bradley-keynote.jpg diff --git a/www/static/img/2017-02-fosdem-kid-plays-at-godot-booth.jpg b/conservancy/static/img/2017-02-fosdem-kid-plays-at-godot-booth.jpg similarity index 100% rename from www/static/img/2017-02-fosdem-kid-plays-at-godot-booth.jpg rename to conservancy/static/img/2017-02-fosdem-kid-plays-at-godot-booth.jpg diff --git a/www/static/img/2017-02-fosdem-stand-karen-mike.jpg b/conservancy/static/img/2017-02-fosdem-stand-karen-mike.jpg similarity index 100% rename from www/static/img/2017-02-fosdem-stand-karen-mike.jpg rename to conservancy/static/img/2017-02-fosdem-stand-karen-mike.jpg diff --git a/www/static/img/2017-04_karen_defibrillator-interrogation.jpg b/conservancy/static/img/2017-04_karen_defibrillator-interrogation.jpg similarity index 100% rename from www/static/img/2017-04_karen_defibrillator-interrogation.jpg rename to conservancy/static/img/2017-04_karen_defibrillator-interrogation.jpg diff --git a/www/static/img/2017-04_karen_nurse-calling-manufacturers.jpg b/conservancy/static/img/2017-04_karen_nurse-calling-manufacturers.jpg similarity index 100% rename from www/static/img/2017-04_karen_nurse-calling-manufacturers.jpg rename to conservancy/static/img/2017-04_karen_nurse-calling-manufacturers.jpg diff --git a/www/static/img/2017-06_tony_OSCon-award.jpg b/conservancy/static/img/2017-06_tony_OSCon-award.jpg similarity index 100% rename from www/static/img/2017-06_tony_OSCon-award.jpg rename to conservancy/static/img/2017-06_tony_OSCon-award.jpg diff --git a/www/static/img/2017-09_froscon-signs.jpg b/conservancy/static/img/2017-09_froscon-signs.jpg similarity index 100% rename from www/static/img/2017-09_froscon-signs.jpg rename to conservancy/static/img/2017-09_froscon-signs.jpg diff --git a/www/static/img/2017-09_karen-speaking-guadec.jpg b/conservancy/static/img/2017-09_karen-speaking-guadec.jpg similarity index 100% rename from www/static/img/2017-09_karen-speaking-guadec.jpg rename to conservancy/static/img/2017-09_karen-speaking-guadec.jpg diff --git a/www/static/img/2017-09_outreachy-alums-debconf.jpg b/conservancy/static/img/2017-09_outreachy-alums-debconf.jpg similarity index 100% rename from www/static/img/2017-09_outreachy-alums-debconf.jpg rename to conservancy/static/img/2017-09_outreachy-alums-debconf.jpg diff --git a/www/static/img/2017-11_blog_currency.jpg b/conservancy/static/img/2017-11_blog_currency.jpg similarity index 100% rename from www/static/img/2017-11_blog_currency.jpg rename to conservancy/static/img/2017-11_blog_currency.jpg diff --git a/www/static/img/2017-12_blog_ChrisNeugebauer_poster.png b/conservancy/static/img/2017-12_blog_ChrisNeugebauer_poster.png similarity index 100% rename from www/static/img/2017-12_blog_ChrisNeugebauer_poster.png rename to conservancy/static/img/2017-12_blog_ChrisNeugebauer_poster.png diff --git a/www/static/img/2017-12_blog_Judy-Gichoya_poster.png b/conservancy/static/img/2017-12_blog_Judy-Gichoya_poster.png similarity index 100% rename from www/static/img/2017-12_blog_Judy-Gichoya_poster.png rename to conservancy/static/img/2017-12_blog_Judy-Gichoya_poster.png diff --git a/www/static/img/2017-12_blog_group-support-thumbnail.png b/conservancy/static/img/2017-12_blog_group-support-thumbnail.png similarity index 100% rename from www/static/img/2017-12_blog_group-support-thumbnail.png rename to conservancy/static/img/2017-12_blog_group-support-thumbnail.png diff --git a/www/static/img/2017-12_blog_gsoc-member-projects.jpg b/conservancy/static/img/2017-12_blog_gsoc-member-projects.jpg similarity index 100% rename from www/static/img/2017-12_blog_gsoc-member-projects.jpg rename to conservancy/static/img/2017-12_blog_gsoc-member-projects.jpg diff --git a/www/static/img/2017-CWL-intro-poster.png b/conservancy/static/img/2017-CWL-intro-poster.png similarity index 100% rename from www/static/img/2017-CWL-intro-poster.png rename to conservancy/static/img/2017-CWL-intro-poster.png diff --git a/www/static/img/2017-JeremiahFoster_thumbnail.png b/conservancy/static/img/2017-JeremiahFoster_thumbnail.png similarity index 100% rename from www/static/img/2017-JeremiahFoster_thumbnail.png rename to conservancy/static/img/2017-JeremiahFoster_thumbnail.png diff --git a/www/static/img/2017_GNUToolsCauldron_courtesy_of_mjw.jpg b/conservancy/static/img/2017_GNUToolsCauldron_courtesy_of_mjw.jpg similarity index 100% rename from www/static/img/2017_GNUToolsCauldron_courtesy_of_mjw.jpg rename to conservancy/static/img/2017_GNUToolsCauldron_courtesy_of_mjw.jpg diff --git a/www/static/img/2018-03_blog_Sandler-at-LibrePlanet.jpg b/conservancy/static/img/2018-03_blog_Sandler-at-LibrePlanet.jpg similarity index 100% rename from www/static/img/2018-03_blog_Sandler-at-LibrePlanet.jpg rename to conservancy/static/img/2018-03_blog_Sandler-at-LibrePlanet.jpg diff --git a/www/static/img/2018-11_Molly-de-Blanc-match-announcement-poster.png b/conservancy/static/img/2018-11_Molly-de-Blanc-match-announcement-poster.png similarity index 100% rename from www/static/img/2018-11_Molly-de-Blanc-match-announcement-poster.png rename to conservancy/static/img/2018-11_Molly-de-Blanc-match-announcement-poster.png diff --git a/www/static/img/2018-MollyandKarenatDebConf.jpg b/conservancy/static/img/2018-MollyandKarenatDebConf.jpg similarity index 100% rename from www/static/img/2018-MollyandKarenatDebConf.jpg rename to conservancy/static/img/2018-MollyandKarenatDebConf.jpg diff --git a/www/static/img/2018-MollyandKarenatDebConf_cropped.png b/conservancy/static/img/2018-MollyandKarenatDebConf_cropped.png similarity index 100% rename from www/static/img/2018-MollyandKarenatDebConf_cropped.png rename to conservancy/static/img/2018-MollyandKarenatDebConf_cropped.png diff --git a/www/static/img/2018_ConservancyCatsCC.BY.SA_byVMB.jpeg b/conservancy/static/img/2018_ConservancyCatsCC.BY.SA_byVMB.jpeg similarity index 100% rename from www/static/img/2018_ConservancyCatsCC.BY.SA_byVMB.jpeg rename to conservancy/static/img/2018_ConservancyCatsCC.BY.SA_byVMB.jpeg diff --git a/www/static/img/2018_Deb-Nicholson_LibrePlanet-keynote-poster.png b/conservancy/static/img/2018_Deb-Nicholson_LibrePlanet-keynote-poster.png similarity index 100% rename from www/static/img/2018_Deb-Nicholson_LibrePlanet-keynote-poster.png rename to conservancy/static/img/2018_Deb-Nicholson_LibrePlanet-keynote-poster.png diff --git a/www/static/img/2018_Deb-Nicholson_LibrePlenet-keynote-poster-2.png b/conservancy/static/img/2018_Deb-Nicholson_LibrePlenet-keynote-poster-2.png similarity index 100% rename from www/static/img/2018_Deb-Nicholson_LibrePlenet-keynote-poster-2.png rename to conservancy/static/img/2018_Deb-Nicholson_LibrePlenet-keynote-poster-2.png diff --git a/www/static/img/2018_Deb-Nicholson_headshot.jpg b/conservancy/static/img/2018_Deb-Nicholson_headshot.jpg similarity index 100% rename from www/static/img/2018_Deb-Nicholson_headshot.jpg rename to conservancy/static/img/2018_Deb-Nicholson_headshot.jpg diff --git a/www/static/img/2018_ElanaHashman_ARR_CourtesyofElana.jpg b/conservancy/static/img/2018_ElanaHashman_ARR_CourtesyofElana.jpg similarity index 100% rename from www/static/img/2018_ElanaHashman_ARR_CourtesyofElana.jpg rename to conservancy/static/img/2018_ElanaHashman_ARR_CourtesyofElana.jpg diff --git a/www/static/img/2018_ElanaHashman_ARR_CourtesyofElana_2.jpg b/conservancy/static/img/2018_ElanaHashman_ARR_CourtesyofElana_2.jpg similarity index 100% rename from www/static/img/2018_ElanaHashman_ARR_CourtesyofElana_2.jpg rename to conservancy/static/img/2018_ElanaHashman_ARR_CourtesyofElana_2.jpg diff --git a/www/static/img/2018_GSOC-byJoshSimmons_high.JPG b/conservancy/static/img/2018_GSOC-byJoshSimmons_high.JPG similarity index 100% rename from www/static/img/2018_GSOC-byJoshSimmons_high.JPG rename to conservancy/static/img/2018_GSOC-byJoshSimmons_high.JPG diff --git a/www/static/img/2018_KeithandCat.jpg b/conservancy/static/img/2018_KeithandCat.jpg similarity index 100% rename from www/static/img/2018_KeithandCat.jpg rename to conservancy/static/img/2018_KeithandCat.jpg diff --git a/www/static/img/2018_MattNotWiki_CC.BY.SA_by_tef_on_Wikipedia.jpeg b/conservancy/static/img/2018_MattNotWiki_CC.BY.SA_by_tef_on_Wikipedia.jpeg similarity index 100% rename from www/static/img/2018_MattNotWiki_CC.BY.SA_by_tef_on_Wikipedia.jpeg rename to conservancy/static/img/2018_MattNotWiki_CC.BY.SA_by_tef_on_Wikipedia.jpeg diff --git a/www/static/img/2018_MicroBlocks1.JPG b/conservancy/static/img/2018_MicroBlocks1.JPG similarity index 100% rename from www/static/img/2018_MicroBlocks1.JPG rename to conservancy/static/img/2018_MicroBlocks1.JPG diff --git a/www/static/img/2018_MicroBlocks2.JPG b/conservancy/static/img/2018_MicroBlocks2.JPG similarity index 100% rename from www/static/img/2018_MicroBlocks2.JPG rename to conservancy/static/img/2018_MicroBlocks2.JPG diff --git a/www/static/img/2018_Microblocks3.jpeg b/conservancy/static/img/2018_Microblocks3.jpeg similarity index 100% rename from www/static/img/2018_Microblocks3.jpeg rename to conservancy/static/img/2018_Microblocks3.jpeg diff --git a/www/static/img/2018_MollyandBash.jpg b/conservancy/static/img/2018_MollyandBash.jpg similarity index 100% rename from www/static/img/2018_MollyandBash.jpg rename to conservancy/static/img/2018_MollyandBash.jpg diff --git a/www/static/img/2018_Sageanddaughter.jpg b/conservancy/static/img/2018_Sageanddaughter.jpg similarity index 100% rename from www/static/img/2018_Sageanddaughter.jpg rename to conservancy/static/img/2018_Sageanddaughter.jpg diff --git a/www/static/img/2019-02_FOSDEM_keynote-poster.png b/conservancy/static/img/2019-02_FOSDEM_keynote-poster.png similarity index 100% rename from www/static/img/2019-02_FOSDEM_keynote-poster.png rename to conservancy/static/img/2019-02_FOSDEM_keynote-poster.png diff --git a/www/static/img/2019-04_Nicholson-Deb_LibrePlanet.png b/conservancy/static/img/2019-04_Nicholson-Deb_LibrePlanet.png similarity index 100% rename from www/static/img/2019-04_Nicholson-Deb_LibrePlanet.png rename to conservancy/static/img/2019-04_Nicholson-Deb_LibrePlanet.png diff --git a/www/static/img/2019-08-26_GUADECSupporterNightOne.jpg b/conservancy/static/img/2019-08-26_GUADECSupporterNightOne.jpg similarity index 100% rename from www/static/img/2019-08-26_GUADECSupporterNightOne.jpg rename to conservancy/static/img/2019-08-26_GUADECSupporterNightOne.jpg diff --git a/www/static/img/2019-08-26_GUADECSupporterNightThree.jpg b/conservancy/static/img/2019-08-26_GUADECSupporterNightThree.jpg similarity index 100% rename from www/static/img/2019-08-26_GUADECSupporterNightThree.jpg rename to conservancy/static/img/2019-08-26_GUADECSupporterNightThree.jpg diff --git a/www/static/img/2019-08-26_GUADECSupporterNightTwo.jpg b/conservancy/static/img/2019-08-26_GUADECSupporterNightTwo.jpg similarity index 100% rename from www/static/img/2019-08-26_GUADECSupporterNightTwo.jpg rename to conservancy/static/img/2019-08-26_GUADECSupporterNightTwo.jpg diff --git a/www/static/img/2019-08-26_Neil-alone_GUADECSupporterNight.jpg b/conservancy/static/img/2019-08-26_Neil-alone_GUADECSupporterNight.jpg similarity index 100% rename from www/static/img/2019-08-26_Neil-alone_GUADECSupporterNight.jpg rename to conservancy/static/img/2019-08-26_Neil-alone_GUADECSupporterNight.jpg diff --git a/www/static/img/2019-08-KarenatAbstractionsCC.BY_SarahWithee.jpeg b/conservancy/static/img/2019-08-KarenatAbstractionsCC.BY_SarahWithee.jpeg similarity index 100% rename from www/static/img/2019-08-KarenatAbstractionsCC.BY_SarahWithee.jpeg rename to conservancy/static/img/2019-08-KarenatAbstractionsCC.BY_SarahWithee.jpeg diff --git a/www/static/img/2019-08_KarenAbstractions_CC.BY Zach Harris.jpeg b/conservancy/static/img/2019-08_KarenAbstractions_CC.BY Zach Harris.jpeg similarity index 100% rename from www/static/img/2019-08_KarenAbstractions_CC.BY Zach Harris.jpeg rename to conservancy/static/img/2019-08_KarenAbstractions_CC.BY Zach Harris.jpeg diff --git a/www/static/img/2019-10-24_BowieExplained.png b/conservancy/static/img/2019-10-24_BowieExplained.png similarity index 100% rename from www/static/img/2019-10-24_BowieExplained.png rename to conservancy/static/img/2019-10-24_BowieExplained.png diff --git a/www/static/img/2019-10-24_KarenExplained.png b/conservancy/static/img/2019-10-24_KarenExplained.png similarity index 100% rename from www/static/img/2019-10-24_KarenExplained.png rename to conservancy/static/img/2019-10-24_KarenExplained.png diff --git a/www/static/img/2019-12-12_TheBestCats_CC.BY_byDanielleSucher.jpeg b/conservancy/static/img/2019-12-12_TheBestCats_CC.BY_byDanielleSucher.jpeg similarity index 100% rename from www/static/img/2019-12-12_TheBestCats_CC.BY_byDanielleSucher.jpeg rename to conservancy/static/img/2019-12-12_TheBestCats_CC.BY_byDanielleSucher.jpeg diff --git a/www/static/img/2019.09_CC.BY.SA_BradleyKuhn_atKernelRecipes_byPatrickBoettcher.jpg b/conservancy/static/img/2019.09_CC.BY.SA_BradleyKuhn_atKernelRecipes_byPatrickBoettcher.jpg similarity index 100% rename from www/static/img/2019.09_CC.BY.SA_BradleyKuhn_atKernelRecipes_byPatrickBoettcher.jpg rename to conservancy/static/img/2019.09_CC.BY.SA_BradleyKuhn_atKernelRecipes_byPatrickBoettcher.jpg diff --git a/www/static/img/20190204_CopyleftConfFromDeb.jpg b/conservancy/static/img/20190204_CopyleftConfFromDeb.jpg similarity index 100% rename from www/static/img/20190204_CopyleftConfFromDeb.jpg rename to conservancy/static/img/20190204_CopyleftConfFromDeb.jpg diff --git a/www/static/img/20191116_FaifcastLiveAtSeaGL1.jpg b/conservancy/static/img/20191116_FaifcastLiveAtSeaGL1.jpg similarity index 100% rename from www/static/img/20191116_FaifcastLiveAtSeaGL1.jpg rename to conservancy/static/img/20191116_FaifcastLiveAtSeaGL1.jpg diff --git a/www/static/img/20191116_FaifcastLiveAtSeaGL2.jpg b/conservancy/static/img/20191116_FaifcastLiveAtSeaGL2.jpg similarity index 100% rename from www/static/img/20191116_FaifcastLiveAtSeaGL2.jpg rename to conservancy/static/img/20191116_FaifcastLiveAtSeaGL2.jpg diff --git a/www/static/img/20191116_FaifcastLiveAtSeaGL3.jpg b/conservancy/static/img/20191116_FaifcastLiveAtSeaGL3.jpg similarity index 100% rename from www/static/img/20191116_FaifcastLiveAtSeaGL3.jpg rename to conservancy/static/img/20191116_FaifcastLiveAtSeaGL3.jpg diff --git a/www/static/img/2019_CC.0_WineConf2019-Group-1_by_Francois_Gouget.jpg b/conservancy/static/img/2019_CC.0_WineConf2019-Group-1_by_Francois_Gouget.jpg similarity index 100% rename from www/static/img/2019_CC.0_WineConf2019-Group-1_by_Francois_Gouget.jpg rename to conservancy/static/img/2019_CC.0_WineConf2019-Group-1_by_Francois_Gouget.jpg diff --git a/www/static/img/2019_CopyleftConfByLeslieHawthorn.jpeg b/conservancy/static/img/2019_CopyleftConfByLeslieHawthorn.jpeg similarity index 100% rename from www/static/img/2019_CopyleftConfByLeslieHawthorn.jpeg rename to conservancy/static/img/2019_CopyleftConfByLeslieHawthorn.jpeg diff --git a/www/static/img/2019_CopyleftConfByLeslieHawthorn_cropped.png b/conservancy/static/img/2019_CopyleftConfByLeslieHawthorn_cropped.png similarity index 100% rename from www/static/img/2019_CopyleftConfByLeslieHawthorn_cropped.png rename to conservancy/static/img/2019_CopyleftConfByLeslieHawthorn_cropped.png diff --git a/www/static/img/2019_FSFAwardPhotoofDebNicholson_CC.BY_by_AdamMonsen.jpg b/conservancy/static/img/2019_FSFAwardPhotoofDebNicholson_CC.BY_by_AdamMonsen.jpg similarity index 100% rename from www/static/img/2019_FSFAwardPhotoofDebNicholson_CC.BY_by_AdamMonsen.jpg rename to conservancy/static/img/2019_FSFAwardPhotoofDebNicholson_CC.BY_by_AdamMonsen.jpg diff --git a/www/static/img/2019_RB_group.gif b/conservancy/static/img/2019_RB_group.gif similarity index 100% rename from www/static/img/2019_RB_group.gif rename to conservancy/static/img/2019_RB_group.gif diff --git a/www/static/img/2020-01-17_bkuhn_lca-2020.png b/conservancy/static/img/2020-01-17_bkuhn_lca-2020.png similarity index 100% rename from www/static/img/2020-01-17_bkuhn_lca-2020.png rename to conservancy/static/img/2020-01-17_bkuhn_lca-2020.png diff --git a/www/static/img/2020-04_Deb-Nicholson_CHAOSScon-poster.png b/conservancy/static/img/2020-04_Deb-Nicholson_CHAOSScon-poster.png similarity index 100% rename from www/static/img/2020-04_Deb-Nicholson_CHAOSScon-poster.png rename to conservancy/static/img/2020-04_Deb-Nicholson_CHAOSScon-poster.png diff --git a/www/static/img/2020-07_MicroBlocks1.png b/conservancy/static/img/2020-07_MicroBlocks1.png similarity index 100% rename from www/static/img/2020-07_MicroBlocks1.png rename to conservancy/static/img/2020-07_MicroBlocks1.png diff --git a/www/static/img/2020-07_MicroBlocks2.png b/conservancy/static/img/2020-07_MicroBlocks2.png similarity index 100% rename from www/static/img/2020-07_MicroBlocks2.png rename to conservancy/static/img/2020-07_MicroBlocks2.png diff --git a/www/static/img/2020-12-04_lots-vintage-shirts.jpg b/conservancy/static/img/2020-12-04_lots-vintage-shirts.jpg similarity index 100% rename from www/static/img/2020-12-04_lots-vintage-shirts.jpg rename to conservancy/static/img/2020-12-04_lots-vintage-shirts.jpg diff --git a/www/static/img/2020.02.03_CC.BY.SA_SecondAnnualCopyleftConf_byDebNicholson.jpg b/conservancy/static/img/2020.02.03_CC.BY.SA_SecondAnnualCopyleftConf_byDebNicholson.jpg similarity index 100% rename from www/static/img/2020.02.03_CC.BY.SA_SecondAnnualCopyleftConf_byDebNicholson.jpg rename to conservancy/static/img/2020.02.03_CC.BY.SA_SecondAnnualCopyleftConf_byDebNicholson.jpg diff --git a/www/static/img/2020.02.03_Copyleft.CC.BY.SA_byDebNicholson.png b/conservancy/static/img/2020.02.03_Copyleft.CC.BY.SA_byDebNicholson.png similarity index 100% rename from www/static/img/2020.02.03_Copyleft.CC.BY.SA_byDebNicholson.png rename to conservancy/static/img/2020.02.03_Copyleft.CC.BY.SA_byDebNicholson.png diff --git a/www/static/img/20200131_AISession_CC.BY.SA_byPeterWolanin.jpg b/conservancy/static/img/20200131_AISession_CC.BY.SA_byPeterWolanin.jpg similarity index 100% rename from www/static/img/20200131_AISession_CC.BY.SA_byPeterWolanin.jpg rename to conservancy/static/img/20200131_AISession_CC.BY.SA_byPeterWolanin.jpg diff --git a/www/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.jpg.jpg b/conservancy/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.jpg.jpg similarity index 100% rename from www/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.jpg.jpg rename to conservancy/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.jpg.jpg diff --git a/www/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.xcf b/conservancy/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.xcf similarity index 100% rename from www/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.xcf rename to conservancy/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin.xcf diff --git a/www/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin_cropped.png b/conservancy/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin_cropped.png similarity index 100% rename from www/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin_cropped.png rename to conservancy/static/img/20200131_AfterParty_CC.BY.SA_byPeterWolanin_cropped.png diff --git a/www/static/img/2020_Allison_Randal_CC.BY.SA_byEvanCarroll.jpg b/conservancy/static/img/2020_Allison_Randal_CC.BY.SA_byEvanCarroll.jpg similarity index 100% rename from www/static/img/2020_Allison_Randal_CC.BY.SA_byEvanCarroll.jpg rename to conservancy/static/img/2020_Allison_Randal_CC.BY.SA_byEvanCarroll.jpg diff --git a/www/static/img/2020_JeremyAllison.jpg b/conservancy/static/img/2020_JeremyAllison.jpg similarity index 100% rename from www/static/img/2020_JeremyAllison.jpg rename to conservancy/static/img/2020_JeremyAllison.jpg diff --git a/www/static/img/2020_Leslie-Hawthorn.jpg b/conservancy/static/img/2020_Leslie-Hawthorn.jpg similarity index 100% rename from www/static/img/2020_Leslie-Hawthorn.jpg rename to conservancy/static/img/2020_Leslie-Hawthorn.jpg diff --git a/www/static/img/2020_Sebro-Tony_CopyleftConf.jpg b/conservancy/static/img/2020_Sebro-Tony_CopyleftConf.jpg similarity index 100% rename from www/static/img/2020_Sebro-Tony_CopyleftConf.jpg rename to conservancy/static/img/2020_Sebro-Tony_CopyleftConf.jpg diff --git a/www/static/img/2020_Sebro_Tony.jpg b/conservancy/static/img/2020_Sebro_Tony.jpg similarity index 100% rename from www/static/img/2020_Sebro_Tony.jpg rename to conservancy/static/img/2020_Sebro_Tony.jpg diff --git a/www/static/img/2020_Sharp_headshot.jpg b/conservancy/static/img/2020_Sharp_headshot.jpg similarity index 100% rename from www/static/img/2020_Sharp_headshot.jpg rename to conservancy/static/img/2020_Sharp_headshot.jpg diff --git a/www/static/img/2020_WineBottle_CC.BY.SA_KarenSandler.png b/conservancy/static/img/2020_WineBottle_CC.BY.SA_KarenSandler.png similarity index 100% rename from www/static/img/2020_WineBottle_CC.BY.SA_KarenSandler.png rename to conservancy/static/img/2020_WineBottle_CC.BY.SA_KarenSandler.png diff --git a/www/static/img/2021-02-07_FOSDEM-Legal-Policy-DevRoom_organizers-panel.png b/conservancy/static/img/2021-02-07_FOSDEM-Legal-Policy-DevRoom_organizers-panel.png similarity index 100% rename from www/static/img/2021-02-07_FOSDEM-Legal-Policy-DevRoom_organizers-panel.png rename to conservancy/static/img/2021-02-07_FOSDEM-Legal-Policy-DevRoom_organizers-panel.png diff --git a/www/static/img/Backdrop-Logo-Vertical.png b/conservancy/static/img/Backdrop-Logo-Vertical.png similarity index 100% rename from www/static/img/Backdrop-Logo-Vertical.png rename to conservancy/static/img/Backdrop-Logo-Vertical.png diff --git a/www/static/img/BeerMatsfromLamby.jpeg b/conservancy/static/img/BeerMatsfromLamby.jpeg similarity index 100% rename from www/static/img/BeerMatsfromLamby.jpeg rename to conservancy/static/img/BeerMatsfromLamby.jpeg diff --git a/www/static/img/CC.BY.SA_Outreachy_at_Tapia_2016_Lidza_Louina.jpg b/conservancy/static/img/CC.BY.SA_Outreachy_at_Tapia_2016_Lidza_Louina.jpg similarity index 100% rename from www/static/img/CC.BY.SA_Outreachy_at_Tapia_2016_Lidza_Louina.jpg rename to conservancy/static/img/CC.BY.SA_Outreachy_at_Tapia_2016_Lidza_Louina.jpg diff --git a/www/static/img/DanielVetter_bw.jpg b/conservancy/static/img/DanielVetter_bw.jpg similarity index 100% rename from www/static/img/DanielVetter_bw.jpg rename to conservancy/static/img/DanielVetter_bw.jpg diff --git a/www/static/img/FariUse_Rainbow Logos from Reddit.png b/conservancy/static/img/FariUse_Rainbow Logos from Reddit.png similarity index 100% rename from www/static/img/FariUse_Rainbow Logos from Reddit.png rename to conservancy/static/img/FariUse_Rainbow Logos from Reddit.png diff --git a/www/static/img/GiveUpGitHub.png b/conservancy/static/img/GiveUpGitHub.png similarity index 100% rename from www/static/img/GiveUpGitHub.png rename to conservancy/static/img/GiveUpGitHub.png diff --git a/www/static/img/GiveUpGitHub.svg b/conservancy/static/img/GiveUpGitHub.svg similarity index 100% rename from www/static/img/GiveUpGitHub.svg rename to conservancy/static/img/GiveUpGitHub.svg diff --git a/www/static/img/QEMU.svg b/conservancy/static/img/QEMU.svg similarity index 100% rename from www/static/img/QEMU.svg rename to conservancy/static/img/QEMU.svg diff --git a/www/static/img/Sebro-headshot.jpg b/conservancy/static/img/Sebro-headshot.jpg similarity index 100% rename from www/static/img/Sebro-headshot.jpg rename to conservancy/static/img/Sebro-headshot.jpg diff --git a/www/static/img/ShraddhaBarkepicture.jpg b/conservancy/static/img/ShraddhaBarkepicture.jpg similarity index 100% rename from www/static/img/ShraddhaBarkepicture.jpg rename to conservancy/static/img/ShraddhaBarkepicture.jpg diff --git a/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 b/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 similarity index 100% rename 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 rename 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 diff --git a/www/static/img/Vaishali.jpg b/conservancy/static/img/Vaishali.jpg similarity index 100% rename from www/static/img/Vaishali.jpg rename to conservancy/static/img/Vaishali.jpg diff --git a/www/static/img/banners/2018-individual.jpg b/conservancy/static/img/banners/2018-individual.jpg similarity index 100% rename from www/static/img/banners/2018-individual.jpg rename to conservancy/static/img/banners/2018-individual.jpg diff --git a/www/static/img/banners/2018-project.jpg b/conservancy/static/img/banners/2018-project.jpg similarity index 100% rename from www/static/img/banners/2018-project.jpg rename to conservancy/static/img/banners/2018-project.jpg diff --git a/www/static/img/banners/2019-individuals-banner.png b/conservancy/static/img/banners/2019-individuals-banner.png similarity index 100% rename from www/static/img/banners/2019-individuals-banner.png rename to conservancy/static/img/banners/2019-individuals-banner.png diff --git a/www/static/img/banners/2019-member-projects-banner.png b/conservancy/static/img/banners/2019-member-projects-banner.png similarity index 100% rename from www/static/img/banners/2019-member-projects-banner.png rename to conservancy/static/img/banners/2019-member-projects-banner.png diff --git a/www/static/img/banners/2019_conservancy-card-terminal-snow.gif b/conservancy/static/img/banners/2019_conservancy-card-terminal-snow.gif similarity index 100% rename from www/static/img/banners/2019_conservancy-card-terminal-snow.gif rename to conservancy/static/img/banners/2019_conservancy-card-terminal-snow.gif diff --git a/www/static/img/brett-in-2018-shirt.jpg b/conservancy/static/img/brett-in-2018-shirt.jpg similarity index 100% rename from www/static/img/brett-in-2018-shirt.jpg rename to conservancy/static/img/brett-in-2018-shirt.jpg diff --git a/www/static/img/cc-by-sa_88x31.png b/conservancy/static/img/cc-by-sa_88x31.png similarity index 100% rename from www/static/img/cc-by-sa_88x31.png rename to conservancy/static/img/cc-by-sa_88x31.png diff --git a/www/static/img/conservancy-accounting-campaign-logo.png b/conservancy/static/img/conservancy-accounting-campaign-logo.png similarity index 100% rename from www/static/img/conservancy-accounting-campaign-logo.png rename to conservancy/static/img/conservancy-accounting-campaign-logo.png diff --git a/www/static/img/conservancy-header.svg b/conservancy/static/img/conservancy-header.svg similarity index 100% rename from www/static/img/conservancy-header.svg rename to conservancy/static/img/conservancy-header.svg diff --git a/www/static/img/conservancy-logo.png b/conservancy/static/img/conservancy-logo.png similarity index 100% rename from www/static/img/conservancy-logo.png rename to conservancy/static/img/conservancy-logo.png diff --git a/www/static/img/conservancy-logo.svg b/conservancy/static/img/conservancy-logo.svg similarity index 100% rename from www/static/img/conservancy-logo.svg rename to conservancy/static/img/conservancy-logo.svg diff --git a/www/static/img/conservancy-logo_package.zip b/conservancy/static/img/conservancy-logo_package.zip similarity index 100% rename from www/static/img/conservancy-logo_package.zip rename to conservancy/static/img/conservancy-logo_package.zip diff --git a/www/static/img/conservancy-staff-photo.jpg b/conservancy/static/img/conservancy-staff-photo.jpg similarity index 100% rename from www/static/img/conservancy-staff-photo.jpg rename to conservancy/static/img/conservancy-staff-photo.jpg diff --git a/www/static/img/conservancy-supporter-header.png b/conservancy/static/img/conservancy-supporter-header.png similarity index 100% rename from www/static/img/conservancy-supporter-header.png rename to conservancy/static/img/conservancy-supporter-header.png diff --git a/www/static/img/conservancy-supporter-heart-3x.png b/conservancy/static/img/conservancy-supporter-heart-3x.png similarity index 100% rename from www/static/img/conservancy-supporter-heart-3x.png rename to conservancy/static/img/conservancy-supporter-heart-3x.png diff --git a/www/static/img/conservancy-supporter-heart-supporter.svg b/conservancy/static/img/conservancy-supporter-heart-supporter.svg similarity index 100% rename from www/static/img/conservancy-supporter-heart-supporter.svg rename to conservancy/static/img/conservancy-supporter-heart-supporter.svg diff --git a/www/static/img/conservancy-supporter-heart.png b/conservancy/static/img/conservancy-supporter-heart.png similarity index 100% rename from www/static/img/conservancy-supporter-heart.png rename to conservancy/static/img/conservancy-supporter-heart.png diff --git a/www/static/img/conservancy-supporter-heart.svg b/conservancy/static/img/conservancy-supporter-heart.svg similarity index 100% rename from www/static/img/conservancy-supporter-heart.svg rename to conservancy/static/img/conservancy-supporter-heart.svg diff --git a/www/static/img/conservancy-t-shirt.jpg b/conservancy/static/img/conservancy-t-shirt.jpg similarity index 100% rename from www/static/img/conservancy-t-shirt.jpg rename to conservancy/static/img/conservancy-t-shirt.jpg diff --git a/www/static/img/conservancy_64x64.png b/conservancy/static/img/conservancy_64x64.png similarity index 100% rename from www/static/img/conservancy_64x64.png rename to conservancy/static/img/conservancy_64x64.png diff --git a/www/static/img/feed-icon-14x14.png b/conservancy/static/img/feed-icon-14x14.png similarity index 100% rename from www/static/img/feed-icon-14x14.png rename to conservancy/static/img/feed-icon-14x14.png diff --git a/www/static/img/font_awesome.svg b/conservancy/static/img/font_awesome.svg similarity index 100% rename from www/static/img/font_awesome.svg rename to conservancy/static/img/font_awesome.svg diff --git a/www/static/img/gpl-heart.png b/conservancy/static/img/gpl-heart.png similarity index 100% rename from www/static/img/gpl-heart.png rename to conservancy/static/img/gpl-heart.png diff --git a/www/static/img/headerbg.png b/conservancy/static/img/headerbg.png similarity index 100% rename from www/static/img/headerbg.png rename to conservancy/static/img/headerbg.png diff --git a/www/static/img/jondale.jpg b/conservancy/static/img/jondale.jpg similarity index 100% rename from www/static/img/jondale.jpg rename to conservancy/static/img/jondale.jpg diff --git a/www/static/img/laptop-stickers-bro-mug.jpg b/conservancy/static/img/laptop-stickers-bro-mug.jpg similarity index 100% rename from www/static/img/laptop-stickers-bro-mug.jpg rename to conservancy/static/img/laptop-stickers-bro-mug.jpg diff --git a/www/static/img/lawall.jpg b/conservancy/static/img/lawall.jpg similarity index 100% rename from www/static/img/lawall.jpg rename to conservancy/static/img/lawall.jpg diff --git a/www/static/img/member-project-logos.png b/conservancy/static/img/member-project-logos.png similarity index 100% rename from www/static/img/member-project-logos.png rename to conservancy/static/img/member-project-logos.png diff --git a/www/static/img/naomiwutweet.png b/conservancy/static/img/naomiwutweet.png similarity index 100% rename from www/static/img/naomiwutweet.png rename to conservancy/static/img/naomiwutweet.png diff --git a/www/static/img/people/Christoph-Hellwig_2015.jpg b/conservancy/static/img/people/Christoph-Hellwig_2015.jpg similarity index 100% rename from www/static/img/people/Christoph-Hellwig_2015.jpg rename to conservancy/static/img/people/Christoph-Hellwig_2015.jpg diff --git a/www/static/img/people/bdale-headshot-smaller.jpg b/conservancy/static/img/people/bdale-headshot-smaller.jpg similarity index 100% rename from www/static/img/people/bdale-headshot-smaller.jpg rename to conservancy/static/img/people/bdale-headshot-smaller.jpg diff --git a/www/static/img/people/bdale-headshot.jpg b/conservancy/static/img/people/bdale-headshot.jpg similarity index 100% rename from www/static/img/people/bdale-headshot.jpg rename to conservancy/static/img/people/bdale-headshot.jpg diff --git a/www/static/img/pono.jpg b/conservancy/static/img/pono.jpg similarity index 100% rename from www/static/img/pono.jpg rename to conservancy/static/img/pono.jpg diff --git a/www/static/img/projects/2018-10_Reproducible-Builds.svg b/conservancy/static/img/projects/2018-10_Reproducible-Builds.svg similarity index 100% rename from www/static/img/projects/2018-10_Reproducible-Builds.svg rename to conservancy/static/img/projects/2018-10_Reproducible-Builds.svg diff --git a/www/static/img/projects/CWL-Logo-nofonts.svg b/conservancy/static/img/projects/CWL-Logo-nofonts.svg similarity index 100% rename from www/static/img/projects/CWL-Logo-nofonts.svg rename to conservancy/static/img/projects/CWL-Logo-nofonts.svg diff --git a/www/static/img/projects/argouml.jpg b/conservancy/static/img/projects/argouml.jpg similarity index 100% rename from www/static/img/projects/argouml.jpg rename to conservancy/static/img/projects/argouml.jpg diff --git a/www/static/img/projects/bongo.png b/conservancy/static/img/projects/bongo.png similarity index 100% rename from www/static/img/projects/bongo.png rename to conservancy/static/img/projects/bongo.png diff --git a/www/static/img/projects/boost.png b/conservancy/static/img/projects/boost.png similarity index 100% rename from www/static/img/projects/boost.png rename to conservancy/static/img/projects/boost.png diff --git a/www/static/img/projects/bro.png b/conservancy/static/img/projects/bro.png similarity index 100% rename from www/static/img/projects/bro.png rename to conservancy/static/img/projects/bro.png diff --git a/www/static/img/projects/buildbot.png b/conservancy/static/img/projects/buildbot.png similarity index 100% rename from www/static/img/projects/buildbot.png rename to conservancy/static/img/projects/buildbot.png diff --git a/www/static/img/projects/busybox.png b/conservancy/static/img/projects/busybox.png similarity index 100% rename from www/static/img/projects/busybox.png rename to conservancy/static/img/projects/busybox.png diff --git a/www/static/img/projects/clojars.png b/conservancy/static/img/projects/clojars.png similarity index 100% rename from www/static/img/projects/clojars.png rename to conservancy/static/img/projects/clojars.png diff --git a/www/static/img/projects/coreboot.svg b/conservancy/static/img/projects/coreboot.svg similarity index 100% rename from www/static/img/projects/coreboot.svg rename to conservancy/static/img/projects/coreboot.svg diff --git a/www/static/img/projects/darcs.svg b/conservancy/static/img/projects/darcs.svg similarity index 100% rename from www/static/img/projects/darcs.svg rename to conservancy/static/img/projects/darcs.svg diff --git a/www/static/img/projects/etherpad.svg b/conservancy/static/img/projects/etherpad.svg similarity index 100% rename from www/static/img/projects/etherpad.svg rename to conservancy/static/img/projects/etherpad.svg diff --git a/www/static/img/projects/evergreen.svg b/conservancy/static/img/projects/evergreen.svg similarity index 100% rename from www/static/img/projects/evergreen.svg rename to conservancy/static/img/projects/evergreen.svg diff --git a/www/static/img/projects/freedv.png b/conservancy/static/img/projects/freedv.png similarity index 100% rename from www/static/img/projects/freedv.png rename to conservancy/static/img/projects/freedv.png diff --git a/www/static/img/projects/git.png b/conservancy/static/img/projects/git.png similarity index 100% rename from www/static/img/projects/git.png rename to conservancy/static/img/projects/git.png diff --git a/www/static/img/projects/godot/godot-logo.svg b/conservancy/static/img/projects/godot/godot-logo.svg similarity index 100% rename from www/static/img/projects/godot/godot-logo.svg rename to conservancy/static/img/projects/godot/godot-logo.svg diff --git a/www/static/img/projects/harvey.svg b/conservancy/static/img/projects/harvey.svg similarity index 100% rename from www/static/img/projects/harvey.svg rename to conservancy/static/img/projects/harvey.svg diff --git a/www/static/img/projects/homebrew.svg b/conservancy/static/img/projects/homebrew.svg similarity index 100% rename from www/static/img/projects/homebrew.svg rename to conservancy/static/img/projects/homebrew.svg diff --git a/www/static/img/projects/inkscape.svg b/conservancy/static/img/projects/inkscape.svg similarity index 100% rename from www/static/img/projects/inkscape.svg rename to conservancy/static/img/projects/inkscape.svg diff --git a/www/static/img/projects/k3d.png b/conservancy/static/img/projects/k3d.png similarity index 100% rename from www/static/img/projects/k3d.png rename to conservancy/static/img/projects/k3d.png diff --git a/www/static/img/projects/kallithea.svg b/conservancy/static/img/projects/kallithea.svg similarity index 100% rename from www/static/img/projects/kallithea.svg rename to conservancy/static/img/projects/kallithea.svg diff --git a/www/static/img/projects/librehealth.png b/conservancy/static/img/projects/librehealth.png similarity index 100% rename from www/static/img/projects/librehealth.png rename to conservancy/static/img/projects/librehealth.png diff --git a/www/static/img/projects/luxrender.png b/conservancy/static/img/projects/luxrender.png similarity index 100% rename from www/static/img/projects/luxrender.png rename to conservancy/static/img/projects/luxrender.png diff --git a/www/static/img/projects/mercurial.svg b/conservancy/static/img/projects/mercurial.svg similarity index 100% rename from www/static/img/projects/mercurial.svg rename to conservancy/static/img/projects/mercurial.svg diff --git a/www/static/img/projects/metalink.svg b/conservancy/static/img/projects/metalink.svg similarity index 100% rename from www/static/img/projects/metalink.svg rename to conservancy/static/img/projects/metalink.svg diff --git a/www/static/img/projects/microblocks.png b/conservancy/static/img/projects/microblocks.png similarity index 100% rename from www/static/img/projects/microblocks.png rename to conservancy/static/img/projects/microblocks.png diff --git a/www/static/img/projects/north-bay-python.png b/conservancy/static/img/projects/north-bay-python.png similarity index 100% rename from www/static/img/projects/north-bay-python.png rename to conservancy/static/img/projects/north-bay-python.png diff --git a/www/static/img/projects/opentripplanner.png b/conservancy/static/img/projects/opentripplanner.png similarity index 100% rename from www/static/img/projects/opentripplanner.png rename to conservancy/static/img/projects/opentripplanner.png diff --git a/www/static/img/projects/openwrt-2020.svg b/conservancy/static/img/projects/openwrt-2020.svg similarity index 100% rename from www/static/img/projects/openwrt-2020.svg rename to conservancy/static/img/projects/openwrt-2020.svg diff --git a/www/static/img/projects/openwrt.png b/conservancy/static/img/projects/openwrt.png similarity index 100% rename from www/static/img/projects/openwrt.png rename to conservancy/static/img/projects/openwrt.png diff --git a/www/static/img/projects/outreachy.png b/conservancy/static/img/projects/outreachy.png similarity index 100% rename from www/static/img/projects/outreachy.png rename to conservancy/static/img/projects/outreachy.png diff --git a/www/static/img/projects/outreachy/2016-05_team.jpg b/conservancy/static/img/projects/outreachy/2016-05_team.jpg similarity index 100% rename from www/static/img/projects/outreachy/2016-05_team.jpg rename to conservancy/static/img/projects/outreachy/2016-05_team.jpg diff --git a/www/static/img/projects/phpmyadmin.png b/conservancy/static/img/projects/phpmyadmin.png similarity index 100% rename from www/static/img/projects/phpmyadmin.png rename to conservancy/static/img/projects/phpmyadmin.png diff --git a/www/static/img/projects/pypy.svg b/conservancy/static/img/projects/pypy.svg similarity index 100% rename from www/static/img/projects/pypy.svg rename to conservancy/static/img/projects/pypy.svg diff --git a/www/static/img/projects/qemu.svg b/conservancy/static/img/projects/qemu.svg similarity index 100% rename from www/static/img/projects/qemu.svg rename to conservancy/static/img/projects/qemu.svg diff --git a/www/static/img/projects/racket.svg b/conservancy/static/img/projects/racket.svg similarity index 100% rename from www/static/img/projects/racket.svg rename to conservancy/static/img/projects/racket.svg diff --git a/www/static/img/projects/samba.png b/conservancy/static/img/projects/samba.png similarity index 100% rename from www/static/img/projects/samba.png rename to conservancy/static/img/projects/samba.png diff --git a/www/static/img/projects/selenium.png b/conservancy/static/img/projects/selenium.png similarity index 100% rename from www/static/img/projects/selenium.png rename to conservancy/static/img/projects/selenium.png diff --git a/www/static/img/projects/sourceware.svg b/conservancy/static/img/projects/sourceware.svg similarity index 100% rename from www/static/img/projects/sourceware.svg rename to conservancy/static/img/projects/sourceware.svg diff --git a/www/static/img/projects/spec-ops.png b/conservancy/static/img/projects/spec-ops.png similarity index 100% rename from www/static/img/projects/spec-ops.png rename to conservancy/static/img/projects/spec-ops.png diff --git a/www/static/img/projects/squeak.svg b/conservancy/static/img/projects/squeak.svg similarity index 100% rename from www/static/img/projects/squeak.svg rename to conservancy/static/img/projects/squeak.svg diff --git a/www/static/img/projects/sugar-labs.svg b/conservancy/static/img/projects/sugar-labs.svg similarity index 100% rename from www/static/img/projects/sugar-labs.svg rename to conservancy/static/img/projects/sugar-labs.svg diff --git a/www/static/img/projects/sugar/2015_Turtle-Art-Day.jpg b/conservancy/static/img/projects/sugar/2015_Turtle-Art-Day.jpg similarity index 100% rename from www/static/img/projects/sugar/2015_Turtle-Art-Day.jpg rename to conservancy/static/img/projects/sugar/2015_Turtle-Art-Day.jpg diff --git a/www/static/img/projects/surveyos.png b/conservancy/static/img/projects/surveyos.png similarity index 100% rename from www/static/img/projects/surveyos.png rename to conservancy/static/img/projects/surveyos.png diff --git a/www/static/img/projects/swig.jpg b/conservancy/static/img/projects/swig.jpg similarity index 100% rename from www/static/img/projects/swig.jpg rename to conservancy/static/img/projects/swig.jpg diff --git a/www/static/img/projects/teaching-open-source.png b/conservancy/static/img/projects/teaching-open-source.png similarity index 100% rename from www/static/img/projects/teaching-open-source.png rename to conservancy/static/img/projects/teaching-open-source.png diff --git a/www/static/img/projects/twisted.svg b/conservancy/static/img/projects/twisted.svg similarity index 100% rename from www/static/img/projects/twisted.svg rename to conservancy/static/img/projects/twisted.svg diff --git a/www/static/img/projects/wine.png b/conservancy/static/img/projects/wine.png similarity index 100% rename from www/static/img/projects/wine.png rename to conservancy/static/img/projects/wine.png diff --git a/www/static/img/projects/xapian.png b/conservancy/static/img/projects/xapian.png similarity index 100% rename from www/static/img/projects/xapian.png rename to conservancy/static/img/projects/xapian.png diff --git a/www/static/img/scaled-LLW-2015-Conservancy-Supporters-by-Carlo-Piana-CC-0.jpg b/conservancy/static/img/scaled-LLW-2015-Conservancy-Supporters-by-Carlo-Piana-CC-0.jpg similarity index 100% rename from www/static/img/scaled-LLW-2015-Conservancy-Supporters-by-Carlo-Piana-CC-0.jpg rename to conservancy/static/img/scaled-LLW-2015-Conservancy-Supporters-by-Carlo-Piana-CC-0.jpg diff --git a/www/static/img/sfc_holiday_card_2021.jpg b/conservancy/static/img/sfc_holiday_card_2021.jpg similarity index 100% rename from www/static/img/sfc_holiday_card_2021.jpg rename to conservancy/static/img/sfc_holiday_card_2021.jpg diff --git a/www/static/img/sfc_holiday_card_video_done_smaller.mp4 b/conservancy/static/img/sfc_holiday_card_video_done_smaller.mp4 similarity index 100% rename from www/static/img/sfc_holiday_card_video_done_smaller.mp4 rename to conservancy/static/img/sfc_holiday_card_video_done_smaller.mp4 diff --git a/www/static/img/sponsors/ardc.svg b/conservancy/static/img/sponsors/ardc.svg similarity index 100% rename from www/static/img/sponsors/ardc.svg rename to conservancy/static/img/sponsors/ardc.svg diff --git a/www/static/img/sponsors/arm.png b/conservancy/static/img/sponsors/arm.png similarity index 100% rename from www/static/img/sponsors/arm.png rename to conservancy/static/img/sponsors/arm.png diff --git a/www/static/img/sponsors/codeweavers.png b/conservancy/static/img/sponsors/codeweavers.png similarity index 100% rename from www/static/img/sponsors/codeweavers.png rename to conservancy/static/img/sponsors/codeweavers.png diff --git a/www/static/img/sponsors/fossa.png b/conservancy/static/img/sponsors/fossa.png similarity index 100% rename from www/static/img/sponsors/fossa.png rename to conservancy/static/img/sponsors/fossa.png diff --git a/www/static/img/sponsors/google.png b/conservancy/static/img/sponsors/google.png similarity index 100% rename from www/static/img/sponsors/google.png rename to conservancy/static/img/sponsors/google.png diff --git a/www/static/img/sponsors/ifixit.png b/conservancy/static/img/sponsors/ifixit.png similarity index 100% rename from www/static/img/sponsors/ifixit.png rename to conservancy/static/img/sponsors/ifixit.png diff --git a/www/static/img/sponsors/indeed.png b/conservancy/static/img/sponsors/indeed.png similarity index 100% rename from www/static/img/sponsors/indeed.png rename to conservancy/static/img/sponsors/indeed.png diff --git a/www/static/img/sponsors/intel.png b/conservancy/static/img/sponsors/intel.png similarity index 100% rename from www/static/img/sponsors/intel.png rename to conservancy/static/img/sponsors/intel.png diff --git a/www/static/img/sponsors/jmp.svg b/conservancy/static/img/sponsors/jmp.svg similarity index 100% rename from www/static/img/sponsors/jmp.svg rename to conservancy/static/img/sponsors/jmp.svg diff --git a/www/static/img/sponsors/lwn.png b/conservancy/static/img/sponsors/lwn.png similarity index 100% rename from www/static/img/sponsors/lwn.png rename to conservancy/static/img/sponsors/lwn.png diff --git a/www/static/img/sponsors/mozilla.png b/conservancy/static/img/sponsors/mozilla.png similarity index 100% rename from www/static/img/sponsors/mozilla.png rename to conservancy/static/img/sponsors/mozilla.png diff --git a/www/static/img/sponsors/sakai.png b/conservancy/static/img/sponsors/sakai.png similarity index 100% rename from www/static/img/sponsors/sakai.png rename to conservancy/static/img/sponsors/sakai.png diff --git a/www/static/img/sponsors/sentry.png b/conservancy/static/img/sponsors/sentry.png similarity index 100% rename from www/static/img/sponsors/sentry.png rename to conservancy/static/img/sponsors/sentry.png diff --git a/www/static/img/supporter-badge.png b/conservancy/static/img/supporter-badge.png similarity index 100% rename from www/static/img/supporter-badge.png rename to conservancy/static/img/supporter-badge.png diff --git a/www/static/img/supporter-card-1.svg b/conservancy/static/img/supporter-card-1.svg similarity index 100% rename from www/static/img/supporter-card-1.svg rename to conservancy/static/img/supporter-card-1.svg diff --git a/www/static/img/supporter-card-2.svg b/conservancy/static/img/supporter-card-2.svg similarity index 100% rename from www/static/img/supporter-card-2.svg rename to conservancy/static/img/supporter-card-2.svg diff --git a/www/static/img/supporter-night-button.png b/conservancy/static/img/supporter-night-button.png similarity index 100% rename from www/static/img/supporter-night-button.png rename to conservancy/static/img/supporter-night-button.png diff --git a/www/static/img/supporter-payment-button-annual.png b/conservancy/static/img/supporter-payment-button-annual.png similarity index 100% rename from www/static/img/supporter-payment-button-annual.png rename to conservancy/static/img/supporter-payment-button-annual.png diff --git a/www/static/img/supporter-payment-button-monthly.png b/conservancy/static/img/supporter-payment-button-monthly.png similarity index 100% rename from www/static/img/supporter-payment-button-monthly.png rename to conservancy/static/img/supporter-payment-button-monthly.png diff --git a/www/static/img/supporter-payment-button-renewal.png b/conservancy/static/img/supporter-payment-button-renewal.png similarity index 100% rename from www/static/img/supporter-payment-button-renewal.png rename to conservancy/static/img/supporter-payment-button-renewal.png diff --git a/www/static/img/sustainer.svg b/conservancy/static/img/sustainer.svg similarity index 100% rename from www/static/img/sustainer.svg rename to conservancy/static/img/sustainer.svg diff --git a/www/static/img/tshirt-2022.png b/conservancy/static/img/tshirt-2022.png similarity index 100% rename from www/static/img/tshirt-2022.png rename to conservancy/static/img/tshirt-2022.png diff --git a/www/static/js/conservancy.js b/conservancy/static/js/conservancy.js similarity index 100% rename from www/static/js/conservancy.js rename to conservancy/static/js/conservancy.js diff --git a/www/static/js/jquery-1.7.2.js b/conservancy/static/js/jquery-1.7.2.js similarity index 100% rename from www/static/js/jquery-1.7.2.js rename to conservancy/static/js/jquery-1.7.2.js diff --git a/www/static/js/supporter-page.js b/conservancy/static/js/supporter-page.js similarity index 100% rename from www/static/js/supporter-page.js rename to conservancy/static/js/supporter-page.js diff --git a/www/static/learn/index.html b/conservancy/static/learn/index.html similarity index 100% rename from www/static/learn/index.html rename to conservancy/static/learn/index.html diff --git a/www/static/npoacct/index.html b/conservancy/static/npoacct/index.html similarity index 100% rename from www/static/npoacct/index.html rename to conservancy/static/npoacct/index.html diff --git a/www/static/press/index.html b/conservancy/static/press/index.html similarity index 100% rename from www/static/press/index.html rename to conservancy/static/press/index.html diff --git a/www/static/press/inthenews.html b/conservancy/static/press/inthenews.html similarity index 100% rename from www/static/press/inthenews.html rename to conservancy/static/press/inthenews.html diff --git a/www/static/press/kit.html b/conservancy/static/press/kit.html similarity index 100% rename from www/static/press/kit.html rename to conservancy/static/press/kit.html diff --git a/www/static/press/qanda.html b/conservancy/static/press/qanda.html similarity index 100% rename from www/static/press/qanda.html rename to conservancy/static/press/qanda.html diff --git a/www/static/press/vizio-coverage.html b/conservancy/static/press/vizio-coverage.html similarity index 100% rename from www/static/press/vizio-coverage.html rename to conservancy/static/press/vizio-coverage.html diff --git a/www/static/privacy-policy/index.html b/conservancy/static/privacy-policy/index.html similarity index 100% rename from www/static/privacy-policy/index.html rename to conservancy/static/privacy-policy/index.html diff --git a/www/static/projects/apply/ConservancyFSATemplate.pdf b/conservancy/static/projects/apply/ConservancyFSATemplate.pdf similarity index 100% rename from www/static/projects/apply/ConservancyFSATemplate.pdf rename to conservancy/static/projects/apply/ConservancyFSATemplate.pdf diff --git a/www/static/projects/apply/conservancy-fsa-template.odt b/conservancy/static/projects/apply/conservancy-fsa-template.odt similarity index 100% rename from www/static/projects/apply/conservancy-fsa-template.odt rename to conservancy/static/projects/apply/conservancy-fsa-template.odt diff --git a/www/static/projects/apply/conservancy-fsa-template.tex b/conservancy/static/projects/apply/conservancy-fsa-template.tex similarity index 100% rename from www/static/projects/apply/conservancy-fsa-template.tex rename to conservancy/static/projects/apply/conservancy-fsa-template.tex diff --git a/www/static/projects/apply/index.html b/conservancy/static/projects/apply/index.html similarity index 100% rename from www/static/projects/apply/index.html rename to conservancy/static/projects/apply/index.html diff --git a/www/static/projects/current/index.html b/conservancy/static/projects/current/index.html similarity index 100% rename from www/static/projects/current/index.html rename to conservancy/static/projects/current/index.html diff --git a/www/static/projects/index.html b/conservancy/static/projects/index.html similarity index 100% rename from www/static/projects/index.html rename to conservancy/static/projects/index.html diff --git a/www/static/projects/policies/conflict-of-interest-policy.9ed5723d4fa0cd23ff52a8945bd8b82d0b80b590.html b/conservancy/static/projects/policies/conflict-of-interest-policy.9ed5723d4fa0cd23ff52a8945bd8b82d0b80b590.html similarity index 100% rename from www/static/projects/policies/conflict-of-interest-policy.9ed5723d4fa0cd23ff52a8945bd8b82d0b80b590.html rename to conservancy/static/projects/policies/conflict-of-interest-policy.9ed5723d4fa0cd23ff52a8945bd8b82d0b80b590.html diff --git a/www/static/projects/policies/conflict-of-interest-policy.d477e1b02e2093594db118aaa956da8c93129d58.html b/conservancy/static/projects/policies/conflict-of-interest-policy.d477e1b02e2093594db118aaa956da8c93129d58.html similarity index 100% rename from www/static/projects/policies/conflict-of-interest-policy.d477e1b02e2093594db118aaa956da8c93129d58.html rename to conservancy/static/projects/policies/conflict-of-interest-policy.d477e1b02e2093594db118aaa956da8c93129d58.html diff --git a/www/static/projects/policies/conflict-of-interest-policy.html b/conservancy/static/projects/policies/conflict-of-interest-policy.html similarity index 100% rename from www/static/projects/policies/conflict-of-interest-policy.html rename to conservancy/static/projects/policies/conflict-of-interest-policy.html diff --git a/www/static/projects/policies/conservancy-travel-policy.11ae065865d3a0b78bb5f2d894c5f955e49e4f0f.html b/conservancy/static/projects/policies/conservancy-travel-policy.11ae065865d3a0b78bb5f2d894c5f955e49e4f0f.html similarity index 100% rename from www/static/projects/policies/conservancy-travel-policy.11ae065865d3a0b78bb5f2d894c5f955e49e4f0f.html rename to conservancy/static/projects/policies/conservancy-travel-policy.11ae065865d3a0b78bb5f2d894c5f955e49e4f0f.html diff --git a/www/static/projects/policies/conservancy-travel-policy.3b1bc93469c1bb9ceb479f32c29fd7a8ee3521e3.html b/conservancy/static/projects/policies/conservancy-travel-policy.3b1bc93469c1bb9ceb479f32c29fd7a8ee3521e3.html similarity index 100% rename from www/static/projects/policies/conservancy-travel-policy.3b1bc93469c1bb9ceb479f32c29fd7a8ee3521e3.html rename to conservancy/static/projects/policies/conservancy-travel-policy.3b1bc93469c1bb9ceb479f32c29fd7a8ee3521e3.html diff --git a/www/static/projects/policies/conservancy-travel-policy.44cea2c1e51c72e115dcceeede92e755a1d41da6.html b/conservancy/static/projects/policies/conservancy-travel-policy.44cea2c1e51c72e115dcceeede92e755a1d41da6.html similarity index 100% rename from www/static/projects/policies/conservancy-travel-policy.44cea2c1e51c72e115dcceeede92e755a1d41da6.html rename to conservancy/static/projects/policies/conservancy-travel-policy.44cea2c1e51c72e115dcceeede92e755a1d41da6.html diff --git a/www/static/projects/policies/conservancy-travel-policy.4b21de38c2eab014dbfb776460c7600716bd6653.html b/conservancy/static/projects/policies/conservancy-travel-policy.4b21de38c2eab014dbfb776460c7600716bd6653.html similarity index 100% rename from www/static/projects/policies/conservancy-travel-policy.4b21de38c2eab014dbfb776460c7600716bd6653.html rename to conservancy/static/projects/policies/conservancy-travel-policy.4b21de38c2eab014dbfb776460c7600716bd6653.html diff --git a/www/static/projects/policies/conservancy-travel-policy.676ecf976cff8bf611cc045e6f351ce36f1009bb.html b/conservancy/static/projects/policies/conservancy-travel-policy.676ecf976cff8bf611cc045e6f351ce36f1009bb.html similarity index 100% rename from www/static/projects/policies/conservancy-travel-policy.676ecf976cff8bf611cc045e6f351ce36f1009bb.html rename to conservancy/static/projects/policies/conservancy-travel-policy.676ecf976cff8bf611cc045e6f351ce36f1009bb.html diff --git a/www/static/projects/policies/conservancy-travel-policy.783dcdd92fc61f3f150e1c65782c0fe527c8ff52.html b/conservancy/static/projects/policies/conservancy-travel-policy.783dcdd92fc61f3f150e1c65782c0fe527c8ff52.html similarity index 100% rename from www/static/projects/policies/conservancy-travel-policy.783dcdd92fc61f3f150e1c65782c0fe527c8ff52.html rename to conservancy/static/projects/policies/conservancy-travel-policy.783dcdd92fc61f3f150e1c65782c0fe527c8ff52.html diff --git a/www/static/projects/policies/conservancy-travel-policy.96a0a68c8e10ab4ea1f68faaf6573c141bbe7614.html b/conservancy/static/projects/policies/conservancy-travel-policy.96a0a68c8e10ab4ea1f68faaf6573c141bbe7614.html similarity index 100% rename from www/static/projects/policies/conservancy-travel-policy.96a0a68c8e10ab4ea1f68faaf6573c141bbe7614.html rename to conservancy/static/projects/policies/conservancy-travel-policy.96a0a68c8e10ab4ea1f68faaf6573c141bbe7614.html diff --git a/www/static/projects/policies/conservancy-travel-policy.9ef7fadc65c41438dd5dfeec3544bf80b53e4cea.html b/conservancy/static/projects/policies/conservancy-travel-policy.9ef7fadc65c41438dd5dfeec3544bf80b53e4cea.html similarity index 100% rename from www/static/projects/policies/conservancy-travel-policy.9ef7fadc65c41438dd5dfeec3544bf80b53e4cea.html rename to conservancy/static/projects/policies/conservancy-travel-policy.9ef7fadc65c41438dd5dfeec3544bf80b53e4cea.html diff --git a/www/static/projects/policies/conservancy-travel-policy.bfc2754decec9bf4b88c10accd4e44b33e4664e6.html b/conservancy/static/projects/policies/conservancy-travel-policy.bfc2754decec9bf4b88c10accd4e44b33e4664e6.html similarity index 100% rename from www/static/projects/policies/conservancy-travel-policy.bfc2754decec9bf4b88c10accd4e44b33e4664e6.html rename to conservancy/static/projects/policies/conservancy-travel-policy.bfc2754decec9bf4b88c10accd4e44b33e4664e6.html diff --git a/www/static/projects/policies/conservancy-travel-policy.d3640cc7e0181236b3b5a988328ab2ae82cd7c03.html b/conservancy/static/projects/policies/conservancy-travel-policy.d3640cc7e0181236b3b5a988328ab2ae82cd7c03.html similarity index 100% rename from www/static/projects/policies/conservancy-travel-policy.d3640cc7e0181236b3b5a988328ab2ae82cd7c03.html rename to conservancy/static/projects/policies/conservancy-travel-policy.d3640cc7e0181236b3b5a988328ab2ae82cd7c03.html diff --git a/www/static/projects/policies/conservancy-travel-policy.efb14f1e18273e4f164e3b3a689a086fd511ba26.html b/conservancy/static/projects/policies/conservancy-travel-policy.efb14f1e18273e4f164e3b3a689a086fd511ba26.html similarity index 100% rename from www/static/projects/policies/conservancy-travel-policy.efb14f1e18273e4f164e3b3a689a086fd511ba26.html rename to conservancy/static/projects/policies/conservancy-travel-policy.efb14f1e18273e4f164e3b3a689a086fd511ba26.html diff --git a/www/static/projects/policies/conservancy-travel-policy.html b/conservancy/static/projects/policies/conservancy-travel-policy.html similarity index 100% rename from www/static/projects/policies/conservancy-travel-policy.html rename to conservancy/static/projects/policies/conservancy-travel-policy.html diff --git a/www/static/projects/policies/index.html b/conservancy/static/projects/policies/index.html similarity index 100% rename from www/static/projects/policies/index.html rename to conservancy/static/projects/policies/index.html diff --git a/www/static/projects/policies/publish-policy.py b/conservancy/static/projects/policies/publish-policy.py similarity index 100% rename from www/static/projects/policies/publish-policy.py rename to conservancy/static/projects/policies/publish-policy.py diff --git a/www/static/projects/services/index.html b/conservancy/static/projects/services/index.html similarity index 100% rename from www/static/projects/services/index.html rename to conservancy/static/projects/services/index.html diff --git a/www/static/robots.txt b/conservancy/static/robots.txt similarity index 100% rename from www/static/robots.txt rename to conservancy/static/robots.txt diff --git a/www/static/sustainer/event.html b/conservancy/static/sustainer/event.html similarity index 100% rename from www/static/sustainer/event.html rename to conservancy/static/sustainer/event.html diff --git a/www/static/sustainer/original-supporter-appeal.html b/conservancy/static/sustainer/original-supporter-appeal.html similarity index 100% rename from www/static/sustainer/original-supporter-appeal.html rename to conservancy/static/sustainer/original-supporter-appeal.html diff --git a/www/static/sustainer/thank-you-event.html b/conservancy/static/sustainer/thank-you-event.html similarity index 100% rename from www/static/sustainer/thank-you-event.html rename to conservancy/static/sustainer/thank-you-event.html diff --git a/www/static/sustainer/thank-you.html b/conservancy/static/sustainer/thank-you.html similarity index 100% rename from www/static/sustainer/thank-you.html rename to conservancy/static/sustainer/thank-you.html diff --git a/www/static/views.py b/conservancy/static/views.py similarity index 100% rename from www/static/views.py rename to conservancy/static/views.py diff --git a/www/summit_registration/__init__.py b/conservancy/summit_registration/__init__.py similarity index 100% rename from www/summit_registration/__init__.py rename to conservancy/summit_registration/__init__.py diff --git a/www/summit_registration/admin.py b/conservancy/summit_registration/admin.py similarity index 100% rename from www/summit_registration/admin.py rename to conservancy/summit_registration/admin.py diff --git a/www/summit_registration/models.py b/conservancy/summit_registration/models.py similarity index 100% rename from www/summit_registration/models.py rename to conservancy/summit_registration/models.py diff --git a/www/summit_registration/urls.py b/conservancy/summit_registration/urls.py similarity index 100% rename from www/summit_registration/urls.py rename to conservancy/summit_registration/urls.py diff --git a/www/summit_registration/views.py b/conservancy/summit_registration/views.py similarity index 100% rename from www/summit_registration/views.py rename to conservancy/summit_registration/views.py diff --git a/www/supporter/__init__.py b/conservancy/supporter/__init__.py similarity index 100% rename from www/supporter/__init__.py rename to conservancy/supporter/__init__.py diff --git a/www/supporter/urls.py b/conservancy/supporter/urls.py similarity index 100% rename from www/supporter/urls.py rename to conservancy/supporter/urls.py diff --git a/www/supporter/views.py b/conservancy/supporter/views.py similarity index 100% rename from www/supporter/views.py rename to conservancy/supporter/views.py diff --git a/www/supporters/__init__.py b/conservancy/supporters/__init__.py similarity index 100% rename from www/supporters/__init__.py rename to conservancy/supporters/__init__.py diff --git a/www/supporters/admin.py b/conservancy/supporters/admin.py similarity index 100% rename from www/supporters/admin.py rename to conservancy/supporters/admin.py diff --git a/www/supporters/models.py b/conservancy/supporters/models.py similarity index 100% rename from www/supporters/models.py rename to conservancy/supporters/models.py diff --git a/www/templates/500.html b/conservancy/templates/500.html similarity index 100% rename from www/templates/500.html rename to conservancy/templates/500.html diff --git a/www/templates/assignment/assignment_form.html b/conservancy/templates/assignment/assignment_form.html similarity index 100% rename from www/templates/assignment/assignment_form.html rename to conservancy/templates/assignment/assignment_form.html diff --git a/www/templates/assignment/base_assignment.html b/conservancy/templates/assignment/base_assignment.html similarity index 100% rename from www/templates/assignment/base_assignment.html rename to conservancy/templates/assignment/base_assignment.html diff --git a/www/templates/assignment/thanks.html b/conservancy/templates/assignment/thanks.html similarity index 100% rename from www/templates/assignment/thanks.html rename to conservancy/templates/assignment/thanks.html diff --git a/www/templates/base_about.html b/conservancy/templates/base_about.html similarity index 100% rename from www/templates/base_about.html rename to conservancy/templates/base_about.html diff --git a/www/templates/base_blog.html b/conservancy/templates/base_blog.html similarity index 100% rename from www/templates/base_blog.html rename to conservancy/templates/base_blog.html diff --git a/www/templates/base_compliance.html b/conservancy/templates/base_compliance.html similarity index 100% rename from www/templates/base_compliance.html rename to conservancy/templates/base_compliance.html diff --git a/www/templates/base_conservancy.html b/conservancy/templates/base_conservancy.html similarity index 100% rename from www/templates/base_conservancy.html rename to conservancy/templates/base_conservancy.html diff --git a/www/templates/base_error.html b/conservancy/templates/base_error.html similarity index 100% rename from www/templates/base_error.html rename to conservancy/templates/base_error.html diff --git a/www/templates/base_learn.html b/conservancy/templates/base_learn.html similarity index 100% rename from www/templates/base_learn.html rename to conservancy/templates/base_learn.html diff --git a/www/templates/base_news.html b/conservancy/templates/base_news.html similarity index 100% rename from www/templates/base_news.html rename to conservancy/templates/base_news.html diff --git a/www/templates/base_press.html b/conservancy/templates/base_press.html similarity index 100% rename from www/templates/base_press.html rename to conservancy/templates/base_press.html diff --git a/www/templates/base_projects.html b/conservancy/templates/base_projects.html similarity index 100% rename from www/templates/base_projects.html rename to conservancy/templates/base_projects.html diff --git a/www/templates/base_standard.html b/conservancy/templates/base_standard.html similarity index 100% rename from www/templates/base_standard.html rename to conservancy/templates/base_standard.html diff --git a/www/templates/base_vizio.html b/conservancy/templates/base_vizio.html similarity index 100% rename from www/templates/base_vizio.html rename to conservancy/templates/base_vizio.html diff --git a/www/templates/blog/entry_archive_day.html b/conservancy/templates/blog/entry_archive_day.html similarity index 100% rename from www/templates/blog/entry_archive_day.html rename to conservancy/templates/blog/entry_archive_day.html diff --git a/www/templates/blog/entry_archive_month.html b/conservancy/templates/blog/entry_archive_month.html similarity index 100% rename from www/templates/blog/entry_archive_month.html rename to conservancy/templates/blog/entry_archive_month.html diff --git a/www/templates/blog/entry_archive_year.html b/conservancy/templates/blog/entry_archive_year.html similarity index 100% rename from www/templates/blog/entry_archive_year.html rename to conservancy/templates/blog/entry_archive_year.html diff --git a/www/templates/blog/entry_detail.html b/conservancy/templates/blog/entry_detail.html similarity index 100% rename from www/templates/blog/entry_detail.html rename to conservancy/templates/blog/entry_detail.html diff --git a/www/templates/blog/entry_list.html b/conservancy/templates/blog/entry_list.html similarity index 100% rename from www/templates/blog/entry_list.html rename to conservancy/templates/blog/entry_list.html diff --git a/www/templates/blog/entry_partial.html b/conservancy/templates/blog/entry_partial.html similarity index 100% rename from www/templates/blog/entry_partial.html rename to conservancy/templates/blog/entry_partial.html diff --git a/www/templates/blog/query.html b/conservancy/templates/blog/query.html similarity index 100% rename from www/templates/blog/query.html rename to conservancy/templates/blog/query.html diff --git a/www/templates/ccs_upload/upload.html b/conservancy/templates/ccs_upload/upload.html similarity index 100% rename from www/templates/ccs_upload/upload.html rename to conservancy/templates/ccs_upload/upload.html diff --git a/www/templates/contractpatch/index.html b/conservancy/templates/contractpatch/index.html similarity index 100% rename from www/templates/contractpatch/index.html rename to conservancy/templates/contractpatch/index.html diff --git a/www/templates/feeds.html b/conservancy/templates/feeds.html similarity index 100% rename from www/templates/feeds.html rename to conservancy/templates/feeds.html diff --git a/www/templates/feeds/blog_description.html b/conservancy/templates/feeds/blog_description.html similarity index 100% rename from www/templates/feeds/blog_description.html rename to conservancy/templates/feeds/blog_description.html diff --git a/www/templates/feeds/blog_title.html b/conservancy/templates/feeds/blog_title.html similarity index 100% rename from www/templates/feeds/blog_title.html rename to conservancy/templates/feeds/blog_title.html diff --git a/www/templates/feeds/news_description.html b/conservancy/templates/feeds/news_description.html similarity index 100% rename from www/templates/feeds/news_description.html rename to conservancy/templates/feeds/news_description.html diff --git a/www/templates/feeds/news_title.html b/conservancy/templates/feeds/news_title.html similarity index 100% rename from www/templates/feeds/news_title.html rename to conservancy/templates/feeds/news_title.html diff --git a/www/templates/feeds/omnibus_description.html b/conservancy/templates/feeds/omnibus_description.html similarity index 100% rename from www/templates/feeds/omnibus_description.html rename to conservancy/templates/feeds/omnibus_description.html diff --git a/www/templates/feeds/omnibus_title.html b/conservancy/templates/feeds/omnibus_title.html similarity index 100% rename from www/templates/feeds/omnibus_title.html rename to conservancy/templates/feeds/omnibus_title.html diff --git a/www/templates/fossy/base.html b/conservancy/templates/fossy/base.html similarity index 100% rename from www/templates/fossy/base.html rename to conservancy/templates/fossy/base.html diff --git a/www/templates/fossy/community_track_proposal_form.html b/conservancy/templates/fossy/community_track_proposal_form.html similarity index 100% rename from www/templates/fossy/community_track_proposal_form.html rename to conservancy/templates/fossy/community_track_proposal_form.html diff --git a/www/templates/fossy/thanks.html b/conservancy/templates/fossy/thanks.html similarity index 100% rename from www/templates/fossy/thanks.html rename to conservancy/templates/fossy/thanks.html diff --git a/www/templates/frontpage.html b/conservancy/templates/frontpage.html similarity index 100% rename from www/templates/frontpage.html rename to conservancy/templates/frontpage.html diff --git a/www/templates/news/pressrelease_archive_day.html b/conservancy/templates/news/pressrelease_archive_day.html similarity index 100% rename from www/templates/news/pressrelease_archive_day.html rename to conservancy/templates/news/pressrelease_archive_day.html diff --git a/www/templates/news/pressrelease_archive_month.html b/conservancy/templates/news/pressrelease_archive_month.html similarity index 100% rename from www/templates/news/pressrelease_archive_month.html rename to conservancy/templates/news/pressrelease_archive_month.html diff --git a/www/templates/news/pressrelease_archive_year.html b/conservancy/templates/news/pressrelease_archive_year.html similarity index 100% rename from www/templates/news/pressrelease_archive_year.html rename to conservancy/templates/news/pressrelease_archive_year.html diff --git a/www/templates/news/pressrelease_detail.html b/conservancy/templates/news/pressrelease_detail.html similarity index 100% rename from www/templates/news/pressrelease_detail.html rename to conservancy/templates/news/pressrelease_detail.html diff --git a/www/templates/news/pressrelease_list.html b/conservancy/templates/news/pressrelease_list.html similarity index 100% rename from www/templates/news/pressrelease_list.html rename to conservancy/templates/news/pressrelease_list.html diff --git a/www/templates/news/pressrelease_partial.html b/conservancy/templates/news/pressrelease_partial.html similarity index 100% rename from www/templates/news/pressrelease_partial.html rename to conservancy/templates/news/pressrelease_partial.html diff --git a/www/templates/opengraph_partial.html b/conservancy/templates/opengraph_partial.html similarity index 100% rename from www/templates/opengraph_partial.html rename to conservancy/templates/opengraph_partial.html diff --git a/www/templates/opengraph_urllist_partial.html b/conservancy/templates/opengraph_urllist_partial.html similarity index 100% rename from www/templates/opengraph_urllist_partial.html rename to conservancy/templates/opengraph_urllist_partial.html diff --git a/www/templates/socials_partial.html b/conservancy/templates/socials_partial.html similarity index 100% rename from www/templates/socials_partial.html rename to conservancy/templates/socials_partial.html diff --git a/www/templates/sponsors.html b/conservancy/templates/sponsors.html similarity index 100% rename from www/templates/sponsors.html rename to conservancy/templates/sponsors.html diff --git a/www/templates/submenus/learn_partial.html b/conservancy/templates/submenus/learn_partial.html similarity index 100% rename from www/templates/submenus/learn_partial.html rename to conservancy/templates/submenus/learn_partial.html diff --git a/www/templates/submenus/news_partial.html b/conservancy/templates/submenus/news_partial.html similarity index 100% rename from www/templates/submenus/news_partial.html rename to conservancy/templates/submenus/news_partial.html diff --git a/www/templates/submenus/press_partial.html b/conservancy/templates/submenus/press_partial.html similarity index 100% rename from www/templates/submenus/press_partial.html rename to conservancy/templates/submenus/press_partial.html diff --git a/www/templates/submenus/what_we_do_partial.html b/conservancy/templates/submenus/what_we_do_partial.html similarity index 100% rename from www/templates/submenus/what_we_do_partial.html rename to conservancy/templates/submenus/what_we_do_partial.html diff --git a/www/templates/submenus/who_we_are_partial.html b/conservancy/templates/submenus/who_we_are_partial.html similarity index 100% rename from www/templates/submenus/who_we_are_partial.html rename to conservancy/templates/submenus/who_we_are_partial.html diff --git a/www/templates/supporter/banners.html b/conservancy/templates/supporter/banners.html similarity index 100% rename from www/templates/supporter/banners.html rename to conservancy/templates/supporter/banners.html diff --git a/www/templates/supporter/form_partial.html b/conservancy/templates/supporter/form_partial.html similarity index 100% rename from www/templates/supporter/form_partial.html rename to conservancy/templates/supporter/form_partial.html diff --git a/www/templates/supporter/index.html b/conservancy/templates/supporter/index.html similarity index 100% rename from www/templates/supporter/index.html rename to conservancy/templates/supporter/index.html diff --git a/www/urls.py b/conservancy/urls.py similarity index 82% rename from www/urls.py rename to conservancy/urls.py index 706fc68dec57df67be73c0fc722b07f6c17453ff..3ea318055d32daceb95f154a4c45f00ca2ad8404 100644 --- a/www/urls.py +++ b/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')), ] diff --git a/www/usethesource/__init__.py b/conservancy/usethesource/__init__.py similarity index 100% rename from www/usethesource/__init__.py rename to conservancy/usethesource/__init__.py diff --git a/www/usethesource/admin.py b/conservancy/usethesource/admin.py similarity index 100% rename from www/usethesource/admin.py rename to conservancy/usethesource/admin.py diff --git a/www/usethesource/apps.py b/conservancy/usethesource/apps.py similarity index 76% rename from www/usethesource/apps.py rename to conservancy/usethesource/apps.py index e7322c9a27a9443d475655b669c29336956b049e..e1900bd8ec9cdbe0e20a87007ea587905daf286c 100644 --- a/www/usethesource/apps.py +++ b/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' diff --git a/www/usethesource/migrations/0001_initial.py b/conservancy/usethesource/migrations/0001_initial.py similarity index 100% rename from www/usethesource/migrations/0001_initial.py rename to conservancy/usethesource/migrations/0001_initial.py diff --git a/www/usethesource/migrations/__init__.py b/conservancy/usethesource/migrations/__init__.py similarity index 100% rename from www/usethesource/migrations/__init__.py rename to conservancy/usethesource/migrations/__init__.py diff --git a/www/usethesource/models.py b/conservancy/usethesource/models.py similarity index 100% rename from www/usethesource/models.py rename to conservancy/usethesource/models.py diff --git a/www/usethesource/templates/usethesource/add_comment_button_partial.html b/conservancy/usethesource/templates/usethesource/add_comment_button_partial.html similarity index 100% rename from www/usethesource/templates/usethesource/add_comment_button_partial.html rename to conservancy/usethesource/templates/usethesource/add_comment_button_partial.html diff --git a/www/usethesource/templates/usethesource/base.html b/conservancy/usethesource/templates/usethesource/base.html similarity index 100% rename from www/usethesource/templates/usethesource/base.html rename to conservancy/usethesource/templates/usethesource/base.html diff --git a/www/usethesource/templates/usethesource/cancel_button_partial.html b/conservancy/usethesource/templates/usethesource/cancel_button_partial.html similarity index 100% rename from www/usethesource/templates/usethesource/cancel_button_partial.html rename to conservancy/usethesource/templates/usethesource/cancel_button_partial.html diff --git a/www/usethesource/templates/usethesource/candidate.html b/conservancy/usethesource/templates/usethesource/candidate.html similarity index 100% rename from www/usethesource/templates/usethesource/candidate.html rename to conservancy/usethesource/templates/usethesource/candidate.html diff --git a/www/usethesource/templates/usethesource/comment_deleted.html b/conservancy/usethesource/templates/usethesource/comment_deleted.html similarity index 100% rename from www/usethesource/templates/usethesource/comment_deleted.html rename to conservancy/usethesource/templates/usethesource/comment_deleted.html diff --git a/www/usethesource/templates/usethesource/comment_form.html b/conservancy/usethesource/templates/usethesource/comment_form.html similarity index 100% rename from www/usethesource/templates/usethesource/comment_form.html rename to conservancy/usethesource/templates/usethesource/comment_form.html diff --git a/www/usethesource/templates/usethesource/comment_partial.html b/conservancy/usethesource/templates/usethesource/comment_partial.html similarity index 100% rename from www/usethesource/templates/usethesource/comment_partial.html rename to conservancy/usethesource/templates/usethesource/comment_partial.html diff --git a/www/usethesource/templates/usethesource/download.html b/conservancy/usethesource/templates/usethesource/download.html similarity index 100% rename from www/usethesource/templates/usethesource/download.html rename to conservancy/usethesource/templates/usethesource/download.html diff --git a/www/usethesource/templates/usethesource/edit_comment_form.html b/conservancy/usethesource/templates/usethesource/edit_comment_form.html similarity index 100% rename from www/usethesource/templates/usethesource/edit_comment_form.html rename to conservancy/usethesource/templates/usethesource/edit_comment_form.html diff --git a/www/usethesource/templates/usethesource/landing_page.html b/conservancy/usethesource/templates/usethesource/landing_page.html similarity index 100% rename from www/usethesource/templates/usethesource/landing_page.html rename to conservancy/usethesource/templates/usethesource/landing_page.html diff --git a/www/usethesource/templates/usethesource/returned_comment.html b/conservancy/usethesource/templates/usethesource/returned_comment.html similarity index 100% rename from www/usethesource/templates/usethesource/returned_comment.html rename to conservancy/usethesource/templates/usethesource/returned_comment.html diff --git a/www/usethesource/templates/usethesource/save_button_partial.html b/conservancy/usethesource/templates/usethesource/save_button_partial.html similarity index 100% rename from www/usethesource/templates/usethesource/save_button_partial.html rename to conservancy/usethesource/templates/usethesource/save_button_partial.html diff --git a/www/usethesource/urls.py b/conservancy/usethesource/urls.py similarity index 100% rename from www/usethesource/urls.py rename to conservancy/usethesource/urls.py diff --git a/www/usethesource/views.py b/conservancy/usethesource/views.py similarity index 100% rename from www/usethesource/views.py rename to conservancy/usethesource/views.py diff --git a/www/worldmap/README b/conservancy/worldmap/README similarity index 100% rename from www/worldmap/README rename to conservancy/worldmap/README diff --git a/www/worldmap/__init__.py b/conservancy/worldmap/__init__.py similarity index 100% rename from www/worldmap/__init__.py rename to conservancy/worldmap/__init__.py diff --git a/www/worldmap/admin.py b/conservancy/worldmap/admin.py similarity index 100% rename from www/worldmap/admin.py rename to conservancy/worldmap/admin.py diff --git a/www/worldmap/models.py b/conservancy/worldmap/models.py similarity index 100% rename from www/worldmap/models.py rename to conservancy/worldmap/models.py diff --git a/www/worldmap/templates/kml b/conservancy/worldmap/templates/kml similarity index 100% rename from www/worldmap/templates/kml rename to conservancy/worldmap/templates/kml diff --git a/www/wsgi.py b/conservancy/wsgi.py similarity index 100% rename from www/wsgi.py rename to conservancy/wsgi.py diff --git a/manage.py b/manage.py index 51055cea9e79a38c61faf0fef3c1432e7b129a21..acbc97323f61f88a3f4ac180317338211e60faac 100755 --- a/manage.py +++ b/manage.py @@ -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: