parent
859758ced1
commit
b6883d2f45
@ -1,5 +1,4 @@
|
||||
._*
|
||||
.*
|
||||
.Apple*
|
||||
./old*
|
||||
|
||||
old/*
|
||||
|
@ -0,0 +1,74 @@
|
||||
/*jslint laxbreak:true */
|
||||
/*jslint laxcomma:true */
|
||||
/*jslint loopfunc:true */
|
||||
/*jslint strict:true */
|
||||
/*jslint browser:true */
|
||||
/*jslint devel:true */
|
||||
|
||||
// Filename: app.js
|
||||
|
||||
define([
|
||||
"underscore"
|
||||
]
|
||||
, function (_) {
|
||||
"use strict";
|
||||
|
||||
var Config = {
|
||||
debug: false
|
||||
, verbose: false
|
||||
|
||||
, docRoot: ""
|
||||
|
||||
, daap: {
|
||||
hostname: "daap.lalonde.me"
|
||||
, protocol: "https"
|
||||
, port: 443
|
||||
}
|
||||
|
||||
, player: {
|
||||
defaultVolume: 0.5
|
||||
}
|
||||
|
||||
, dev: {
|
||||
enabled: true
|
||||
|
||||
, debug: true
|
||||
, verbose: 6
|
||||
|
||||
, docRoot: ""
|
||||
|
||||
, daap: {
|
||||
hostname: "daap.localhost"
|
||||
, protocol: "http"
|
||||
, port: 80
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* NOTHING TO EDIT BELOW THIS LINE
|
||||
**/
|
||||
|
||||
if (typeof Config.dev === "object"
|
||||
&& typeof Config.dev.enabled !== "undefined"
|
||||
&& Config.dev.enabled === true) {
|
||||
var devConfig = Config.dev || {}
|
||||
;
|
||||
|
||||
if (Object.size(devConfig) > 0) {
|
||||
delete Config.dev;
|
||||
|
||||
_.extend(Config, devConfig);
|
||||
}
|
||||
}
|
||||
|
||||
if ( (typeof Config.debug === "undefined" || Config.debug !== true) && console.debug ) {
|
||||
console.debug = function() {};
|
||||
}
|
||||
|
||||
if ( (typeof Config.verbose === "undefined" || Config.verbose <= 5) && console.log ) {
|
||||
console.log = function() {};
|
||||
}
|
||||
|
||||
return Config;
|
||||
});
|
@ -1 +1,17 @@
|
||||
//if (typeof String.addLeadingChar)
|
||||
|
||||
if (typeof Object.size !== "function") {
|
||||
var fnSize = function (obj) { return Object.keys(obj).length; };
|
||||
|
||||
if (typeof Object.keys !== "function") {
|
||||
fnSize = function(obj) {
|
||||
var size = 0, key;
|
||||
for (key in obj) {
|
||||
if (obj.hasOwnProperty(key)) size++;
|
||||
}
|
||||
return size;
|
||||
};
|
||||
}
|
||||
|
||||
Object.size = fnSize;
|
||||
}
|
@ -1,71 +0,0 @@
|
||||
/*jslint laxbreak:true */
|
||||
/*jslint laxcomma:true */
|
||||
/*jslint loopfunc:true */
|
||||
/*jslint strict:true */
|
||||
/*jslint browser:true */
|
||||
/*jslint devel:true */
|
||||
define([
|
||||
"underscore"
|
||||
, "backbone"
|
||||
, "toolbox"
|
||||
, "models/dmap-type"
|
||||
]
|
||||
, function (_, Backbone, Toolbox, DMAPType) {
|
||||
"use strict";
|
||||
|
||||
var that
|
||||
|
||||
, set = function (attributes) {
|
||||
|
||||
}
|
||||
|
||||
, DMAP = Toolbox.Base.extend({
|
||||
id: null
|
||||
, attributes: false
|
||||
, collection: false
|
||||
, parentid: null
|
||||
, index: {}
|
||||
, items: []
|
||||
|
||||
, constructor: function (buffer, parent, options) {
|
||||
|
||||
}
|
||||
|
||||
, set: function () {
|
||||
|
||||
}
|
||||
|
||||
, get: function () {
|
||||
|
||||
}
|
||||
|
||||
, getItem: function () {
|
||||
|
||||
}
|
||||
|
||||
, getItemByIndex: function () {
|
||||
|
||||
}
|
||||
|
||||
, parseBinary: function () {
|
||||
|
||||
}
|
||||
|
||||
, parseContentCode: function () {
|
||||
|
||||
}
|
||||
|
||||
, addItem: function (item) {
|
||||
|
||||
}
|
||||
|
||||
, remove: function (items) {
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
_.extend(DMAP.prototype, Backbone.Events, {});
|
||||
|
||||
return DMAP;
|
||||
|
||||
});
|
@ -0,0 +1,68 @@
|
||||
/*jslint laxbreak:true */
|
||||
/*jslint laxcomma:true */
|
||||
/*jslint loopfunc:true */
|
||||
/*jslint strict:true */
|
||||
/*jslint browser:true */
|
||||
/*jslint devel:true */
|
||||
|
||||
define([
|
||||
"underscore"
|
||||
, "backbone"
|
||||
|
||||
, "models/client"
|
||||
]
|
||||
, function (_, Backbone, Client) {
|
||||
"use strict";
|
||||
|
||||
var Model = Backbone.Model.extend({
|
||||
client: null
|
||||
|
||||
, initialize: function (attributes, options) {
|
||||
_.bindAll(this, "destroy", "getName", "relayEvent");
|
||||
var that = this
|
||||
;
|
||||
|
||||
this.client = new Client(attributes);
|
||||
|
||||
this.client.on("inited", function __fnServerModelClientInitedEvent(serverInfo) {
|
||||
if (serverInfo && serverInfo.get("dmap_itemname")) {
|
||||
that.set(_.extend({}, that.attributes, {name: serverInfo.get("dmap_itemname")}));
|
||||
// We could save here, but it is debatable if we want to leep the name attribute locally
|
||||
// that.save();
|
||||
}
|
||||
});
|
||||
|
||||
this.client.on("all", this.relayEvent);
|
||||
|
||||
return Model.__super__.initialize.call(this, arguments);
|
||||
}
|
||||
|
||||
, relayEvent: function () {
|
||||
var args = _.values(arguments)
|
||||
, eventName = args.shift()
|
||||
;
|
||||
|
||||
this.trigger("client:" + eventName, args);
|
||||
}
|
||||
|
||||
, destroy: function () {
|
||||
if (this.client && this.client.deinit) {
|
||||
this.client.deinit();
|
||||
}
|
||||
|
||||
return Model.__super__.destroy.call(this, arguments);
|
||||
}
|
||||
|
||||
, getName: function () {
|
||||
if (this.get("name")) {
|
||||
return this.get("name");
|
||||
} else if (this.client && this.client.urlHost) {
|
||||
return this.client.urlHost();
|
||||
} else {
|
||||
return this.get("hostname");
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
return Model;
|
||||
});
|
@ -0,0 +1,19 @@
|
||||
<div class="modal" style="width: auto;margin-left: auto;margin-right: auto;"
|
||||
data-backdrop="true"
|
||||
data-keyboard="true"
|
||||
data-show="true"
|
||||
tabindex="-1" role="dialog">
|
||||
<div class="modal-body" style="padding: 10px 10px 0 10px;">
|
||||
<form>
|
||||
<fieldset>
|
||||
<legend>Add Server</legend>
|
||||
<label>Address</label>
|
||||
<input type="text" placeholder="https://domain.tld:3689">
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-mini" data-dismiss="modal" aria-hidden="true"><i class="icon-remove"></i> Cancel</button>
|
||||
<button class="btn btn-mini btn-primary" data-save="modal" aria-hidden="true"><i class="icon-ok"></i> Add & Connect</button>
|
||||
</div>
|
||||
</div>
|
@ -0,0 +1,6 @@
|
||||
<li>
|
||||
<span>
|
||||
<i class="icon-folder-close"></i> <span>{{server_name}}</span>
|
||||
<a href="javascript:void(0);" class="sidebar-list-action"><i class="icon-minus-sign"></i></a>
|
||||
</span>
|
||||
</li>
|
@ -0,0 +1,308 @@
|
||||
/**
|
||||
* @license RequireJS text 2.0.3 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
|
||||
* Available via the MIT or new BSD license.
|
||||
* see: http://github.com/requirejs/text for details
|
||||
*/
|
||||
/*jslint regexp: true */
|
||||
/*global require: false, XMLHttpRequest: false, ActiveXObject: false,
|
||||
define: false, window: false, process: false, Packages: false,
|
||||
java: false, location: false */
|
||||
|
||||
define(['module'], function (module) {
|
||||
'use strict';
|
||||
|
||||
var text, fs,
|
||||
progIds = ['Msxml2.XMLHTTP', 'Microsoft.XMLHTTP', 'Msxml2.XMLHTTP.4.0'],
|
||||
xmlRegExp = /^\s*<\?xml(\s)+version=[\'\"](\d)*.(\d)*[\'\"](\s)*\?>/im,
|
||||
bodyRegExp = /<body[^>]*>\s*([\s\S]+)\s*<\/body>/im,
|
||||
hasLocation = typeof location !== 'undefined' && location.href,
|
||||
defaultProtocol = hasLocation && location.protocol && location.protocol.replace(/\:/, ''),
|
||||
defaultHostName = hasLocation && location.hostname,
|
||||
defaultPort = hasLocation && (location.port || undefined),
|
||||
buildMap = [],
|
||||
masterConfig = (module.config && module.config()) || {};
|
||||
|
||||
text = {
|
||||
version: '2.0.3',
|
||||
|
||||
strip: function (content) {
|
||||
//Strips <?xml ...?> declarations so that external SVG and XML
|
||||
//documents can be added to a document without worry. Also, if the string
|
||||
//is an HTML document, only the part inside the body tag is returned.
|
||||
if (content) {
|
||||
content = content.replace(xmlRegExp, "");
|
||||
var matches = content.match(bodyRegExp);
|
||||
if (matches) {
|
||||
content = matches[1];
|
||||
}
|
||||
} else {
|
||||
content = "";
|
||||
}
|
||||
return content;
|
||||
},
|
||||
|
||||
jsEscape: function (content) {
|
||||
return content.replace(/(['\\])/g, '\\$1')
|
||||
.replace(/[\f]/g, "\\f")
|
||||
.replace(/[\b]/g, "\\b")
|
||||
.replace(/[\n]/g, "\\n")
|
||||
.replace(/[\t]/g, "\\t")
|
||||
.replace(/[\r]/g, "\\r")
|
||||
.replace(/[\u2028]/g, "\\u2028")
|
||||
.replace(/[\u2029]/g, "\\u2029");
|
||||
},
|
||||
|
||||
createXhr: masterConfig.createXhr || function () {
|
||||
//Would love to dump the ActiveX crap in here. Need IE 6 to die first.
|
||||
var xhr, i, progId;
|
||||
if (typeof XMLHttpRequest !== "undefined") {
|
||||
return new XMLHttpRequest();
|
||||
} else if (typeof ActiveXObject !== "undefined") {
|
||||
for (i = 0; i < 3; i += 1) {
|
||||
progId = progIds[i];
|
||||
try {
|
||||
xhr = new ActiveXObject(progId);
|
||||
} catch (e) {}
|
||||
|
||||
if (xhr) {
|
||||
progIds = [progId]; // so faster next time
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return xhr;
|
||||
},
|
||||
|
||||
/**
|
||||
* Parses a resource name into its component parts. Resource names
|
||||
* look like: module/name.ext!strip, where the !strip part is
|
||||
* optional.
|
||||
* @param {String} name the resource name
|
||||
* @returns {Object} with properties "moduleName", "ext" and "strip"
|
||||
* where strip is a boolean.
|
||||
*/
|
||||
parseName: function (name) {
|
||||
var strip = false, index = name.indexOf("."),
|
||||
modName = name.substring(0, index),
|
||||
ext = name.substring(index + 1, name.length);
|
||||
|
||||
index = ext.indexOf("!");
|
||||
if (index !== -1) {
|
||||
//Pull off the strip arg.
|
||||
strip = ext.substring(index + 1, ext.length);
|
||||
strip = strip === "strip";
|
||||
ext = ext.substring(0, index);
|
||||
}
|
||||
|
||||
return {
|
||||
moduleName: modName,
|
||||
ext: ext,
|
||||
strip: strip
|
||||
};
|
||||
},
|
||||
|
||||
xdRegExp: /^((\w+)\:)?\/\/([^\/\\]+)/,
|
||||
|
||||
/**
|
||||
* Is an URL on another domain. Only works for browser use, returns
|
||||
* false in non-browser environments. Only used to know if an
|
||||
* optimized .js version of a text resource should be loaded
|
||||
* instead.
|
||||
* @param {String} url
|
||||
* @returns Boolean
|
||||
*/
|
||||
useXhr: function (url, protocol, hostname, port) {
|
||||
var uProtocol, uHostName, uPort,
|
||||
match = text.xdRegExp.exec(url);
|
||||
if (!match) {
|
||||
return true;
|
||||
}
|
||||
uProtocol = match[2];
|
||||
uHostName = match[3];
|
||||
|
||||
uHostName = uHostName.split(':');
|
||||
uPort = uHostName[1];
|
||||
uHostName = uHostName[0];
|
||||
|
||||
return (!uProtocol || uProtocol === protocol) &&
|
||||
(!uHostName || uHostName.toLowerCase() === hostname.toLowerCase()) &&
|
||||
((!uPort && !uHostName) || uPort === port);
|
||||
},
|
||||
|
||||
finishLoad: function (name, strip, content, onLoad) {
|
||||
content = strip ? text.strip(content) : content;
|
||||
if (masterConfig.isBuild) {
|
||||
buildMap[name] = content;
|
||||
}
|
||||
onLoad(content);
|
||||
},
|
||||
|
||||
load: function (name, req, onLoad, config) {
|
||||
//Name has format: some.module.filext!strip
|
||||
//The strip part is optional.
|
||||
//if strip is present, then that means only get the string contents
|
||||
//inside a body tag in an HTML string. For XML/SVG content it means
|
||||
//removing the <?xml ...?> declarations so the content can be inserted
|
||||
//into the current doc without problems.
|
||||
|
||||
// Do not bother with the work if a build and text will
|
||||
// not be inlined.
|
||||
if (config.isBuild && !config.inlineText) {
|
||||
onLoad();
|
||||
return;
|
||||
}
|
||||
|
||||
masterConfig.isBuild = config.isBuild;
|
||||
|
||||
var parsed = text.parseName(name),
|
||||
nonStripName = parsed.moduleName + '.' + parsed.ext,
|
||||
url = req.toUrl(nonStripName),
|
||||
useXhr = (masterConfig.useXhr) ||
|
||||
text.useXhr;
|
||||
|
||||
//Load the text. Use XHR if possible and in a browser.
|
||||
if (!hasLocation || useXhr(url, defaultProtocol, defaultHostName, defaultPort)) {
|
||||
text.get(url, function (content) {
|
||||
text.finishLoad(name, parsed.strip, content, onLoad);
|
||||
}, function (err) {
|
||||
if (onLoad.error) {
|
||||
onLoad.error(err);
|
||||
}
|
||||
});
|
||||
} else {
|
||||
//Need to fetch the resource across domains. Assume
|
||||
//the resource has been optimized into a JS module. Fetch
|
||||
//by the module name + extension, but do not include the
|
||||
//!strip part to avoid file system issues.
|
||||
req([nonStripName], function (content) {
|
||||
text.finishLoad(parsed.moduleName + '.' + parsed.ext,
|
||||
parsed.strip, content, onLoad);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
write: function (pluginName, moduleName, write, config) {
|
||||
if (buildMap.hasOwnProperty(moduleName)) {
|
||||
var content = text.jsEscape(buildMap[moduleName]);
|
||||
write.asModule(pluginName + "!" + moduleName,
|
||||
"define(function () { return '" +
|
||||
content +
|
||||
"';});\n");
|
||||
}
|
||||
},
|
||||
|
||||
writeFile: function (pluginName, moduleName, req, write, config) {
|
||||
var parsed = text.parseName(moduleName),
|
||||
nonStripName = parsed.moduleName + '.' + parsed.ext,
|
||||
//Use a '.js' file name so that it indicates it is a
|
||||
//script that can be loaded across domains.
|
||||
fileName = req.toUrl(parsed.moduleName + '.' +
|
||||
parsed.ext) + '.js';
|
||||
|
||||
//Leverage own load() method to load plugin value, but only
|
||||
//write out values that do not have the strip argument,
|
||||
//to avoid any potential issues with ! in file names.
|
||||
text.load(nonStripName, req, function (value) {
|
||||
//Use own write() method to construct full module value.
|
||||
//But need to create shell that translates writeFile's
|
||||
//write() to the right interface.
|
||||
var textWrite = function (contents) {
|
||||
return write(fileName, contents);
|
||||
};
|
||||
textWrite.asModule = function (moduleName, contents) {
|
||||
return write.asModule(moduleName, fileName, contents);
|
||||
};
|
||||
|
||||
text.write(pluginName, nonStripName, textWrite, config);
|
||||
}, config);
|
||||
}
|
||||
};
|
||||
|
||||
if (masterConfig.env === 'node' || (!masterConfig.env &&
|
||||
typeof process !== "undefined" &&
|
||||
process.versions &&
|
||||
!!process.versions.node)) {
|
||||
//Using special require.nodeRequire, something added by r.js.
|
||||
fs = require.nodeRequire('fs');
|
||||
|
||||
text.get = function (url, callback) {
|
||||
var file = fs.readFileSync(url, 'utf8');
|
||||
//Remove BOM (Byte Mark Order) from utf8 files if it is there.
|
||||
if (file.indexOf('\uFEFF') === 0) {
|
||||
file = file.substring(1);
|
||||
}
|
||||
callback(file);
|
||||
};
|
||||
} else if (masterConfig.env === 'xhr' || (!masterConfig.env &&
|
||||
text.createXhr())) {
|
||||
text.get = function (url, callback, errback) {
|
||||
var xhr = text.createXhr();
|
||||
xhr.open('GET', url, true);
|
||||
|
||||
//Allow overrides specified in config
|
||||
if (masterConfig.onXhr) {
|
||||
masterConfig.onXhr(xhr, url);
|
||||
}
|
||||
|
||||
xhr.onreadystatechange = function (evt) {
|
||||
var status, err;
|
||||
//Do not explicitly handle errors, those should be
|
||||
//visible via console output in the browser.
|
||||
if (xhr.readyState === 4) {
|
||||
status = xhr.status;
|
||||
if (status > 399 && status < 600) {
|
||||
//An http 4xx or 5xx error. Signal an error.
|
||||
err = new Error(url + ' HTTP status: ' + status);
|
||||
err.xhr = xhr;
|
||||
errback(err);
|
||||
} else {
|
||||
callback(xhr.responseText);
|
||||
}
|
||||
}
|
||||
};
|
||||
xhr.send(null);
|
||||
};
|
||||
} else if (masterConfig.env === 'rhino' || (!masterConfig.env &&
|
||||
typeof Packages !== 'undefined' && typeof java !== 'undefined')) {
|
||||
//Why Java, why is this so awkward?
|
||||
text.get = function (url, callback) {
|
||||
var stringBuffer, line,
|
||||
encoding = "utf-8",
|
||||
file = new java.io.File(url),
|
||||
lineSeparator = java.lang.System.getProperty("line.separator"),
|
||||
input = new java.io.BufferedReader(new java.io.InputStreamReader(new java.io.FileInputStream(file), encoding)),
|
||||
content = '';
|
||||
try {
|
||||
stringBuffer = new java.lang.StringBuffer();
|
||||
line = input.readLine();
|
||||
|
||||
// Byte Order Mark (BOM) - The Unicode Standard, version 3.0, page 324
|
||||
// http://www.unicode.org/faq/utf_bom.html
|
||||
|
||||
// Note that when we use utf-8, the BOM should appear as "EF BB BF", but it doesn't due to this bug in the JDK:
|
||||
// http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4508058
|
||||
if (line && line.length() && line.charAt(0) === 0xfeff) {
|
||||
// Eat the BOM, since we've already found the encoding on this file,
|
||||
// and we plan to concatenating this buffer with others; the BOM should
|
||||
// only appear at the top of a file.
|
||||
line = line.substring(1);
|
||||
}
|
||||
|
||||
stringBuffer.append(line);
|
||||
|
||||
while ((line = input.readLine()) !== null) {
|
||||
stringBuffer.append(lineSeparator);
|
||||
stringBuffer.append(line);
|
||||
}
|
||||
//Make sure we return a JavaScript string and not a Java string.
|
||||
content = String(stringBuffer.toString()); //String
|
||||
} finally {
|
||||
input.close();
|
||||
}
|
||||
callback(content);
|
||||
};
|
||||
}
|
||||
|
||||
return text;
|
||||
});
|
Loading…
Reference in new issue