2020-03-28 11:49:11 +01:00
<!DOCTYPE html>
< html >
< head >
< meta charset = "utf-8" >
<!-- Favicon as generated by realfavicongenerator.net (slightly modified for webpack) -->
2020-03-28 13:53:16 +01:00
< link rel = "icon" type = "image/png" href = "favicon-32x32.png" sizes = "32x32" >
2020-03-28 11:49:11 +01:00
< link rel = "manifest" href = "e72996a6d1ed5d1d7962c27c10c08fa6.json" >
< meta name = "apple-mobile-web-app-title" content = "Mumble" >
< meta name = "application-name" content = "Mumble" >
< meta name = "msapplication-config" content = "8b61e99b17ef88afd479b3fc990e5b9d.xml" >
< meta name = "theme-color" content = "#ffffff" >
< script src = "config.js" > < / script >
< script src = "config.local.js" > < / script >
< script src = "theme.js" > < / script >
< script src = "matrix.js" > < / script >
< / head >
< body >
< div class = "loading-container" data-bind = "css: { loaded: true }" >
< div class = "loading-circle" data-bind = "css: { loaded: true }" > < / div >
< / div >
< div id = "container" style = "display: none" data-bind = "visible: true ,
css: { minimal: minimalView }">
<!-- ko with: connectDialog -->
< div class = "connect-dialog dialog" data-bind = "visible: visible() && !joinOnly()" >
< div class = "dialog-header" >
2020-03-28 13:26:16 +01:00
Se connecter au serveur
2020-03-28 11:49:11 +01:00
< / div >
< form data-bind = "submit: connect" >
< table >
< tr data-bind = "if: $root.config.connectDialog.address" >
2020-03-28 13:26:16 +01:00
< td > Adresse< / td >
2020-03-28 11:49:11 +01:00
< td > < input id = "address" type = "text" data-bind = "value: address" required > < / td >
< / tr >
< tr data-bind = "if: $root.config.connectDialog.port" >
< td > Port< / td >
< td > < input id = "port" type = "text" data-bind = "value: port" required > < / td >
< / tr >
< tr data-bind = "if: $root.config.connectDialog.username" >
2020-03-29 15:10:24 +02:00
< td > Pseudo ou nom< / td >
2020-03-28 11:49:11 +01:00
< td > < input id = "username" type = "text" data-bind = "value: username" required > < / td >
< / tr >
< tr data-bind = "if: $root.config.connectDialog.password" >
2020-03-28 13:26:16 +01:00
< td > Mot de passe< / td >
2020-03-28 11:49:11 +01:00
< td > < input id = "password" type = "password" data-bind = "value: password" > < / td >
< / tr >
< tr data-bind = "if: $root.config.connectDialog.token" >
2020-04-09 15:37:28 +02:00
< td > < small > Mot de passe de canal< / small > < br > < small > < small > optionnel, uniquement pour< br > accéder aux canaux réservés< / small > < / small > < / td >
2020-03-28 11:49:11 +01:00
< td >
< input type = "text" data-bind = 'value: tokenToAdd, valueUpdate: "afterkeydown"' >
< / td >
< / tr >
< tr data-bind = "if: $root.config.connectDialog.token" >
< td > < / td >
< td >
2020-04-09 14:34:37 +02:00
< button class = "dialog-submit" type = "button" data-bind = "enable: selectedTokens().length > 0, click: removeSelectedTokens()" > < small > < small > Supprimer< / small > < / small > < / button >
< button class = "dialog-submit" type = "button" data-bind = "enable: tokenToAdd().length > 0, click: addToken()" > < small > < small > Ajouter< / small > < / small > < / button >
2020-03-28 11:49:11 +01:00
< / td >
< / tr >
< tr data-bind = "if: $root.config.connectDialog.token, visible: tokens().length > 0" >
< td > < / td >
< td > < select id = "token" multiple = "multiple" height = "5" data-bind = "options:tokens, selectedOptions:selectedTokens" > < / select > < / td >
< / tr >
< tr data-bind = "if: $root.config.connectDialog.channelName" >
2020-03-28 13:26:16 +01:00
< td > Canal< / td >
2020-03-28 11:49:11 +01:00
< td > < input id = "channelName" type = "text" data-bind = "value: channelName" > < / td >
< / tr >
< / table >
< div class = "dialog-footer" >
2020-03-28 13:26:16 +01:00
< input class = "dialog-close" type = "button" data-bind = "click: hide" value = "Annuler" >
< input class = "dialog-submit" type = "submit" value = "Se connecter" >
2020-03-28 11:49:11 +01:00
< / div >
< / form >
< / div >
<!-- /ko -->
<!-- ko with: connectDialog -->
< div class = "join-dialog dialog" data-bind = "visible: visible() && joinOnly()" >
< div class = "dialog-header" >
2020-03-28 13:26:16 +01:00
Conférence vocale Mumble
2020-03-28 11:49:11 +01:00
< / div >
< form data-bind = "submit: connect" >
< input class = "dialog-submit" type = "submit" value = "Join Conference" >
< / form >
< / div >
<!-- /ko -->
<!-- ko with: connectErrorDialog -->
< div class = "connect-dialog error-dialog dialog" data-bind = "visible: visible()" >
< div class = "dialog-header" >
2020-03-28 13:26:16 +01:00
Échec de la connexion.
2020-03-28 11:49:11 +01:00
< / div >
< form data-bind = "submit: connect" >
< table >
< tr >
< td colspan = 2 >
<!-- ko if: type() == 0 || type() == 8 -->
2020-03-28 13:26:16 +01:00
La connection a été refusée.
2020-03-28 11:49:11 +01:00
<!-- /ko -->
<!-- ko if: type() == 1 -->
2020-03-28 13:26:16 +01:00
Le serveur utilise une version incompatible.
2020-03-28 11:49:11 +01:00
<!-- /ko -->
<!-- ko if: type() == 2 -->
2020-03-28 13:26:16 +01:00
Votre nom d'utilisateur a été rejeté. Pourriez-vous en essayer un autre ?
2020-03-28 11:49:11 +01:00
<!-- /ko -->
<!-- ko if: type() == 3 -->
2020-03-28 13:26:16 +01:00
Le mot de passe donné est incorrect.
Le nom d'utilisateur donné en nécessite un.
2020-03-28 11:49:11 +01:00
<!-- /ko -->
<!-- ko if: type() == 4 -->
2020-03-28 13:26:16 +01:00
Le mot de passe donné est incorrect.
2020-03-28 11:49:11 +01:00
<!-- /ko -->
<!-- ko if: type() == 5 -->
2020-03-28 13:26:16 +01:00
Le nom que vous avez choisi est déjà utilisé.
2020-03-28 11:49:11 +01:00
<!-- /ko -->
<!-- ko if: type() == 6 -->
2020-03-28 13:26:16 +01:00
Le serveur est complet.
2020-03-28 11:49:11 +01:00
<!-- /ko -->
<!-- ko if: type() == 7 -->
2020-03-28 13:26:16 +01:00
Le serveur requiert un certificat client non supporté par cette application web.
2020-03-28 11:49:11 +01:00
<!-- /ko -->
< br >
2020-03-28 13:26:16 +01:00
Le serveur indique :
2020-03-28 11:49:11 +01:00
< br >
"< span class = "connect-error-reason" data-bind = "text: reason" > < / span > "
< / td >
< / tr >
< tr data-bind = "if: type() == 2 || type() == 3 || type() == 5" >
2020-03-28 13:26:16 +01:00
< td > Utilisateur< / td >
2020-03-28 11:49:11 +01:00
< td > < input id = "username" type = "text" data-bind = "value: username" required > < / td >
< / tr >
< tr data-bind = "if: type() == 3 || type() == 4" >
2020-03-28 13:26:16 +01:00
< td > Mot de passe< / td >
2020-03-28 11:49:11 +01:00
< td > < input id = "password" type = "password" data-bind = "value: password" required > < / td >
< / tr >
< / table >
< div class = "dialog-footer" >
2020-03-28 13:26:16 +01:00
< input class = "dialog-close" type = "button" value = "Annuler"
2020-03-28 11:49:11 +01:00
data-bind="click: hide, visible: !joinOnly()">
2020-03-28 13:26:16 +01:00
< input class = "dialog-submit" type = "submit" value = "Réessayer" >
2020-03-28 11:49:11 +01:00
< / div >
< / form >
< / div >
<!-- /ko -->
<!-- ko with: connectionInfo -->
< div class = "connection-info-dialog dialog" data-bind = "visible: visible" >
< div class = "dialog-header" >
2020-03-28 13:26:16 +01:00
Informations de connexion
2020-03-28 11:49:11 +01:00
< / div >
< div class = "dialog-content" >
< h3 > Version< / h3 >
<!-- ko with: serverVersion -->
2020-03-28 13:26:16 +01:00
Protocole
2020-03-28 11:49:11 +01:00
< span data-bind = "text: major + '.' + minor + '.' + patch" > < / span > .
< br >
< br >
< span data-bind = "text: release" > < / span >
< br >
< span data-bind = "text: os" > < / span >
< span data-bind = "text: osVersion" > < / span >
< br >
<!-- /ko -->
<!-- ko if: !serverVersion() -->
2020-03-28 13:26:16 +01:00
Inconnu
2020-03-28 11:49:11 +01:00
<!-- /ko -->
2020-03-28 13:26:16 +01:00
< h3 > Canal de contrôle< / h3 >
< span data-bind = "text: latencyMs().toFixed(2)" > < / span > ms de latence moyenne
(< span data-bind = "text: latencyDeviation().toFixed(2)" > < / span > déviation)
2020-03-28 11:49:11 +01:00
< br >
< br >
2020-03-28 13:26:16 +01:00
Hôte distant < span data-bind = "text: remoteHost" > < / span >
2020-03-28 11:49:11 +01:00
(port < span data-bind = "text: remotePort" > < / span > )
< br >
2020-03-28 13:26:16 +01:00
< h3 > Bande passante audioh< / h3 >
2020-03-28 11:49:11 +01:00
Maximum < span data-bind = "text: (maxBitrate()/1000).toFixed(1)" > < / span > kbits/s
2020-03-28 13:26:16 +01:00
(< span data-bind = "text: (maxBandwidth()/1000).toFixed(1)" > < / span > kbits/s avec overhead)
2020-03-28 11:49:11 +01:00
< br >
2020-03-28 13:26:16 +01:00
Courante < span data-bind = "text: (currentBitrate()/1000).toFixed(1)" > < / span > kbits/s
(< span data-bind = "text: (currentBandwidth()/1000).toFixed(1)" > < / span > kbits/s avec overhead)
2020-03-28 11:49:11 +01:00
< br >
Codec: < span data-bind = "text: codec" > < / span >
< / div >
< div class = "dialog-footer" >
< input class = "dialog-close" type = "button" data-bind = "click: hide" value = "OK" >
< / div >
< / div >
<!-- /ko -->
<!-- ko with: settingsDialog -->
< div class = "settings-dialog dialog" data-bind = "visible: $data" >
< div class = "dialog-header" >
2020-03-28 13:26:16 +01:00
Paramètres
2020-03-28 11:49:11 +01:00
< / div >
< form data-bind = "submit: $root.applySettings" >
< table >
< tr >
< td > Transmission< / td >
< td >
< select data-bind = 'value: voiceMode' >
2020-03-28 13:26:16 +01:00
< option value = "cont" > Continue< / option >
< option value = "vad" > Activité vocale< / option >
< option value = "ptt" > Appuyer pour parler< / option >
2020-03-28 11:49:11 +01:00
< / td >
< / tr >
< tr data-bind = "visible: voiceMode() == 'vad'" >
< td colspan = "2" >
< div class = "mic-volume-container" >
< div class = "mic-volume" data-bind = "style: {
width: testVadLevel()*100 + '%',
background: testVadActive() ? 'green' : 'red'
}">< / div >
< / div >
< input type = "range" min = "0" max = "1" step = "0.01"
data-bind="value: vadLevel">
< / td >
< / tr >
< tr data-bind = "visible: voiceMode() == 'ptt'" >
2020-03-28 13:26:16 +01:00
< td > Touche d'activation< / td >
2020-03-28 11:49:11 +01:00
< td >
< input type = "button" data-bind = "value: pttKeyDisplay, click: recordPttKey" >
< / td >
< / tr >
< tr >
2020-03-28 13:26:16 +01:00
< td > Qualité audio< / td >
2020-03-28 11:49:11 +01:00
< td > < span data-bind = "text: (audioBitrate()/1000).toFixed(1)" > < / span > kbit/s< / td >
< / tr >
< tr >
< td colspan = "2" >
< input type = "range" min = "8000" max = "96000" step = "8"
data-bind="value: audioBitrate, valueUpdate: 'input'">
< / td >
< / tr >
< tr >
2020-03-28 13:26:16 +01:00
< td > Audio par paquet< / td >
2020-03-28 11:49:11 +01:00
< td > < span data-bind = "text: msPerPacket" > < / span > ms< / td >
< / tr >
< tr >
< td colspan = "2" >
< input type = "range" min = "10" max = "60" step = "10"
data-bind="value: msPerPacket, valueUpdate: 'input'">
< / td >
< / tr >
< tr >
< td colspan = "2" class = "bandwidth-info" >
< span data-bind = "text: (totalBandwidth()/1000).toFixed(1)" > < / span >
kbit/s
(Audio
< span data-bind = "text: (audioBitrate()/1000).toFixed(1)" > < / span > ,
Position
< span data-bind = "text: (positionBandwidth()/1000).toFixed(1)" > < / span > ,
Overhead
< span data-bind = "text: (overheadBandwidth()/1000).toFixed(1)" > < / span > )
< / td >
< / tr >
< tr >
2020-03-28 13:26:16 +01:00
< td > Montrer les avatars< / td >
2020-03-28 11:49:11 +01:00
< td >
< select data-bind = 'value: showAvatars' >
2020-03-28 13:26:16 +01:00
< option value = "always" > Toujours< / option >
< option value = "own_channel" > Même canal< / option >
< option value = "linked_channel" > Canaux liés< / option >
< option value = "minimal_only" > Vue minimale< / option >
< option value = "never" > Jamais< / option >
2020-03-28 11:49:11 +01:00
< / td >
< / tr >
< tr >
< td colspan = "2" >
< input type = "checkbox" data-bind = "checked: userCountInChannelName" >
2020-03-28 13:26:16 +01:00
Montrer le nombre d'utilisateurs du canal
2020-03-28 11:49:11 +01:00
< / td >
< / tr >
< / table >
< div class = "dialog-footer" >
2020-03-28 13:26:16 +01:00
< input class = "dialog-close" type = "button" data-bind = "click: $root.closeSettings" value = "Annuler" >
< input class = "dialog-submit" type = "submit" value = "Appliquer" >
2020-03-28 11:49:11 +01:00
< / div >
< / form >
< / div >
<!-- /ko -->
< img class = "avatar-view" data-bind = "visible: avatarView , attr: { src: avatarView } ,
click: function () { avatarView(null) }">< / img >
<!-- ko with: userContextMenu -->
< ul class = "context-menu" data-bind = "if: target ,
style: { left: posX() + 'px',
top: posY() + 'px' }">
<!-- ko with: target -->
< li data-bind = "css: { disabled: !canChangeMute() }" >
2020-03-28 13:26:16 +01:00
Silence
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: !canChangeDeafen() }" >
2020-03-28 13:26:16 +01:00
Sourdine
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: !canChangePrioritySpeaker() }" >
2020-03-28 13:26:16 +01:00
Priorité haut-parleurs
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: !canLocalMute() }" >
2020-03-28 13:26:16 +01:00
Silence local
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: !canIgnoreMessages() }" >
2020-03-28 13:26:16 +01:00
Ignorer les messages
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: !canChangeComment() }, visible: comment" >
2020-03-28 13:26:16 +01:00
Voir le commentaire
2020-03-28 11:49:11 +01:00
< / li >
<!-- ko if: $data === $root.thisUser() -->
< li data-bind = "css: { disabled: !canChangeComment() }, visible: true" >
2020-03-28 13:26:16 +01:00
Modifier le commentaire
2020-03-28 11:49:11 +01:00
< / li >
<!-- /ko -->
<!-- ko if: $data !== $root.thisUser() -->
< li data-bind = "css: { disabled: !canChangeComment() }, visible: comment" >
2020-03-28 13:26:16 +01:00
Effacer le commentaire
2020-03-28 11:49:11 +01:00
< / li >
<!-- /ko -->
< li data-bind = "css: { disabled: ! canChangeAvatar ( ) } , visible: texture ,
click: viewAvatar">
2020-03-28 13:26:16 +01:00
Voir l'avatar
2020-03-28 11:49:11 +01:00
< / li >
<!-- ko if: $data === $root.thisUser() -->
< li data-bind = "css: { disabled: ! canChangeAvatar ( ) } , visible: true ,
click: changeAvatar">
2020-03-28 13:26:16 +01:00
Modifier l'avatar
2020-03-28 11:49:11 +01:00
< / li >
<!-- /ko -->
< li data-bind = "css: { disabled: ! canChangeAvatar ( ) } , visible: texture ,
click: removeAvatar">
2020-03-28 13:26:16 +01:00
Effacer l'avatar
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: true }, visible: true" >
2020-03-28 13:26:16 +01:00
Envoyer un message
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: true }, visible: true" >
2020-03-28 13:26:16 +01:00
Informations
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "visible: $ data = == $ root . thisUser ( ) ,
css: { checked: selfMute },
click: toggleMute">
2020-03-28 13:26:16 +01:00
Se rendre muet
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "visible: $ data = == $ root . thisUser ( ) ,
css: { checked: selfDeaf },
click: toggleDeaf">
2020-03-28 13:26:16 +01:00
Se mettre en sourdine
2020-03-28 11:49:11 +01:00
< / li >
<!-- ko if: $data !== $root.thisUser() -->
< li data-bind = "css: { disabled: true }, visible: true" >
2020-03-28 13:26:16 +01:00
Ajouter un ami
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: true }, visible: false" >
2020-03-28 13:26:16 +01:00
Supprimer un ami
2020-03-28 11:49:11 +01:00
< / li >
<!-- /ko -->
<!-- /ko -->
< / ul >
<!-- /ko -->
<!-- ko with: channelContextMenu -->
< ul class = "context-menu" data-bind = "if: target ,
style: { left: posX() + 'px',
top: posY() + 'px' }">
<!-- ko with: target -->
< li data-bind = "visible: users . indexOf ( $ root . thisUser ( ) ) = = = -1 ,
css: { disabled: !canJoin() },
click: $root.requestMove.bind($root, $root.thisUser())">
2020-03-28 13:26:16 +01:00
Rejoindre le canal
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: !canAdd() }" >
2020-03-28 13:26:16 +01:00
Ajouter
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: !canEdit() }" >
2020-03-28 13:26:16 +01:00
Éditer
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: !canRemove() }" >
2020-03-28 13:26:16 +01:00
Supprimer
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: !canLink() }" >
2020-03-28 13:26:16 +01:00
Lier
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: !canUnlink() }" >
2020-03-28 13:26:16 +01:00
Délier
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: !canUnlink() }" >
2020-03-28 13:26:16 +01:00
Tout délier
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: true }" >
2020-03-28 13:26:16 +01:00
Copier l'URL de Mumble
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: true }" >
2020-03-28 13:26:16 +01:00
Copier l'URL de Mumble-Web
2020-03-28 11:49:11 +01:00
< / li >
< li data-bind = "css: { disabled: !canSendMessage() }" >
2020-03-28 13:26:16 +01:00
Envoyer un message
2020-03-28 11:49:11 +01:00
< / li >
<!-- /ko -->
< / ul >
<!-- /ko -->
< script type = "text/html" id = "user-tag" >
< span class = "user-tag" data-bind = "text: name" > < / span >
< / script >
< script type = "text/html" id = "channel-tag" >
< span class = "channel-tag" data-bind = "text: name" > < / span >
< / script >
< div class = "toolbar" data-bind = "css: { ' toolbar-horizontal ' : toolbarHorizontal ( ) ,
'toolbar-vertical': !toolbarHorizontal() }">
< img class = "handle-horizontal" src = "f2fc230fc7d9a9b8f6f03d342f6e94b2.svg"
data-bind="click: toggleToolbarOrientation">
< img class = "handle-vertical" src = "9ae3dac014f51d714254cf522602cec0.svg"
data-bind="click: toggleToolbarOrientation">
< img class = "tb-connect" data-bind = "visible: ! connectDialog . joinOnly ( ) ,
click: connectDialog.show"
rel="connect" src="22ecf0ecde1ae2a6281265174b7fa355.svg">
< img class = "tb-information" rel = "information" src = "82747b4bbd0cfe92292f74cd27f2763e.svg"
data-bind="click: connectionInfo.show,
css: { disabled: !thisUser() }">
< div class = "divider" > < / div >
< img class = "tb-mute" data-bind = "visible: ! selfMute ( ) ,
click: function () { requestMute(thisUser()) }"
rel="mute" src="8f75583a16890ab851fc3f121fc63f89.svg">
< img class = "tb-unmute tb-active" data-bind = "visible: selfMute ,
click: function () { requestUnmute(thisUser()) }"
rel="unmute" src="f54b0be1d559b03ad8d945e988ec8ed4.svg">
< img class = "tb-deaf" data-bind = "visible: ! selfDeaf ( ) ,
click: function () { requestDeaf(thisUser()) }"
rel="deaf" src="0ce7650c4d5a52a5323868f75588e1c7.svg">
< img class = "tb-undeaf tb-active" data-bind = "visible: selfDeaf ,
click: function () { requestUndeaf(thisUser()) }"
rel="undeaf" src="d5ba30b381ebc262ba3871eaed9d7102.svg">
< div class = "divider" > < / div >
< img class = "tb-comment" data-bind = "click: commentDialog.show"
rel="comment" src="077f1c5bd335be073c48c340b01f58bc.svg">
< div class = "divider" > < / div >
< img class = "tb-settings" data-bind = "click: openSettings"
rel="settings" src="50dddae19e7bf601b168f46a1303674b.svg">
< div class = "divider" > < / div >
< img class = "tb-sourcecode" data-bind = "click: openSourceCode"
2020-03-28 13:53:16 +01:00
rel="Source Code" src="chapril-logo-mini-200x.png">
2020-03-28 11:49:11 +01:00
< / div >
< div class = "chat" >
< script type = "text/html" id = "log-generic" >
< span data-bind = "text: value" > < / span >
< / script >
< script type = "text/html" id = "log-welcome-message" >
2020-03-28 13:26:16 +01:00
Message de bienvenue: < span data-bind = "html: message" > < / span >
2020-03-28 19:25:30 +01:00
< hr / >
< center > Tutoriel< / center >
< p > Par défaut, pour pouvoir parler, il faut appuyer et maintenir appuyées les touches < b > Ctrl et Majuscule< / b > (shift) (c' est le mode < i > Appuyer pour parler< / i > ). Pour changer ce mode de transmission, pour passer par exemple en mode transmission continue, vous pouvez aller dans les paramètres (en cliquant sur la roue crantée).< / p >
2020-04-07 02:41:55 +02:00
< p > Pour rejoindre un salon, double-cliquer sur le nom du salon, ou faire clic-droit sur le nom du salon et choisir «  Rejoindre le salon  ». Pour quitter un salon, il faut double-cliquer sur Chapril tout en haut.< / p >
2020-03-30 14:08:24 +02:00
< p > Vous pouvez consulter < a href = 'https://www.chapril.org/Mumble.html' > une documentation< / a > .< / p >
2020-03-28 19:25:30 +01:00
< hr / >
2020-03-28 11:49:11 +01:00
< / script >
< script type = "text/html" id = "log-chat-message" >
< span data-bind = "visible: channel" >
2020-03-28 13:26:16 +01:00
(Canal)
2020-03-28 11:49:11 +01:00
< / span >
< span data-bind = "template: { name: 'user-tag', data: user }" > < / span > :
< span class = "message-content" data-bind = "html: message" > < / span >
< / script >
< script type = "text/html" id = "log-chat-message-self" >
2020-03-28 13:26:16 +01:00
À
2020-03-28 11:49:11 +01:00
< span data-bind = "template: { if: $data.channel, name: 'channel-tag', data: $data.channel }" >
< / span > < span data-bind = "template: { if: $data.user, name: 'user-tag', data: $data.user }" >
< / span > :
< span class = "message-content" data-bind = "html: message" > < / span >
< / script >
< script type = "text/html" id = "log-disconnect" >
< / script >
< div class = "log" data-bind = "foreach: {
data: log,
afterRender: function (e) {
[].forEach.call(e[1].getElementsByTagName('a'), function(e){e.target = '_blank'})
}
}">
< div class = "log-entry" >
< span class = "log-timestamp" data-bind = "text: $root.getTimeString()" > < / span >
<!-- ko template: { data: $data, name: function(l) { return 'log - ' + l.type; } } -->
<!-- /ko -->
< / div >
< / div >
< form data-bind = "submit: submitMessageBox" >
< input id = "message-box" type = "text" data-bind = "
attr: { placeholder: messageBoxHint }, textInput: messageBox">
< / form >
< / div >
< script type = "text/html" id = "channel" >
< div class = "channel" data-bind = "
click: $root.select,
event: {
contextmenu: openContextMenu,
dblclick: $root.requestMove.bind($root, $root.thisUser())
},
css: {
selected: $root.selected() === $data,
currentChannel: users.indexOf($root.thisUser()) !== -1
}">
< div class = "channel-status" >
< img class = "channel-description" data-bind = "visible: description"
alt="description" src="077f1c5bd335be073c48c340b01f58bc.svg">
< / div >
< div data-bind = "if: description" >
< div class = "channel-description tooltip" data-bind = "html: description" > < / div >
< / div >
< img class = "channel-icon" src = "b78ed441778f2e4ce1201a75af76594e.svg"
data-bind="visible: !linked() & & $root.thisUser().channel() !== $data">
< img class = "channel-icon-active" src = "b78ed441778f2e4ce1201a75af76594e.svg"
data-bind="visible: $root.thisUser().channel() === $data">
< img class = "channel-icon-linked" src = "86d4f1d7547270ff26f08a9271e7edcb.svg"
data-bind="visible: linked() & & $root.thisUser().channel() !== $data">
< div class = "channel-name" >
< span data-bind = "text: name" > < / span >
<!-- ko if: $root.settings.userCountInChannelName() && userCount() !== 0 -->
(< span data-bind = "text: userCount()" > < / span > )
<!-- /ko -->
< / div >
< / div >
<!-- ko if: expanded -->
<!-- ko foreach: users -->
< div class = "user-wrapper" >
< div class = "user-tree" > < / div >
< div class = "user" data-bind = "
click: $root.select,
event: {
contextmenu: openContextMenu
},
css: {
thisClient: $root.thisUser() === $data,
selected: $root.selected() === $data
}">
< div class = "user-status" data-bind = "attr: { title: state }" >
< img class = "user-comment" data-bind = "visible: comment"
alt="comment" src="077f1c5bd335be073c48c340b01f58bc.svg">
< img class = "user-server-mute" data-bind = "visible: mute"
alt="server mute" src="296b612d2847da52749549f73d0c3664.svg">
< img class = "user-suppress-mute" data-bind = "visible: suppress"
alt="suppressed" src="00fd86fe12871b707998bf7214820fdd.svg">
< img class = "user-self-mute" data-bind = "visible: selfMute"
alt="self mute" src="9171288d67adc4805412883901d2f180.svg">
< img class = "user-server-deaf" data-bind = "visible: deaf"
alt="server deaf" src="e0c171776518ab302b54ccc71e59a582.svg">
< img class = "user-self-deaf" data-bind = "visible: selfDeaf"
alt="self deaf" src="d5ba30b381ebc262ba3871eaed9d7102.svg">
< img class = "user-authenticated" data-bind = "visible: uid"
alt="authenticated" src="6d73bb785aa06bf0c436ad6f7cc6262a.svg">
< / div >
< div data-bind = "if: comment" >
< div class = "user-comment tooltip" data-bind = "html: comment" > < / div >
< / div >
<!-- ko if: show_avatar() -->
< img class = "user-avatar" alt = "avatar"
data-bind="attr: { src: texture },
css: { 'user-avatar-talk-off': talking() == 'off',
'user-avatar-talk-on': talking() == 'on',
'user-avatar-talk-whisper': talking() == 'whisper',
'user-avatar-talk-shout': talking() == 'shout' }">
<!-- /ko -->
<!-- ko ifnot: show_avatar() -->
< img class = "user-talk user-talk-off" data-bind = "visible: talking() == 'off'"
alt="talk off" src="a65db861eecb8dcc62ad70fec489da3f.svg">
< img class = "user-talk user-talk-on" data-bind = "visible: talking() == 'on'"
alt="talk on" src="32785c1d21b0050be9168487542b8c3d.svg">
< img class = "user-talk user-talk-whisper" data-bind = "visible: talking() == 'whisper'"
alt="whisper" src="dbd9efebc73f884c5039cc3192a65dd8.svg">
< img class = "user-talk user-talk-shout" data-bind = "visible: talking() == 'shout'"
alt="shout" src="ec4d8b884ac39ef8494fb4aca6c6069f.svg">
<!-- /ko -->
< div class = "user-name" data-bind = "text: name" > < / div >
< / div >
< / div >
<!-- /ko -->
<!-- ko foreach: channels -->
< div class = "channel-wrapper" >
<!-- ko ifnot: users().length || channels().length -->
< div class = "channel-tree" > < / div >
<!-- /ko -->
< div class = "branch" data-bind = "if: users().length || channels().length" >
< img class = "branch-open" src = "d57d3d2918d0b72f0c24e9dc162c6c4a.svg"
data-bind="click: expanded.bind($data, false), visible: expanded()">
< img class = "branch-closed" src = "972a0ac8cf8526580a216210a364cc60.svg"
data-bind="click: expanded.bind($data, true), visible: !expanded()">
< / div >
< div class = "channel-sub" data-bind = "template: {name: 'channel', data: $data}" > < / div >
< / div >
<!-- /ko -->
<!-- /ko -->
< / script >
< div class = "channel-root-container" data-bind = "if: root, visible: !minimalView()" >
< div class = "channel-root" data-bind = "template: {name: 'channel', data: root}" > < / div >
< / div >
< div class = "channel-root-container" data-bind = "if: thisUser, visible: minimalView()" >
< div class = "channel-root" data-bind = "template: {name: 'channel', data: thisUser().channel}" > < / div >
< / div >
< / div >
< / body >
< script src = "index.js" > < / script >
< / html >