From 98f9c7c40706dc56e4d03525b91357e64c6de713 Mon Sep 17 00:00:00 2001 From: Michael Peter Christen Date: Sat, 29 Nov 2025 01:46:47 +0100 Subject: added fonts --- htroot/LLMSelection_p.html | 19 ++--- htroot/Network.html | 2 +- htroot/env/base.css | 52 ++++++++++++- htroot/env/fonts/Roboto-Bold.ttf | Bin 0 -> 146768 bytes htroot/env/fonts/Roboto-Italic.ttf | Bin 0 -> 152208 bytes htroot/env/fonts/Roboto-OFL.txt | 93 +++++++++++++++++++++++ htroot/env/fonts/Roboto-Regular.ttf | Bin 0 -> 146004 bytes htroot/env/fonts/RobotoMono-Bold.ttf | Bin 0 -> 87696 bytes htroot/env/fonts/RobotoMono-Italic.ttf | Bin 0 -> 94836 bytes htroot/env/fonts/RobotoMono-Regular.ttf | Bin 0 -> 87540 bytes htroot/env/fonts/SairaExtraCondensed-Medium.ttf | Bin 0 -> 87912 bytes htroot/env/fonts/SairaExtraCondensed-OFL.txt | 93 +++++++++++++++++++++++ htroot/env/fonts/SairaExtraCondensed-Regular.ttf | Bin 0 -> 87556 bytes 13 files changed, 246 insertions(+), 13 deletions(-) create mode 100644 htroot/env/fonts/Roboto-Bold.ttf create mode 100644 htroot/env/fonts/Roboto-Italic.ttf create mode 100644 htroot/env/fonts/Roboto-OFL.txt create mode 100644 htroot/env/fonts/Roboto-Regular.ttf create mode 100644 htroot/env/fonts/RobotoMono-Bold.ttf create mode 100644 htroot/env/fonts/RobotoMono-Italic.ttf create mode 100644 htroot/env/fonts/RobotoMono-Regular.ttf create mode 100644 htroot/env/fonts/SairaExtraCondensed-Medium.ttf create mode 100644 htroot/env/fonts/SairaExtraCondensed-OFL.txt create mode 100644 htroot/env/fonts/SairaExtraCondensed-Regular.ttf (limited to 'htroot') diff --git a/htroot/LLMSelection_p.html b/htroot/LLMSelection_p.html index c6de7cb5b..ae607fafa 100644 --- a/htroot/LLMSelection_p.html +++ b/htroot/LLMSelection_p.html @@ -416,6 +416,7 @@ ]; columnValues.forEach(value => { const td = document.createElement("td"); + td.className = "narrow"; td.textContent = value; tr.appendChild(td); }); @@ -1149,16 +1150,16 @@ api_key max_tokens - search-answers infoThis model creates answers for search requests - chat infoThis model is used in the chat interface and as default for the RAG proxy - translation infoThis model can be used to make translations of the web UI - classification infoThis model is used to classify prompts to find out what they demand - search-query infoThis model produces search queries to YaCy search from prompts in RAG or chat - qa-pairs infoThis model can be used to produce query-answer pairs which enhance search from chat prompts - tldr-shortener infoThis model is used to make summaries from web content + search-answers
infoThis model creates answers for search requests + chat
infoThis model is used in the chat interface and as default for the RAG proxy + translation
infoThis model can be used to make translations of the web UI + classification
infoThis model is used to classify prompts to find out what they demand + search-query
infoThis model produces search queries to YaCy search from prompts in RAG or chat + qa-pairs
infoThis model can be used to produce query-answer pairs which enhance search from chat prompts + tldr-shortener
infoThis model is used to make summaries from web content - tooling - vision + tooling + vision Actions diff --git a/htroot/Network.html b/htroot/Network.html index 75a33f59c..1523129cb 100644 --- a/htroot/Network.html +++ b/htroot/Network.html @@ -132,7 +132,7 @@ document.getElementById("apilink").setAttribute("href", "Network.xml?" + window. #{list}# - #[hash]# + #[hash]# #[shortname]##(ssl)#::https supported#(/ssl)# #(type)##(direct)#Junior passive::Junior direct::Junior offline#(/direct)#::#(direct)#senior passive::Senior direct::Senior offline#(/direct)#::#(direct)#Principal passive::Principal active::Principal offline#(/direct)##(/type)##(acceptcrawl)#no crawl::crawl possible::crawl possible#(/acceptcrawl)##(dhtreceive)#no DHT receive::DHT receive enabled::DHT receive enabled#(/dhtreceive)##{ips}##{/ips}# diff --git a/htroot/env/base.css b/htroot/env/base.css index 87b6062db..fa1bc033f 100644 --- a/htroot/env/base.css +++ b/htroot/env/base.css @@ -33,8 +33,39 @@ /* --------------- global elements -------------------------- */ +@font-face { + font-family: 'Roboto'; + src: url('fonts/Roboto-Regular.ttf') format('truetype'); +} + +@font-face { + font-family: 'Roboto Bold'; + src: url('fonts/Roboto-Bold.ttf') format('truetype'); +} + +@font-face { + font-family: 'Roboto Italic'; + src: url('fonts/Roboto-Italic.ttf') format('truetype'); +} + +@font-face { + font-family: 'Roboto Mono'; + src: url('fonts/Roboto-Mono.ttf') format('truetype'); +} + +@font-face { + font-family: 'Orbitron'; + src: url('fonts/Orbitron-VariableFont_wght.ttf') format('truetype'); +} + +@font-face { + font-family: 'Saira Extra Condensed'; + src: url('fonts/SairaExtraCondensed-Medium.ttf') format('truetype'); +} + * { - font-family:sans-serif; + font-style: normal; + font-family: 'Roboto', sans-serif; } /* the following dl style is needed to patch a bug in Safari @@ -46,10 +77,25 @@ dl { body, table, textarea { font-size: 12px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + font-smooth: always; + text-rendering: optimizeLegibility; +} + +pre, code { + font-family: 'Roboto Mono', monospace; +} + +.narrow { + font-family: 'Saira Extra Condensed', 'Arial Narrow', sans-serif; + font-weight: normal; + font-style: normal; + font-size: 14px; } -h1, h2, h3, h4 { - font-style:normal; +h1, h2, h3, h4, b, strong { + font-family: 'Roboto Bold', sans-serif; } h1 { diff --git a/htroot/env/fonts/Roboto-Bold.ttf b/htroot/env/fonts/Roboto-Bold.ttf new file mode 100644 index 000000000..4658f9a67 Binary files /dev/null and b/htroot/env/fonts/Roboto-Bold.ttf differ diff --git a/htroot/env/fonts/Roboto-Italic.ttf b/htroot/env/fonts/Roboto-Italic.ttf new file mode 100644 index 000000000..c3abaefb2 Binary files /dev/null and b/htroot/env/fonts/Roboto-Italic.ttf differ diff --git a/htroot/env/fonts/Roboto-OFL.txt b/htroot/env/fonts/Roboto-OFL.txt new file mode 100644 index 000000000..a417551aa --- /dev/null +++ b/htroot/env/fonts/Roboto-OFL.txt @@ -0,0 +1,93 @@ +Copyright 2011 The Roboto Project Authors (https://github.com/googlefonts/roboto-classic) + +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: +https://openfontlicense.org + + +----------------------------------------------------------- +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. diff --git a/htroot/env/fonts/Roboto-Regular.ttf b/htroot/env/fonts/Roboto-Regular.ttf new file mode 100644 index 000000000..7e3bb2f8c Binary files /dev/null and b/htroot/env/fonts/Roboto-Regular.ttf differ diff --git a/htroot/env/fonts/RobotoMono-Bold.ttf b/htroot/env/fonts/RobotoMono-Bold.ttf new file mode 100644 index 000000000..bef439f3b Binary files /dev/null and b/htroot/env/fonts/RobotoMono-Bold.ttf differ diff --git a/htroot/env/fonts/RobotoMono-Italic.ttf b/htroot/env/fonts/RobotoMono-Italic.ttf new file mode 100644 index 000000000..781eff8c0 Binary files /dev/null and b/htroot/env/fonts/RobotoMono-Italic.ttf differ diff --git a/htroot/env/fonts/RobotoMono-Regular.ttf b/htroot/env/fonts/RobotoMono-Regular.ttf new file mode 100644 index 000000000..3806bfb11 Binary files /dev/null and b/htroot/env/fonts/RobotoMono-Regular.ttf differ diff --git a/htroot/env/fonts/SairaExtraCondensed-Medium.ttf b/htroot/env/fonts/SairaExtraCondensed-Medium.ttf new file mode 100644 index 000000000..5748e62f0 Binary files /dev/null and b/htroot/env/fonts/SairaExtraCondensed-Medium.ttf differ diff --git a/htroot/env/fonts/SairaExtraCondensed-OFL.txt b/htroot/env/fonts/SairaExtraCondensed-OFL.txt new file mode 100644 index 000000000..19602f99b --- /dev/null +++ b/htroot/env/fonts/SairaExtraCondensed-OFL.txt @@ -0,0 +1,93 @@ +Copyright 2016 The Saira Project Authors (omnibus.type@gmail.com), with reserved font name "Saira". + +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: +https://openfontlicense.org + + +----------------------------------------------------------- +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. diff --git a/htroot/env/fonts/SairaExtraCondensed-Regular.ttf b/htroot/env/fonts/SairaExtraCondensed-Regular.ttf new file mode 100644 index 000000000..70616725e Binary files /dev/null and b/htroot/env/fonts/SairaExtraCondensed-Regular.ttf differ -- cgit v1.2.3