Added some boilerplate copyright notices.

This commit is contained in:
=
2012-09-11 19:23:16 +01:00
parent c15ab85710
commit 9df7622459
30 changed files with 183 additions and 0 deletions

0
_working/create Normal file → Executable file
View File

0
manage.py Normal file → Executable file
View File

0
static/bin/sm/soundmanager2.swf Normal file → Executable file
View File

0
static/bin/sm/soundmanager2_debug.swf Normal file → Executable file
View File

0
static/bin/sm/soundmanager2_flash9.swf Normal file → Executable file
View File

0
static/bin/sm/soundmanager2_flash9_debug.swf Normal file → Executable file
View File

View File

@@ -1,3 +1,14 @@
/** @license
com.podnoms.player.css
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
.player-wrapper {
margin-bottom: 3px;
}

View File

@@ -1,3 +1,13 @@
/** @license
deepsouthsounds.css
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
* {
font-family: 'Open Sans', sans-serif;
}

0
static/img/whats-on.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
var AppRouter = Backbone.Router.extend({
routes:{
"/mixes":"mixList",

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
var Comment = DSSModel.extend({
urlRoot:com.podnoms.settings.urlRoot + "comments/"
});

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
var Event = DSSModel.extend({
urlRoot:com.podnoms.settings.urlRoot + "event/",
isValid:function () {

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
window.Mix = DSSModel.extend({
urlRoot:com.podnoms.settings.urlRoot + "mix/",
schema:{

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
var Release = DSSModel.extend({
urlRoot:com.podnoms.settings.urlRoot + "release/",
isValid:function () {

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
var ReleaseAudio = DSSModel.extend({
urlRoot:com.podnoms.settings.urlRoot + "release_audio/"
});

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
var User = DSSModel.extend({
urlRoot:com.podnoms.settings.urlRoot + "user/"
});

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
$(document).ajaxSend(function (event, xhr, settings) {
function getCookie(name) {
var cookieValue = null;

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
postFacebookLike = function (mixId) {
//first off, find if the current user has allowed facebook likes

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
window.CommentListItemView = Backbone.View.extend({
tagName:"li",
initialize:function () {

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
var EventListItemView = Backbone.View.extend({
tagName:"tr",
initialize:function () {

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
window.HeaderView = Backbone.View.extend({
events:{
"click #header-play-pause-button":"togglePlayState",

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
window.MixListItemView = Backbone.View.extend({
tagName:"li",
events:{

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
var ReleaseListItemView = Backbone.View.extend({
tagName:"tr",
initialize:function () {

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
window.ReleaseAudioItemView = Backbone.View.extend({
tagName:"li",
initialize:function () {

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
window.SidebarView = Backbone.View.extend({
events:{

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
window.UserView = Backbone.View.extend({
events:{
"click #save-changes":"saveChanges",

View File

@@ -1,3 +1,12 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
if (!com) var com = {};
if (!com.podnoms) com.podnoms = {};

View File

@@ -1,3 +1,11 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
if (!com) var com = {};
if (!com.podnoms) com.podnoms = {};
Storage.prototype.setObject = function(key, value) {

View File

@@ -1,3 +1,12 @@
/** @license
----------------------------------------------
Copyright (c) 2012, Fergal Moran. All rights reserved.
Code provided under the BSD License:
*/
if (!com) var com = {};
if (!com.podnoms) com.podnoms = {};

0
static/js/libs/sm/soundmanager2.js Normal file → Executable file
View File