mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-05 12:31:09 +02:00
Delete applications/audioZones directory
Decommissioning Now directly supported on zone entity.
This commit is contained in:
parent
7af1e1460f
commit
dbddd4adca
10 changed files with 0 additions and 658 deletions
|
@ -1,241 +0,0 @@
|
|||
//
|
||||
// app-audioZones.js
|
||||
//
|
||||
// Created by Alezia Kurdis based on a concept from Silverfish, February 18th 2023.
|
||||
// Copyright 2023 Overte e.V.
|
||||
//
|
||||
// This is a tool to help to create audio zones
|
||||
// and provide the necessary configuration for the Domain Server.
|
||||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
(function() {
|
||||
var jsMainFileName = "app-audioZones.js";
|
||||
var ROOT = Script.resolvePath('').split(jsMainFileName)[0];
|
||||
|
||||
var APP_NAME = "AUDIO-Z";
|
||||
var APP_URL = ROOT + "audioZones.html";
|
||||
var APP_ICON_INACTIVE = ROOT + "images/icon_audioZone_inactive.png";
|
||||
var APP_ICON_ACTIVE = ROOT + "images/icon_audioZone_active.png";
|
||||
var appStatus = false;
|
||||
var channel = "overte.application.more.audioZones";
|
||||
var timestamp = 0;
|
||||
var INTERCALL_DELAY = 200; //0.3 sec
|
||||
var confirmationSound = SoundCache.getSound(ROOT + "sounds/confirmation.mp3");
|
||||
var rejectionSound = SoundCache.getSound(ROOT + "sounds/rejection.mp3");
|
||||
var INSUFFICIENT_PERMISSIONS_ERROR_MSG = "Sorry, you don't have the permission to use this application in this domain.";
|
||||
|
||||
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
|
||||
|
||||
var radius = Settings.getValue("entityListDefaultRadius", 300);
|
||||
|
||||
tablet.screenChanged.connect(onScreenChanged);
|
||||
|
||||
var button = tablet.addButton({
|
||||
text: APP_NAME,
|
||||
icon: APP_ICON_INACTIVE,
|
||||
activeIcon: APP_ICON_ACTIVE
|
||||
});
|
||||
|
||||
|
||||
function clicked(){
|
||||
if (appStatus === true) {
|
||||
tablet.webEventReceived.disconnect(onAppWebEventReceived);
|
||||
location.hostChanged.disconnect(onHostChanged);
|
||||
tablet.gotoHomeScreen();
|
||||
appStatus = false;
|
||||
}else{
|
||||
if (Entities.canRez() && Entities.canAdjustLocks()) {
|
||||
tablet.gotoWebScreen(APP_URL + "?radius=" + radius);
|
||||
tablet.webEventReceived.connect(onAppWebEventReceived);
|
||||
location.hostChanged.connect(onHostChanged);
|
||||
appStatus = true;
|
||||
} else {
|
||||
rejection();
|
||||
Window.displayAnnouncement(INSUFFICIENT_PERMISSIONS_ERROR_MSG);
|
||||
}
|
||||
}
|
||||
|
||||
button.editProperties({
|
||||
isActive: appStatus
|
||||
});
|
||||
}
|
||||
|
||||
button.clicked.connect(clicked);
|
||||
|
||||
|
||||
function onAppWebEventReceived(message) {
|
||||
if (typeof message === "string") {
|
||||
var d = new Date();
|
||||
var n = d.getTime();
|
||||
var instruction = JSON.parse(message);
|
||||
if (instruction.channel === channel) {
|
||||
if (instruction.action === "SHOW_AUDIO_ZONES" && (n - timestamp) > INTERCALL_DELAY) {
|
||||
d = new Date();
|
||||
timestamp = d.getTime();
|
||||
setAudioZonesVisibility(true);
|
||||
} else if (instruction.action === "HIDE_AUDIO_ZONES" && (n - timestamp) > INTERCALL_DELAY) {
|
||||
d = new Date();
|
||||
timestamp = d.getTime();
|
||||
setAudioZonesVisibility(false);
|
||||
} else if (instruction.action === "CREATE_AN_AUDIO_ZONE" && (n - timestamp) > INTERCALL_DELAY) {
|
||||
d = new Date();
|
||||
timestamp = d.getTime();
|
||||
createAudioZone(instruction.name);
|
||||
} else if (instruction.action === "COMPUTE_AUDIO_ZONES" && (n - timestamp) > INTERCALL_DELAY) {
|
||||
d = new Date();
|
||||
timestamp = d.getTime();
|
||||
computeAudioZones();
|
||||
} else if (instruction.action === "SELF_UNINSTALL" && (n - timestamp) > INTERCALL_DELAY) {
|
||||
d = new Date();
|
||||
timestamp = d.getTime();
|
||||
ScriptDiscoveryService.stopScript(Script.resolvePath(''), false);
|
||||
} else if (instruction.action === "SYS_SHOW_AUDIO_ZONES") {
|
||||
setAudioZonesVisibility(true);
|
||||
} else if (instruction.action === "SYS_HIDE_AUDIO_ZONES") {
|
||||
setAudioZonesVisibility(false);
|
||||
} else if (instruction.action === "SET_RADIUS" && (n - timestamp) > INTERCALL_DELAY) {
|
||||
d = new Date();
|
||||
timestamp = d.getTime();
|
||||
radius = instruction.radius;
|
||||
computeAudioZones();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function setAudioZonesVisibility(isVisible) {
|
||||
var lock = false;
|
||||
if (!isVisible) {
|
||||
lock = true;
|
||||
}
|
||||
var boxUUIDs = Entities.findEntitiesByType("Box", MyAvatar.position, radius);
|
||||
var foundBoxDescription = Entities.getMultipleEntityProperties(boxUUIDs, ["description", "locked"]);
|
||||
for(var i = 0; i < boxUUIDs.length; i++) {
|
||||
if(foundBoxDescription[i].description === "AudiozoneHelperBox_" + channel) {
|
||||
if (foundBoxDescription[i].locked) {
|
||||
Entities.editEntity(boxUUIDs[i], {"locked": false});
|
||||
Entities.editEntity(boxUUIDs[i], {"visible": isVisible, "locked": lock, "rotation": Quat.IDENTITY});
|
||||
} else {
|
||||
Entities.editEntity(boxUUIDs[i], {"visible": isVisible, "locked": lock, "rotation": Quat.IDENTITY});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function createAudioZone(name) {
|
||||
if(name === "" || name.indexOf(" ") !== -1) {
|
||||
rejection();
|
||||
Window.displayAnnouncement("Name is missing or contains space characters.");
|
||||
return;
|
||||
}
|
||||
var id = Entities.addEntity({
|
||||
"type": "Box",
|
||||
"name": name,
|
||||
"visible": true,
|
||||
"locked": false,
|
||||
"description": "AudiozoneHelperBox_" + channel,
|
||||
"primitiveMode": "lines",
|
||||
"renderLayer": "front",
|
||||
"color": {"red": 255, "green": 0, "blue": 0},
|
||||
"canCastShadow": false,
|
||||
"grab": {
|
||||
"grabbable": false
|
||||
},
|
||||
"collisionless": true,
|
||||
"position": Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { "x": 0, "y": 0, "z": -5 })),
|
||||
"rotation": Quat.IDENTITY,
|
||||
"dimensions": { "x": 2, "y": 2, "z": 2 }
|
||||
}, "domain");
|
||||
if(id === Uuid.NULL) {
|
||||
rejection();
|
||||
Window.displayAnnouncement("Oops! Something went wrong with the creation of the Audio Zone.");
|
||||
} else {
|
||||
confirmation();
|
||||
computeAudioZones();
|
||||
}
|
||||
}
|
||||
|
||||
function computeAudioZones() {
|
||||
var boxUUIDs = Entities.findEntitiesByType("Box", MyAvatar.position, radius);
|
||||
var propertySets = Entities.getMultipleEntityProperties(boxUUIDs, ["name", "description", "boundingBox", "rotation"]);
|
||||
var boxString = "";
|
||||
var outputText = "";
|
||||
var rotationIssue = false;
|
||||
var dot;
|
||||
for(var i = 0; i < propertySets.length; i++) {
|
||||
if(propertySets[i].description === "AudiozoneHelperBox_" + channel) {
|
||||
dot = Quat.dot(propertySets[i].rotation, Quat.IDENTITY);
|
||||
if (Math.abs(dot) < 0.9999) {
|
||||
rotationIssue = true;
|
||||
}
|
||||
boxString = "Name: " + propertySets[i].name + "\n";
|
||||
boxString += " X start: " + propertySets[i].boundingBox.brn.x.toFixed(2) + "\n";
|
||||
boxString += " X end : " + propertySets[i].boundingBox.tfl.x.toFixed(2) + "\n";
|
||||
boxString += " Y start: " + propertySets[i].boundingBox.brn.y.toFixed(2) + "\n";
|
||||
boxString += " Y end : " + propertySets[i].boundingBox.tfl.y.toFixed(2) + "\n";
|
||||
boxString += " Z start: " + propertySets[i].boundingBox.brn.z.toFixed(2) + "\n";
|
||||
boxString += " Z end : " + propertySets[i].boundingBox.tfl.z.toFixed(2) + "\n";
|
||||
boxString += " \n";
|
||||
outputText += boxString;
|
||||
}
|
||||
};
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "AUDIO_ZONES_DATA",
|
||||
"data": outputText,
|
||||
"rotationIssue": rotationIssue
|
||||
};
|
||||
|
||||
tablet.emitScriptEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function onScreenChanged(type, url) {
|
||||
if (type === "Web" && url.indexOf(APP_URL) !== -1) {
|
||||
appStatus = true;
|
||||
} else {
|
||||
appStatus = false;
|
||||
}
|
||||
|
||||
button.editProperties({
|
||||
isActive: appStatus
|
||||
});
|
||||
}
|
||||
|
||||
function confirmation() { //Play a confirmation sound
|
||||
var injector = Audio.playSound(confirmationSound, {
|
||||
"volume": 0.3,
|
||||
"localOnly": true
|
||||
});
|
||||
}
|
||||
|
||||
function rejection() { //Play a rejection sound
|
||||
var injector = Audio.playSound(rejectionSound, {
|
||||
"volume": 0.3,
|
||||
"localOnly": true
|
||||
});
|
||||
}
|
||||
|
||||
function onHostChanged(host) {
|
||||
if ((!Entities.canRez() || !Entities.canAdjustLocks()) && appStatus) {
|
||||
clicked();
|
||||
rejection();
|
||||
Window.displayAnnouncement(INSUFFICIENT_PERMISSIONS_ERROR_MSG);
|
||||
}
|
||||
}
|
||||
|
||||
function cleanup() {
|
||||
|
||||
if (appStatus) {
|
||||
tablet.gotoHomeScreen();
|
||||
tablet.webEventReceived.disconnect(onAppWebEventReceived);
|
||||
location.hostChanged.disconnect(onHostChanged);
|
||||
}
|
||||
|
||||
tablet.screenChanged.disconnect(onScreenChanged);
|
||||
tablet.removeButton(button);
|
||||
}
|
||||
|
||||
Script.scriptEnding.connect(cleanup);
|
||||
}());
|
|
@ -1,319 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<!--
|
||||
audioZones.html
|
||||
|
||||
Created by Alezia Kurdis based on a concept from Silverfish, February 18th 2023.
|
||||
Copyright 2023 Overte e.V.
|
||||
|
||||
This is a tool to help to create audio zones
|
||||
and provide the necessary configuration for the Domain Server.
|
||||
|
||||
Distributed under the Apache License, Version 2.0.
|
||||
See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<script src='jquery.min.js'></script>
|
||||
<script>
|
||||
var channel = "overte.application.more.audioZones";
|
||||
|
||||
var thisPageName = "audioZones.html";
|
||||
var currentPath = window.location.protocol + "//" + window.location.host + window.location.pathname;
|
||||
var ROOTPATH = currentPath.replace(thisPageName, "");
|
||||
|
||||
function findGetParameter(parameterName) {
|
||||
var result = null,
|
||||
tmp = [];
|
||||
var items = location.search.substr(1).split("&");
|
||||
for (var index = 0; index < items.length; index++) {
|
||||
tmp = items[index].split("=");
|
||||
if (tmp[0] === parameterName) result = decodeURIComponent(tmp[1]);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
var parameter = findGetParameter("radius");
|
||||
if(parameter === null){parameter = "300";}
|
||||
var radius = parseInt(parameter, 10);
|
||||
|
||||
EventBridge.scriptEventReceived.connect(function(message){
|
||||
messageObj = JSON.parse(message);
|
||||
if (messageObj.channel === channel) {
|
||||
if (messageObj.action === "AUDIO_ZONES_DATA") {
|
||||
document.getElementById("outputData").value = messageObj.data;
|
||||
if (messageObj.rotationIssue) {
|
||||
document.getElementById("error").innerHTML = "ATTENTION! We fixed rotation issues for you. Please review your Audio Zones.";
|
||||
setAudioZoneVisibility(true, "sys");
|
||||
} else {
|
||||
document.getElementById("error").innerHTML = " ";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: FiraSans-SemiBold;
|
||||
src: url(fonts/FiraSans-SemiBold.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: FiraSans-Regular;
|
||||
src: url(fonts/FiraSans-Regular.ttf);
|
||||
}
|
||||
|
||||
html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #454545;
|
||||
font-family: FiraSans-Regular;
|
||||
font-size: 12px;
|
||||
color: #FFFFFF;
|
||||
text-decoration: none;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
#radius {
|
||||
width: 60px;
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 12px;
|
||||
background-color: #000000;
|
||||
color: #bbbbbb;
|
||||
}
|
||||
|
||||
#radius:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#uninstall {
|
||||
font-family: FiraSans-SemiBold;
|
||||
background-color: #222222;
|
||||
font-size: 9px;
|
||||
color: #cccccc;
|
||||
border-radius: 3px;
|
||||
border: 0px solid #000000;
|
||||
transition-duration: 0.2s;
|
||||
width: 100px;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
#uninstall:hover {
|
||||
background-color: #000000;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#uninstall:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.btn {
|
||||
font-family: FiraSans-SemiBold;
|
||||
background-color: #222222;
|
||||
font-size: 11px;
|
||||
color: #cccccc;
|
||||
border-radius: 3px;
|
||||
border: 0px solid #000000;
|
||||
transition-duration: 0.2s;
|
||||
width: 70px;
|
||||
padding: 4px;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
background-color: #000000;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.btn:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.btn:disabled {
|
||||
background-color: #383838;
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
font.subtitle {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
font.instructions {
|
||||
font-family: FiraSans-Regular;
|
||||
font-size: 11px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
#outputData {
|
||||
width: 98%;
|
||||
height: 410px;
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 11px;
|
||||
resize: none;
|
||||
overflow-x: hidden;
|
||||
overflow-y: visible;
|
||||
background-color: #000000;
|
||||
color: #bbbbbb;
|
||||
}
|
||||
|
||||
#outputData:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#newAudioZoneName {
|
||||
width: 350px;
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 12px;
|
||||
background-color: #000000;
|
||||
color: #bbbbbb;
|
||||
}
|
||||
|
||||
#newAudioZoneName:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#error {
|
||||
width: 100%;
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 12px;
|
||||
color: #ff9500;
|
||||
padding: 4px;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div style="text-align: center; width:100%;"><h1>AUDIO ZONES HELPER</h1></div>
|
||||
<div style="width:100%; display: flex;">
|
||||
<div style="text-align: left; width:100%;">
|
||||
<button id="showAudioZones" class="btn" onClick = "setAudioZoneVisibility(true, 'ui');">SHOW</button>
|
||||
<button id="hideAudioZones" class="btn" onClick = "setAudioZoneVisibility(false, 'ui');">HIDE</button>
|
||||
</div>
|
||||
<div style="text-align: right; width:100%;">
|
||||
Radius: <input type = "text" id="radius" value = "" onkeyup="setRadius();">
|
||||
</div>
|
||||
</div>
|
||||
<div id="error"></div>
|
||||
<div style="text-align: right; width:100%;">
|
||||
<button id="copy" class="btn" onclick="copyToClipboard(document.getElementById('outputData').value);">Copy</button>
|
||||
</div>
|
||||
<textarea id = "outputData" readonly></textarea>
|
||||
<hr>
|
||||
<font class="subtitle">CREATE A NEW AUDIO ZONE:</font><br>
|
||||
<input type = "text" id="newAudioZoneName" maxlength="64" value = "AudioZone-name" onkeyup="checkName();">
|
||||
<button id="createAudioZones" class="btn" onClick = "createAudioZone(document.getElementById('newAudioZoneName').value);">Create</button><br>
|
||||
<font class="instructions">- Once created, use the "Create" application to position and resize your audio zone.<br>
|
||||
- Do not "rotate" the audio zones. (if you do, the rotation zero will be enforced.)<br>
|
||||
</font>
|
||||
<br><br>
|
||||
<hr>
|
||||
<div style="text-align: right; width:100%;">
|
||||
<button id="uninstall" onClick = "uninstall();">Uninstall this app</button>
|
||||
</div>
|
||||
<script>
|
||||
function setAudioZoneVisibility(isVisible, calltype) {
|
||||
var action = "";
|
||||
if (calltype === "ui") {
|
||||
if (!isVisible) {
|
||||
action = "HIDE_AUDIO_ZONES";
|
||||
} else {
|
||||
action = "SHOW_AUDIO_ZONES";
|
||||
}
|
||||
} else {
|
||||
if (!isVisible) {
|
||||
action = "SYS_HIDE_AUDIO_ZONES";
|
||||
} else {
|
||||
action = "SYS_SHOW_AUDIO_ZONES";
|
||||
}
|
||||
}
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": action
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function createAudioZone(name) {
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "CREATE_AN_AUDIO_ZONE",
|
||||
"name": name
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function checkName() {
|
||||
var buttonElement = document.getElementById("createAudioZones");
|
||||
var name = getAcceptedName(document.getElementById("newAudioZoneName").value);
|
||||
document.getElementById("newAudioZoneName").value = name;
|
||||
if( name === "") {
|
||||
buttonElement.disabled = true;
|
||||
} else {
|
||||
buttonElement.disabled = false;
|
||||
}
|
||||
}
|
||||
|
||||
function getAcceptedName(str) {
|
||||
var accepted = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-";
|
||||
var cleanedName = "";
|
||||
for (var i = 0; i < str.length; i++) {
|
||||
if (accepted.indexOf(str.charAt(i)) !== -1) {
|
||||
cleanedName = cleanedName + str.charAt(i);
|
||||
}
|
||||
}
|
||||
return cleanedName;
|
||||
}
|
||||
|
||||
function uninstall() {
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "SELF_UNINSTALL"
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function copyToClipboard(data) {
|
||||
var $temp = $("<textarea>");
|
||||
$("body").append($temp);
|
||||
$temp.val(data).select();
|
||||
document.execCommand("copy");
|
||||
$temp.remove();
|
||||
}
|
||||
|
||||
function getAudioZoneData() {
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "COMPUTE_AUDIO_ZONES"
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function setRadius() {
|
||||
var newRadius = parseInt(document.getElementById("radius").value, 10);
|
||||
if (isNaN(newRadius)) {
|
||||
newRadius = 0;
|
||||
}
|
||||
radius = newRadius;
|
||||
document.getElementById("radius").value = radius;
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "SET_RADIUS",
|
||||
"radius": radius
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
document.getElementById("radius").value = radius;
|
||||
getAudioZoneData();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
Binary file not shown.
|
@ -1,94 +0,0 @@
|
|||
Digitized data copyright (c) 2012-2015, The Mozilla Foundation and Telefonica S.A.
|
||||
with Reserved Font Name < Fira >,
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
Binary file not shown.
Before Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.5 KiB |
4
applications/audioZones/jquery.min.js
vendored
4
applications/audioZones/jquery.min.js
vendored
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue