mirror of
https://github.com/dolphin-emu/www.git
synced 2024-11-23 09:29:39 +00:00
dolweb: make licensing situation more explicit
This commit is contained in:
parent
03c110d6e7
commit
d3f652bd6d
21
LICENSE
Normal file
21
LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||
of the Software, and to permit persons to whom the Software is furnished to do
|
||||
so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.contrib import admin
|
||||
from django.forms import Widget
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.http import Http404
|
||||
from django.shortcuts import get_object_or_404
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.db import models
|
||||
from django.utils.html import linebreaks
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.template import Library
|
||||
register = Library()
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.conf.urls import url, include
|
||||
from dolweb.blog.feeds import SeriesFeed
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from annoying.decorators import render_to
|
||||
from django.conf import settings
|
||||
from django.core.paginator import Paginator, EmptyPage
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.contrib import admin
|
||||
from dolweb.compat.models import Page
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.core.management.base import BaseCommand, CommandError
|
||||
from dolweb.compat.models import Page
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from datetime import datetime
|
||||
from django.conf import settings
|
||||
from django.core.cache import cache
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django import template
|
||||
from django.conf import settings
|
||||
from django.contrib.staticfiles.storage import staticfiles_storage
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf.urls import url
|
||||
from dolweb.compat.views import list_compat
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from annoying.decorators import render_to
|
||||
from django.views.decorators.cache import cache_page
|
||||
from dolweb.compat.models import Page, Namespace, get_category_id, \
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.contrib import admin
|
||||
from dolweb.docs.models import FAQCategory, FAQ, Guide
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.core.management.base import BaseCommand
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.db import models
|
||||
from django.urls import reverse
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
import markdown
|
||||
|
||||
from django import template
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf.urls import url
|
||||
from dolweb.docs.views import faq, faq_dyni18n_po, guides_index, guide
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from annoying.decorators import render_to
|
||||
from django.http import HttpResponse
|
||||
from django.shortcuts import get_object_or_404
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.contrib import admin
|
||||
from dolweb.downloads.models import Artifact, BranchInfo, ReleaseVersion, DevVersion
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
import functools
|
||||
import math
|
||||
from django.core.paginator import \
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.db import models
|
||||
from django.utils.safestring import mark_safe
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django import template
|
||||
|
||||
register = template.Library()
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf.urls import url
|
||||
from dolweb.downloads import views
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from annoying.decorators import render_to
|
||||
from django.conf import settings
|
||||
from django.core.paginator import EmptyPage
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.contrib import admin
|
||||
from dolweb.homepage.models import NewsArticle
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.apps import AppConfig
|
||||
|
||||
class HomepageConfig(AppConfig):
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.db import models
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django import template
|
||||
from django.conf import settings
|
||||
from dolweb.utils.monkey import TO_FULL
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from annoying.decorators import render_to
|
||||
from django.conf import settings
|
||||
from dolweb.downloads.models import DevVersion, ReleaseVersion
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.http import Http404, HttpResponse
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.contrib import admin
|
||||
from dolweb.media.models import Screenshot
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.db import models
|
||||
from sorl import thumbnail
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
"""
|
||||
This file demonstrates writing tests using the unittest module. These will pass
|
||||
when you run "manage.py test".
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf.urls import url
|
||||
from dolweb.media import views
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from annoying.decorators import render_to
|
||||
from django.views.decorators.cache import cache_page
|
||||
from dolweb.media.models import Screenshot
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
# Django settings for dolweb project.
|
||||
# -*- encoding: utf-8 -*-
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.contrib import admin
|
||||
from dolweb.update.models import UpdateTrack
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.db import models
|
||||
from dolweb.downloads.models import DevVersion
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf.urls import url
|
||||
from dolweb.update import views
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.http import HttpResponseBadRequest, HttpResponseNotFound, JsonResponse
|
||||
from dolweb.downloads.models import DevVersion
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.conf.urls import include, url
|
||||
from django.conf.urls.static import static
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
|
||||
def website_urls(request):
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.http import HttpResponseRedirect
|
||||
from django.utils.translation.trans_real import parse_accept_lang_header
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
|
||||
class WikiRouter(object):
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.conf import settings
|
||||
from django.utils.translation import get_language
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.db import models
|
||||
|
||||
class DefaultSelectOrPrefetchManager(models.Manager):
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from django.utils.translation.trans_real import *
|
||||
from django.utils.translation import trans_real
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
"""
|
||||
WSGI config for dolweb project.
|
||||
|
||||
|
3
fabfile.py
vendored
3
fabfile.py
vendored
@ -1,3 +1,6 @@
|
||||
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
from fabric.api import *
|
||||
|
||||
env.user = 'dolphin-emu'
|
||||
|
Loading…
Reference in New Issue
Block a user