update auth openpgp.js
11
nationchains/www/adminapx/ASUPnginx/proxy_params.mustache
Normal file
@@ -0,0 +1,11 @@
|
||||
proxy_set_header Host $http_host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
client_max_body_size 10m;
|
||||
client_body_buffer_size 128k;
|
||||
proxy_connect_timeout 90;
|
||||
proxy_send_timeout 90;
|
||||
proxy_read_timeout 90;
|
||||
proxy_buffers 32 4k;
|
||||
proxy_set_header X-NginX-Proxy true;
|
@@ -3,33 +3,38 @@
|
||||
|
||||
<head>
|
||||
<title>setup apXtrib</title>
|
||||
<link rel="icon" type="image/png" href="cdn/share/logo/favicon.png">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<!-- fontawesome icon cdn -->
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.css">
|
||||
<!-- fontawesome icon cdn -->
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.css">
|
||||
<script>
|
||||
const apxlocal={
|
||||
headers:{xalias:"anonymous",xhash:"anonymous",xtribe:"devenv", xapp:"smatchapp", xlang:"en" },
|
||||
firsttimeload:true,
|
||||
forcereload:true,
|
||||
tpl:{
|
||||
title:"<h1>apXtrib </h1><p>Nation:{{nationId}} Town:{{townId}}</p><p><p> Manage an apXtrib</p></p>",
|
||||
footer:"{{{msg}}}"
|
||||
const apxlocal = {
|
||||
headers: { xalias: "anonymous", xhash: "anonymous", xdays: 0, xtribe: "devenv", xapp: "adminapx", xlang: "en" },
|
||||
firsttimeload: true,
|
||||
forcereload: true,
|
||||
tpl: {
|
||||
title: "<h1>apXtrib </h1><p>Nation:{{nationId}} Town:{{townId}}</p><p><p> Manage an apXtrib</p></p>",
|
||||
footer: "{{{msg}}}"
|
||||
},
|
||||
tpldata:{
|
||||
footer:{msg:"<p>apXtrib, made with love for people freedom, enjoy!</p>"}
|
||||
},
|
||||
object:{}
|
||||
tpldata: {
|
||||
footer: { msg: "<p>apXtrib, made with love for people freedom, enjoy!</p>" },
|
||||
apxmodal: { title: "exemple title", body: "exemple body", actions: [{ btndescription: "hello", onclick: "console.log('hello')" }] }
|
||||
}
|
||||
};
|
||||
// @todo check version control to force a reload with forceload
|
||||
</script>
|
||||
</script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="static/js/editor.js"></script>
|
||||
<script src="static/js/openpgp.min.js"></script>
|
||||
<script src="static/js/mustache.min.js"></script>
|
||||
<script src="static/js/axios.min.js"></script>
|
||||
<script src="cdn/share/js/dayjs.min.js"></script>
|
||||
<script src="cdn/share/js/editor.js"></script>
|
||||
<script src="cdn/share/js/openpgp.min.js"></script>
|
||||
<script src="cdn/share/js/mustache.min.js"></script>
|
||||
<script src="cdn/share/js/axios.min.js"></script>
|
||||
<script src="static/js/apxtribcli.js"></script>
|
||||
<script src="static/js/apxpagans.js"></script>
|
||||
<script src="static/js/apxtribes.js"></script>
|
||||
<script src="static/js/apxtowns.js"></script>
|
||||
<script src="static/js/apxapp.js"></script>
|
||||
<style>
|
||||
.fakeimg {
|
||||
@@ -38,97 +43,113 @@
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div id="apxtitle" class="p-5 bg-primary text-white text-center" apptoload="app.load('apxtitle','title','conf')" add2data tpldata="static/tpldata/conf_en.json">
|
||||
<h1>apXtrib</h1>
|
||||
<p> Manage and understand apXtrib back-end</p>
|
||||
</div>
|
||||
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
|
||||
<div class="container-fluid">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" add2data tpl="static/tpl/listofarticle_en.mustache" onclick="app.load('apxmain','listofarticle','listofarticle')" >Home</a>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">Pagans</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" add2data tpl="static/tpl/pagancreate_en.mustache" object="nationchains/pagans/idx/alias_all.json" onclick="app.load('apxmain','pagancreate',{})">Create</a></li>
|
||||
<li><a class="dropdown-item" add2data tpl="static/tpl/loginout_en.mustache" tpldata="static/tpldata/loginout_en.json" onclick="app.load('apxmain','loginout',{})">Login/Logout</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li><a class="dropdown-item" href="#">Cipher</a></li>
|
||||
<li><a class="dropdown-item" href="#">AccessRights</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li><a class="dropdown-item" href="#">Wallet management</a></li>
|
||||
<li><a class="dropdown-item" href="#">Signed Contracts</a></li>
|
||||
<li><a class="dropdown-item" href="#">NFT generator</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">Mayor's Town</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="#">Chain a town</a></li>
|
||||
<li><a class="dropdown-item" href="#">Create Tribe</a></li>
|
||||
<li><a class="dropdown-item" href="#">Manage Druids</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">Druid's Tribe</a>
|
||||
<ul class="dropdown-menu ">
|
||||
<li><a class="dropdown-item" tribe="" href="#">Manage Persons</a></li>
|
||||
<li><a class="dropdown-item" tribe="" href="#">Manage web space</a></li>
|
||||
<li><a class="dropdown-item" tribe="" href="#">Create Objects</a></li>
|
||||
<li><a class="dropdown-item" tribe="" href="#">Manage Objects</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
</ul>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" onclick="" href="#">My Tribe nameA</a></li>
|
||||
<li><a class="dropdown-item" onclick="" href="#">My tribe nameB</a></li>
|
||||
<div id="apxtitle" class="p-5 bg-primary text-white text-center" apptoload="app.load('apxtitle','title','setup')"
|
||||
add2data tpldata="static/tpldata/setup_en.json">
|
||||
<h1>apXtrib</h1>
|
||||
<p> Manage and understand apXtrib back-end</p>
|
||||
</div>
|
||||
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
|
||||
<div class="container-fluid">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" add2data tpl="static/tpl/articleslist_en.mustache"
|
||||
onclick="app.load('apxmain','articleslist','articleslist')"><i class="fa-solid fa-house"></i></a>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button"
|
||||
aria-expanded="false">Articles</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" add2data tpl="static/tpl/articleeditor_en.mustache"
|
||||
onclick="app.load('apxmain','articleeditor',{})">Create</a></li>
|
||||
<li><a class="dropdown-item" href="#">Manage Articles</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<div class="" d-none" add2data object="nationchains/towns/idx/townId_all.json"></div>
|
||||
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button"
|
||||
aria-expanded="false">Pagan</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" add2data tpl="static/tpl/pagancreate_en.mustache"
|
||||
object="nationchains/pagans/idx/alias_all.json"
|
||||
onclick="app.load('apxmain','pagancreate',pagans.loadtpldata())">Create / Login / Logout</a></li>
|
||||
<hr class="dropdown-divider">
|
||||
</li>
|
||||
<li><a class="dropdown-item" href="#">Cipher/Uncipher</a></li>
|
||||
<li><a class="dropdown-item" href="#">My messages</a></li>
|
||||
<li><a class="dropdown-item" href="#">Notifications</a></li>
|
||||
<li><a class="dropdown-item" href="#">Wallet management</a></li>
|
||||
<li><a class="dropdown-item" href="#">Signed Contracts</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">Person's Tribe</a>
|
||||
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button"
|
||||
aria-expanded="false">Mayor's Town</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="#">My tribes</a></li>
|
||||
<li><a class="dropdown-item" href="#">My Profile</a></li>
|
||||
<li><a class="dropdown-item" href="#">My Objects</a></li>
|
||||
<li><a class="dropdown-item" href="#">Message</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li><a class="dropdown-item" add2data tpl="static/tpl/townsetup_en.mustache"
|
||||
onclick="app.load('apxmain','townsetup','setup')">Chain a town</a></li>
|
||||
<li><a class="dropdown-item" href="#">Create Tribe</a></li>
|
||||
<li><a class="dropdown-item" href="#">Manage Tribes</a></li>
|
||||
<li>
|
||||
<hr class="dropdown-divider">
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" onclick="" href="#">My Tribe nameA</a></li>
|
||||
<li><a class="dropdown-item" onclick="" href="#">My tribe nameB</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">DevOp's space</a>
|
||||
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button"
|
||||
aria-expanded="false">Druid's Tribe</a>
|
||||
<ul class="dropdown-menu ">
|
||||
<li><a class="dropdown-item" tribe="" href="#">Manage Persons</a></li>
|
||||
<li><a class="dropdown-item" tribe="" href="#">Manage web space</a></li>
|
||||
<li><a class="dropdown-item" tribe="" href="#">NFT generator</a></li>
|
||||
<li><a class="dropdown-item" tribe="" href="#">Create Objects</a></li>
|
||||
<li><a class="dropdown-item" tribe="" href="#">Manage Objects</a></li>
|
||||
<li>
|
||||
<hr class="dropdown-divider">
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button"
|
||||
aria-expanded="false">Person's Tribe</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" onclick="" href="#">My Tribe A</a></li>
|
||||
<li><a class="dropdown-item" onclick="" href="#">My tribe B</a></li>
|
||||
<li><a class="dropdown-item" onclick="" href="#">My tribe X</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button"
|
||||
aria-expanded="false">DevOp's space</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="#">Odmdb Schema</a></li>
|
||||
<li><a class="dropdown-item" href="#">Odmdb CRUD</a></li>
|
||||
<li><a class="dropdown-item" href="#">Host a web app</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li>
|
||||
<hr class="dropdown-divider">
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">Utils</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link disabled" href="#">Disabled</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div id="apxmain" apptoload="app.load('apxmain','listofarticle','listofarticle')" class="container mt-5">
|
||||
<div class="d-flex justify-content-center">
|
||||
<div class="spinner-border" role="status">
|
||||
<span class="visually-hidden">Loading...</span>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div id="apxmain" apptoload="app.load('apxmain','articleslist','articleslist')" class="container mt-5">
|
||||
<div class="d-flex justify-content-center">
|
||||
<div class="spinner-border" role="status">
|
||||
<span class="visually-hidden">Loading...</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="apxfooter" apptoload="app.load('apxfooter','footer','footer')" class="mt-5 p-4 bg-dark text-white text-center">
|
||||
</div>
|
||||
|
||||
<div id="apxfooter" apptoload="app.load('apxfooter','footer','footer')"
|
||||
class="mt-5 p-4 bg-dark text-white text-center">
|
||||
</div>
|
||||
<div id="apxmodal" add2data tpl="static/tpl/apxmodal_en.mustache"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
</html>
|
BIN
nationchains/www/adminapx/static/img/logo/favicon.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
nationchains/www/adminapx/static/img/logo/logobgdark.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
168
nationchains/www/adminapx/static/img/logo/logobgdark.svg
Normal file
@@ -0,0 +1,168 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="74.422066mm"
|
||||
height="39.408447mm"
|
||||
viewBox="0 0 74.422066 39.408447"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (732a01da63, 2022-12-09, custom)"
|
||||
sodipodi:docname="planchelogoapXtrib.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.3786088"
|
||||
inkscape:cx="429.03231"
|
||||
inkscape:cy="188.5556"
|
||||
inkscape:window-width="1868"
|
||||
inkscape:window-height="1141"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2">
|
||||
<inkscape:path-effect
|
||||
effect="powerclip"
|
||||
id="path-effect4281-6"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false"
|
||||
message="Utilise la règle de remplissage « fill-rule: evenodd » de la boîte de dialogue <b>Fond et contour</b> en l'absence de résultat de mise à plat après une conversion en chemin." />
|
||||
<inkscape:path-effect
|
||||
effect="powerclip"
|
||||
id="path-effect4223-1-5"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false"
|
||||
message="Utilise la règle de remplissage « fill-rule: evenodd » de la boîte de dialogue <b>Fond et contour</b> en l'absence de résultat de mise à plat après une conversion en chemin." />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect4281-6">
|
||||
<rect
|
||||
style="display:none;fill:none;stroke:#000000;stroke-width:2.965;stroke-miterlimit:5"
|
||||
id="rect12221"
|
||||
width="3.9103701"
|
||||
height="17.277628"
|
||||
x="72.929848"
|
||||
y="18.71629"
|
||||
d="m 72.929848,18.71629 h 3.91037 v 17.277627 h -3.91037 z" />
|
||||
<path
|
||||
id="lpe_path-effect4281-6"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.965;stroke-miterlimit:5"
|
||||
class="powerclip"
|
||||
d="M 39.612377,7.7145809 H 79.612633 V 47.714838 H 39.612377 Z M 72.929848,18.71629 v 17.277627 h 3.91037 V 18.71629 Z" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect4223-1-5">
|
||||
<rect
|
||||
style="display:none;fill:none;stroke:#000000;stroke-width:0.890744;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect12226"
|
||||
width="29.109257"
|
||||
height="29.109257"
|
||||
x="45.057877"
|
||||
y="13.160081"
|
||||
clip-path="none"
|
||||
d="M 45.057877,13.160081 H 74.167133 V 42.269338 H 45.057877 Z" />
|
||||
<path
|
||||
id="lpe_path-effect4223-1-5"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.890744;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 35.399339,3.8513256 H 75.39934 V 43.851326 H 35.399339 Z m 9.658538,9.3087554 V 42.269338 H 74.167133 V 13.160081 Z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-33.762223,-52.949721)">
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.264999;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect12066-9"
|
||||
width="74.422066"
|
||||
height="39.408443"
|
||||
x="33.685085"
|
||||
y="52.371716" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:0.0159938;stroke:none;stroke-width:0.264999;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect12066-6"
|
||||
width="74.422066"
|
||||
height="39.408443"
|
||||
x="33.762222"
|
||||
y="52.949718"
|
||||
inkscape:export-filename="../6e81e123/logobglight.svg"
|
||||
inkscape:export-xdpi="105.58897"
|
||||
inkscape:export-ydpi="105.58897" />
|
||||
<path
|
||||
style="display:block;fill:none;stroke:#ffffff;stroke-width:0.891;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221-6"
|
||||
width="29.109257"
|
||||
height="29.109257"
|
||||
x="45.057877"
|
||||
y="13.160081"
|
||||
clip-path="url(#clipath_lpe_path-effect4281-6)"
|
||||
inkscape:path-effect="#path-effect4281-6"
|
||||
d="M 45.057877,13.160081 H 74.167133 V 42.269338 H 45.057877 Z"
|
||||
sodipodi:type="rect"
|
||||
transform="translate(0.7877763,47.235812)" />
|
||||
<path
|
||||
style="display:block;fill:none;stroke:#ffffff;stroke-width:0.890744;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4212-5-3"
|
||||
width="29.109257"
|
||||
height="29.109257"
|
||||
x="40.844711"
|
||||
y="9.2966976"
|
||||
clip-path="url(#clipath_lpe_path-effect4223-1-5)"
|
||||
inkscape:path-effect="#path-effect4223-1-5"
|
||||
d="M 40.844711,9.2966976 H 69.953968 V 38.405954 H 40.844711 Z"
|
||||
sodipodi:type="rect"
|
||||
transform="translate(1.2107703,47.421564)" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:3.175px;fill:#2e7fc8;fill-opacity:1;stroke-width:0.265;stroke-dasharray:none"
|
||||
x="48.645107"
|
||||
y="76.664268"
|
||||
id="text168-9"
|
||||
inkscape:highlight-color="#2e7fc8"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan166-4"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.1111px;font-family:Quicksand;-inkscape-font-specification:'Quicksand, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#2e7fc8;fill-opacity:1;stroke-width:0.265;stroke-dasharray:none"
|
||||
x="48.645107"
|
||||
y="76.664268"><tspan
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="tspan12445">ap</tspan><tspan
|
||||
style="fill:#ffc332;fill-opacity:1"
|
||||
id="tspan11889-8">X</tspan><tspan
|
||||
style="fill:#ffffff;fill-opacity:0.985099"
|
||||
id="tspan12341">trib</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#2e7fc8;fill-opacity:1;stroke-width:0.264583"
|
||||
x="54.550327"
|
||||
y="82.090439"
|
||||
id="text168-0-1"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan166-9-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
x="54.550327"
|
||||
y="82.090439">BLOCKCHAIN OF DEMOCRACY</tspan></text>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.2 KiB |
BIN
nationchains/www/adminapx/static/img/logo/logobglight.png
Normal file
After Width: | Height: | Size: 10 KiB |
156
nationchains/www/adminapx/static/img/logo/logobglight.svg
Normal file
@@ -0,0 +1,156 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="74.687065mm"
|
||||
height="39.673443mm"
|
||||
viewBox="0 0 74.687065 39.673443"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (732a01da63, 2022-12-09, custom)"
|
||||
sodipodi:docname="planchelogoapXtrib.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.3786088"
|
||||
inkscape:cx="429.03231"
|
||||
inkscape:cy="188.5556"
|
||||
inkscape:window-width="1868"
|
||||
inkscape:window-height="1141"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2">
|
||||
<inkscape:path-effect
|
||||
effect="powerclip"
|
||||
id="path-effect4281"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false"
|
||||
message="Utilise la règle de remplissage « fill-rule: evenodd » de la boîte de dialogue <b>Fond et contour</b> en l'absence de résultat de mise à plat après une conversion en chemin." />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4219-7">
|
||||
<rect
|
||||
style="display:none;fill:none;stroke:#000000;stroke-width:0.890744;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221-7"
|
||||
width="29.109257"
|
||||
height="29.109257"
|
||||
x="45.057877"
|
||||
y="13.160081"
|
||||
clip-path="none"
|
||||
d="M 45.057877,13.160081 H 74.167133 V 42.269338 H 45.057877 Z" />
|
||||
<path
|
||||
id="lpe_path-effect4223-1"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.890744;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 35.399339,3.8513256 H 75.39934 V 43.851326 H 35.399339 Z m 9.658538,9.3087554 V 42.269338 H 74.167133 V 13.160081 Z" />
|
||||
</clipPath>
|
||||
<inkscape:path-effect
|
||||
effect="powerclip"
|
||||
id="path-effect4223-1"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false"
|
||||
message="Utilise la règle de remplissage « fill-rule: evenodd » de la boîte de dialogue <b>Fond et contour</b> en l'absence de résultat de mise à plat après une conversion en chemin." />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4277">
|
||||
<rect
|
||||
style="display:none;fill:none;stroke:#000000;stroke-width:2.965;stroke-miterlimit:5"
|
||||
id="rect4279"
|
||||
width="3.9103701"
|
||||
height="17.277628"
|
||||
x="72.929848"
|
||||
y="18.71629"
|
||||
d="m 72.929848,18.71629 h 3.91037 v 17.277627 h -3.91037 z" />
|
||||
<path
|
||||
id="lpe_path-effect4281"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.965;stroke-miterlimit:5"
|
||||
class="powerclip"
|
||||
d="M 39.612377,7.7145809 H 79.612633 V 47.714838 H 39.612377 Z M 72.929848,18.71629 v 17.277627 h 3.91037 V 18.71629 Z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-32.764809,-5.0034045)">
|
||||
<path
|
||||
style="display:block;fill:none;stroke:#2e7fc8;stroke-width:0.891;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221"
|
||||
width="29.109257"
|
||||
height="29.109257"
|
||||
x="45.057877"
|
||||
y="13.160081"
|
||||
clip-path="url(#clipPath4277)"
|
||||
inkscape:path-effect="#path-effect4281"
|
||||
d="M 45.057877,13.160081 H 74.167133 V 42.269338 H 45.057877 Z"
|
||||
sodipodi:type="rect" />
|
||||
<path
|
||||
style="display:block;fill:none;stroke:#2e7fc8;stroke-width:0.890744;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4212-5"
|
||||
width="29.109257"
|
||||
height="29.109257"
|
||||
x="40.844711"
|
||||
y="9.2966976"
|
||||
clip-path="url(#clipPath4219-7)"
|
||||
inkscape:path-effect="#path-effect4223-1"
|
||||
d="M 40.844711,9.2966976 H 69.953968 V 38.405954 H 40.844711 Z"
|
||||
sodipodi:type="rect"
|
||||
transform="translate(0.42299389,0.18575204)" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:3.175px;fill:#2e7fc8;fill-opacity:1;stroke-width:0.265;stroke-dasharray:none"
|
||||
x="47.857334"
|
||||
y="29.428459"
|
||||
id="text168"
|
||||
inkscape:highlight-color="#2e7fc8"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan166"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.1111px;font-family:Quicksand;-inkscape-font-specification:'Quicksand, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#2e7fc8;fill-opacity:1;stroke-width:0.265;stroke-dasharray:none"
|
||||
x="47.857334"
|
||||
y="29.428459">ap<tspan
|
||||
style="fill:#ffc332;fill-opacity:1"
|
||||
id="tspan11889">X</tspan>trib</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#2e7fc8;fill-opacity:1;stroke-width:0.264583"
|
||||
x="53.762562"
|
||||
y="34.85463"
|
||||
id="text168-0"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan166-9"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#2e7fc8;fill-opacity:1;stroke-width:0.264583"
|
||||
x="53.762562"
|
||||
y="34.85463">BLOCKCHAIN OF DEMOCRACY</tspan></text>
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.264999;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect12066"
|
||||
width="74.422066"
|
||||
height="39.408443"
|
||||
x="32.897308"
|
||||
y="5.1359038"
|
||||
inkscape:export-filename="../6e81e123/logobglight.svg"
|
||||
inkscape:export-xdpi="105.58897"
|
||||
inkscape:export-ydpi="105.58897" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
BIN
nationchains/www/adminapx/static/img/logo/logocarredark.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
nationchains/www/adminapx/static/img/logo/logocarrelight.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
@@ -4,46 +4,61 @@
|
||||
"use strict";
|
||||
var app = app || {};
|
||||
|
||||
app.createIdentity=(alias,passphrase="")=>{
|
||||
if (alias.length<3 || apx.data.object['index_pagans_alias_all'].includes(alias) ){
|
||||
alert('Please chose another alias')
|
||||
return;
|
||||
}
|
||||
const keys = apx.generateKey(alias,passphrase)
|
||||
for(let tag of ['inputalias','inputpassphrase']){
|
||||
document.getElementById(tag).classList.add('disabled')
|
||||
}
|
||||
document.getElementById('privatekey').setAttribute("key",keys.privateKey);
|
||||
document.getElementById('publickey').setAttribute("key",keys.publicKey);
|
||||
document.getElementById('generatekeys').classList.add('d-none');
|
||||
document.getElementById('downloadkeys').classList.remove('d-none');
|
||||
document.getElementById('createId').classList.remove('d-none');
|
||||
}
|
||||
|
||||
app.registerIdentity=()=>{
|
||||
const data={
|
||||
alias:document.getElementById('inputalias').value,
|
||||
privateKey:document.getElementById('privatekey').getAttribute('key'),
|
||||
publicKey:document.getElementById('publickey').getAttribute('key'),
|
||||
passphrase:document.getElementById('inputpassphrase').value
|
||||
}
|
||||
axios.post('api/pagans',data,apx.data.headers)
|
||||
.then(rep=>{
|
||||
// genere authentification headers.xalias, xhash store object.pagans_alias={privateKey, passphrase}; console.log(rep)})
|
||||
// if check trust add data email recovery axios.post('api/persons,data, apx.data.headers)
|
||||
app.runapirequest = (destmodalid, axiosreq, modalcontent) => {
|
||||
/**
|
||||
* Axios option
|
||||
* {method: GET POST,...,
|
||||
* url:'/relativepath'
|
||||
* data:{anydata to pass}
|
||||
* responseType:'json'}
|
||||
*/
|
||||
if (!modalcontent) {
|
||||
modalcontent = {
|
||||
title: "An axios request",
|
||||
body: "",
|
||||
actions: [],
|
||||
};
|
||||
}
|
||||
modalcontent.body += JSON.stringify(axiosreq);
|
||||
console.log(apx.data.headers);
|
||||
axiosreq.headers = apx.data.headers;
|
||||
axios(axiosreq)
|
||||
.then((rep) => {
|
||||
console.log(rep);
|
||||
modalcontent.body += "<br>" + JSON.stringify(rep.data);
|
||||
app.modalmanagement("reqaxios", apx.data.tpl.apxmodal, modalcontent);
|
||||
})
|
||||
.catch(err=>{
|
||||
console.log('sorry',err);
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.catch((err, rep) => {
|
||||
console.log(err);
|
||||
modalcontent.title += " - Status :" + err.response.status;
|
||||
modalcontent.body += JSON.stringify(err.response.data);
|
||||
app.modalmanagement("reqaxios", apx.data.tpl.apxmodal, modalcontent);
|
||||
});
|
||||
};
|
||||
app.modalmanagement = (modalid, tpl, data, optionmodal) => {
|
||||
/**
|
||||
* Pre-request in hatml
|
||||
* <div id="apxmodal" add2data tpl="static/tpl/apxmodal_en.mustache" ></div>
|
||||
* data must be online with tpl
|
||||
* optionmodal see https://getbootstrap.com/docs/5.0/components/modal/
|
||||
*/
|
||||
if (!optionmodal)
|
||||
optionmodal = { backdrop: true, keyboard: true, focus: true };
|
||||
if (document.getElementById(modalid)) {
|
||||
document.getElementById(modalid).remove();
|
||||
}
|
||||
data.modalid = modalid;
|
||||
document.getElementById("apxmodal").innerHTML += Mustache.render(tpl, data);
|
||||
var currentmodal = new bootstrap.Modal(
|
||||
document.getElementById(modalid),
|
||||
optionmodal
|
||||
);
|
||||
//var currentmodal = bootstrap.Modal.getOrCreateInstance(modalid);
|
||||
|
||||
currentmodal.show();
|
||||
};
|
||||
app.search = (elt) => {
|
||||
//@todo get search string from input then return tpldata.listofarticles={"search":[]}
|
||||
//@todo get search string from input then return tpldata.articleslist={"search":[]}
|
||||
console.log("A FAIRE");
|
||||
};
|
||||
app.downloadlink = (keys, object, prefix) => {
|
||||
@@ -81,50 +96,52 @@ app.downloadlink = (keys, object, prefix) => {
|
||||
};
|
||||
|
||||
app.setupdata = () => {
|
||||
//todo generate tpldata.listofarticle get html from /static/html
|
||||
apx.data.tpldata.listofarticle = {
|
||||
//todo generate tpldata.articleslist get html from /static/html
|
||||
apx.data.tpldata.articleslist = {
|
||||
mostread: [{}],
|
||||
news: [{}],
|
||||
search: [],
|
||||
articles: "html",
|
||||
};
|
||||
const list = {}
|
||||
const list = {};
|
||||
document.querySelectorAll("[add2data]").forEach((e) => {
|
||||
/** Collect from any tag with add2data url attribute (tpl tpldata object)
|
||||
* name is the filename :
|
||||
* for tpl and tpldata (relativepath/filename_xx.ext) name=filename
|
||||
* For public object (pagans, towns, nations, block) not tribes object are gettable (only)
|
||||
* with /nationchains/objectName/idx/existingindex.json
|
||||
* or for an item /itm//primarykey_value_of_item.json
|
||||
*
|
||||
* For tribe object get or for modification you need to use api and to have accessright setup properly:
|
||||
* or for an item /itm//primarykey_value_of_item.json
|
||||
*
|
||||
* For tribe object get or for modification you need to use api and to have accessright setup properly:
|
||||
* for object index (/api/odmdb/objectname/idx/filename.json) name =objectname_filename
|
||||
* for object item (/api/odmdb/objectname/itm/primarykey.json) name =objectname_primarykey
|
||||
*/
|
||||
|
||||
if (e.getAttribute('object')){
|
||||
const url = e.getAttribute('object')
|
||||
const spliturlobj=url.split("/").slice(-3);
|
||||
const objectname=spliturlobj[0];
|
||||
const objecttype=spliturlobj[1];
|
||||
const objectkey=spliturlobj[2].substring(0,spliturlobj[2].length-5)
|
||||
if (!list[objectname]) list[objectname]={};
|
||||
list[objectname][`${objecttype}${objectkey}`]= url;
|
||||
};
|
||||
for (let k of ["tpl", "tpldata"]) {
|
||||
if (e.getAttribute(k)){
|
||||
const url=e.getAttribute(k);
|
||||
let localname=url.split('/').slice(-1)[0];
|
||||
if (url.includes('.mustache')) localname=localname.substring(0,localname.length-12);
|
||||
if (url.includes('.html') || url.includes('.json') ) localname=localname.substring(0,localname.length-8);
|
||||
if (!list[k]) list[k]={};
|
||||
list[k][localname]=url;
|
||||
}
|
||||
if (e.getAttribute("object")) {
|
||||
const url = e.getAttribute("object");
|
||||
const spliturlobj = url.split("/").slice(-3);
|
||||
const objectname = spliturlobj[0];
|
||||
const objecttype = spliturlobj[1];
|
||||
const objectkey = spliturlobj[2].substring(0, spliturlobj[2].length - 5);
|
||||
if (!list[objectname]) list[objectname] = {};
|
||||
list[objectname][`${objecttype}${objectkey}`] = url;
|
||||
}
|
||||
});
|
||||
for (let k of ["tpl", "tpldata"]) {
|
||||
if (e.getAttribute(k)) {
|
||||
const url = e.getAttribute(k);
|
||||
let localname = url.split("/").slice(-1)[0];
|
||||
if (url.includes(".mustache"))
|
||||
localname = localname.substring(0, localname.length - 12);
|
||||
if (url.includes(".html") || url.includes(".json"))
|
||||
localname = localname.substring(0, localname.length - 8);
|
||||
if (!list[k]) list[k] = {};
|
||||
list[k][localname] = url;
|
||||
}
|
||||
}
|
||||
});
|
||||
// load external template and data
|
||||
|
||||
for (let k of Object.keys(list) ) {
|
||||
|
||||
for (let k of Object.keys(list)) {
|
||||
console.log(k, list[k]);
|
||||
apx.loadfile(list[k], k);
|
||||
}
|
||||
@@ -132,21 +149,21 @@ app.setupdata = () => {
|
||||
if (apx.data.firsttimeload) {
|
||||
// Need to wait the first time apx.data fully load
|
||||
setTimeout(() => {
|
||||
app.setuppage();
|
||||
}, 300);
|
||||
app.setuppage();
|
||||
}, 500);
|
||||
delete apx.data.firsttimeload;
|
||||
apx.save();
|
||||
}else{
|
||||
} else {
|
||||
app.setuppage();
|
||||
}
|
||||
};
|
||||
app.load = (idtoload, tplname, tpldata) => {
|
||||
const tpl = apx.data.tpl[tplname]
|
||||
? apx.data.tpl[tplname]
|
||||
: `missing template ${tplname}`;
|
||||
const data = typeof tpldata == "string" ? apx.data.tpldata[tpldata] : tpldata;
|
||||
document.getElementById(idtoload).innerHTML = Mustache.render(tpl, data);
|
||||
};
|
||||
const tpl = apx.data.tpl[tplname]
|
||||
? apx.data.tpl[tplname]
|
||||
: `missing template ${tplname}`;
|
||||
const data = typeof tpldata == "string" ? apx.data.tpldata[tpldata] : tpldata;
|
||||
document.getElementById(idtoload).innerHTML = Mustache.render(tpl, data);
|
||||
};
|
||||
app.setuppage = () => {
|
||||
// load partial template
|
||||
document.querySelectorAll("[apptoload]").forEach((e) => {
|
||||
|
232
nationchains/www/adminapx/static/js/apxpagans.js
Normal file
@@ -0,0 +1,232 @@
|
||||
/*eslint no-undef:0*/
|
||||
/*eslint-env browser*/
|
||||
|
||||
"use strict";
|
||||
var pagans = pagans || {};
|
||||
/**
|
||||
* pagans.generateKey(params) create a public/private key compatible with apXtrib backend and store it in apx.data
|
||||
* pagans.detachedSignature(params) generate a detachedSignature for a Message that backend can check with the publicKey of the alias
|
||||
* pagans.checkdetachedSignature(params) check a detachedSignature for a Message (used on the backend as well)
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
pagans.loadtpldata = () => {
|
||||
// adapte tpldata to template tpl
|
||||
// get list of tribes from nationchains/towns/idx/townId_all.json
|
||||
const datacreatepagan = { tribes: [] };
|
||||
|
||||
apx.data.towns.idxtownId_all[apx.data.tpldata.setup.townId].tribes.forEach(
|
||||
(t) => {
|
||||
if (t == apx.data.tpldata.setup.tribeId) {
|
||||
datacreatepagan.tribes.push({ selected: true, tribeId: t });
|
||||
} else {
|
||||
datacreatepagan.tribes.push({ tribeId: t });
|
||||
}
|
||||
}
|
||||
);
|
||||
return datacreatepagan;
|
||||
};
|
||||
|
||||
pagans.generateKey = async (alias, passphrase) => {
|
||||
/**
|
||||
* @param {string} alias a unique alias that identify an identity
|
||||
* @param {string} passphrase a string to cipher the publicKey (can be empty, less secure but simpler)
|
||||
* @return {publicKey,privateKey} with userIds = [{alias}]
|
||||
*/
|
||||
const pgpparam = {
|
||||
type: "ecc", // Type of the key, defaults to ECC
|
||||
curve: "curve25519", // ECC curve name, defaults to curve25519
|
||||
userIDs: [{ alias: alias }], // you can pass multiple user IDs
|
||||
passphrase: passphrase, // protects the private key
|
||||
format: "armored", // output key format, defaults to 'armored' (other options: 'binary' or 'object')
|
||||
};
|
||||
const { privateKey, publicKey } = await openpgp.generateKey(pgpparam);
|
||||
// key start by '-----BEGIN PGP PRIVATE KEY BLOCK ... '
|
||||
// get liste of alias:pubklickey await axios.get('api/v0/pagans')
|
||||
// check alias does not exist
|
||||
return { alias, privateKey, publicKey };
|
||||
};
|
||||
pagans.detachedSignature = async (pubK, privK, passphrase, message) => {
|
||||
/**
|
||||
* @pubK {string} a text public key
|
||||
* @privK {string} a test priv key
|
||||
* @passphrase {string} used to read privK
|
||||
* @message {string} message to sign
|
||||
* @Return a detached Signature of the message
|
||||
*/
|
||||
const publicKey = await openpgp.readKey({ armoredKey: pubK });
|
||||
let privateKey;
|
||||
if (passphrase == "") {
|
||||
privateKey = await openpgp.readPrivateKey({ armoredKey: privK });
|
||||
} else {
|
||||
privateKey = await openpgp.decryptKey({
|
||||
privateKey: await openpgp.readPrivateKey({ armoredKey: privK }),
|
||||
passphrase,
|
||||
});
|
||||
}
|
||||
console.log(message);
|
||||
const msg = await openpgp.createMessage({ text: message });
|
||||
console.log(msg);
|
||||
const sig = await openpgp.sign({
|
||||
message: msg,
|
||||
signingKeys: privateKey,
|
||||
detached: true,
|
||||
});
|
||||
return btoa(sig);
|
||||
};
|
||||
pagans.authenticatedetachedSignature = async (
|
||||
alias,
|
||||
pubK,
|
||||
detachedSignature,
|
||||
message
|
||||
) => {
|
||||
/**
|
||||
* Check that alias (pubkey) signe a message
|
||||
* @alias {string} alias link to the publicKey
|
||||
* @pubK {string} publiKey text format
|
||||
* @detachedSignature {string} a detachedsignatured get from apx.detachedSignature
|
||||
* @message {string} the message signed
|
||||
* @return {boolean} true the message was signed by alias
|
||||
* false the message was not signed by alias
|
||||
*/
|
||||
const publicKey = await openpgp.readKey({ armoredKey: pubK });
|
||||
const msg = await openpgp.createMessage({ text: message });
|
||||
const signature = await openpgp.readSignature({
|
||||
armoredSignature: atob(detachedSignature), // parse detached signature
|
||||
});
|
||||
const verificationResult = await openpgp.verify({
|
||||
msg, // Message object
|
||||
signature,
|
||||
verificationKeys: publicKey,
|
||||
});
|
||||
const { verified, keyID } = verificationResult.signatures[0];
|
||||
try {
|
||||
await verified; // throws on invalid signature
|
||||
console.log("Signed by key id " + keyID.toHex());
|
||||
return KeyId.toHex().alias == alias;
|
||||
} catch (e) {
|
||||
console.log("Signature could not be verified: " + e.message);
|
||||
return false;
|
||||
}
|
||||
};
|
||||
pagans.createIdentity = async (alias, passphrase = "") => {
|
||||
console.log(Object.keys(apx.data.pagans["idxalias_all"]));
|
||||
if (
|
||||
alias.length < 3 ||
|
||||
Object.keys(apx.data.pagans["idxalias_all"]).includes(alias)
|
||||
) {
|
||||
alert("Please chose another alias");
|
||||
return;
|
||||
}
|
||||
const keys = await pagans.generateKey(alias, passphrase);
|
||||
for (let tag of ["inputalias", "inputpassphrase"]) {
|
||||
document.getElementById(tag).classList.add("disabled");
|
||||
}
|
||||
console.log(keys);
|
||||
document.getElementById("privatekey").setAttribute("key", keys.privateKey);
|
||||
document.getElementById("publickey").setAttribute("key", keys.publicKey);
|
||||
document.getElementById("generatekeys").classList.add("d-none");
|
||||
document.getElementById("trustintribe").classList.remove("d-none");
|
||||
document.getElementById("downloadkeys").classList.remove("d-none");
|
||||
document.getElementById("createId").classList.remove("d-none");
|
||||
};
|
||||
|
||||
pagans.registerIdentity = async () => {
|
||||
const emailregex =
|
||||
/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
||||
const data = {};
|
||||
data.alias = document.getElementById("inputalias").value;
|
||||
data.publickey = document.getElementById("publickey").getAttribute("key");
|
||||
|
||||
if (document.getElementById("inputemailrecovery").value != "") {
|
||||
data.email = document.getElementById("inputemailrecovery").value;
|
||||
}
|
||||
if (data.email && !emailregex.test(data.email)) {
|
||||
alert("Check your email");
|
||||
return false;
|
||||
}
|
||||
var select = document.getElementById("trustedtribe");
|
||||
if (document.getElementById("trustedcheck").checked) {
|
||||
data.trustedtribe = select.options[select.selectedIndex].value;
|
||||
data.privatekey = document.getElementById("privatekey").getAttribute("key");
|
||||
data.passphrase = document.getElementById("inputpassphrase").value;
|
||||
}
|
||||
if (document.getElementById("trustedcheck").checked && !data.email) {
|
||||
alert("Please provide a valid email");
|
||||
return false;
|
||||
}
|
||||
console.log(data);
|
||||
//store and create authentification by signing 'alias_timestamp'
|
||||
/* const passp = data.passphrase ? data.passphrase : "";
|
||||
apx.data.auth = {
|
||||
alias: data.alias,
|
||||
publickey: data.publickey,
|
||||
privatekey: document.getElementById("privatekey").getAttribute("key"),
|
||||
passphrase: passp,
|
||||
};
|
||||
apx.data.headers.xalias = data.alias;
|
||||
apx.data.headers.xdays = dayjs().valueOf();
|
||||
apx.save();
|
||||
const msg = `${data.alias}_${apx.data.headers.xdays}`;
|
||||
apx.data.headers.xhash = await pagans.detachedSignature(
|
||||
apx.data.auth.publickey,
|
||||
apx.data.auth.privatekey,
|
||||
passp,
|
||||
msg
|
||||
);
|
||||
apx.save();*/
|
||||
await pagans.authentifyme(
|
||||
data.alias,
|
||||
data.passphrase,
|
||||
document.getElementById("privatekey").getAttribute("key"),
|
||||
document.getElementById("publickey").getAttribute("key")
|
||||
);
|
||||
console.log("header", apx.data.headers);
|
||||
axios
|
||||
.post("api/pagans", data, { headers: apx.data.headers })
|
||||
.then((reppagan) => {
|
||||
console.log(reppagan);
|
||||
})
|
||||
.catch((err) => {
|
||||
console.log("sorry", err);
|
||||
});
|
||||
};
|
||||
|
||||
pagans.authentifyme = async (
|
||||
alias,
|
||||
passphrase,
|
||||
privatekey,
|
||||
publickeycreate
|
||||
) => {
|
||||
/**
|
||||
* Set apx.data.auth with pub, priv, passphrase alias that allow authentification
|
||||
* set headers with xdays (timestamp) and xhash of message: {alias}_{timestamp} generate with pub & priv key
|
||||
*
|
||||
* @Param {key} publickeycreate optional when alias does not exist
|
||||
*/
|
||||
console.log(alias, passphrase);
|
||||
console.log(privatekey);
|
||||
const passp = passphrase ? passphrase : "";
|
||||
const publickey = publickeycreate
|
||||
? publickeycreate
|
||||
: apx.data.pagans.idxalias_all[alias].publicKey;
|
||||
apx.data.auth = {
|
||||
alias: alias,
|
||||
publickey: publickey,
|
||||
privatekey: privatekey,
|
||||
passphrase: passp,
|
||||
};
|
||||
apx.data.headers.xalias = alias;
|
||||
apx.data.headers.xdays = dayjs().valueOf();
|
||||
apx.save();
|
||||
const msg = `${alias}_${apx.data.headers.xdays}`;
|
||||
|
||||
apx.data.headers.xhash = await pagans.detachedSignature(
|
||||
apx.data.auth.publickey,
|
||||
apx.data.auth.privatekey,
|
||||
passp,
|
||||
msg
|
||||
);
|
||||
apx.save();
|
||||
};
|
0
nationchains/www/adminapx/static/js/apxtowns.js
Normal file
@@ -21,93 +21,12 @@ var apx = apx || {};
|
||||
},
|
||||
objects:{}
|
||||
};
|
||||
* apx.generateKey(params) create a public/private key compatible with apXtrib backend and store it in apx.data
|
||||
* apx.detachedSignature(params) generate a detachedSignature for a Message that backend can check with the publicKey of the alias
|
||||
* apx.checkdetachedSignature(params) check a detachedSignature for a Message (used on the backend as well)
|
||||
|
||||
* apx.ready(callback) equivalent of jquery Document.ready()
|
||||
* apx.save() save apx.data as xapp value in localStorage
|
||||
* apx.update() get localStorage up to date
|
||||
* apx.loadfile({url:name},dest,axiosoptions) async that wait to load a list of relativ url and store it in a apx.data[dest]
|
||||
*/
|
||||
|
||||
apx.generateKey = async (alias, passphrase) => {
|
||||
/**
|
||||
* @param {string} alias a unique alias that identify an identity
|
||||
* @param {string} passphrase a string to cipher the publicKey (can be empty, less secure but simpler)
|
||||
* @return {publicKey,privateKey} with userIds = [{alias}]
|
||||
*/
|
||||
const { privateKey, publicKey } = await openpgp.generateKey({
|
||||
type: "ecc", // Type of the key, defaults to ECC
|
||||
curve: "curve25519", // ECC curve name, defaults to curve25519
|
||||
userIDs: [{ alias: alias }], // you can pass multiple user IDs
|
||||
passphrase: passphrase, // protects the private key
|
||||
format: "armored", // output key format, defaults to 'armored' (other options: 'binary' or 'object')
|
||||
});
|
||||
// key start by '-----BEGIN PGP PRIVATE KEY BLOCK ... '
|
||||
// get liste of alias:pubklickey await axios.get('api/v0/pagans')
|
||||
// check alias does not exist
|
||||
return { alias, privateKey, publicKey };
|
||||
/* document.getElementById('privatekey').innerHTML=privateKey;
|
||||
document.getElementById('publickey').innerHTML=publicKey;
|
||||
apx.data.pagans={}
|
||||
apx.data.pagans.privateKey=privateKey;
|
||||
apx.data.pagans.publicKey=publicKey;
|
||||
apx.save();
|
||||
console.log(apx.data)
|
||||
*/
|
||||
};
|
||||
apx.detachedSignature = async (pubK, privK, passphrase, message) => {
|
||||
/**
|
||||
* @pubK {string} a text public key
|
||||
* @privK {string} a test priv key
|
||||
* @passphrase {string} used to read privK
|
||||
* @message {string} message to sign
|
||||
* @Return a detached Signature of the message
|
||||
*/
|
||||
const publicKey = await openpgp.readKey({ armoredKey: pubK });
|
||||
const privateKey = await openpgp.decryptKey({
|
||||
privateKey: await openpgp.readPrivateKey({ armoredKey: privK }),
|
||||
passphrase,
|
||||
});
|
||||
const msg = await openpgp.createMessage({ text: message });
|
||||
return await openpgp.sign({ msg, signinKeys: privK, detached: true });
|
||||
};
|
||||
apx.checkdetachedSignature = async (
|
||||
alias,
|
||||
pubK,
|
||||
detachedSignature,
|
||||
message
|
||||
) => {
|
||||
/**
|
||||
* @alias {string} alias link to the publicKey
|
||||
* @pubK {string} publiKey text format
|
||||
* @detachedSignature {string} a detachedsignatured get from apx.detachedSignature
|
||||
* @message {string} the message signed
|
||||
* @return {boolean} true the message was signed by alias
|
||||
* false the message was not signed by alias
|
||||
*/
|
||||
const publicKey = await openpgp.readKey({ armoredKey: pubK });
|
||||
const msg = await openpgp.createMessage({ text: message });
|
||||
const signature = await openpgp.readSignature({
|
||||
armoredSignature: detachedSignature, // parse detached signature
|
||||
});
|
||||
const verificationResult = await openpgp.verify({
|
||||
msg, // Message object
|
||||
signature,
|
||||
verificationKeys: publicKey
|
||||
});
|
||||
const { verified, keyID } = verificationResult.signatures[0];
|
||||
try {
|
||||
await verified; // throws on invalid signature
|
||||
console.log("Signed by key id " + keyID.toHex());
|
||||
return KeyId.toHex().alias == alias;
|
||||
} catch (e) {
|
||||
console.log("Signature could not be verified: " + e.message);
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
apx.ready = (callback) => {
|
||||
/**
|
||||
* Wait loading DOM, when ready run callback function
|
||||
@@ -156,13 +75,17 @@ apx.loadfile = async (list, dest, axiosoptions) => {
|
||||
};
|
||||
const urls = Object.keys(invertlist);
|
||||
if (!axiosoptions) {
|
||||
// force no cache browser
|
||||
apx.data.headers["Cache-Control"] = "no-cache";
|
||||
apx.data.headers["Pragma"] = "no-cache";
|
||||
apx.data.headers["Expires"] = 0;
|
||||
axiosoptions = { headers: apx.data.headers };
|
||||
}
|
||||
console.log('axiosiptions',axiosoptions)
|
||||
console.log("axiosiptions", axiosoptions);
|
||||
const promiseArray = urls.map((r) => fetchURL(r, axiosoptions));
|
||||
await Promise.all(promiseArray)
|
||||
.then((data) => {
|
||||
console.log(data)
|
||||
console.log(data);
|
||||
for (let pos = 0; pos < urls.length; pos++) {
|
||||
//console.log( 'url', urls[ pos ] )
|
||||
//console.log( data[ pos ] );
|
||||
|
0
nationchains/www/adminapx/static/js/apxtribes.js
Normal file
93
nationchains/www/adminapx/static/style/fonts/logo/OFL.txt
Normal file
@@ -0,0 +1,93 @@
|
||||
Copyright 2011 The Quicksand Project Authors (https://github.com/andrew-paglinawan/QuicksandFamily), with Reserved Font Name “Quicksand”.
|
||||
|
||||
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
nationchains/www/adminapx/static/style/fonts/logo/Quicksand.zip
Normal file
67
nationchains/www/adminapx/static/style/fonts/logo/README.txt
Normal file
@@ -0,0 +1,67 @@
|
||||
Quicksand Variable Font
|
||||
=======================
|
||||
|
||||
This download contains Quicksand as both a variable font and static fonts.
|
||||
|
||||
Quicksand is a variable font with this axis:
|
||||
wght
|
||||
|
||||
This means all the styles are contained in a single file:
|
||||
Quicksand-VariableFont_wght.ttf
|
||||
|
||||
If your app fully supports variable fonts, you can now pick intermediate styles
|
||||
that aren’t available as static fonts. Not all apps support variable fonts, and
|
||||
in those cases you can use the static font files for Quicksand:
|
||||
static/Quicksand-Light.ttf
|
||||
static/Quicksand-Regular.ttf
|
||||
static/Quicksand-Medium.ttf
|
||||
static/Quicksand-SemiBold.ttf
|
||||
static/Quicksand-Bold.ttf
|
||||
|
||||
Get started
|
||||
-----------
|
||||
|
||||
1. Install the font files you want to use
|
||||
|
||||
2. Use your app's font picker to view the font family and all the
|
||||
available styles
|
||||
|
||||
Learn more about variable fonts
|
||||
-------------------------------
|
||||
|
||||
https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
|
||||
https://variablefonts.typenetwork.com
|
||||
https://medium.com/variable-fonts
|
||||
|
||||
In desktop apps
|
||||
|
||||
https://theblog.adobe.com/can-variable-fonts-illustrator-cc
|
||||
https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
|
||||
|
||||
Online
|
||||
|
||||
https://developers.google.com/fonts/docs/getting_started
|
||||
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
|
||||
https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
|
||||
|
||||
Installing fonts
|
||||
|
||||
MacOS: https://support.apple.com/en-us/HT201749
|
||||
Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
|
||||
Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
|
||||
|
||||
Android Apps
|
||||
|
||||
https://developers.google.com/fonts/docs/android
|
||||
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
|
||||
|
||||
License
|
||||
-------
|
||||
Please read the full license text (OFL.txt) to understand the permissions,
|
||||
restrictions and requirements for usage, redistribution, and modification.
|
||||
|
||||
You can use them in your products & projects – print or digital,
|
||||
commercial or otherwise.
|
||||
|
||||
This isn't legal advice, please consider consulting a lawyer and see the full
|
||||
license for all details.
|
93
nationchains/www/adminapx/static/style/fonts/texte/OFL.txt
Normal file
@@ -0,0 +1,93 @@
|
||||
Copyright 2011 The Questrial Project Authors (https://github.com/googlefonts/questrial)
|
||||
|
||||
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
nationchains/www/adminapx/static/style/fonts/texte/Questrial.zip
Normal file
@@ -0,0 +1,5 @@
|
||||
# Font Squirrel Font-face Generator Configuration File
|
||||
# Upload this file to the generator to recreate the settings
|
||||
# you used to create these fonts.
|
||||
|
||||
{"mode":"optimal","formats":["woff","woff2"],"tt_instructor":"default","fix_gasp":"xy","fix_vertical_metrics":"Y","metrics_ascent":"","metrics_descent":"","metrics_linegap":"","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"basic","subset_custom":"","subset_custom_range":"","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0"}
|
@@ -0,0 +1,706 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
|
||||
<script type="text/javascript">
|
||||
(function($) {
|
||||
$.fn.easyTabs = function(option) {
|
||||
var param = jQuery.extend({ fadeSpeed: 'fast', defaultContent: 1, activeClass: 'active' }, option);
|
||||
$(this).each(function() {
|
||||
var thisId = '#' + this.id;
|
||||
if ( param.defaultContent == '' )
|
||||
{
|
||||
param.defaultContent = 1;
|
||||
}
|
||||
if ( typeof param.defaultContent == 'number' )
|
||||
{
|
||||
var defaultTab = $(thisId + ' .tabs li:eq(' + (param.defaultContent - 1) + ') a').attr('href').substr(1);
|
||||
}
|
||||
else
|
||||
{
|
||||
var defaultTab = param.defaultContent;
|
||||
}
|
||||
$(thisId + ' .tabs li a').each(function() {
|
||||
var tabToHide = $(this).attr('href').substr(1);
|
||||
$('#' + tabToHide).addClass('easytabs-tab-content');
|
||||
});
|
||||
hideAll();
|
||||
changeContent(defaultTab);
|
||||
|
||||
function hideAll() {$(thisId + ' .easytabs-tab-content').hide();}
|
||||
|
||||
function changeContent(tabId)
|
||||
{
|
||||
hideAll();
|
||||
$(thisId + ' .tabs li').removeClass(param.activeClass);
|
||||
$(thisId + ' .tabs li a[href=#' + tabId + ']').closest('li').addClass(param.activeClass);
|
||||
if ( param.fadeSpeed != 'none' )
|
||||
{
|
||||
$(thisId + ' #' + tabId).fadeIn(param.fadeSpeed);
|
||||
}
|
||||
else
|
||||
{
|
||||
$(thisId + ' #' + tabId).show();
|
||||
}
|
||||
}
|
||||
|
||||
$(thisId + ' .tabs li').click(function() {
|
||||
var tabId = $(this).find('a').attr('href').substr(1);
|
||||
changeContent(tabId);
|
||||
return false;
|
||||
});
|
||||
});
|
||||
}
|
||||
})(jQuery);
|
||||
</script>
|
||||
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8"/>
|
||||
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8"/>
|
||||
|
||||
<style type="text/css">
|
||||
body {
|
||||
font-family: 'questrialregular';
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<title>Questrial Regular Specimen</title>
|
||||
|
||||
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
$(document).ready(function() {
|
||||
$('#container').easyTabs({ defaultContent: 1 });
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<div id="header">
|
||||
Questrial Regular </div>
|
||||
<ul class="tabs">
|
||||
<li><a href="#specimen">Specimen</a></li>
|
||||
<li><a href="#layout">Sample Layout</a></li>
|
||||
<li><a href="#glyphs">Glyphs & Languages</a></li>
|
||||
<li><a href="#installing">Installing Webfonts</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="main_content">
|
||||
|
||||
|
||||
<div id="specimen">
|
||||
|
||||
<div class="section">
|
||||
<div class="grid12 firstcol">
|
||||
<div class="huge">AaBb</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div>
|
||||
</div>
|
||||
<div class="section">
|
||||
<div class="grid12 firstcol">
|
||||
<table class="sample_table">
|
||||
<tr>
|
||||
<td>10</td>
|
||||
<td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>11</td>
|
||||
<td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>12</td>
|
||||
<td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>13</td>
|
||||
<td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>14</td>
|
||||
<td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>16</td>
|
||||
<td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>18</td>
|
||||
<td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>20</td>
|
||||
<td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>24</td>
|
||||
<td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>30</td>
|
||||
<td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>36</td>
|
||||
<td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>48</td>
|
||||
<td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>60</td>
|
||||
<td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>72</td>
|
||||
<td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>90</td>
|
||||
<td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="section" id="bodycomparison">
|
||||
|
||||
|
||||
<div id="xheight">
|
||||
<div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div>
|
||||
<div class="arialbody">body</div>
|
||||
<div class="verdanabody">body</div>
|
||||
<div class="georgiabody">body</div>
|
||||
</div>
|
||||
<div class="fontbody" style="z-index:1">
|
||||
body<span>Questrial Regular</span>
|
||||
</div>
|
||||
<div class="arialbody" style="z-index:1">
|
||||
body<span>Arial</span>
|
||||
</div>
|
||||
<div class="verdanabody" style="z-index:1">
|
||||
body<span>Verdana</span>
|
||||
</div>
|
||||
<div class="georgiabody" style="z-index:1">
|
||||
body<span>Georgia</span>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="section psample psample_row1" id="">
|
||||
|
||||
<div class="grid2 firstcol">
|
||||
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="grid3">
|
||||
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="grid3">
|
||||
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="grid4">
|
||||
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="white_blend"></div>
|
||||
|
||||
</div>
|
||||
<div class="section psample psample_row2" id="">
|
||||
<div class="grid3 firstcol">
|
||||
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="grid4">
|
||||
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="grid5">
|
||||
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="white_blend"></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="section psample psample_row3" id="">
|
||||
<div class="grid5 firstcol">
|
||||
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
</div>
|
||||
<div class="grid7">
|
||||
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
</div>
|
||||
|
||||
<div class="white_blend"></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="section psample psample_row4" id="">
|
||||
<div class="grid12 firstcol">
|
||||
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
</div>
|
||||
<div class="white_blend"></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="section psample psample_row1 fullreverse">
|
||||
<div class="grid2 firstcol">
|
||||
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="grid3">
|
||||
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="grid3">
|
||||
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="grid4">
|
||||
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="black_blend"></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="section psample psample_row2 fullreverse">
|
||||
<div class="grid3 firstcol">
|
||||
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="grid4">
|
||||
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="grid5">
|
||||
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
|
||||
</div>
|
||||
<div class="black_blend"></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="section psample fullreverse psample_row3" id="">
|
||||
<div class="grid5 firstcol">
|
||||
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
</div>
|
||||
<div class="grid7">
|
||||
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
</div>
|
||||
|
||||
<div class="black_blend"></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
|
||||
<div class="grid12 firstcol">
|
||||
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
|
||||
</div>
|
||||
<div class="black_blend"></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div id="layout">
|
||||
|
||||
<div class="section">
|
||||
|
||||
<div class="grid12 firstcol">
|
||||
<h1>Lorem Ipsum Dolor</h1>
|
||||
<h2>Etiam porta sem malesuada magna mollis euismod</h2>
|
||||
|
||||
<p class="byline">By <a href="#link">Aenean Lacinia</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section">
|
||||
<div class="grid8 firstcol">
|
||||
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
|
||||
|
||||
|
||||
<h3>Pellentesque ornare sem</h3>
|
||||
|
||||
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
|
||||
|
||||
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
|
||||
|
||||
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
|
||||
|
||||
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
|
||||
|
||||
<h3>Cras mattis consectetur</h3>
|
||||
|
||||
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
|
||||
|
||||
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
|
||||
</div>
|
||||
|
||||
<div class="grid4 sidebar">
|
||||
|
||||
<div class="box reverse">
|
||||
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
|
||||
</div>
|
||||
|
||||
<p class="caption">Maecenas sed diam eget risus varius.</p>
|
||||
|
||||
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
|
||||
|
||||
|
||||
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
|
||||
|
||||
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="glyphs">
|
||||
<div class="section">
|
||||
<div class="grid12 firstcol">
|
||||
|
||||
<h1>Language Support</h1>
|
||||
<p>The subset of Questrial Regular in this kit supports the following languages:<br/>
|
||||
|
||||
Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p>
|
||||
<h1>Glyph Chart</h1>
|
||||
<p>The subset of Questrial Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>
|
||||
<div id="glyph_chart">
|
||||
|
||||
<div><p>&#13;</p> </div>
|
||||
<div><p>&#32;</p> </div>
|
||||
<div><p>&#33;</p>!</div>
|
||||
<div><p>&#34;</p>"</div>
|
||||
<div><p>&#35;</p>#</div>
|
||||
<div><p>&#36;</p>$</div>
|
||||
<div><p>&#37;</p>%</div>
|
||||
<div><p>&#38;</p>&</div>
|
||||
<div><p>&#39;</p>'</div>
|
||||
<div><p>&#40;</p>(</div>
|
||||
<div><p>&#41;</p>)</div>
|
||||
<div><p>&#42;</p>*</div>
|
||||
<div><p>&#43;</p>+</div>
|
||||
<div><p>&#44;</p>,</div>
|
||||
<div><p>&#45;</p>-</div>
|
||||
<div><p>&#46;</p>.</div>
|
||||
<div><p>&#47;</p>/</div>
|
||||
<div><p>&#48;</p>0</div>
|
||||
<div><p>&#49;</p>1</div>
|
||||
<div><p>&#50;</p>2</div>
|
||||
<div><p>&#51;</p>3</div>
|
||||
<div><p>&#52;</p>4</div>
|
||||
<div><p>&#53;</p>5</div>
|
||||
<div><p>&#54;</p>6</div>
|
||||
<div><p>&#55;</p>7</div>
|
||||
<div><p>&#56;</p>8</div>
|
||||
<div><p>&#57;</p>9</div>
|
||||
<div><p>&#58;</p>:</div>
|
||||
<div><p>&#59;</p>;</div>
|
||||
<div><p>&#60;</p><</div>
|
||||
<div><p>&#61;</p>=</div>
|
||||
<div><p>&#62;</p>></div>
|
||||
<div><p>&#63;</p>?</div>
|
||||
<div><p>&#64;</p>@</div>
|
||||
<div><p>&#65;</p>A</div>
|
||||
<div><p>&#66;</p>B</div>
|
||||
<div><p>&#67;</p>C</div>
|
||||
<div><p>&#68;</p>D</div>
|
||||
<div><p>&#69;</p>E</div>
|
||||
<div><p>&#70;</p>F</div>
|
||||
<div><p>&#71;</p>G</div>
|
||||
<div><p>&#72;</p>H</div>
|
||||
<div><p>&#73;</p>I</div>
|
||||
<div><p>&#74;</p>J</div>
|
||||
<div><p>&#75;</p>K</div>
|
||||
<div><p>&#76;</p>L</div>
|
||||
<div><p>&#77;</p>M</div>
|
||||
<div><p>&#78;</p>N</div>
|
||||
<div><p>&#79;</p>O</div>
|
||||
<div><p>&#80;</p>P</div>
|
||||
<div><p>&#81;</p>Q</div>
|
||||
<div><p>&#82;</p>R</div>
|
||||
<div><p>&#83;</p>S</div>
|
||||
<div><p>&#84;</p>T</div>
|
||||
<div><p>&#85;</p>U</div>
|
||||
<div><p>&#86;</p>V</div>
|
||||
<div><p>&#87;</p>W</div>
|
||||
<div><p>&#88;</p>X</div>
|
||||
<div><p>&#89;</p>Y</div>
|
||||
<div><p>&#90;</p>Z</div>
|
||||
<div><p>&#91;</p>[</div>
|
||||
<div><p>&#92;</p>\</div>
|
||||
<div><p>&#93;</p>]</div>
|
||||
<div><p>&#94;</p>^</div>
|
||||
<div><p>&#95;</p>_</div>
|
||||
<div><p>&#96;</p>`</div>
|
||||
<div><p>&#97;</p>a</div>
|
||||
<div><p>&#98;</p>b</div>
|
||||
<div><p>&#99;</p>c</div>
|
||||
<div><p>&#100;</p>d</div>
|
||||
<div><p>&#101;</p>e</div>
|
||||
<div><p>&#102;</p>f</div>
|
||||
<div><p>&#103;</p>g</div>
|
||||
<div><p>&#104;</p>h</div>
|
||||
<div><p>&#105;</p>i</div>
|
||||
<div><p>&#106;</p>j</div>
|
||||
<div><p>&#107;</p>k</div>
|
||||
<div><p>&#108;</p>l</div>
|
||||
<div><p>&#109;</p>m</div>
|
||||
<div><p>&#110;</p>n</div>
|
||||
<div><p>&#111;</p>o</div>
|
||||
<div><p>&#112;</p>p</div>
|
||||
<div><p>&#113;</p>q</div>
|
||||
<div><p>&#114;</p>r</div>
|
||||
<div><p>&#115;</p>s</div>
|
||||
<div><p>&#116;</p>t</div>
|
||||
<div><p>&#117;</p>u</div>
|
||||
<div><p>&#118;</p>v</div>
|
||||
<div><p>&#119;</p>w</div>
|
||||
<div><p>&#120;</p>x</div>
|
||||
<div><p>&#121;</p>y</div>
|
||||
<div><p>&#122;</p>z</div>
|
||||
<div><p>&#123;</p>{</div>
|
||||
<div><p>&#124;</p>|</div>
|
||||
<div><p>&#125;</p>}</div>
|
||||
<div><p>&#126;</p>~</div>
|
||||
<div><p>&#160;</p> </div>
|
||||
<div><p>&#161;</p>¡</div>
|
||||
<div><p>&#162;</p>¢</div>
|
||||
<div><p>&#163;</p>£</div>
|
||||
<div><p>&#164;</p>¤</div>
|
||||
<div><p>&#165;</p>¥</div>
|
||||
<div><p>&#166;</p>¦</div>
|
||||
<div><p>&#167;</p>§</div>
|
||||
<div><p>&#168;</p>¨</div>
|
||||
<div><p>&#169;</p>©</div>
|
||||
<div><p>&#170;</p>ª</div>
|
||||
<div><p>&#171;</p>«</div>
|
||||
<div><p>&#172;</p>¬</div>
|
||||
<div><p>&#173;</p>­</div>
|
||||
<div><p>&#174;</p>®</div>
|
||||
<div><p>&#175;</p>¯</div>
|
||||
<div><p>&#176;</p>°</div>
|
||||
<div><p>&#177;</p>±</div>
|
||||
<div><p>&#178;</p>²</div>
|
||||
<div><p>&#179;</p>³</div>
|
||||
<div><p>&#180;</p>´</div>
|
||||
<div><p>&#181;</p>µ</div>
|
||||
<div><p>&#182;</p>¶</div>
|
||||
<div><p>&#183;</p>·</div>
|
||||
<div><p>&#184;</p>¸</div>
|
||||
<div><p>&#185;</p>¹</div>
|
||||
<div><p>&#186;</p>º</div>
|
||||
<div><p>&#187;</p>»</div>
|
||||
<div><p>&#188;</p>¼</div>
|
||||
<div><p>&#189;</p>½</div>
|
||||
<div><p>&#190;</p>¾</div>
|
||||
<div><p>&#191;</p>¿</div>
|
||||
<div><p>&#192;</p>À</div>
|
||||
<div><p>&#193;</p>Á</div>
|
||||
<div><p>&#194;</p>Â</div>
|
||||
<div><p>&#195;</p>Ã</div>
|
||||
<div><p>&#196;</p>Ä</div>
|
||||
<div><p>&#197;</p>Å</div>
|
||||
<div><p>&#198;</p>Æ</div>
|
||||
<div><p>&#199;</p>Ç</div>
|
||||
<div><p>&#200;</p>È</div>
|
||||
<div><p>&#201;</p>É</div>
|
||||
<div><p>&#202;</p>Ê</div>
|
||||
<div><p>&#203;</p>Ë</div>
|
||||
<div><p>&#204;</p>Ì</div>
|
||||
<div><p>&#205;</p>Í</div>
|
||||
<div><p>&#206;</p>Î</div>
|
||||
<div><p>&#207;</p>Ï</div>
|
||||
<div><p>&#208;</p>Ð</div>
|
||||
<div><p>&#209;</p>Ñ</div>
|
||||
<div><p>&#210;</p>Ò</div>
|
||||
<div><p>&#211;</p>Ó</div>
|
||||
<div><p>&#212;</p>Ô</div>
|
||||
<div><p>&#213;</p>Õ</div>
|
||||
<div><p>&#214;</p>Ö</div>
|
||||
<div><p>&#215;</p>×</div>
|
||||
<div><p>&#216;</p>Ø</div>
|
||||
<div><p>&#217;</p>Ù</div>
|
||||
<div><p>&#218;</p>Ú</div>
|
||||
<div><p>&#219;</p>Û</div>
|
||||
<div><p>&#220;</p>Ü</div>
|
||||
<div><p>&#221;</p>Ý</div>
|
||||
<div><p>&#222;</p>Þ</div>
|
||||
<div><p>&#223;</p>ß</div>
|
||||
<div><p>&#224;</p>à</div>
|
||||
<div><p>&#225;</p>á</div>
|
||||
<div><p>&#226;</p>â</div>
|
||||
<div><p>&#227;</p>ã</div>
|
||||
<div><p>&#228;</p>ä</div>
|
||||
<div><p>&#229;</p>å</div>
|
||||
<div><p>&#230;</p>æ</div>
|
||||
<div><p>&#231;</p>ç</div>
|
||||
<div><p>&#232;</p>è</div>
|
||||
<div><p>&#233;</p>é</div>
|
||||
<div><p>&#234;</p>ê</div>
|
||||
<div><p>&#235;</p>ë</div>
|
||||
<div><p>&#236;</p>ì</div>
|
||||
<div><p>&#237;</p>í</div>
|
||||
<div><p>&#238;</p>î</div>
|
||||
<div><p>&#239;</p>ï</div>
|
||||
<div><p>&#240;</p>ð</div>
|
||||
<div><p>&#241;</p>ñ</div>
|
||||
<div><p>&#242;</p>ò</div>
|
||||
<div><p>&#243;</p>ó</div>
|
||||
<div><p>&#244;</p>ô</div>
|
||||
<div><p>&#245;</p>õ</div>
|
||||
<div><p>&#246;</p>ö</div>
|
||||
<div><p>&#247;</p>÷</div>
|
||||
<div><p>&#248;</p>ø</div>
|
||||
<div><p>&#249;</p>ù</div>
|
||||
<div><p>&#250;</p>ú</div>
|
||||
<div><p>&#251;</p>û</div>
|
||||
<div><p>&#252;</p>ü</div>
|
||||
<div><p>&#253;</p>ý</div>
|
||||
<div><p>&#254;</p>þ</div>
|
||||
<div><p>&#255;</p>ÿ</div>
|
||||
<div><p>&#338;</p>Œ</div>
|
||||
<div><p>&#339;</p>œ</div>
|
||||
<div><p>&#376;</p>Ÿ</div>
|
||||
<div><p>&#710;</p>ˆ</div>
|
||||
<div><p>&#732;</p>˜</div>
|
||||
<div><p>&#8192;</p> </div>
|
||||
<div><p>&#8193;</p> </div>
|
||||
<div><p>&#8194;</p> </div>
|
||||
<div><p>&#8195;</p> </div>
|
||||
<div><p>&#8196;</p> </div>
|
||||
<div><p>&#8197;</p> </div>
|
||||
<div><p>&#8198;</p> </div>
|
||||
<div><p>&#8199;</p> </div>
|
||||
<div><p>&#8200;</p> </div>
|
||||
<div><p>&#8201;</p> </div>
|
||||
<div><p>&#8202;</p> </div>
|
||||
<div><p>&#8208;</p>‐</div>
|
||||
<div><p>&#8209;</p>‑</div>
|
||||
<div><p>&#8210;</p>‒</div>
|
||||
<div><p>&#8211;</p>–</div>
|
||||
<div><p>&#8212;</p>—</div>
|
||||
<div><p>&#8216;</p>‘</div>
|
||||
<div><p>&#8217;</p>’</div>
|
||||
<div><p>&#8218;</p>‚</div>
|
||||
<div><p>&#8220;</p>“</div>
|
||||
<div><p>&#8221;</p>”</div>
|
||||
<div><p>&#8222;</p>„</div>
|
||||
<div><p>&#8226;</p>•</div>
|
||||
<div><p>&#8230;</p>…</div>
|
||||
<div><p>&#8239;</p> </div>
|
||||
<div><p>&#8249;</p>‹</div>
|
||||
<div><p>&#8250;</p>›</div>
|
||||
<div><p>&#8287;</p> </div>
|
||||
<div><p>&#8364;</p>€</div>
|
||||
<div><p>&#8482;</p>™</div>
|
||||
<div><p>&#9724;</p>◼</div>
|
||||
<div><p>&#64257;</p>fi</div>
|
||||
<div><p>&#64258;</p>fl</div>
|
||||
<div><p>&#64259;</p>ffi</div>
|
||||
<div><p>&#64260;</p>ffl</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="specs">
|
||||
|
||||
</div>
|
||||
|
||||
<div id="installing">
|
||||
<div class="section">
|
||||
<div class="grid7 firstcol">
|
||||
<h1>Installing Webfonts</h1>
|
||||
|
||||
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
|
||||
|
||||
<h2>1. Upload your webfonts</h2>
|
||||
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
|
||||
|
||||
<h2>2. Include the webfont stylesheet</h2>
|
||||
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p>
|
||||
|
||||
|
||||
<code>
|
||||
@font-face{
|
||||
font-family: 'MyWebFont';
|
||||
src: url('WebFont.eot');
|
||||
src: url('WebFont.eot?#iefix') format('embedded-opentype'),
|
||||
url('WebFont.woff') format('woff'),
|
||||
url('WebFont.ttf') format('truetype'),
|
||||
url('WebFont.svg#webfont') format('svg');
|
||||
}
|
||||
</code>
|
||||
|
||||
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
|
||||
<code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code>
|
||||
|
||||
<h2>3. Modify your own stylesheet</h2>
|
||||
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
|
||||
<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>
|
||||
|
||||
<h2>4. Test</h2>
|
||||
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
|
||||
</div>
|
||||
|
||||
<div class="grid5 sidebar">
|
||||
<div class="box">
|
||||
<h2>Troubleshooting<br/>Font-Face Problems</h2>
|
||||
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
|
||||
|
||||
<h3>Fonts not showing in any browser</h3>
|
||||
|
||||
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
|
||||
|
||||
<h3>Fonts not loading in iPhone or iPad</h3>
|
||||
|
||||
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
|
||||
|
||||
<h3>Fonts not loading in Firefox</h3>
|
||||
|
||||
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
|
||||
|
||||
<h3>Fonts not loading in IE</h3>
|
||||
|
||||
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
|
||||
|
||||
<h3>Fonts not loading in IE9</h3>
|
||||
|
||||
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>©2010-2017 Font Squirrel. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,370 @@
|
||||
/*Notes about grid:
|
||||
Columns: 12
|
||||
Grid Width: 825px
|
||||
Column Width: 55px
|
||||
Gutter Width: 15px
|
||||
-------------------------------*/
|
||||
|
||||
|
||||
.section {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.section:after {
|
||||
content: '.';
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.section {
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
.section .firstcolumn,
|
||||
.section .firstcol {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
|
||||
/* Border on left hand side of a column. */
|
||||
.border {
|
||||
padding-left: 7px;
|
||||
margin-left: 7px;
|
||||
border-left: 1px solid #eee;
|
||||
}
|
||||
|
||||
/* Border with more whitespace, spans one column. */
|
||||
.colborder {
|
||||
padding-left: 42px;
|
||||
margin-left: 42px;
|
||||
border-left: 1px solid #eee;
|
||||
}
|
||||
|
||||
|
||||
/* The Grid Classes */
|
||||
.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 {
|
||||
margin-left: 15px;
|
||||
float: left;
|
||||
display: inline;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
.width1, .grid1, .span-1 {
|
||||
width: 55px;
|
||||
}
|
||||
|
||||
.width1_2cols, .grid1_2cols {
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.width1_3cols, .grid1_3cols {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
.width1_4cols, .grid1_4cols {
|
||||
width: 2px;
|
||||
}
|
||||
|
||||
.input_width1 {
|
||||
width: 49px;
|
||||
}
|
||||
|
||||
.width2, .grid2, .span-2 {
|
||||
width: 125px;
|
||||
}
|
||||
|
||||
.width2_3cols, .grid2_3cols {
|
||||
width: 31px;
|
||||
}
|
||||
|
||||
.width2_4cols, .grid2_4cols {
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.input_width2 {
|
||||
width: 119px;
|
||||
}
|
||||
|
||||
.width3, .grid3, .span-3 {
|
||||
width: 195px;
|
||||
}
|
||||
|
||||
.width3_2cols, .grid3_2cols {
|
||||
width: 90px;
|
||||
}
|
||||
|
||||
.width3_4cols, .grid3_4cols {
|
||||
width: 37px;
|
||||
}
|
||||
|
||||
.input_width3 {
|
||||
width: 189px;
|
||||
}
|
||||
|
||||
.width4, .grid4, .span-4 {
|
||||
width: 265px;
|
||||
}
|
||||
|
||||
.width4_3cols, .grid4_3cols {
|
||||
width: 78px;
|
||||
}
|
||||
|
||||
.input_width4 {
|
||||
width: 259px;
|
||||
}
|
||||
|
||||
.width5, .grid5, .span-5 {
|
||||
width: 335px;
|
||||
}
|
||||
|
||||
.width5_2cols, .grid5_2cols {
|
||||
width: 160px;
|
||||
}
|
||||
|
||||
.width5_3cols, .grid5_3cols {
|
||||
width: 101px;
|
||||
}
|
||||
|
||||
.width5_4cols, .grid5_4cols {
|
||||
width: 72px;
|
||||
}
|
||||
|
||||
.input_width5 {
|
||||
width: 329px;
|
||||
}
|
||||
|
||||
.width6, .grid6, .span-6 {
|
||||
width: 405px;
|
||||
}
|
||||
|
||||
.width6_4cols, .grid6_4cols {
|
||||
width: 90px;
|
||||
}
|
||||
|
||||
.input_width6 {
|
||||
width: 399px;
|
||||
}
|
||||
|
||||
.width7, .grid7, .span-7 {
|
||||
width: 475px;
|
||||
}
|
||||
|
||||
.width7_2cols, .grid7_2cols {
|
||||
width: 230px;
|
||||
}
|
||||
|
||||
.width7_3cols, .grid7_3cols {
|
||||
width: 148px;
|
||||
}
|
||||
|
||||
.width7_4cols, .grid7_4cols {
|
||||
width: 107px;
|
||||
}
|
||||
|
||||
.input_width7 {
|
||||
width: 469px;
|
||||
}
|
||||
|
||||
.width8, .grid8, .span-8 {
|
||||
width: 545px;
|
||||
}
|
||||
|
||||
.width8_3cols, .grid8_3cols {
|
||||
width: 171px;
|
||||
}
|
||||
|
||||
.input_width8 {
|
||||
width: 539px;
|
||||
}
|
||||
|
||||
.width9, .grid9, .span-9 {
|
||||
width: 615px;
|
||||
}
|
||||
|
||||
.width9_2cols, .grid9_2cols {
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
.width9_4cols, .grid9_4cols {
|
||||
width: 142px;
|
||||
}
|
||||
|
||||
.input_width9 {
|
||||
width: 609px;
|
||||
}
|
||||
|
||||
.width10, .grid10, .span-10 {
|
||||
width: 685px;
|
||||
}
|
||||
|
||||
.width10_3cols, .grid10_3cols {
|
||||
width: 218px;
|
||||
}
|
||||
|
||||
.width10_4cols, .grid10_4cols {
|
||||
width: 160px;
|
||||
}
|
||||
|
||||
.input_width10 {
|
||||
width: 679px;
|
||||
}
|
||||
|
||||
.width11, .grid11, .span-11 {
|
||||
width: 755px;
|
||||
}
|
||||
|
||||
.width11_2cols, .grid11_2cols {
|
||||
width: 370px;
|
||||
}
|
||||
|
||||
.width11_3cols, .grid11_3cols {
|
||||
width: 241px;
|
||||
}
|
||||
|
||||
.width11_4cols, .grid11_4cols {
|
||||
width: 177px;
|
||||
}
|
||||
|
||||
.input_width11 {
|
||||
width: 749px;
|
||||
}
|
||||
|
||||
.width12, .grid12, .span-12 {
|
||||
width: 825px;
|
||||
}
|
||||
|
||||
.input_width12 {
|
||||
width: 819px;
|
||||
}
|
||||
|
||||
/* Subdivided grid spaces */
|
||||
.emptycols_left1, .prepend-1 {
|
||||
padding-left: 70px;
|
||||
}
|
||||
|
||||
.emptycols_right1, .append-1 {
|
||||
padding-right: 70px;
|
||||
}
|
||||
|
||||
.emptycols_left2, .prepend-2 {
|
||||
padding-left: 140px;
|
||||
}
|
||||
|
||||
.emptycols_right2, .append-2 {
|
||||
padding-right: 140px;
|
||||
}
|
||||
|
||||
.emptycols_left3, .prepend-3 {
|
||||
padding-left: 210px;
|
||||
}
|
||||
|
||||
.emptycols_right3, .append-3 {
|
||||
padding-right: 210px;
|
||||
}
|
||||
|
||||
.emptycols_left4, .prepend-4 {
|
||||
padding-left: 280px;
|
||||
}
|
||||
|
||||
.emptycols_right4, .append-4 {
|
||||
padding-right: 280px;
|
||||
}
|
||||
|
||||
.emptycols_left5, .prepend-5 {
|
||||
padding-left: 350px;
|
||||
}
|
||||
|
||||
.emptycols_right5, .append-5 {
|
||||
padding-right: 350px;
|
||||
}
|
||||
|
||||
.emptycols_left6, .prepend-6 {
|
||||
padding-left: 420px;
|
||||
}
|
||||
|
||||
.emptycols_right6, .append-6 {
|
||||
padding-right: 420px;
|
||||
}
|
||||
|
||||
.emptycols_left7, .prepend-7 {
|
||||
padding-left: 490px;
|
||||
}
|
||||
|
||||
.emptycols_right7, .append-7 {
|
||||
padding-right: 490px;
|
||||
}
|
||||
|
||||
.emptycols_left8, .prepend-8 {
|
||||
padding-left: 560px;
|
||||
}
|
||||
|
||||
.emptycols_right8, .append-8 {
|
||||
padding-right: 560px;
|
||||
}
|
||||
|
||||
.emptycols_left9, .prepend-9 {
|
||||
padding-left: 630px;
|
||||
}
|
||||
|
||||
.emptycols_right9, .append-9 {
|
||||
padding-right: 630px;
|
||||
}
|
||||
|
||||
.emptycols_left10, .prepend-10 {
|
||||
padding-left: 700px;
|
||||
}
|
||||
|
||||
.emptycols_right10, .append-10 {
|
||||
padding-right: 700px;
|
||||
}
|
||||
|
||||
.emptycols_left11, .prepend-11 {
|
||||
padding-left: 770px;
|
||||
}
|
||||
|
||||
.emptycols_right11, .append-11 {
|
||||
padding-right: 770px;
|
||||
}
|
||||
|
||||
.pull-1 {
|
||||
margin-left: -70px;
|
||||
}
|
||||
|
||||
.push-1 {
|
||||
margin-right: -70px;
|
||||
margin-left: 18px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.pull-2 {
|
||||
margin-left: -140px;
|
||||
}
|
||||
|
||||
.push-2 {
|
||||
margin-right: -140px;
|
||||
margin-left: 18px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.pull-3 {
|
||||
margin-left: -210px;
|
||||
}
|
||||
|
||||
.push-3 {
|
||||
margin-right: -210px;
|
||||
margin-left: 18px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.pull-4 {
|
||||
margin-left: -280px;
|
||||
}
|
||||
|
||||
.push-4 {
|
||||
margin-right: -280px;
|
||||
margin-left: 18px;
|
||||
float: right;
|
||||
}
|
@@ -0,0 +1,502 @@
|
||||
@import url('grid_12-825-55-15.css');
|
||||
|
||||
/*
|
||||
CSS Reset by Eric Meyer - Released under Public Domain
|
||||
http://meyerweb.com/eric/tools/css/reset/
|
||||
*/
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center, dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend, table,
|
||||
caption, tbody, tfoot, thead, tr, th, td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
font-size: 100%;
|
||||
vertical-align: baseline;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
|
||||
:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
ins {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
del {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
|
||||
body {
|
||||
color: #000;
|
||||
background-color: #dcdcdc;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #1883ba;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 32px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
#container {
|
||||
width: 865px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
|
||||
|
||||
#header {
|
||||
padding: 20px;
|
||||
font-size: 36px;
|
||||
background-color: #000;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#header span {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
#main_content {
|
||||
background-color: #fff;
|
||||
padding: 60px 20px 20px;
|
||||
}
|
||||
|
||||
|
||||
#footer p {
|
||||
margin: 0;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 50px;
|
||||
color: #333;
|
||||
font: 10px Arial, sans-serif;
|
||||
}
|
||||
|
||||
.tabs {
|
||||
width: 100%;
|
||||
height: 31px;
|
||||
background-color: #444;
|
||||
}
|
||||
|
||||
.tabs li {
|
||||
float: left;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
background-color: #444;
|
||||
}
|
||||
|
||||
.tabs li a {
|
||||
display: block;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
font: bold 11px/11px 'Arial';
|
||||
text-transform: uppercase;
|
||||
padding: 10px 15px;
|
||||
border-right: 1px solid #fff;
|
||||
}
|
||||
|
||||
.tabs li a:hover {
|
||||
background-color: #00b3ff;
|
||||
|
||||
}
|
||||
|
||||
.tabs li.active a {
|
||||
color: #000;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
|
||||
div.huge {
|
||||
|
||||
font-size: 300px;
|
||||
line-height: 1em;
|
||||
padding: 0;
|
||||
letter-spacing: -.02em;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div.glyph_range {
|
||||
font-size: 72px;
|
||||
line-height: 1.1em;
|
||||
}
|
||||
|
||||
.size10 {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.size11 {
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.size12 {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.size13 {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.size14 {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.size16 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.size18 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.size20 {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.size24 {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.size30 {
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.size36 {
|
||||
font-size: 36px;
|
||||
}
|
||||
|
||||
.size48 {
|
||||
font-size: 48px;
|
||||
}
|
||||
|
||||
.size60 {
|
||||
font-size: 60px;
|
||||
}
|
||||
|
||||
.size72 {
|
||||
font-size: 72px;
|
||||
}
|
||||
|
||||
.size90 {
|
||||
font-size: 90px;
|
||||
}
|
||||
|
||||
|
||||
.psample_row1 {
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
.psample_row1 {
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
.psample_row2 {
|
||||
height: 160px;
|
||||
}
|
||||
|
||||
.psample_row3 {
|
||||
height: 160px;
|
||||
}
|
||||
|
||||
.psample_row4 {
|
||||
height: 160px;
|
||||
}
|
||||
|
||||
.psample {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.psample p {
|
||||
line-height: 1.3em;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.psample span {
|
||||
margin-right: .5em;
|
||||
}
|
||||
|
||||
.white_blend {
|
||||
width: 100%;
|
||||
height: 61px;
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.black_blend {
|
||||
width: 100%;
|
||||
height: 61px;
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.fullreverse {
|
||||
background: #000 !important;
|
||||
color: #fff !important;
|
||||
margin-left: -20px;
|
||||
padding-left: 20px;
|
||||
margin-right: -20px;
|
||||
padding-right: 20px;
|
||||
padding: 20px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
.sample_table td {
|
||||
padding-top: 3px;
|
||||
padding-bottom: 5px;
|
||||
padding-left: 5px;
|
||||
vertical-align: middle;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
|
||||
.sample_table td:first-child {
|
||||
background-color: #eee;
|
||||
text-align: right;
|
||||
padding-right: 5px;
|
||||
padding-left: 0;
|
||||
padding: 5px;
|
||||
font: 11px/12px 'Courier New', Courier, mono;
|
||||
}
|
||||
|
||||
code {
|
||||
white-space: pre;
|
||||
background-color: #eee;
|
||||
display: block;
|
||||
padding: 10px;
|
||||
margin-bottom: 18px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
|
||||
.bottom, .last {
|
||||
margin-bottom: 0 !important;
|
||||
padding-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.box {
|
||||
padding: 18px;
|
||||
margin-bottom: 18px;
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
.reverse, .reversed {
|
||||
background: #000 !important;
|
||||
color: #fff !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
#bodycomparison {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
font-size: 72px;
|
||||
height: 90px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#bodycomparison div {
|
||||
font-size: 72px;
|
||||
line-height: 90px;
|
||||
display: inline;
|
||||
margin: 0 15px 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#bodycomparison div span {
|
||||
font: 10px Arial;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
#xheight {
|
||||
float: none;
|
||||
position: absolute;
|
||||
color: #d9f3ff;
|
||||
font-size: 72px;
|
||||
line-height: 90px;
|
||||
}
|
||||
|
||||
.fontbody {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.arialbody {
|
||||
font-family: Arial;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.verdanabody {
|
||||
font-family: Verdana;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.georgiabody {
|
||||
font-family: Georgia;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* @group Layout page
|
||||
*/
|
||||
|
||||
#layout h1 {
|
||||
font-size: 36px;
|
||||
line-height: 42px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
#layout h2 {
|
||||
font-size: 24px;
|
||||
line-height: 23px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
#layout h3 {
|
||||
font-size: 22px;
|
||||
line-height: 1.4em;
|
||||
margin-top: 1em;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
|
||||
#layout p.byline {
|
||||
font-size: 12px;
|
||||
margin-top: 18px;
|
||||
line-height: 12px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#layout p {
|
||||
font-size: 14px;
|
||||
line-height: 21px;
|
||||
margin-bottom: .5em;
|
||||
}
|
||||
|
||||
#layout p.large {
|
||||
font-size: 18px;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
#layout .sidebar p {
|
||||
font-size: 12px;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
#layout p.caption {
|
||||
font-size: 10px;
|
||||
margin-top: -16px;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @group Glyphs */
|
||||
|
||||
#glyph_chart div {
|
||||
background-color: #d9f3ff;
|
||||
color: black;
|
||||
float: left;
|
||||
font-size: 36px;
|
||||
height: 1.2em;
|
||||
line-height: 1.2em;
|
||||
margin-bottom: 1px;
|
||||
margin-right: 1px;
|
||||
text-align: center;
|
||||
width: 1.2em;
|
||||
position: relative;
|
||||
padding: .6em .2em .2em;
|
||||
}
|
||||
|
||||
#glyph_chart div p {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
display: block;
|
||||
text-align: center;
|
||||
font: bold 9px Arial, sans-serif;
|
||||
background-color: #3a768f;
|
||||
width: 100%;
|
||||
color: #fff;
|
||||
padding: 2px 0;
|
||||
}
|
||||
|
||||
|
||||
#glyphs h1 {
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @group Installing */
|
||||
|
||||
#installing {
|
||||
font: 13px Arial, sans-serif;
|
||||
}
|
||||
|
||||
#installing p,
|
||||
#glyphs p {
|
||||
line-height: 1.2em;
|
||||
margin-bottom: 18px;
|
||||
font: 13px Arial, sans-serif;
|
||||
}
|
||||
|
||||
|
||||
#installing h3 {
|
||||
font-size: 15px;
|
||||
margin-top: 18px;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
#rendering h1 {
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
.render_table td {
|
||||
font: 11px 'Courier New', Courier, mono;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
@@ -0,0 +1,12 @@
|
||||
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on May 3, 2023 */
|
||||
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'questrialregular';
|
||||
src: url('questrial-regular-webfont.woff2') format('woff2'),
|
||||
url('questrial-regular-webfont.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
|
||||
}
|
29
nationchains/www/adminapx/static/tpl/apxmodal_en.mustache
Normal file
@@ -0,0 +1,29 @@
|
||||
<!-- Modal
|
||||
To populate app.load('apxmodal','apxmodal',{title,body,actions[{btndescription:'xx',onclick:'js function'}]})
|
||||
To activate show
|
||||
<button type="button" class="btn btn-outline-success btn-sm" data-bs-toggle="modal" data-bs-target="#modalinfo">
|
||||
-->
|
||||
<div class="modal fade" id="{{{modalid}}}" tabindex="-1" aria-labelledby="{{{modalid}}}Label" aria-hidden="true">
|
||||
<div class="modal-dialog {{classmodaldialog}}">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="{{{modalid}}}Label">{{{title}}}</h5>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
{{{body}}}
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
||||
{{#actions}}
|
||||
<button type="button" onclick="{{{onclick}}}" class="btn btn-primary">{{btndescription}}</button>
|
||||
{{/actions}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@@ -0,0 +1 @@
|
||||
<p>Set up editorjs here</p>
|
@@ -0,0 +1,17 @@
|
||||
<h1>Your account is register</h1>
|
||||
<p>Please find your confidential information in a safe space</p>
|
||||
<p>Your alias: {{alias}}</p>
|
||||
<p>Your passphrase: {{passphrase}}</p>
|
||||
<p>Your public key that you can share with anyone:</p>
|
||||
<textarea>{{pubk}}</textarea>
|
||||
<p>Your private key that you keep secret and use to proove you own the public key:</p>
|
||||
<textarea>{{privk}}</textarea>
|
||||
{{#trustedtribe}}
|
||||
<p>Thanks to trust us to keep your private key,
|
||||
we'll be able to send back to this email address in case you need it</p>
|
||||
{{/trustedtribe}}
|
||||
{{^trustedtribe}}
|
||||
<p>You decide to keep secret this private key,
|
||||
Please save it in a safe place that noone else than you can access to proove you own it</p>
|
||||
{{/trustedtribe}}
|
||||
<p>Never share with someone else your privbatekey if someone can access, it will be possible to usurp your identity.</p>
|
@@ -0,0 +1,17 @@
|
||||
Your account is register \n\r
|
||||
Please find your confidential information in a safe space\n\r
|
||||
Your alias: {{alias}}\n\r
|
||||
Your passphrase: {{passphrase}}\n\r
|
||||
Your public key that you can share with anyone:\n\r
|
||||
<textarea>{{pubk}}</textarea>
|
||||
Your private key that you keep secret and use to proove you own the public key:\n\r
|
||||
<textarea>{{privk}}</textarea>
|
||||
{{#trustedtribe}}
|
||||
Thanks to trust us to keep your private key,
|
||||
we'll be able to send back to this email address in case you need it\n\r
|
||||
{{/trustedtribe}}
|
||||
{{^trustedtribe}}
|
||||
You decide to keep secret this private key,
|
||||
Please save it in a safe place that noone else than you can access to proove you own it\n\r
|
||||
{{/trustedtribe}}
|
||||
Never share with someone else your privbatekey if someone can access, it will be possible to usurp your identity.\n\r
|
34
nationchains/www/adminapx/static/tpl/nginx.conf.mustache
Executable file
@@ -0,0 +1,34 @@
|
||||
user {{{sudoerUser}}};
|
||||
worker_processes auto;
|
||||
error_log {{{ }}}/var/log/nginx/error.log notice;
|
||||
pid /var/run/nginx.pid;
|
||||
#include /etc/nginx/modules-enabled/*.conf;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
log_format main '[$time_local]##"$http_x_forwarded_for"##"$request" '
|
||||
'"$http_user_agent"';
|
||||
|
||||
log_format mainold '$remote_addr - $remote_user [$time_local] "$request" '
|
||||
'$status $body_bytes_sent "$http_referer" '
|
||||
'"$http_user_agent" "$http_x_forwarded_for"';
|
||||
log_format trace '$remote_addr - $remote_user [$time_local] '
|
||||
'$host "$request" $status $body_bytes_sent '
|
||||
'"$http_referer" "$http_user_agent" '
|
||||
'"$http_x_forwarded_for" $request_id';
|
||||
access_log /var/log/nginx/access.log main;
|
||||
sendfile on;
|
||||
keepalive_timeout 65;
|
||||
gzip on;
|
||||
##
|
||||
# Virtual Host Configs
|
||||
##
|
||||
{{#nginx.include}}
|
||||
include {{{.}}};
|
||||
{{/nginx.include}}
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
proxy_set_header Host $http_host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
client_max_body_size 10m;
|
||||
client_body_buffer_size 128k;
|
||||
proxy_connect_timeout 90;
|
||||
proxy_send_timeout 90;
|
||||
proxy_read_timeout 90;
|
||||
proxy_buffers 32 4k;
|
||||
proxy_set_header X-NginX-Proxy true;
|
@@ -1,57 +1,130 @@
|
||||
<div class="row">
|
||||
<div class="col-sm-6" data-spacename="explain">
|
||||
<div class="col-sm-6" data-spacename="explain">
|
||||
<h2>How it works</h2>
|
||||
<p> Alias is a unique string that humainly help to match a PublicKey to check existing alias</p>
|
||||
<code>
|
||||
GET /api/odmdb/idx/pagans/pagans_alias_all.json with a correct headers
|
||||
RESULT
|
||||
data:{alias:publicKey}
|
||||
</code>
|
||||
<p>
|
||||
Run
|
||||
</p>
|
||||
<p class="small">
|
||||
Mandatory: apixtrib header have to set with:<br>
|
||||
* {xalias,xhash,xdays,xtribe,xlang,xapp}<br>
|
||||
* xhash is a detached signature done with public and private key of message: 'alias_xdays' where xdays is a time
|
||||
stamp
|
||||
a xhash has an elapse of 24hours after it has to be recreate.<br>
|
||||
|
||||
</div>
|
||||
<div class="col-sm-6" data-spacename="userinterface">
|
||||
We need in local storage auth for this example {alias,passphrase,privatekey, publickey} to be able to create a
|
||||
detached signature<br>
|
||||
On the server side we check that signature xhash of alias_timestamp is valid with the public key
|
||||
</p>
|
||||
<p> Alias is a unique string that humainly help to find a PublicKey that is the real identity.
|
||||
To get the list of existing alias</p>
|
||||
<button type="button" class="btn btn-outline-success btn-sm"
|
||||
onclick="app.runapirequest('modalinfo',{method:'GET',url:'nationchains/pagans/idx/alias_all.json'},{title:'Alias list',body:'',actions:[], classmodaldialog:'modal-xl'})">show
|
||||
it</button>
|
||||
</p>
|
||||
<code>
|
||||
GET nationchains/pagans/idx/alias_all.json -> data:{alias:{alias:publicKey}}
|
||||
</code>
|
||||
<p>To allow trustable Tribe to store the Private and Passphrase Key, you get from the townId_all.json key:tribes</p>
|
||||
<button type="button" class="btn btn-outline-success btn-sm"
|
||||
onclick="app.runapirequest('modalinfo',{method:'GET',url:'nationchains/towns/idx/townId_all.json'},{title:'Tribes list',body:'',actions:[], classmodaldialog:'modal-xl'})">show
|
||||
it</button>
|
||||
<code>
|
||||
GET /nationchains/towns/idx/townId_all.json -> data:{townId:{tribes:[list of tribeId inside a town]}}
|
||||
</code>
|
||||
|
||||
</div>
|
||||
<div class="col-sm-6" data-spacename="userinterface">
|
||||
<div class="row g-3">
|
||||
<h3>A decentralized Identity</h3>
|
||||
<p>apXtrib allow you to create keys to identify yourself with a universal alias</p>
|
||||
<div class="col-md-6">
|
||||
<label for="inputalias" class="form-label">Your alias</label>
|
||||
<input type="text" class="form-control" id="inputalias" placeholder="A public alias that any one see">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<label for="inputemailrecovery" class="form-label">Email Recovery</label>
|
||||
<input type="email" class="form-control" id="inputemailrecovery" placeholder="optional, if you want to receive by mail your keys">
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<label for="inputpassphrase" class="form-label">A passphrase</label>
|
||||
<input type="text" class="form-control" id="inputpassphrase" placeholder="optional, a passphrase to remember, each time something try to use your privateKey this passphrase will be requested">
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<button type="button" id="generatekeys" onclick="app.createIdentity(document.getElementById('inputalias').value,document.getElementById('inputpassphrase').value)" class="btn btn-primary">Generate keys</button>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" id="gridCheck">
|
||||
<label class="form-check-label small" for="gridCheck">
|
||||
<b>I trust smatchit to keep my private key and email </b><br>
|
||||
<b>If i don't trust</b> please download your keys (be aware, none than you can have access to your cipher data).<br>
|
||||
If you set a correct email then you will receive your keys on your mailbox (Carefull by sending email, smatchit and anyone that access to your email can see your keys).<br>
|
||||
The safer to be sure no one else than your local browser can see it, just download localy and save it on a personnal cold support (usb key).<br>
|
||||
If you use a browser that <b>can be accessible by someone else, don't forget to "logout"</b> to clean up any trace.<br>
|
||||
If you have any suspicious please
|
||||
</label>
|
||||
<h3>Am i authenticated to api?</h3>
|
||||
<button type="button" id="btntestauth" class="btn btn-outline-success btn-sm"
|
||||
onclick="app.runapirequest('modalinfo',{method:'GET',url:'api/pagans/isauth'},{title:'Am i authenticated',body:'',actions:[], classmodaldialog:'modal-xl'})">
|
||||
Test it</button>
|
||||
<code>
|
||||
GET 'api/pagans/isauth' -> status 200 : Well authenticated with alias, status 400: not authenticated
|
||||
</code>
|
||||
<hr>
|
||||
<h3>Logout</h3>
|
||||
<button type="button" class="btn btn-outline-success btn-sm"
|
||||
onclick="delete apx.data.auth;apx.data.headers=apxlocal.headers;apx.save();alert('delete apx.data.auth and reinit apx.data.header')">
|
||||
Remove headers</button>
|
||||
<hr>
|
||||
<h3>I proove that i own this alias</h3>
|
||||
<div class="col-md-6">
|
||||
<label for="inputaliasauth" class="form-label">Your alias</label>
|
||||
<input type="text" class="form-control" id="inputaliasauth" placeholder="A public alias that any one see">
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<label for="inputpassphraseauth" class="form-label">A passphrase</label>
|
||||
<input type="text" class="form-control" id="inputpassphraseauth"
|
||||
placeholder="optional, a passphrase to remember, each time something try to use your privateKey this passphrase will be requested">
|
||||
</div>
|
||||
<textarea rows="5" id="privatekeyauth"></textarea>
|
||||
<button class="btn btn-primary"
|
||||
onclick="pagans.authentifyme(document.getElementById('inputaliasauth').value,document.getElementById('inputpassphraseauth').value,document.getElementById('privatekeyauth').value);document.getElementById('btntestauth').click()">I
|
||||
am alias</button>
|
||||
<hr>
|
||||
<h3>Create a decentralized Identity</h3>
|
||||
<p>apXtrib allow you to create keys to identify yourself with a universal alias</p>
|
||||
<div class="col-md-6">
|
||||
<label for="inputalias" class="form-label">Your alias</label>
|
||||
<input type="text" class="form-control" id="inputalias" placeholder="A public alias that any one see">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<label for="inputemailrecovery" class="form-label">Email Recovery</label>
|
||||
<input type="email" class="form-control" id="inputemailrecovery"
|
||||
placeholder="optional, if you want to receive by mail your keys">
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<label for="inputpassphrase" class="form-label">A passphrase</label>
|
||||
<input type="text" class="form-control" id="inputpassphrase"
|
||||
placeholder="optional, a passphrase to remember, each time something try to use your privateKey this passphrase will be requested">
|
||||
</div>
|
||||
<button type="button" id="generatekeys"
|
||||
onclick="pagans.createIdentity(document.getElementById('inputalias').value,document.getElementById('inputpassphrase').value)"
|
||||
class="btn btn-primary">Generate keys</button>
|
||||
<div id="trustintribe" class="d-none">
|
||||
<div class="mb-3 row">
|
||||
<div class="col-12">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" id="trustedcheck"
|
||||
onclick="document.getElementById('selecttrusttribe').classList.toggle('d-none');">
|
||||
<label class="form-check-label small" for="trustedcheck">
|
||||
<b>I trust a tribe to keep my private key and email, doing this i automaticaly create a Person space in
|
||||
tribe i trust. </b>
|
||||
I understand that someone with tribe accessrights(druid) from this tribe can read my personnal data by
|
||||
unciphering my
|
||||
data.<br>
|
||||
<b>If i don't trust</b> i understand that if i loose my privatekey i also loose my data.<br>
|
||||
If you set a correct email then you will receive your keys on your mailbox, this email is not store if
|
||||
you do not trust<br>
|
||||
If you use a browser that <b>can be accessible by someone else, don't forget to "logout"</b> to clean up
|
||||
any trace.<br>
|
||||
<b>In any case please download your keys and move it on a usb key or/and print it</b><br>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div id="selecttrusttribe" class="d-none">
|
||||
<label for="selectnationid" class="col-12 col-form-label">If you want to trust in a Tribe to store your
|
||||
private key, please chose a tribe which you trust in</label>
|
||||
<div class="col-12">
|
||||
<select class="form-select" id="trustedtribe" aria-label="" placeholder="A tribe to store my private key">
|
||||
{{#tribes}}
|
||||
<option {{#selected}}selected{{/selected}} value="{{tribeId}}">{{tribeId}}</option>
|
||||
{{/tribes}}
|
||||
</select>
|
||||
<input class="d-none" id="inputtribeId" value="{{tribeId}}">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="downloadkeys" class="btn-group d-none">
|
||||
<p>Download your keys at least PrivateKey this have to save in a secret place</p>
|
||||
<button id="privatekey" key="" class="btn btn-outline-primary" onclick="app.downloadlink('pagans.privateKey',apx.data,apx.data.headers.xapp);" >Download PrivateKey</button>
|
||||
<button id="publickey" key="" class="btn btn-outline-primary" onclick="app.downloadlink('publicKey',this.getAttribute('key'),apx.data.headers.xapp);">Download PublicKey</button>
|
||||
</div>
|
||||
<div id="createId" class="col-12 d-none">
|
||||
<button class="btn btn-primary" onclick="app.registerIdentity()">Create this identity</button>
|
||||
</div>
|
||||
</div>
|
||||
<div id="downloadkeys" class="btn-group d-none">
|
||||
<p>Download your keys at least PrivateKey this have to save in a secret place</p>
|
||||
<button id="privatekey" key="" class="btn btn-outline-primary"
|
||||
onclick="app.downloadlink('auth.privateKey',apx.data,apx.data.headers.xapp);">Download PrivateKey</button>
|
||||
<button id="publickey" key="" class="btn btn-outline-primary"
|
||||
onclick="app.downloadlink('auth.publicKey',this.getAttribute('key'),apx.data.headers.xapp);">Download
|
||||
PublicKey</button>
|
||||
</div>
|
||||
<div id="createId" class="col-12 d-none">
|
||||
<button class="btn btn-primary" onclick="pagans.registerIdentity();">Create
|
||||
this identity</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
50
nationchains/www/adminapx/static/tpl/townsetup_en.mustache
Normal file
@@ -0,0 +1,50 @@
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<h4> Setup a new town</h4>
|
||||
<p>This form let you start joining a nation.</p>
|
||||
<p>For dev you can stay like this and use http instead of https. To join a nation you need:</p>
|
||||
<ul>
|
||||
<li> Get a domain name register to a publicIP that route web traffic from 80 and 443 to this machine</li>
|
||||
<li> Get a pagan identity and be authenticated <a onclick="app.load('apxmain','pagancreate',{})"> click here to create or authentify yoursefl</a>
|
||||
<li> Synchronize the nations, to update your nationchains (carefful all your local stuff will be deleted)</li>
|
||||
<li> Ready to your new mayor role of this town</li>
|
||||
<li> Start saling your hosting</li>
|
||||
</ul>
|
||||
<div class="col-sm-2">
|
||||
</div>
|
||||
<div class="col-sm-10">
|
||||
<div class="mb-3 row">
|
||||
<label for="selectnationid" class="col-sm-6 col-form-label">Select the nation to join</label>
|
||||
<div class="col-sm-6">
|
||||
<select class="form-select" data-nationId="{{nationId}}" aria-label="" placeholder="A nation">
|
||||
{{#nations}}
|
||||
<option {{#selected}}selected{{/selected}} value="{{nationId}}">{{nationId}}</option>
|
||||
{{/nations}}
|
||||
</select>
|
||||
<input class="d-none" id="inputnationId" value="{{nationId}}">
|
||||
</div>
|
||||
</div>
|
||||
<div class="mb-3 row">
|
||||
<label for="inputtownid" class="col-sm-6 col-form-label">Your Town</label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" value="{{townId}}" class="form-control" id="inputtownid">
|
||||
</div>
|
||||
</div>
|
||||
<div class="mb-3 row">
|
||||
<label for="inputtribeid" class="col-sm-6 col-form-label">Your Tribes</label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" value="{{tribeId}}" class="form-control" id="inputreibeid">
|
||||
</div>
|
||||
</div>
|
||||
<div class="mb-3 row">
|
||||
<label for="inputdnstown" class="col-sm-6 col-form-label">Domain name of your town (to access this app from the web)</label>
|
||||
<div class="col-sm-6">
|
||||
<input type="text" value="{{dns}}" class="form-control" id="inputdnstown">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<button onclick="setup.lauchtown(document.getElementById('inputnationId').value, document.getElementById('inputtownId').value,document.getElementById('inputdns').value)" class="btn btn-primary mb-3">Launch this town</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"nationId": "ants",
|
||||
"townId": "wall",
|
||||
"IP":"213.32.65.213",
|
||||
"townId": "usbfarm",
|
||||
"IP":"192.168.1.1",
|
||||
"tribeId":"ndda",
|
||||
"dns": ["wallant.ndda.fr"],
|
||||
"dns": ["wallant.ndda.fr","adminapx"],
|
||||
"mayorId":"philc",
|
||||
"passphrase":"",
|
||||
"api": {
|
31
nationchains/www/adminapx/static/tpldata/initconf.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"dns": ["adminapx"],
|
||||
"api": {
|
||||
"port": 3020,
|
||||
"languages": ["en", "fr"],
|
||||
"exposedHeaders": ["xdays", "xhash", "xalias", "xlang", "xtribe", "xapp"],
|
||||
"nationObjects": [
|
||||
"schema",
|
||||
"blocks",
|
||||
"nations",
|
||||
"towns",
|
||||
"tribes",
|
||||
"pagans"
|
||||
],
|
||||
"unittesting": ["middlewares", "models", "routes", "nationchains"],
|
||||
"appset": { "trust proxy": true },
|
||||
"bodyparse": {
|
||||
"urlencoded": {
|
||||
"limit": "50mb",
|
||||
"extended": true
|
||||
},
|
||||
"json": { "limit": "500mb" }
|
||||
}
|
||||
},
|
||||
"nginx": {
|
||||
"restart": "sudo systemctl restart nginx",
|
||||
"worker_connections": 1024,
|
||||
"include": ["/etc/nginx/conf.d/*.conf"],
|
||||
"pageindex": "index_en.html"
|
||||
}
|
||||
}
|
1
nationchains/www/cdn/share/js/dayjs.min.js
vendored
Normal file
43562
nationchains/www/cdn/share/js/openpgp.js
Normal file
BIN
nationchains/www/cdn/share/logo/favicon.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
nationchains/www/cdn/share/logo/logobgdark.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
168
nationchains/www/cdn/share/logo/logobgdark.svg
Normal file
@@ -0,0 +1,168 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="74.422066mm"
|
||||
height="39.408447mm"
|
||||
viewBox="0 0 74.422066 39.408447"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (732a01da63, 2022-12-09, custom)"
|
||||
sodipodi:docname="planchelogoapXtrib.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.3786088"
|
||||
inkscape:cx="429.03231"
|
||||
inkscape:cy="188.5556"
|
||||
inkscape:window-width="1868"
|
||||
inkscape:window-height="1141"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2">
|
||||
<inkscape:path-effect
|
||||
effect="powerclip"
|
||||
id="path-effect4281-6"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false"
|
||||
message="Utilise la règle de remplissage « fill-rule: evenodd » de la boîte de dialogue <b>Fond et contour</b> en l'absence de résultat de mise à plat après une conversion en chemin." />
|
||||
<inkscape:path-effect
|
||||
effect="powerclip"
|
||||
id="path-effect4223-1-5"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false"
|
||||
message="Utilise la règle de remplissage « fill-rule: evenodd » de la boîte de dialogue <b>Fond et contour</b> en l'absence de résultat de mise à plat après une conversion en chemin." />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect4281-6">
|
||||
<rect
|
||||
style="display:none;fill:none;stroke:#000000;stroke-width:2.965;stroke-miterlimit:5"
|
||||
id="rect12221"
|
||||
width="3.9103701"
|
||||
height="17.277628"
|
||||
x="72.929848"
|
||||
y="18.71629"
|
||||
d="m 72.929848,18.71629 h 3.91037 v 17.277627 h -3.91037 z" />
|
||||
<path
|
||||
id="lpe_path-effect4281-6"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.965;stroke-miterlimit:5"
|
||||
class="powerclip"
|
||||
d="M 39.612377,7.7145809 H 79.612633 V 47.714838 H 39.612377 Z M 72.929848,18.71629 v 17.277627 h 3.91037 V 18.71629 Z" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect4223-1-5">
|
||||
<rect
|
||||
style="display:none;fill:none;stroke:#000000;stroke-width:0.890744;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect12226"
|
||||
width="29.109257"
|
||||
height="29.109257"
|
||||
x="45.057877"
|
||||
y="13.160081"
|
||||
clip-path="none"
|
||||
d="M 45.057877,13.160081 H 74.167133 V 42.269338 H 45.057877 Z" />
|
||||
<path
|
||||
id="lpe_path-effect4223-1-5"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.890744;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 35.399339,3.8513256 H 75.39934 V 43.851326 H 35.399339 Z m 9.658538,9.3087554 V 42.269338 H 74.167133 V 13.160081 Z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-33.762223,-52.949721)">
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.264999;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect12066-9"
|
||||
width="74.422066"
|
||||
height="39.408443"
|
||||
x="33.685085"
|
||||
y="52.371716" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:0.0159938;stroke:none;stroke-width:0.264999;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect12066-6"
|
||||
width="74.422066"
|
||||
height="39.408443"
|
||||
x="33.762222"
|
||||
y="52.949718"
|
||||
inkscape:export-filename="../6e81e123/logobglight.svg"
|
||||
inkscape:export-xdpi="105.58897"
|
||||
inkscape:export-ydpi="105.58897" />
|
||||
<path
|
||||
style="display:block;fill:none;stroke:#ffffff;stroke-width:0.891;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221-6"
|
||||
width="29.109257"
|
||||
height="29.109257"
|
||||
x="45.057877"
|
||||
y="13.160081"
|
||||
clip-path="url(#clipath_lpe_path-effect4281-6)"
|
||||
inkscape:path-effect="#path-effect4281-6"
|
||||
d="M 45.057877,13.160081 H 74.167133 V 42.269338 H 45.057877 Z"
|
||||
sodipodi:type="rect"
|
||||
transform="translate(0.7877763,47.235812)" />
|
||||
<path
|
||||
style="display:block;fill:none;stroke:#ffffff;stroke-width:0.890744;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4212-5-3"
|
||||
width="29.109257"
|
||||
height="29.109257"
|
||||
x="40.844711"
|
||||
y="9.2966976"
|
||||
clip-path="url(#clipath_lpe_path-effect4223-1-5)"
|
||||
inkscape:path-effect="#path-effect4223-1-5"
|
||||
d="M 40.844711,9.2966976 H 69.953968 V 38.405954 H 40.844711 Z"
|
||||
sodipodi:type="rect"
|
||||
transform="translate(1.2107703,47.421564)" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:3.175px;fill:#2e7fc8;fill-opacity:1;stroke-width:0.265;stroke-dasharray:none"
|
||||
x="48.645107"
|
||||
y="76.664268"
|
||||
id="text168-9"
|
||||
inkscape:highlight-color="#2e7fc8"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan166-4"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.1111px;font-family:Quicksand;-inkscape-font-specification:'Quicksand, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#2e7fc8;fill-opacity:1;stroke-width:0.265;stroke-dasharray:none"
|
||||
x="48.645107"
|
||||
y="76.664268"><tspan
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="tspan12445">ap</tspan><tspan
|
||||
style="fill:#ffc332;fill-opacity:1"
|
||||
id="tspan11889-8">X</tspan><tspan
|
||||
style="fill:#ffffff;fill-opacity:0.985099"
|
||||
id="tspan12341">trib</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#2e7fc8;fill-opacity:1;stroke-width:0.264583"
|
||||
x="54.550327"
|
||||
y="82.090439"
|
||||
id="text168-0-1"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan166-9-2"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
x="54.550327"
|
||||
y="82.090439">BLOCKCHAIN OF DEMOCRACY</tspan></text>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.2 KiB |
BIN
nationchains/www/cdn/share/logo/logobglight.png
Normal file
After Width: | Height: | Size: 10 KiB |
156
nationchains/www/cdn/share/logo/logobglight.svg
Normal file
@@ -0,0 +1,156 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="74.687065mm"
|
||||
height="39.673443mm"
|
||||
viewBox="0 0 74.687065 39.673443"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (732a01da63, 2022-12-09, custom)"
|
||||
sodipodi:docname="planchelogoapXtrib.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.3786088"
|
||||
inkscape:cx="429.03231"
|
||||
inkscape:cy="188.5556"
|
||||
inkscape:window-width="1868"
|
||||
inkscape:window-height="1141"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2">
|
||||
<inkscape:path-effect
|
||||
effect="powerclip"
|
||||
id="path-effect4281"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false"
|
||||
message="Utilise la règle de remplissage « fill-rule: evenodd » de la boîte de dialogue <b>Fond et contour</b> en l'absence de résultat de mise à plat après une conversion en chemin." />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4219-7">
|
||||
<rect
|
||||
style="display:none;fill:none;stroke:#000000;stroke-width:0.890744;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221-7"
|
||||
width="29.109257"
|
||||
height="29.109257"
|
||||
x="45.057877"
|
||||
y="13.160081"
|
||||
clip-path="none"
|
||||
d="M 45.057877,13.160081 H 74.167133 V 42.269338 H 45.057877 Z" />
|
||||
<path
|
||||
id="lpe_path-effect4223-1"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.890744;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 35.399339,3.8513256 H 75.39934 V 43.851326 H 35.399339 Z m 9.658538,9.3087554 V 42.269338 H 74.167133 V 13.160081 Z" />
|
||||
</clipPath>
|
||||
<inkscape:path-effect
|
||||
effect="powerclip"
|
||||
id="path-effect4223-1"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false"
|
||||
message="Utilise la règle de remplissage « fill-rule: evenodd » de la boîte de dialogue <b>Fond et contour</b> en l'absence de résultat de mise à plat après une conversion en chemin." />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4277">
|
||||
<rect
|
||||
style="display:none;fill:none;stroke:#000000;stroke-width:2.965;stroke-miterlimit:5"
|
||||
id="rect4279"
|
||||
width="3.9103701"
|
||||
height="17.277628"
|
||||
x="72.929848"
|
||||
y="18.71629"
|
||||
d="m 72.929848,18.71629 h 3.91037 v 17.277627 h -3.91037 z" />
|
||||
<path
|
||||
id="lpe_path-effect4281"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.965;stroke-miterlimit:5"
|
||||
class="powerclip"
|
||||
d="M 39.612377,7.7145809 H 79.612633 V 47.714838 H 39.612377 Z M 72.929848,18.71629 v 17.277627 h 3.91037 V 18.71629 Z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-32.764809,-5.0034045)">
|
||||
<path
|
||||
style="display:block;fill:none;stroke:#2e7fc8;stroke-width:0.891;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4221"
|
||||
width="29.109257"
|
||||
height="29.109257"
|
||||
x="45.057877"
|
||||
y="13.160081"
|
||||
clip-path="url(#clipPath4277)"
|
||||
inkscape:path-effect="#path-effect4281"
|
||||
d="M 45.057877,13.160081 H 74.167133 V 42.269338 H 45.057877 Z"
|
||||
sodipodi:type="rect" />
|
||||
<path
|
||||
style="display:block;fill:none;stroke:#2e7fc8;stroke-width:0.890744;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect4212-5"
|
||||
width="29.109257"
|
||||
height="29.109257"
|
||||
x="40.844711"
|
||||
y="9.2966976"
|
||||
clip-path="url(#clipPath4219-7)"
|
||||
inkscape:path-effect="#path-effect4223-1"
|
||||
d="M 40.844711,9.2966976 H 69.953968 V 38.405954 H 40.844711 Z"
|
||||
sodipodi:type="rect"
|
||||
transform="translate(0.42299389,0.18575204)" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:3.175px;fill:#2e7fc8;fill-opacity:1;stroke-width:0.265;stroke-dasharray:none"
|
||||
x="47.857334"
|
||||
y="29.428459"
|
||||
id="text168"
|
||||
inkscape:highlight-color="#2e7fc8"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan166"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.1111px;font-family:Quicksand;-inkscape-font-specification:'Quicksand, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#2e7fc8;fill-opacity:1;stroke-width:0.265;stroke-dasharray:none"
|
||||
x="47.857334"
|
||||
y="29.428459">ap<tspan
|
||||
style="fill:#ffc332;fill-opacity:1"
|
||||
id="tspan11889">X</tspan>trib</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#2e7fc8;fill-opacity:1;stroke-width:0.264583"
|
||||
x="53.762562"
|
||||
y="34.85463"
|
||||
id="text168-0"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan166-9"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#2e7fc8;fill-opacity:1;stroke-width:0.264583"
|
||||
x="53.762562"
|
||||
y="34.85463">BLOCKCHAIN OF DEMOCRACY</tspan></text>
|
||||
<rect
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.264999;stroke-miterlimit:5;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect12066"
|
||||
width="74.422066"
|
||||
height="39.408443"
|
||||
x="32.897308"
|
||||
y="5.1359038"
|
||||
inkscape:export-filename="../6e81e123/logobglight.svg"
|
||||
inkscape:export-xdpi="105.58897"
|
||||
inkscape:export-ydpi="105.58897" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
BIN
nationchains/www/cdn/share/logo/logocarredark.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
nationchains/www/cdn/share/logo/logocarrelight.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
@@ -1,18 +1,18 @@
|
||||
server {
|
||||
server_name wallants.ndda.fr ;
|
||||
access_log /home/phil/workspace/apxtrib/nationchains/logs/nginx/adminapx.town.access.log main;
|
||||
server_name adminapx wallant.ndda.fr;
|
||||
access_log /media/phil/usbfarm/apxtrib/nationchains/logs/nginx/adminapx.town.access.log main;
|
||||
|
||||
location ~* /nationchains/(schema|blocks|pagans|towns|nations)/ {
|
||||
# Warning: never add tribes for keeping it private
|
||||
root /home/phil/workspace/apxtrib/;
|
||||
root /media/phil/usbfarm/apxtrib/;
|
||||
}
|
||||
|
||||
# /plugins/pluginame/components/xxx?plugin=pluginname&pluginkey=key
|
||||
# acess if exist pluginkey
|
||||
location /plugins/ {
|
||||
add_header X-debug "plugins local $arg_plugin/keys/$arg_pluginkey sent";
|
||||
root /home/phil/workspace/apxtrib/nationchains//plugins/;
|
||||
if (-f /home/phil/workspace/apxtrib/nationchains//plugins/$arg_plugin/keys/$arg_pluginkey) {
|
||||
root /media/phil/usbfarm/apxtrib/nationchains//plugins/;
|
||||
if (-f /media/phil/usbfarm/apxtrib/nationchains//plugins/$arg_plugin/keys/$arg_pluginkey) {
|
||||
rewrite /plugins/([^/]+)/components/([^\?]+) /$1/components/$2 break;
|
||||
}
|
||||
return 403 "No valid token access for plugin:$arg_plugin with token:$arg_pluginkey please ask your admin";
|
||||
@@ -20,12 +20,12 @@ server {
|
||||
|
||||
location /cdn/ {
|
||||
rewrite /cdn/(.*$) /$1 break;
|
||||
root /home/phil/workspace/apxtrib/nationchains/www/cdn/;
|
||||
root /media/phil/usbfarm/apxtrib/nationchains/www/cdn/;
|
||||
}
|
||||
|
||||
location /spacedev/ {
|
||||
rewrite /spacedev/(.*$) /$1 break;
|
||||
root /home/phil/workspace/apxtrib/nationchains/spacedev/adminapx/dist/;
|
||||
root /media/phil/usbfarm/apxtrib/nationchains/spacedev/adminapx/dist/;
|
||||
}
|
||||
|
||||
location /api/ {
|
||||
@@ -36,7 +36,7 @@ server {
|
||||
}
|
||||
|
||||
location / {
|
||||
root /home/phil/workspace/apxtrib/nationchains/www/adminapx;
|
||||
root /media/phil/usbfarm/apxtrib/nationchains/www/adminapx;
|
||||
index index.html index_en.html;
|
||||
}
|
||||
error_page 404 /404.html;
|
||||
@@ -46,24 +46,4 @@ server {
|
||||
location = /50x.html {
|
||||
root /usr/local/nginx/html;
|
||||
}
|
||||
|
||||
|
||||
listen 443 ssl; # managed by Certbot
|
||||
ssl_certificate /etc/letsencrypt/live/wallants.ndda.fr/fullchain.pem; # managed by Certbot
|
||||
ssl_certificate_key /etc/letsencrypt/live/wallants.ndda.fr/privkey.pem; # managed by Certbot
|
||||
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
||||
|
||||
}
|
||||
server {
|
||||
if ($host = wallants.ndda.fr) {
|
||||
return 301 https://$host$request_uri;
|
||||
} # managed by Certbot
|
||||
|
||||
|
||||
server_name wallants.ndda.fr ;
|
||||
listen 80;
|
||||
return 404; # managed by Certbot
|
||||
|
||||
|
||||
}
|