aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README4
-rw-r--r--manage.py8
-rw-r--r--settings.py5
-rw-r--r--urls.py7
4 files changed, 23 insertions, 1 deletions
diff --git a/README b/README
index 098186e..324a7a5 100644
--- a/README
+++ b/README
@@ -77,6 +77,10 @@ Send patches / pull requests to yocto@yoctoproject.org with
License
-------
+This application is based upon the Django project template, whose files
+are covered by the BSD license and are copyright (c) Django Software
+Foundation and individual contributors.
+
Bundled Twitter Bootstrap is redistributed under the Apache License 2.0.
Bundled jQuery is redistributed under the MIT license.
diff --git a/manage.py b/manage.py
index 3e4eedc..dd69035 100644
--- a/manage.py
+++ b/manage.py
@@ -1,4 +1,12 @@
#!/usr/bin/env python
+
+# buildhistory-web - Django management script
+#
+# Based on the Django project template
+#
+# Copyright (c) Django Software Foundation and individual contributors.
+# All rights reserved.
+
from django.core.management import execute_manager
import imp
try:
diff --git a/settings.py b/settings.py
index 004e742..4097b00 100644
--- a/settings.py
+++ b/settings.py
@@ -1,4 +1,7 @@
-# Django settings for warningmanager project.
+# Django settings for the buildhistory warning manager project.
+#
+# Based on settings.py from the Django project template
+# Copyright (c) Django Software Foundation and individual contributors.
DEBUG = False
TEMPLATE_DEBUG = DEBUG
diff --git a/urls.py b/urls.py
index 6c0de4a..9f22aad 100644
--- a/urls.py
+++ b/urls.py
@@ -1,3 +1,10 @@
+# buildhistory-web - top-level URL definitions
+#
+# Based on the Django project template
+#
+# Copyright (c) Django Software Foundation and individual contributors.
+# All rights reserved.
+
from django.conf.urls.defaults import patterns, include, url
from django.contrib import admin