mirror of
https://github.com/fergalmoran/dss.git
synced 2026-02-05 07:34:13 +00:00
Added some boilerplate copyright notices.
This commit is contained in:
0
_working/create
Normal file → Executable file
0
_working/create
Normal file → Executable file
0
static/bin/sm/soundmanager2.swf
Normal file → Executable file
0
static/bin/sm/soundmanager2.swf
Normal file → Executable file
0
static/bin/sm/soundmanager2_debug.swf
Normal file → Executable file
0
static/bin/sm/soundmanager2_debug.swf
Normal file → Executable file
0
static/bin/sm/soundmanager2_flash9.swf
Normal file → Executable file
0
static/bin/sm/soundmanager2_flash9.swf
Normal file → Executable file
0
static/bin/sm/soundmanager2_flash9_debug.swf
Normal file → Executable file
0
static/bin/sm/soundmanager2_flash9_debug.swf
Normal file → Executable 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;
|
||||
}
|
||||
|
||||
@@ -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
0
static/img/whats-on.png
Normal file → Executable file
|
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 6.0 KiB |
@@ -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",
|
||||
|
||||
@@ -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/"
|
||||
});
|
||||
|
||||
@@ -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 () {
|
||||
|
||||
@@ -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:{
|
||||
|
||||
@@ -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 () {
|
||||
|
||||
@@ -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/"
|
||||
});
|
||||
|
||||
@@ -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/"
|
||||
});
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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 () {
|
||||
|
||||
@@ -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 () {
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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:{
|
||||
|
||||
@@ -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 () {
|
||||
|
||||
@@ -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 () {
|
||||
|
||||
@@ -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:{
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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 = {};
|
||||
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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
0
static/js/libs/sm/soundmanager2.js
Normal file → Executable file
Reference in New Issue
Block a user