mirror of
https://github.com/dolphin-emu/fifoci.git
synced 2024-11-23 09:29:38 +00:00
Add licensing information to the project (2BSD)
This commit is contained in:
parent
9d357995cf
commit
4b285ae4c1
23
LICENSE
Normal file
23
LICENSE
Normal file
@ -0,0 +1,23 @@
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer in the documentation and/or other materials provided
|
||||
with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
||||
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR
|
||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
||||
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
4
fabfile.py
vendored
4
fabfile.py
vendored
@ -1,3 +1,7 @@
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
from fabric.api import *
|
||||
|
||||
env.user = 'fifoci'
|
||||
|
@ -1,3 +1,7 @@
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
from django.contrib import admin
|
||||
from fifoci.models import FifoTest, Result, Version
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
from fifoci.models import Version, Result
|
||||
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
from django.conf import settings
|
||||
from django.core.management.base import BaseCommand, CommandError
|
||||
from fifoci.models import FifoTest, Result, Version
|
||||
|
@ -1,3 +1,7 @@
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
from django.db import models
|
||||
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
"""
|
||||
Django settings for fifoci project.
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
from django import template
|
||||
|
||||
register = template.Library()
|
||||
|
@ -1,3 +1,7 @@
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
from django import template
|
||||
from django.utils.safestring import mark_safe
|
||||
import markdown as markdown_mod
|
||||
|
@ -1,3 +1,7 @@
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
from django.conf import settings
|
||||
from django.conf.urls import patterns, include, static, url
|
||||
from django.contrib import admin
|
||||
|
@ -1,3 +1,7 @@
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
from django.http import JsonResponse
|
||||
from django.shortcuts import get_object_or_404, render
|
||||
from fifoci.models import FifoTest, Version, Result
|
||||
|
@ -1,3 +1,7 @@
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
"""
|
||||
WSGI config for fifoci project.
|
||||
|
||||
|
@ -1,5 +1,9 @@
|
||||
#! /bin/bash
|
||||
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
if [ "$#" -lt 2 ]; then
|
||||
echo >&2 "usage: $0 <dolphin-emu> <file.dff:out-dir ...>"
|
||||
exit 1
|
||||
|
@ -1,5 +1,9 @@
|
||||
#! /usr/bin/env python
|
||||
|
||||
# This file is part of the FifoCI project.
|
||||
# Copyright (c) 2014 Pierre Bourdon <delroth@dolphin-emu.org>
|
||||
# Licensing information: see $REPO_ROOT/LICENSE
|
||||
|
||||
# Runs a system specific script to generate frame dumps, and exports the test
|
||||
# results to a Zip file that can then be imported back by the central system.
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user