mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-10 17:02:08 +02:00
Merge pull request #27 from AleziaKurdis/App_Expozer
Add the "Expozer" app
This commit is contained in:
commit
cb3a2891a0
10 changed files with 1274 additions and 1 deletions
201
applications/expozer/app-expozer.js
Normal file
201
applications/expozer/app-expozer.js
Normal file
|
@ -0,0 +1,201 @@
|
|||
//
|
||||
// app-expozer.js
|
||||
//
|
||||
// Created by Alezia Kurdis, June 17th 2023.
|
||||
// Copyright 2023 Overte e.V.
|
||||
//
|
||||
// Overte Application to read the data of the entities around you.
|
||||
//
|
||||
// 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-expozer.js";
|
||||
var ROOT = Script.resolvePath('').split(jsMainFileName)[0];
|
||||
|
||||
var APP_NAME = "EXPOZER";
|
||||
var APP_URL = ROOT + "expozer.html";
|
||||
var APP_ICON_INACTIVE = ROOT + "images/appicon_i.png";
|
||||
var APP_ICON_ACTIVE = ROOT + "images/appicon_a.png";
|
||||
var appStatus = false;
|
||||
var channel = "overte.application.ak.expozer";
|
||||
var timestamp = 0;
|
||||
var INTERCALL_DELAY = 200; //0.3 sec
|
||||
var REQUEST_TIMEOUT = 10000; //10 seconds
|
||||
var showSelectedID = Uuid.NULL;
|
||||
|
||||
var radius = Settings.getValue("entityListDefaultRadius", 300);
|
||||
|
||||
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
|
||||
|
||||
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);
|
||||
tablet.gotoHomeScreen();
|
||||
appStatus = false;
|
||||
}else{
|
||||
//Launching the Application UI.
|
||||
tablet.gotoWebScreen(APP_URL + "?radius=" + radius);
|
||||
tablet.webEventReceived.connect(onAppWebEventReceived);
|
||||
appStatus = true;
|
||||
}
|
||||
|
||||
button.editProperties({
|
||||
isActive: appStatus
|
||||
});
|
||||
}
|
||||
|
||||
button.clicked.connect(clicked);
|
||||
|
||||
//This recieved the message from the UI(html) for a specific actions
|
||||
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 === "REFRESH") {
|
||||
d = new Date();
|
||||
timestamp = d.getTime();
|
||||
radius = instruction.radius;
|
||||
refresh();
|
||||
} else if (instruction.action === "GET_FILE" && (n - timestamp) > INTERCALL_DELAY) {
|
||||
d = new Date();
|
||||
timestamp = d.getTime();
|
||||
readAndReturnFile(instruction.url);
|
||||
} else if (instruction.action === "SHOW_ENTITY") {
|
||||
d = new Date();
|
||||
timestamp = d.getTime();
|
||||
setShowEntity(instruction.position, instruction.rotation, instruction.dimensions);
|
||||
} else if (instruction.action === "REMOVE_SHOW_ENTITY") {
|
||||
removeShowEntity();
|
||||
} else if (instruction.action === "SELF_UNINSTALL" && (n - timestamp) > INTERCALL_DELAY) {
|
||||
d = new Date();
|
||||
timestamp = d.getTime();
|
||||
ScriptDiscoveryService.stopScript(Script.resolvePath(''), false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function setShowEntity(position, rotation, dimensions) {
|
||||
removeShowEntity();
|
||||
showSelectedID = Entities.addEntity({
|
||||
"type": "Shape",
|
||||
"shape": "Cube",
|
||||
"name": "ShowEntity(Expozer Tool)",
|
||||
"position": position,
|
||||
"dimensions": dimensions,
|
||||
"rotation": rotation,
|
||||
"color": {"red": 255, "green": 196, "blue": 0},
|
||||
"grab": {
|
||||
"grabbable": false
|
||||
},
|
||||
"renderLayer": "front",
|
||||
"primitiveMode": "lines"
|
||||
}, "local");
|
||||
|
||||
var toolEntitiesMaterialData = "{\n \"materialVersion\": 1,\n \"materials\": [\n {\n \"name\": \"0\",\n \"defaultFallthrough\": true,\n \"unlit\": true,\n \"model\": \"hifi_pbr\"\n }\n ]\n}";
|
||||
var materialEntityID = Entities.addEntity({
|
||||
"type": "Material",
|
||||
"parentID": showSelectedID,
|
||||
"name": "ShowEntity(Expozer Tool) unlit material",
|
||||
"parentMaterialName": "0",
|
||||
"materialURL": "materialData",
|
||||
"priority": 1,
|
||||
"materialMappingMode": "uv",
|
||||
"ignorePickIntersection": true,
|
||||
"materialData": toolEntitiesMaterialData
|
||||
}, "local");
|
||||
}
|
||||
|
||||
function removeShowEntity() {
|
||||
if (showSelectedID !== Uuid.NULL) {
|
||||
Entities.deleteEntity(showSelectedID);
|
||||
showSelectedID = Uuid.NULL;
|
||||
}
|
||||
}
|
||||
|
||||
function readAndReturnFile(url) {
|
||||
var data = getContent(url);
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "SHOW_FILE",
|
||||
"data": data,
|
||||
"url": url
|
||||
};
|
||||
|
||||
tablet.emitScriptEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function getContent(url) {
|
||||
httpRequest = new XMLHttpRequest();
|
||||
httpRequest.open("GET", url, false); // false for synchronous request
|
||||
httpRequest.setRequestHeader("Cache-Control", "no-cache");
|
||||
httpRequest.timeout = REQUEST_TIMEOUT;
|
||||
httpRequest.ontimeout=function(){
|
||||
return "";
|
||||
};
|
||||
httpRequest.send( null );
|
||||
return httpRequest.responseText;
|
||||
}
|
||||
|
||||
function refresh() {
|
||||
var datalist = [];
|
||||
|
||||
//Domain & Avatar entities
|
||||
var domAvListOfIDs = Entities.findEntities(MyAvatar.position, radius);
|
||||
for (var i=0; i < domAvListOfIDs.length; i++) {
|
||||
datalist.push(Entities.getEntityProperties(domAvListOfIDs[i]));
|
||||
}
|
||||
//Local entities
|
||||
var locListOfIDs = Overlays.findOverlays(MyAvatar.position, radius);
|
||||
for (var i=0; i < locListOfIDs.length; i++) {
|
||||
datalist.push(Entities.getEntityProperties(locListOfIDs[i]));
|
||||
}
|
||||
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "DATA_REFRESH",
|
||||
"data": datalist
|
||||
};
|
||||
|
||||
tablet.emitScriptEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function onScreenChanged(type, url) {
|
||||
if (type === "Web" && url.indexOf(APP_URL) !== -1) {
|
||||
appStatus = true;
|
||||
} else {
|
||||
appStatus = false;
|
||||
removeShowEntity();
|
||||
}
|
||||
|
||||
button.editProperties({
|
||||
isActive: appStatus
|
||||
});
|
||||
}
|
||||
|
||||
function cleanup() {
|
||||
removeShowEntity();
|
||||
if (appStatus) {
|
||||
tablet.gotoHomeScreen();
|
||||
tablet.webEventReceived.disconnect(onAppWebEventReceived);
|
||||
}
|
||||
|
||||
tablet.screenChanged.disconnect(onScreenChanged);
|
||||
tablet.removeButton(button);
|
||||
}
|
||||
|
||||
Script.scriptEnding.connect(cleanup);
|
||||
refresh();
|
||||
}());
|
965
applications/expozer/expozer.html
Normal file
965
applications/expozer/expozer.html
Normal file
|
@ -0,0 +1,965 @@
|
|||
<!DOCTYPE html>
|
||||
<!--
|
||||
expozer.html
|
||||
|
||||
Created by Alezia Kurdis, June 17th 2023.
|
||||
Copyright 2023 Overte e.V.
|
||||
|
||||
HTML UI for the "Expozer" application, to read the data of the entities arround you.
|
||||
|
||||
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>
|
||||
var channel = "overte.application.ak.expozer";
|
||||
var radius = 300;
|
||||
var dataList = [];
|
||||
|
||||
var tab = "domain";
|
||||
var sortBy = "type";
|
||||
var propertyPanelCurrentId = "";
|
||||
var selectedID = "";
|
||||
|
||||
|
||||
var MAX_DISPLAYED_CHAR_FOR_NAME = 70;
|
||||
var INDENTATION = " ";
|
||||
var NULL_UUID = "{00000000-0000-0000-0000-000000000000}";
|
||||
|
||||
var radiusParam = findGetParameter("radius");
|
||||
if(radiusParam !== null){
|
||||
radius = parseInt(radiusParam, 10);
|
||||
}
|
||||
|
||||
//Paths
|
||||
var thisPageName = "expozer.html";
|
||||
var currentPath = window.location.protocol + "//" + window.location.host + window.location.pathname;
|
||||
var ROOTPATH = currentPath.replace(thisPageName, "");
|
||||
|
||||
EventBridge.scriptEventReceived.connect(function(message){
|
||||
messageObj = JSON.parse(message);
|
||||
if (messageObj.channel === channel) {
|
||||
if (messageObj.action === "DATA_REFRESH") {
|
||||
dataList = [];
|
||||
dataList = messageObj.data;
|
||||
document.getElementById("nbrEntities").innerHTML = "ENTITIES FOUND: " + dataList.length;
|
||||
drawList();
|
||||
}
|
||||
if (messageObj.action === "SHOW_FILE") {
|
||||
drawFile(messageObj.url, messageObj.data);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
function drawList() {
|
||||
dataList.sort((a, b) => {
|
||||
var fa = a.type.toLowerCase();
|
||||
var fb = b.type.toLowerCase();
|
||||
var na = a.name.toLowerCase();
|
||||
var nb = b.name.toLowerCase();
|
||||
var scriptedA = a.script !== "" || a.serverScripts !== "";
|
||||
var scriptedB = b.script !== "" || b.serverScripts !== "";
|
||||
var lockedA = a.locked;
|
||||
var lockedB = b.locked;
|
||||
var visibleA = a.visible;
|
||||
var visibleB = b.visible;
|
||||
if (sortBy === "visible") {
|
||||
if (visibleA === visibleB) {
|
||||
return -1;
|
||||
}
|
||||
if (visibleA !== visibleB) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
if (sortBy === "locked") {
|
||||
if (lockedA === lockedB) {
|
||||
return -1;
|
||||
}
|
||||
if (lockedA !== lockedB) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
if (sortBy === "scripted") {
|
||||
if (scriptedA !== scriptedB) {
|
||||
return -1;
|
||||
}
|
||||
if (scriptedA === scriptedB) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
if (sortBy === "type" || sortBy === "scripted") {
|
||||
if (fa < fb) {
|
||||
return -1;
|
||||
}
|
||||
if (fa > fb) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
if (sortBy === "name" || sortBy === "type" || sortBy === "scripted") {
|
||||
if (na < nb) {
|
||||
return -1;
|
||||
}
|
||||
if (na > nb) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
});
|
||||
|
||||
var listData;
|
||||
if (tab === "parent") {
|
||||
listData = genParentOrdering(dataList);
|
||||
} else {
|
||||
listData = dataList.slice();
|
||||
}
|
||||
|
||||
var counts = {
|
||||
"domain": 0,
|
||||
"avatar": 0,
|
||||
"local": 0
|
||||
};
|
||||
|
||||
var theList = "";
|
||||
var name = "";
|
||||
var line = "";
|
||||
var temporary = "";
|
||||
var scripted = "";
|
||||
var visible = "";
|
||||
var locked = "";
|
||||
var lineTint = 1;
|
||||
var parentIndent;
|
||||
for (var i=0; i < listData.length; i++) {
|
||||
counts[listData[i].entityHostType]++;
|
||||
if (listData[i].entityHostType === tab || tab === "parent") {
|
||||
if (tab === "parent" && listData[i].parentID === NULL_UUID) {
|
||||
lineTint = -lineTint;
|
||||
} else if (tab === "parent" && listData[i].parentID !== NULL_UUID) {
|
||||
//keep that line color
|
||||
} else {
|
||||
lineTint = -lineTint;
|
||||
}
|
||||
|
||||
if (lineTint === 1) {
|
||||
line = " lightLine";
|
||||
} else {
|
||||
line = " darkLine";
|
||||
}
|
||||
|
||||
if (selectedID === listData[i].id) {
|
||||
line = " selectedLine";
|
||||
}
|
||||
|
||||
name = listData[i].name;
|
||||
if (name === "") {
|
||||
name = " ";
|
||||
}
|
||||
if (tab === "parent") {
|
||||
parentIndent = getParentDeepness(listData[i].id, "");
|
||||
if (parentIndent !== "") {
|
||||
name = parentIndent + "└ " + name;
|
||||
} else {
|
||||
name = parentIndent + name;
|
||||
}
|
||||
}
|
||||
if (name.length > MAX_DISPLAYED_CHAR_FOR_NAME) {
|
||||
name = name.substr(0, MAX_DISPLAYED_CHAR_FOR_NAME) + "...";
|
||||
}
|
||||
if (listData[i].lifetime !== -1) {
|
||||
temporary = " temporary";
|
||||
} else {
|
||||
temporary = "";
|
||||
}
|
||||
scripted = " ";
|
||||
if (listData[i].script !== "" || listData[i].serverScripts !== "") {
|
||||
scripted = "S";
|
||||
}
|
||||
visible = " ";
|
||||
if (listData[i].visible) {
|
||||
visible = "V";
|
||||
}
|
||||
locked = " ";
|
||||
if (listData[i].locked) {
|
||||
locked = "L";
|
||||
}
|
||||
|
||||
theList = theList + "<div class='lineContainer'>";
|
||||
theList = theList + '<button class="entityType' + temporary + line + '" id="type_' + listData[i].id + '" onclick="showInWorld(' + "'" + listData[i].id + "'" + ');">' + listData[i].type + "</button>";
|
||||
theList = theList + '<button class="entityName' + temporary + line + ' ' + listData[i].entityHostType + '" id="name_' + listData[i].id + '" onclick="showInWorld(' + "'" + listData[i].id + "'" + ');">' + name + "</button>";
|
||||
theList = theList + '<button class="icon' + line + '" id="locked_' + listData[i].id + '" onclick="showInWorld(' + "'" + listData[i].id + "'" + ');">' + locked + '</button>';
|
||||
theList = theList + '<button class="icon' + line + '" id="visible_' + listData[i].id + '" onclick="showInWorld(' + "'" + listData[i].id + "'" + ');">' + visible + '</button>';
|
||||
theList = theList + '<button class="icon' + line + '" id="scripted_' + listData[i].id + '" onclick="showInWorld(' + "'" + listData[i].id + "'" + ');">' + scripted + '</button>';
|
||||
theList = theList + '<button class="seeDetails' + temporary + line + '" id="detail_' + listData[i].id + '" onclick="displayProperties(' + "'" + listData[i].id + "'" + ');">▶</button>';
|
||||
theList = theList + "</div>";
|
||||
}
|
||||
}
|
||||
document.getElementById("list").innerHTML = theList;
|
||||
document.getElementById("domainEntities").innerHTML = "DOMAIN (" + counts.domain + ")";
|
||||
document.getElementById("avatarEntities").innerHTML = "AVATAR (" + counts.avatar + ")";
|
||||
document.getElementById("localEntities").innerHTML = "LOCAL (" + counts.local + ")";
|
||||
}
|
||||
|
||||
function showInWorld(id) {
|
||||
selectedID = id;
|
||||
refresh();
|
||||
var data = getPropertiesFromID(id);
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "SHOW_ENTITY",
|
||||
"position": data.position,
|
||||
"rotation": data.rotation,
|
||||
"dimensions": data.dimensions
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function removeShowInWorld(){
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "REMOVE_SHOW_ENTITY"
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function genParentOrdering(arr) {
|
||||
var table = {};
|
||||
arr.forEach(el => {
|
||||
if (!table[el.parentID]) {
|
||||
table[el.parentID] = [];
|
||||
}
|
||||
table[el.parentID].push(el)
|
||||
})
|
||||
var result = [];
|
||||
var constructResult = (key) => {
|
||||
if (table[key]) {
|
||||
table[key].forEach(el => {
|
||||
result.push(el);
|
||||
constructResult(el.id);
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
constructResult(NULL_UUID);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
function getParentDeepness(id, indent) {
|
||||
for (var j = 0; j < dataList.length; j++) {
|
||||
if (dataList[j].id === id) {
|
||||
if (dataList[j].parentID === NULL_UUID) {
|
||||
return indent;
|
||||
} else {
|
||||
return indent + INDENTATION + getParentDeepness(dataList[j].parentID, indent);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
</script>
|
||||
<script src='jquery.min.js'></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: #6666666;
|
||||
font-family: FiraSans-Regular;
|
||||
font-size: 12px;
|
||||
color: #FFFFFF;
|
||||
text-decoration: none;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-transform: 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;
|
||||
}
|
||||
|
||||
.lightLine {
|
||||
background-color: #222222;
|
||||
}
|
||||
|
||||
.darkLine {
|
||||
background-color: #111111;
|
||||
}
|
||||
|
||||
.selectedLine {
|
||||
background-color: #888888;
|
||||
}
|
||||
|
||||
#headerContainer {
|
||||
margin: 0px 0px 0px 0px;
|
||||
}
|
||||
|
||||
button.headerType {
|
||||
font-family: FiraSans-SemiBold;
|
||||
color: #888888;
|
||||
background-color: #555555;
|
||||
font-size: 10px;
|
||||
border: 0px solid #000000;
|
||||
border-right: 1px solid #888888;
|
||||
width: 69px;
|
||||
padding: 3px;
|
||||
text-align: left;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
button.headerName {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 10px;
|
||||
color: #888888;
|
||||
background-color: #555555;
|
||||
border: 0px solid #000000;
|
||||
border-right: 1px solid #888888;
|
||||
width: 245px;
|
||||
padding: 3px;
|
||||
text-align: left;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
button.headerScripted {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 10px;
|
||||
color: #888888;
|
||||
background-color: #555555;
|
||||
border: 0px solid #000000;
|
||||
border-right: 1px solid #888888;
|
||||
width: 16px;
|
||||
padding: 3px;
|
||||
text-align: center;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
button.headerLocked {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 10px;
|
||||
color: #888888;
|
||||
background-color: #555555;
|
||||
border: 0px solid #000000;
|
||||
border-right: 1px solid #888888;
|
||||
width: 16px;
|
||||
padding: 3px;
|
||||
text-align: center;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
button.headerVisible {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 10px;
|
||||
color: #888888;
|
||||
background-color: #555555;
|
||||
border: 0px solid #000000;
|
||||
border-right: 1px solid #888888;
|
||||
width: 16px;
|
||||
padding: 3px;
|
||||
text-align: center;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
button.entityType {
|
||||
font-family: FiraSans-SemiBold;
|
||||
color: #ffffff;
|
||||
font-size: 10px;
|
||||
border: 0px solid #000000;
|
||||
width: 70px;
|
||||
padding: 3px;
|
||||
text-align: left;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
button.seeDetails {
|
||||
font-family: FiraSans-SemiBold;
|
||||
background-color: #999999;
|
||||
color: #000000;
|
||||
font-size: 10px;
|
||||
border: 1px solid #000000;
|
||||
padding: 2px;
|
||||
width: 24px;
|
||||
text-align: center;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
button.entityName {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 10px;
|
||||
border: 0px solid #000000;
|
||||
width: 246px;
|
||||
padding: 3px;
|
||||
text-align: left;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
button.icon {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 10px;
|
||||
color: #ffffff;
|
||||
border: 0px solid #000000;
|
||||
width: 18px;
|
||||
padding: 3px;
|
||||
text-align: center;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
div.lineContainer {
|
||||
margin: 0px 0px 0px 0px;
|
||||
}
|
||||
|
||||
button:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
textarea:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.domain {
|
||||
color: #4570ff;
|
||||
}
|
||||
.avatar {
|
||||
color: #4fbd57;
|
||||
}
|
||||
.local {
|
||||
color: #e8ba00;
|
||||
}
|
||||
|
||||
.parent {
|
||||
color: #bbbbbb;
|
||||
}
|
||||
|
||||
.tab {
|
||||
border-radius: 6px 6px 0px 0px;
|
||||
background-image: linear-gradient(rgba(68,68,68,1) 20%, rgba(10,10,10,1) 100%);
|
||||
background-color: #444444;
|
||||
border: 0px;
|
||||
padding: 3px;
|
||||
width: 100px;
|
||||
margin: 0px;
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.tabActive {
|
||||
border-radius: 6px 6px 0px 0px;
|
||||
background-image: ;
|
||||
background-color: #555555;
|
||||
border: 0px;
|
||||
padding: 3px;
|
||||
width: 100px;
|
||||
margin: 0px;
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.temporary {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
#toolbarContainer {
|
||||
text-align: left;
|
||||
width:100%;
|
||||
height: 24px;
|
||||
display: flex;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
#ToolbarHeaderContainer {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 15px;
|
||||
text-align: left;
|
||||
width: 50%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#ToolbarControleContainer {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 13px;
|
||||
text-align: right;
|
||||
width: 50%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#radius {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 12px;
|
||||
color: #bbbbbb;
|
||||
background-color: #444444;
|
||||
border: 1px solid #bbbbbb;
|
||||
}
|
||||
|
||||
#refresh {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 14px;
|
||||
color: #bbbbbb;
|
||||
font-weight: 700;
|
||||
padding: 1px 5px 1px 5px;
|
||||
border-radius: 4px 4px 4px 4px;
|
||||
background-image: linear-gradient(rgba(68,68,68,1) 20%, rgba(10,10,10,1) 100%);
|
||||
border: 0px;
|
||||
|
||||
}
|
||||
|
||||
#refresh:hover {
|
||||
background-image: linear-gradient(rgba(98,98,98,1) 20%, rgba(40,40,40,1) 100%);
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
input:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#sidewalk {
|
||||
width: 50px;
|
||||
}
|
||||
#list {
|
||||
width: 398px;
|
||||
min-height: 600px;
|
||||
border: 0px;
|
||||
background-image: ;
|
||||
background-color: #555555;
|
||||
}
|
||||
|
||||
#scollableList {
|
||||
background-image: url("images/sidewalk.png");
|
||||
background-position: left top;
|
||||
background-repeat: repeat;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 600px;
|
||||
overflow-x: hidden;
|
||||
overflow-y: visible;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
#listContainer {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 20px;
|
||||
height: 10px;
|
||||
}
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: #2e2e2e;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #696969;
|
||||
border: 2px solid #2e2e2e;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
#sortContainer {
|
||||
background-color: #555555;
|
||||
}
|
||||
|
||||
.overlay {
|
||||
height: 100%;
|
||||
width: 0;
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: rgba(0,0,0, 1);
|
||||
overflow: hidden;
|
||||
transition: 0.5s;
|
||||
}
|
||||
|
||||
#propertiesName {
|
||||
text-align: left;
|
||||
width: 70%;
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 14px;
|
||||
color: #ffffff;
|
||||
font-weight: 700;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
#copy {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 12px;
|
||||
color: #bbbbbb;
|
||||
font-weight: 700;
|
||||
padding: 3px 8px 3px 8px;
|
||||
border-radius: 4px 4px 4px 4px;
|
||||
background-image: linear-gradient(rgba(88,88,88,1) 20%, rgba(30,30,30,1) 100%);
|
||||
border: 0px;
|
||||
|
||||
}
|
||||
|
||||
#copy:hover {
|
||||
background-image: linear-gradient(rgba(118,118,118,1) 20%, rgba(50,50,50,1) 100%);
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#back {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 28px;
|
||||
color: #aaaaaa;
|
||||
padding: 0px;
|
||||
background-color: #000000;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
#back:hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#fileBack {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 28px;
|
||||
color: #aaaaaa;
|
||||
padding: 0px;
|
||||
background-color: #000000;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
#fileBack:hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#properties {
|
||||
width: 100%px;
|
||||
height: 660px;
|
||||
border: 0px;
|
||||
background-color: #222222;
|
||||
overflow: auto;
|
||||
font-family: FiraSans-Regular;
|
||||
font-size: 11px;
|
||||
color: #aaaaaa;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
#file {
|
||||
width: 100%;
|
||||
height: 655px;
|
||||
border: 0px;
|
||||
background-color: #222222;
|
||||
overflow: auto;
|
||||
font-family: FiraSans-Regular;
|
||||
font-size: 11px;
|
||||
color: #aaaaaa;
|
||||
padding: 3px;
|
||||
resize: none;
|
||||
}
|
||||
|
||||
.propertyLabel {
|
||||
color: #ffffff;
|
||||
font-family: FiraSans-SemiBold;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #61cdff;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="toolbarContainer">
|
||||
<div id="ToolbarHeaderContainer"><div id="nbrEntities"></div></div>
|
||||
<div id="ToolbarControleContainer">Radius: <input id="radius" name="radius" type="text" size="5" onKeyUp="updateRadius();">
|
||||
<button id="refresh" onclick="selectedID = '';refresh();">↻</button>
|
||||
</div>
|
||||
</div>
|
||||
<div id="listContainer">
|
||||
<div id = "tabsContainer">
|
||||
<button id="domainEntities" class="tab domain" onclick="setTab('domain');">DOMAIN (0)</button>
|
||||
<button id="avatarEntities"class="tab avatar" onclick="setTab('avatar');">AVATAR (0)</button>
|
||||
<button id="localEntities"class="tab local" onclick="setTab('local');">LOCAL (0)</button>
|
||||
<button id="byParent" class="tab parent" onclick="setTab('parent');">BY PARENT</button>
|
||||
</div>
|
||||
<div id="sortContainer">
|
||||
<div class="headerContainer">
|
||||
<button class="headerType" id="sortByType" onclick="sortDataBy('type');">TYPE</button>
|
||||
<button class="headerName" id="sortByName" onclick="sortDataBy('name');">NAME</button>
|
||||
<button class="headerLocked" id="sortByLocked" onclick="sortDataBy('locked');">L</button>
|
||||
<button class="headerVisible" id="sortByVisible" onclick="sortDataBy('visible');">V</button>
|
||||
<button class="headerScripted" id="sortByScripted" onclick="sortDataBy('scripted');">S</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div id="scollableList">
|
||||
<div id="list"></div>
|
||||
<div id="sidewalk"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="text-align: right; width:100%;">
|
||||
<button id="uninstall" onClick = "uninstall();">Uninstall this app</button>
|
||||
</div>
|
||||
<div id="propertiesPanel" class="overlay" >
|
||||
<table style="width:100%;"><tr style="vertical-align: middle; height: 30px;">
|
||||
<td style="vertical-align: top; width:10%; height:30px; text-align: left;"><button id="back" onclick="closeProperties();">🡄</button></td>
|
||||
<td style="width:75%; height:30px; text-align: left;"><div id="propertiesName"></div></td>
|
||||
<td style="width:15%; height:30px; text-align: right;"><button id="copy" onclick="copyProperty();">Copy</button></td>
|
||||
</tr></table>
|
||||
<div id="properties"></div>
|
||||
</div>
|
||||
<div id="filePanel" class="overlay" >
|
||||
<table style="width:100%;"><tr style="vertical-align: middle; height: 30px;">
|
||||
<td style="vertical-align: top; width:10%; height:30px; text-align: left;"><button id="fileBack" onclick="closeFile();">🡄</button></td>
|
||||
<td style="width:90%; height:30px; text-align: left;"><div id="fileName"></div></td>
|
||||
</tr></table>
|
||||
<div style="width: 100%;"><textarea id="file" wrap="off"></textarea></div>
|
||||
</div>
|
||||
<script>
|
||||
|
||||
function drawFile(url, content) {
|
||||
document.getElementById("fileName").innerHTML = shortenUrl(url);
|
||||
document.getElementById("file").value = content;
|
||||
document.getElementById("filePanel").style.width = "100%";
|
||||
}
|
||||
|
||||
function shortenUrl(url) {
|
||||
if (url.length >= 90) {
|
||||
return url.substr(0, 41) + "... ..." + url.substr(url.length-42, 42);
|
||||
} else {
|
||||
return url;
|
||||
}
|
||||
}
|
||||
|
||||
function closeFile() {
|
||||
document.getElementById("filePanel").style.width = "0%";
|
||||
}
|
||||
|
||||
function copyProperty() {
|
||||
var dataToCopy = JSON.stringify(getPropertiesFromID(propertyPanelCurrentId));
|
||||
copyToClipboard(dataToCopy);
|
||||
document.getElementById("copy").style.color = "#00ff00";
|
||||
}
|
||||
function copyToClipboard(data) {
|
||||
var $temp = $("<input>");
|
||||
$("body").append($temp);
|
||||
$temp.val(data).select();
|
||||
document.execCommand("copy");
|
||||
$temp.remove();
|
||||
}
|
||||
|
||||
function displayProperties(id) {
|
||||
propertyPanelCurrentId = id;
|
||||
showInWorld(id);
|
||||
var properties = getPropertiesFromID(id);
|
||||
document.getElementById("propertiesName").innerHTML = "<font class='" + properties.entityHostType + "'>" + properties.name + "</font>";
|
||||
document.getElementById("properties").innerHTML = drawProperties(properties);
|
||||
document.getElementById("copy").style.color = "#bbbbbb";
|
||||
document.getElementById("propertiesPanel").style.width = "100%";
|
||||
}
|
||||
|
||||
function getPropertiesFromID(id) {
|
||||
var prop = [];
|
||||
for (var i = 0; i < dataList.length; i++) {
|
||||
if (dataList[i].id === id) {
|
||||
prop = dataList[i];
|
||||
break;
|
||||
}
|
||||
}
|
||||
return prop;
|
||||
}
|
||||
|
||||
function closeProperties() {
|
||||
document.getElementById("propertiesPanel").style.width = "0%";
|
||||
}
|
||||
|
||||
function drawProperties(obj) {
|
||||
var txt = "";
|
||||
var urlProperties = ["script", "serverScripts", "modelURL", "materialURL", "compoundShapeUrl", "scriptURL", "filterURL"];
|
||||
for(var propt in obj){
|
||||
var value = obj[propt];
|
||||
if (urlProperties.indexOf(propt) !== -1 && value.substr(0, 4) === "http" && (value.indexOf(".js") !== -1 || value.indexOf(".fst") !== -1 )) {
|
||||
txt = txt + "<font class='propertyLabel'>" + propt + ":</font> " + '<a href="#" onclick="openFile(' + "'" + value + "'" + '); return false;">' + value + "</a><br>";
|
||||
} else if (propt === "parentID") {
|
||||
txt = txt + "<font class='propertyLabel'>" + propt + ":</font> " + genLinkFromID(value) + "<br>";
|
||||
} else if (propt === "renderWithZones") {
|
||||
txt = txt + "<font class='propertyLabel'>" + propt + ":</font> [";
|
||||
if (value.length > 0) {
|
||||
for (var k = 0; k < value.length; k++) {
|
||||
if (k !== 0) {
|
||||
txt = txt + ", " + genLinkFromID(value[k]);
|
||||
} else {
|
||||
txt = txt + genLinkFromID(value[k]);
|
||||
}
|
||||
}
|
||||
}
|
||||
txt = txt + "]<br>";
|
||||
} else {
|
||||
txt = txt + "<font class='propertyLabel'>" + propt + ":</font> " + JSON.stringify(value) + "<br>";
|
||||
}
|
||||
}
|
||||
return txt;
|
||||
}
|
||||
|
||||
function genLinkFromID(id) {
|
||||
if (id === NULL_UUID) {
|
||||
return NULL_UUID;
|
||||
} else {
|
||||
var data = getPropertiesFromID(id);
|
||||
return "<a class='" + data.entityHostType + "' href='#' onclick='displayProperties(" + '"' + id + '"' + "); return false;'>" + data.name + "</a>";
|
||||
}
|
||||
}
|
||||
|
||||
function openFile(url) {
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "GET_FILE",
|
||||
"url": url
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
|
||||
|
||||
function sortDataBy(criteria) {
|
||||
var colorTag = "<font style='color:#dddddd;'>";
|
||||
sortBy = criteria;
|
||||
if (criteria === "type") {
|
||||
document.getElementById("sortByType").innerHTML = colorTag + "TYPE</font>";
|
||||
document.getElementById("sortByName").innerHTML = "NAME";
|
||||
document.getElementById("sortByScripted").innerHTML = "S";
|
||||
document.getElementById("sortByLocked").innerHTML = "L";
|
||||
document.getElementById("sortByVisible").innerHTML = "V";
|
||||
} else if (criteria === "name") {
|
||||
document.getElementById("sortByType").innerHTML = "TYPE";
|
||||
document.getElementById("sortByName").innerHTML = colorTag + "NAME</font>";
|
||||
document.getElementById("sortByScripted").innerHTML = "S";
|
||||
document.getElementById("sortByLocked").innerHTML = "L";
|
||||
document.getElementById("sortByVisible").innerHTML = "V";
|
||||
} else if (criteria === "scripted") {
|
||||
document.getElementById("sortByType").innerHTML = "TYPE";
|
||||
document.getElementById("sortByName").innerHTML = "NAME";
|
||||
document.getElementById("sortByScripted").innerHTML = colorTag + "S</font>";
|
||||
document.getElementById("sortByLocked").innerHTML = "L";
|
||||
document.getElementById("sortByVisible").innerHTML = "V";
|
||||
} else if (criteria === "locked") {
|
||||
document.getElementById("sortByType").innerHTML = "TYPE";
|
||||
document.getElementById("sortByName").innerHTML = "NAME";
|
||||
document.getElementById("sortByScripted").innerHTML = "S";
|
||||
document.getElementById("sortByLocked").innerHTML = colorTag + "L</font>";
|
||||
document.getElementById("sortByVisible").innerHTML = "V";
|
||||
} else if (criteria === "visible") {
|
||||
document.getElementById("sortByType").innerHTML = "TYPE";
|
||||
document.getElementById("sortByName").innerHTML = "NAME";
|
||||
document.getElementById("sortByScripted").innerHTML = "S";
|
||||
document.getElementById("sortByLocked").innerHTML = "L";
|
||||
document.getElementById("sortByVisible").innerHTML = colorTag + "V</font>";
|
||||
} else {
|
||||
document.getElementById("sortByType").innerHTML = "TYPE";
|
||||
document.getElementById("sortByName").innerHTML = "NAME";
|
||||
document.getElementById("sortByScripted").innerHTML = "S";
|
||||
document.getElementById("sortByLocked").innerHTML = "L";
|
||||
document.getElementById("sortByVisible").innerHTML = "V";
|
||||
}
|
||||
selectedID = "";
|
||||
removeShowInWorld();
|
||||
refresh();
|
||||
}
|
||||
|
||||
function setTab(tabName) {
|
||||
tab = tabName;
|
||||
manageTabs();
|
||||
selectedID = "";
|
||||
removeShowInWorld();
|
||||
refresh();
|
||||
}
|
||||
|
||||
function manageTabs() {
|
||||
document.getElementById("domainEntities").className = "tab domain";
|
||||
document.getElementById("avatarEntities").className = "tab avatar";
|
||||
document.getElementById("localEntities").className = "tab local";
|
||||
document.getElementById("byParent").className = "tab parent";
|
||||
switch(tab) {
|
||||
case "domain":
|
||||
document.getElementById("domainEntities").className = "tabActive domain";
|
||||
break;
|
||||
case "avatar":
|
||||
document.getElementById("avatarEntities").className = "tabActive avatar";
|
||||
break;
|
||||
case "local":
|
||||
document.getElementById("localEntities").className = "tabActive local";
|
||||
break;
|
||||
case "parent":
|
||||
document.getElementById("byParent").className = "tabActive parent";
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function updateRadius() {
|
||||
var newRadius = parseInt(document.getElementById("radius").value, 10);
|
||||
radius = newRadius;
|
||||
if (radius > 0) {
|
||||
refresh();
|
||||
} else {
|
||||
dataList = [];
|
||||
drawList();
|
||||
}
|
||||
selectedID = "";
|
||||
removeShowInWorld();
|
||||
}
|
||||
|
||||
function refresh() {
|
||||
document.getElementById("radius").value = radius;
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "REFRESH",
|
||||
"radius": radius
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function uninstall() {
|
||||
var message = {
|
||||
"channel": channel,
|
||||
"action": "SELF_UNINSTALL"
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
manageTabs();
|
||||
sortDataBy(sortBy);
|
||||
refresh();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
BIN
applications/expozer/fonts/FiraSans-Regular.ttf
Normal file
BIN
applications/expozer/fonts/FiraSans-Regular.ttf
Normal file
Binary file not shown.
BIN
applications/expozer/fonts/FiraSans-SemiBold.ttf
Normal file
BIN
applications/expozer/fonts/FiraSans-SemiBold.ttf
Normal file
Binary file not shown.
94
applications/expozer/fonts/FiraSans.license
Normal file
94
applications/expozer/fonts/FiraSans.license
Normal file
|
@ -0,0 +1,94 @@
|
|||
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.
|
BIN
applications/expozer/images/appicon_a.png
Normal file
BIN
applications/expozer/images/appicon_a.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
applications/expozer/images/appicon_i.png
Normal file
BIN
applications/expozer/images/appicon_i.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
applications/expozer/images/sidewalk.png
Normal file
BIN
applications/expozer/images/sidewalk.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 402 B |
4
applications/expozer/jquery.min.js
vendored
Normal file
4
applications/expozer/jquery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -215,6 +215,15 @@ var metadata = { "applications":
|
|||
"jsfile": "cameras/CameraPositions.js",
|
||||
"icon": "cameras/CameraPos-inactive.svg",
|
||||
"caption": "CAMERAS"
|
||||
}
|
||||
},
|
||||
{
|
||||
"isActive": true,
|
||||
"directory": "expozer",
|
||||
"name": "expozer",
|
||||
"description": "This tool allows you to browse all the possible entities of a domain (Domain, Avatar and Local entities). You can view the data from any domains, even those where you don't have the permission to edit. It has also an entity list grouped by parents. The tool also lets you see directly the content of different types of file (.js, .json, .fst). Perfect for: debugging, learning, or to see how thing are done.",
|
||||
"jsfile": "expozer/app-expozer.js",
|
||||
"icon": "expozer/images/appicon_i.png",
|
||||
"caption": "EXPOZER"
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue