This commit is contained in:
parent
360c8e70b4
commit
ec2ff68c7f
59 changed files with 4673 additions and 90 deletions
|
@ -95,10 +95,10 @@ msgstr "\n"
|
|||
|
||||
#. type: Plain text
|
||||
msgid ""
|
||||
"Directives are similar to a <span class="createlink">WikiLink</span> in form, except they begin "
|
||||
"Directives are similar to a <a href="../wikilink/">WikiLink</a> in form, except they begin "
|
||||
"with `!` and may contain parameters. The general form is:"
|
||||
msgstr ""
|
||||
"Les directives sont semblables aux <span class="createlink">WikiLink</span> mais elles "
|
||||
"Les directives sont semblables aux <a href="../wikilink/">WikiLink</a> mais elles "
|
||||
"commencent par un `!` et peuvent contenir des paramètres. La forme d'une "
|
||||
"directive est la suivante :"
|
||||
|
||||
|
@ -176,10 +176,10 @@ msgstr "\"baz\""
|
|||
#. type: Plain text
|
||||
msgid ""
|
||||
"ikiwiki also has an older syntax for directives, which requires a space in "
|
||||
"directives to distinguish them from <span class="createlink">wikilinks</span>. This "
|
||||
"directives to distinguish them from <a href="../wikilink/">wikilinks</a>. This "
|
||||
"syntax has several disadvantages: it requires a space after directives with "
|
||||
"no parameters (such as `\[[pagecount ]]`), and it prohibits spaces in "
|
||||
"<span class="createlink">wikilinks</span>. ikiwiki now provides the `!`-prefixed "
|
||||
"<a href="../wikilink/">wikilinks</a>. ikiwiki now provides the `!`-prefixed "
|
||||
"syntax shown above as default. However, ikiwiki still supports wikis using "
|
||||
"the older syntax, if the `prefix_directives` option is disabled."
|
||||
msgstr ""
|
||||
|
@ -187,7 +187,7 @@ msgstr ""
|
|||
"espace dans la directive pour les distinguer des [[wikilinks|ikiwiki/"
|
||||
"wikilink]]. Cette syntaxe a plusieurs défauts : elle demande un espace après "
|
||||
"une directive sans paramètre, comme `\[[pagecount ]]`, et elle interdit les "
|
||||
"espaces dans les <span class="createlink">wikilinks</span>. Par défaut, ikiwiki utilise "
|
||||
"espaces dans les <a href="../wikilink/">wikilinks</a>. Par défaut, ikiwiki utilise "
|
||||
"maintenant la syntaxe montrée plus haut, avec le `!`. Cependant, l'ancienne "
|
||||
"syntaxe est toujours acceptée, une fois que l'option `prefix_directives` est "
|
||||
"désactivée."
|
||||
|
|
203
ikiwiki/directive/index.html
Normal file
203
ikiwiki/directive/index.html
Normal file
|
@ -0,0 +1,203 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>directive - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
||||
<link rel="manifest" href="../../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../../">
|
||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../../index.en.html">Home</a></li>
|
||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p>Directives are similar to a <a href="../wikilink/">WikiLink</a> in form, except they
|
||||
begin with <code>!</code> and may contain parameters. The general form is:</p>
|
||||
|
||||
<pre><code>[[!directive param="value" param="value"]]
|
||||
</code></pre>
|
||||
|
||||
<p>This gets expanded before the rest of the page is processed, and can be used
|
||||
to transform the page in various ways.</p>
|
||||
|
||||
<p>The quotes around values can be omitted if the value is a simple word.
|
||||
Also, some directives may use parameters without values, for example:</p>
|
||||
|
||||
<pre><code>[[!tag foo]]
|
||||
</code></pre>
|
||||
|
||||
<p>A directive does not need to all be on one line, it can be
|
||||
wrapped to multiple lines if you like:</p>
|
||||
|
||||
<pre><code>[[!directive foo="baldersnatch"
|
||||
bar="supercalifragilisticexpialidocious" baz=11]]
|
||||
</code></pre>
|
||||
|
||||
<p>Also, multiple lines of <em>quoted</em> text can be used for a value.
|
||||
To allow quote marks inside the quoted text, delimit the block
|
||||
of text with triple-double-quotes or triple-single-quotes:</p>
|
||||
|
||||
<pre><code>[[!directive text="""
|
||||
1. "foo"
|
||||
2. "bar"
|
||||
3. "baz"
|
||||
""" othertext='''
|
||||
1. 'quux'
|
||||
2. "foo"
|
||||
''']]
|
||||
</code></pre>
|
||||
|
||||
<p>If you want to put text with triple quotes into a parameter value, you can
|
||||
use perl-style here-doc syntax, even nesting it like this:</p>
|
||||
|
||||
<pre><code>[[!directive text=<<OUTER
|
||||
[[!otherdirective <<INNER
|
||||
inner text
|
||||
INNER]]
|
||||
outer text
|
||||
OUTER]]
|
||||
</code></pre>
|
||||
|
||||
<p>ikiwiki also has an older syntax for directives, which requires a space in
|
||||
directives to distinguish them from <a href="../wikilink/">wikilinks</a>. This
|
||||
syntax has several disadvantages: it requires a space after directives with
|
||||
no parameters (such as <code>[[pagecount ]]</code>), and it prohibits spaces in
|
||||
<a href="../wikilink/">wikilinks</a>. ikiwiki now provides the <code>!</code>-prefixed
|
||||
syntax shown above as default. However, ikiwiki still supports wikis using
|
||||
the older syntax, if the <code>prefix_directives</code> option is disabled.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki/directive&t=directive" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -102,10 +102,10 @@ msgstr "\n"
|
|||
msgid ""
|
||||
"Text on this wiki is, by default, written in a form very close to how you "
|
||||
"might write text for an email message. This style of text formatting is "
|
||||
"called <span class="createlink">MarkDown</span>, and it works like this:"
|
||||
"called <a href="../markdown/">MarkDown</a>, and it works like this:"
|
||||
msgstr ""
|
||||
"Sur ce wiki, la mise en forme du texte est semblable à celle utilisée dans "
|
||||
"les courriels. Ce style de formatage s'appelle <span class="createlink">MarkDown</span>. Voici comment "
|
||||
"les courriels. Ce style de formatage s'appelle <a href="../markdown/">MarkDown</a>. Voici comment "
|
||||
"il fonctionne :"
|
||||
|
||||
#. type: Plain text
|
||||
|
@ -241,20 +241,20 @@ msgstr ""
|
|||
|
||||
#. type: Plain text
|
||||
msgid ""
|
||||
"In addition to basic html formatting using <span class="createlink">MarkDown</span>, this wiki lets you "
|
||||
"In addition to basic html formatting using <a href="../markdown/">MarkDown</a>, this wiki lets you "
|
||||
"use the following additional features:"
|
||||
msgstr ""
|
||||
"En plus du formatage html élémentaire avec <span class="createlink">MarkDown</span>, ce wiki offre "
|
||||
"En plus du formatage html élémentaire avec <a href="../markdown/">MarkDown</a>, ce wiki offre "
|
||||
"d'autres possibilités :"
|
||||
|
||||
#. type: Bullet: '* '
|
||||
msgid ""
|
||||
"To link to another page on the wiki, place the page's name inside double "
|
||||
"square brackets. So you would use `\[[WikiLink]]` to link to <span class="createlink">WikiLink</span>."
|
||||
"square brackets. So you would use `\[[WikiLink]]` to link to <a href="../wikilink/">WikiLink</a>."
|
||||
msgstr ""
|
||||
"Pour créer un lien vers une autre page du wiki, mettre le nom de la page "
|
||||
"entre deux paires de crochets. Ainsi, utilisez `\[[WikiLink]]` pour un lien "
|
||||
"avec <span class="createlink">WikiLink</span>."
|
||||
"avec <a href="../wikilink/">WikiLink</a>."
|
||||
|
||||
#. type: Plain text
|
||||
#, no-wrap
|
||||
|
@ -276,13 +276,13 @@ msgstr "\t\[[!wikipedia War\\_of\\_1812]]\n"
|
|||
msgid "[[!if <span class="error">Error: syntax error in pagespec "\"enabled(template)"</span>]] for repeated chunks of parameterized wiki "
|
||||
"text."
|
||||
msgstr ""
|
||||
"Créer et utiliser des modèles (<span class="createlink">templates</span>) pour répéter des morceaux de "
|
||||
"Créer et utiliser des modèles (<a href="../../templates/">templates</a>) pour répéter des morceaux de "
|
||||
"texte standard."
|
||||
|
||||
#. type: Plain text
|
||||
#, no-wrap
|
||||
msgid ""
|
||||
"* Insert various <span class="createlink">directives</span> onto a page to perform useful\n"
|
||||
"* Insert various <a href="../directive/">directives</a> onto a page to perform useful\n"
|
||||
" actions.\n"
|
||||
"[[!if <span class="error">Error: syntax error in pagespec "\"enabled(toc)\""</span>]]\n"
|
||||
msgstr "\t\[[!toc ]]\n"
|
||||
|
|
248
ikiwiki/formatting/index.html
Normal file
248
ikiwiki/formatting/index.html
Normal file
|
@ -0,0 +1,248 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>Formatting wiki pages - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
||||
<link rel="manifest" href="../../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../../">
|
||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../../index.en.html">Home</a></li>
|
||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p>Text on this wiki is, by default, written in a form very close to how you
|
||||
might write text for an email message. This style of text formatting is
|
||||
called <a href="../markdown/">MarkDown</a>, and it works like this:</p>
|
||||
|
||||
<p>Leave blank lines between paragraphs.</p>
|
||||
|
||||
<p>You can <em>*emphasise*</em> or <strong>**strongly emphasise**</strong> text by placing it
|
||||
in single or double asterisks.</p>
|
||||
|
||||
<p>To create a list, start each line with an asterisk:</p>
|
||||
|
||||
<ul>
|
||||
<li>"* this is my list"</li>
|
||||
<li>"* another item"</li>
|
||||
</ul>
|
||||
|
||||
<p>To make a numbered list, start each line with a number (any number will
|
||||
do) followed by a period:</p>
|
||||
|
||||
<ol>
|
||||
<li>"1. first line"</li>
|
||||
<li>"2. second line"</li>
|
||||
<li>"2. third line"</li>
|
||||
</ol>
|
||||
|
||||
<p>To create a header, start a line with one or more <code>#</code> characters followed
|
||||
by a space and the header text. The number of <code>#</code> characters controls the
|
||||
size of the header:</p>
|
||||
|
||||
<h1># h1</h1>
|
||||
|
||||
<h2>## h2</h2>
|
||||
|
||||
<h3>### h3</h3>
|
||||
|
||||
<h4>#### h4</h4>
|
||||
|
||||
<h5>##### h5</h5>
|
||||
|
||||
<h6>###### h6</h6>
|
||||
|
||||
<p>To create a horizontal rule, just write three or more dashes or stars on
|
||||
their own line:</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>To quote someone, prefix the quote with ">":</p>
|
||||
|
||||
<blockquote>
|
||||
<p>To be or not to be,
|
||||
that is the question.</p>
|
||||
</blockquote>
|
||||
|
||||
<p>To write a code block, indent each line with a tab or 4 spaces:</p>
|
||||
|
||||
<pre><code>10 PRINT "Hello, world!"
|
||||
20 GOTO 10
|
||||
</code></pre>
|
||||
|
||||
<p>To link to an url or email address, you can just put the
|
||||
url in angle brackets: <<a href="http://ikiwiki.info">http://ikiwiki.info</a>>, or you can use the
|
||||
form [link text](url)</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>In addition to basic html formatting using <a href="../markdown/">MarkDown</a>, this wiki lets
|
||||
you use the following additional features:</p>
|
||||
|
||||
<ul>
|
||||
<li><p>To link to another page on the wiki, place the page's name inside double
|
||||
square brackets. So you would use <code>[[WikiLink]]</code> to link to <a href="../wikilink/">WikiLink</a>.</p></li>
|
||||
<li><p>Insert <a href="../../smileys/">smileys</a> and some other useful symbols. <img src="../../smileys/smile.png" alt=":-)" /></p></li>
|
||||
<li><p>Use <a href="../../shortcuts/index.en.html">shortcuts</a> to link to common resources.</p>
|
||||
|
||||
<p>[[!wikipedia War_of_1812]]</p></li>
|
||||
<li><p>Create and fill out <a href="../../templates/">templates</a> for repeated chunks of
|
||||
parameterized wiki text.</p></li>
|
||||
<li><p>Insert various <a href="../directive/">directives</a> onto a page to perform useful
|
||||
actions.
|
||||
For example, you can:</p>
|
||||
|
||||
<ul>
|
||||
<li>Add a table of contents to a page:</li>
|
||||
</ul>
|
||||
|
||||
<p>[[!toc ]]</p>
|
||||
|
||||
<ul>
|
||||
<li>Change the title of a page:</li>
|
||||
</ul>
|
||||
|
||||
<p>[[!meta title="full page title"]]</p>
|
||||
|
||||
<ul>
|
||||
<li>Create a blog by inlining a set of pages:</li>
|
||||
</ul>
|
||||
|
||||
<p>[[!inline pages="blog/*"]]</p></li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki/formatting&t=Formatting%20wiki%20pages" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
164
ikiwiki/index.html
Normal file
164
ikiwiki/index.html
Normal file
|
@ -0,0 +1,164 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>ikiwiki - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
||||
<link rel="manifest" href="../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../">
|
||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../index.en.html">Home</a></li>
|
||||
<li><a href="../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p>This wiki is powered by <a href="http://ikiwiki.info/">ikiwiki</a>.</p>
|
||||
|
||||
<p>Some documentation on using ikiwiki:</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="./formatting/">formatting</a></li>
|
||||
<li><a href="./wikilink/">wikilink</a></li>
|
||||
<li><a href="./subpage/">subpage</a></li>
|
||||
<li><a href="./pagespec/">pagespec</a></li>
|
||||
<li><a href="./directive/">directive</a></li>
|
||||
<li><a href="./markdown/">markdown</a></li>
|
||||
<li><a href="./openid/">openid</a></li>
|
||||
<li><a href="./searching/">searching</a></li>
|
||||
<li><a href="../templates/">templates</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki&t=ikiwiki" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -106,20 +106,20 @@ msgstr ""
|
|||
|
||||
#. type: Plain text
|
||||
msgid ""
|
||||
"For documentation about the markdown syntax, see <span class="createlink">formatting</span> and "
|
||||
"For documentation about the markdown syntax, see <a href="../formatting/">formatting</a> and "
|
||||
"[Markdown: syntax](http://daringfireball.net/projects/markdown/syntax)."
|
||||
msgstr ""
|
||||
"Référez vous à <span class="createlink">formatting</span> et [Syntaxe Markdown](http://daringfireball."
|
||||
"Référez vous à <a href="../formatting/">formatting</a> et [Syntaxe Markdown](http://daringfireball."
|
||||
"net/projects/markdown/syntax) pour la documentation sur la syntaxe du langage "
|
||||
"markdown."
|
||||
|
||||
#. type: Plain text
|
||||
msgid ""
|
||||
"Note that <span class="createlink">WikiLinks</span> and <span class="createlink">directives</span> are not part "
|
||||
"Note that <a href="../wikilink/">WikiLinks</a> and <a href="../directive/">directives</a> are not part "
|
||||
"of the markdown syntax, and are the only bit of markup that this wiki "
|
||||
"handles internally."
|
||||
msgstr ""
|
||||
"Notez que les <span class="createlink">WikiLinks</span> et les <span class="createlink">directives</span> ne font "
|
||||
"Notez que les <a href="../wikilink/">WikiLinks</a> et les <a href="../directive/">directives</a> ne font "
|
||||
"pas partie de la syntaxe du langage markdown. Il s'agit des seules balises "
|
||||
"qui sont traitées en interne par ce wiki."
|
||||
|
||||
|
|
159
ikiwiki/markdown/index.html
Normal file
159
ikiwiki/markdown/index.html
Normal file
|
@ -0,0 +1,159 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>markdown - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
||||
<link rel="manifest" href="../../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../../">
|
||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../../index.en.html">Home</a></li>
|
||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p><a href="http://daringfireball.net/projects/markdown/">Markdown</a>
|
||||
is a minimal markup language that resembles plain text as used in
|
||||
email messages. It is the markup language used by this wiki by default.</p>
|
||||
|
||||
<p>For documentation about the markdown syntax, see <a href="../formatting/">formatting</a> and
|
||||
<a href="http://daringfireball.net/projects/markdown/syntax">Markdown: syntax</a>.</p>
|
||||
|
||||
<p>Note that <a href="../wikilink/">WikiLinks</a> and <a href="../directive/">directives</a> are not part
|
||||
of the markdown syntax, and are the only bit of markup that this wiki
|
||||
handles internally.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki/markdown&t=markdown" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
171
ikiwiki/openid/index.html
Normal file
171
ikiwiki/openid/index.html
Normal file
|
@ -0,0 +1,171 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>OpenID - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
||||
<link rel="manifest" href="../../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../../">
|
||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../../index.en.html">Home</a></li>
|
||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p>This wiki has OpenID <strong>enabled</strong>.</p>
|
||||
|
||||
<p><a href="http://openid.net">OpenID</a> is a decentralized authentication mechanism
|
||||
that allows you to have one login that you can use on a growing number of
|
||||
websites.</p>
|
||||
|
||||
<p>If you have an account with some of the larger web service providers,
|
||||
you might already have an OpenID.
|
||||
<a href="http://openiddirectory.com/openid-providers-c-1.html">Directory of OpenID providers</a></p>
|
||||
|
||||
<p>To sign in to this wiki using OpenID, just enter it in the OpenID field in the
|
||||
signin form. You do not need to give this wiki a password or go through any
|
||||
registration process when using OpenID.</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>It's also possible to make a page in the wiki usable as an OpenID url,
|
||||
by delegating it to an openid server. Here's an example of how to do that:</p>
|
||||
|
||||
<pre><code>[[!meta openid="http://yourid.myopenid.com/"
|
||||
server="http://www.myopenid.com/server"]]
|
||||
</code></pre>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki/openid&t=OpenID" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -124,7 +124,7 @@ msgid ""
|
|||
"More often you will want to match any pages that have a particular thing in "
|
||||
"their name. You can do this using a glob pattern. \"`*`\" stands for any "
|
||||
"part of a page name, and \"`?`\" for any single letter of a page name. So "
|
||||
"this matches all pages about music, and any <span class="createlink">SubPage</span>s of the SandBox, but "
|
||||
"this matches all pages about music, and any <a href="../subpage/">SubPage</a>s of the SandBox, but "
|
||||
"does not match the SandBox itself:"
|
||||
msgstr ""
|
||||
"La plupart du temps, vous voulez trouver les pages qui contiennent une "
|
||||
|
@ -132,7 +132,7 @@ msgstr ""
|
|||
"(« glob pattern »). Le métacaractère « `*` » correspond à n'importe quelle "
|
||||
"partie du nom de la page et le métacaractère « `?` » à n'importe quelle "
|
||||
"lettre. Ainsi, l'expression suivante correspond à toutes les pages traitant "
|
||||
"de musique et à n'importe quelle sous-page <span class="createlink">SubPage</span> de la *SandBox*, mais "
|
||||
"de musique et à n'importe quelle sous-page <a href="../subpage/">SubPage</a> de la *SandBox*, mais "
|
||||
"pas à la *SandBox* elle-même :"
|
||||
|
||||
#. type: Plain text
|
||||
|
|
|
@ -136,10 +136,10 @@ msgstr "\tvirusfree() and ((user(joey) and podcast/*.mp3 and mimetype(audio/mpeg
|
|||
|
||||
#. type: Plain text
|
||||
msgid ""
|
||||
"The regular <span class="createlink">PageSpec</span> syntax is expanded with the following "
|
||||
"The regular <a href="../">PageSpec</a> syntax is expanded with the following "
|
||||
"additional tests:"
|
||||
msgstr ""
|
||||
"La syntaxe normale de <span class="createlink">PageSpec</span> est appliquée avec les tests "
|
||||
"La syntaxe normale de <a href="../">PageSpec</a> est appliquée avec les tests "
|
||||
"supplémentaires suivants :"
|
||||
|
||||
#. type: Bullet: '* '
|
||||
|
|
183
ikiwiki/pagespec/attachment/index.html
Normal file
183
ikiwiki/pagespec/attachment/index.html
Normal file
|
@ -0,0 +1,183 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>attachment - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../../../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../../../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../../../favicon-16x16.png">
|
||||
<link rel="manifest" href="../../../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../../../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../../../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../../../">
|
||||
<img alt="ilot.io" src="../../../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../../../index.en.html">Home</a></li>
|
||||
<li><a href="../../../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../../../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p>This wiki has attachments <strong>disabled</strong>.</p>
|
||||
|
||||
<p>If attachments are enabled, the wiki admin can control what types of
|
||||
attachments will be accepted, via the <code>allowed_attachments</code>
|
||||
configuration setting.</p>
|
||||
|
||||
<p>For example, to limit most users to uploading small images, and nothing else,
|
||||
while allowing larger mp3 files to be uploaded by joey into a specific
|
||||
directory, and check all attachments for viruses, something like this could be
|
||||
used:</p>
|
||||
|
||||
<pre><code>virusfree() and ((user(joey) and podcast/*.mp3 and mimetype(audio/mpeg) and maxsize(15mb)) or ((mimetype(image/jpeg) or mimetype(image/png)) and maxsize(50kb)))
|
||||
</code></pre>
|
||||
|
||||
<p>The regular <a href="../">PageSpec</a> syntax is expanded with the following
|
||||
additional tests:</p>
|
||||
|
||||
<ul>
|
||||
<li><p>"<code>maxsize(size)</code>" - tests whether the attachment is no larger than the
|
||||
specified size. The size defaults to being in bytes, but "kb", "mb", "gb"
|
||||
etc can be used to specify the units.</p></li>
|
||||
<li><p>"<code>minsize(size)</code>" - tests whether the attachment is no smaller than the
|
||||
specified size.</p></li>
|
||||
<li><p>"<code>ispage()</code>" - tests whether the attachment will be treated by ikiwiki as a
|
||||
wiki page. (Ie, if it has an extension of ".mdwn", or of any other enabled
|
||||
page format).</p>
|
||||
|
||||
<p>So, if you don't want to allow wiki pages to be uploaded as attachments,
|
||||
use <code>!ispage()</code> ; if you only want to allow wiki pages to be uploaded
|
||||
as attachments, use <code>ispage()</code>.</p></li>
|
||||
<li><p>"<code>mimetype(foo/bar)</code>" - checks the MIME type of the attachment. You can
|
||||
include a glob in the type, for example <code>mimetype(image/*)</code>.</p></li>
|
||||
<li><p>"<code>virusfree()</code>" - checks the attachment with an antiviral program.</p></li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../../../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki/pagespec/attachment&t=attachment" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
248
ikiwiki/pagespec/index.html
Normal file
248
ikiwiki/pagespec/index.html
Normal file
|
@ -0,0 +1,248 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>pagespec - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
||||
<link rel="manifest" href="../../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../../">
|
||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../../index.en.html">Home</a></li>
|
||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p>To select a set of pages, such as pages that are locked, pages
|
||||
whose commit emails you want subscribe to, or pages to combine into a
|
||||
blog, the wiki uses a PageSpec. This is an expression that matches
|
||||
a set of pages.</p>
|
||||
|
||||
<p>The simplest PageSpec is a simple list of pages. For example, this matches
|
||||
any of the three listed pages:</p>
|
||||
|
||||
<pre><code>foo or bar or baz
|
||||
</code></pre>
|
||||
|
||||
<p>More often you will want to match any pages that have a particular thing in
|
||||
their name. You can do this using a glob pattern. "<code>*</code>" stands for any part
|
||||
of a page name, and "<code>?</code>" for any single letter of a page name. So this
|
||||
matches all pages about music, and any <a href="../subpage/">SubPage</a>s of the SandBox, but does
|
||||
not match the SandBox itself:</p>
|
||||
|
||||
<pre><code>*music* or SandBox/*
|
||||
</code></pre>
|
||||
|
||||
<p>You can also prefix an item with "<code>!</code>" to skip pages that match it. So to
|
||||
match all pages except for Discussion pages and the SandBox:</p>
|
||||
|
||||
<pre><code>* and !SandBox and !*/Discussion
|
||||
</code></pre>
|
||||
|
||||
<p>Some more elaborate limits can be added to what matches using these functions:</p>
|
||||
|
||||
<ul>
|
||||
<li>"<code>glob(someglob)</code>" - matches pages and other files that match the given glob.
|
||||
Just writing the glob by itself is actually a shorthand for this function.</li>
|
||||
<li>"<code>page(glob)</code>" - like <code>glob()</code>, but only matches pages, not other files</li>
|
||||
<li>"<code>link(page)</code>" - matches only pages that link to a given page (or glob)</li>
|
||||
<li>"<code>tagged(tag)</code>" - matches pages that are tagged or link to the given tag (or
|
||||
tags matched by a glob)</li>
|
||||
<li>"<code>backlink(page)</code>" - matches only pages that a given page links to</li>
|
||||
<li>"<code>creation_month(month)</code>" - matches only files created on the given month
|
||||
number</li>
|
||||
<li>"<code>creation_day(mday)</code>" - or day of the month</li>
|
||||
<li>"<code>creation_year(year)</code>" - or year</li>
|
||||
<li>"<code>created_after(page)</code>" - matches only files created after the given page
|
||||
was created</li>
|
||||
<li>"<code>created_before(page)</code>" - matches only files created before the given page
|
||||
was created</li>
|
||||
<li>"<code>internal(glob)</code>" - like <code>glob()</code>, but matches even internal-use
|
||||
pages that globs do not usually match.</li>
|
||||
<li>"<code>title(glob)</code>", "<code>author(glob)</code>", "<code>authorurl(glob)</code>",
|
||||
"<code>license(glob)</code>", "<code>copyright(glob)</code>", "<code>guid(glob)</code>"
|
||||
<ul>
|
||||
<li>match pages that have the given metadata, matching the specified glob.</li>
|
||||
</ul></li>
|
||||
<li>"<code>user(username)</code>" - tests whether a modification is being made by a
|
||||
user with the specified username. If openid is enabled, an openid can also
|
||||
be put here. Glob patterns can be used in the username. For example,
|
||||
to match all openid users, use <code>user(*://*)</code></li>
|
||||
<li>"<code>admin()</code>" - tests whether a modification is being made by one of the
|
||||
wiki admins.</li>
|
||||
<li>"<code>ip(address)</code>" - tests whether a modification is being made from the
|
||||
specified IP address. Glob patterns can be used in the address. For
|
||||
example, <code>ip(127.0.0.*)</code></li>
|
||||
<li>"<code>comment(glob)</code>" - matches comments to a page matching the glob.</li>
|
||||
<li>"<code>comment_pending(glob)</code>" - matches unmoderated, pending comments.</li>
|
||||
<li>"<code>postcomment(glob)</code>" - matches only when comments are being
|
||||
posted to a page matching the specified glob</li>
|
||||
</ul>
|
||||
|
||||
<p>For example, to match all pages in a blog that link to the page about music
|
||||
and were written in 2005:</p>
|
||||
|
||||
<pre><code>blog/* and link(music) and creation_year(2005)
|
||||
</code></pre>
|
||||
|
||||
<p>Note the use of "and" in the above example, that means that only pages that
|
||||
match each of the three expressions match the whole. Use "and" when you
|
||||
want to combine expression like that; "or" when it's enough for a page to
|
||||
match one expression. Note that it doesn't make sense to say "index and
|
||||
SandBox", since no page can match both expressions.</p>
|
||||
|
||||
<p>If you want to include only one level of subpages, you can use</p>
|
||||
|
||||
<pre><code>blog/* and !blog/*/*
|
||||
</code></pre>
|
||||
|
||||
<p>More complex expressions can also be created, by using parentheses for
|
||||
grouping. For example, to match pages in a blog that are tagged with either
|
||||
of two tags, use:</p>
|
||||
|
||||
<pre><code>blog/* and (tagged(foo) or tagged(bar))
|
||||
</code></pre>
|
||||
|
||||
<p>Note that page names in PageSpecs are matched against the absolute
|
||||
filenames of the pages in the wiki, so a pagespec "foo" used on page
|
||||
"a/b" will not match a page named "a/foo" or "a/b/foo". To match
|
||||
relative to the directory of the page containing the pagespec, you can
|
||||
use "./". For example, "./foo" on page "a/b" matches page "a/foo".</p>
|
||||
|
||||
<p>To indicate the name of the page the PageSpec is used in, you can
|
||||
use a single dot. For example, <code>link(.)</code> matches all the pages
|
||||
linking to the page containing the PageSpec.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki/pagespec&t=pagespec" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -103,7 +103,7 @@ msgid ""
|
|||
"be used to improve user navigation in a multi-lingual wiki:"
|
||||
msgstr ""
|
||||
"Si le greffon <a href="http://ikiwiki.info/plugins/po/">po</a> est activé, la syntaxe normale de "
|
||||
"<span class="createlink">PageSpec</span> est développée avec les tests supplémentaires suivants "
|
||||
"<a href="../">PageSpec</a> est développée avec les tests supplémentaires suivants "
|
||||
"qui peuvent améliorer la navigation d'un utilisateur de wiki "
|
||||
"plurilinguistique :"
|
||||
|
||||
|
|
170
ikiwiki/pagespec/po/index.html
Normal file
170
ikiwiki/pagespec/po/index.html
Normal file
|
@ -0,0 +1,170 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>po - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../../../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../../../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../../../favicon-16x16.png">
|
||||
<link rel="manifest" href="../../../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../../../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../../../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../../../">
|
||||
<img alt="ilot.io" src="../../../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../../../index.en.html">Home</a></li>
|
||||
<li><a href="../../../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../../../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p>This wiki has po support <strong>enabled</strong>.</p>
|
||||
|
||||
<p>If the <a href="http://ikiwiki.info/plugins/po/">po</a> plugin is enabled, the regular
|
||||
<a href="../">PageSpec</a> syntax is expanded with the following additional
|
||||
tests that can be used to improve user navigation in a multi-lingual
|
||||
wiki:</p>
|
||||
|
||||
<ul>
|
||||
<li>"<code>lang(LL)</code>" - tests whether a page is written in the language
|
||||
specified as a ISO639-1 (two-letter) language code.</li>
|
||||
<li>"<code>currentlang()</code>" - tests whether a page is written in the same
|
||||
language as the current page.</li>
|
||||
<li>"<code>needstranslation()</code>" - tests whether a page needs translation
|
||||
work. Only slave pages match this PageSpec. A minimum target
|
||||
translation percentage can optionally be passed as an integer
|
||||
parameter: "<code>needstranslation(50)</code>" matches only pages less than 50%
|
||||
translated.</li>
|
||||
</ul>
|
||||
|
||||
<p>Note that every non-po page is considered to be written in
|
||||
<code>po_master_language</code>, as specified in <code>ikiwiki.setup</code>.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../../../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki/pagespec/po&t=po" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
168
ikiwiki/pagespec/sorting/index.html
Normal file
168
ikiwiki/pagespec/sorting/index.html
Normal file
|
@ -0,0 +1,168 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>sorting - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../../../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../../../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../../../favicon-16x16.png">
|
||||
<link rel="manifest" href="../../../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../../../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../../../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../../../">
|
||||
<img alt="ilot.io" src="../../../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../../../index.en.html">Home</a></li>
|
||||
<li><a href="../../../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../../../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p>Some <a href="../../directive/">directives</a> that use
|
||||
<a href="../">PageSpecs</a> allow
|
||||
specifying the order that matching pages are shown in. The following sort
|
||||
orders can be specified using the <code>sort</code> parameter:</p>
|
||||
|
||||
<ul>
|
||||
<li><p><code>age</code> - List pages from the most recently created to the oldest.</p></li>
|
||||
<li><p><code>mtime</code> - List pages with the most recently modified first.</p></li>
|
||||
<li><p><code>title</code> - Order by title (page name), e.g. "z/a a/b a/c"</p></li>
|
||||
<li><p><code>path</code> - Order by page name including parents, e.g. "a/b a/c z/a"</p></li>
|
||||
<li><p><code>meta(title)</code> - Order according to the <code>[[!meta title="foo" sortas="bar"]]</code>
|
||||
or <code>[[!meta title="foo"]]</code> <a href="../../directive/">directive</a>, or the page name if no
|
||||
full title was set. <code>meta(author)</code>, <code>meta(date)</code>, <code>meta(updated)</code>, etc.
|
||||
also work.</p></li>
|
||||
</ul>
|
||||
|
||||
<p>In addition, you can combine several sort orders and/or reverse the order of
|
||||
sorting, with a string like <code>age -title</code> (which would sort by age, then by
|
||||
title in reverse order if two pages have the same age).</p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../../../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki/pagespec/sorting&t=sorting" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
167
ikiwiki/searching/index.html
Normal file
167
ikiwiki/searching/index.html
Normal file
|
@ -0,0 +1,167 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>searching - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
||||
<link rel="manifest" href="../../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../../">
|
||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../../index.en.html">Home</a></li>
|
||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p>This wiki has searching <strong>disabled</strong>.</p>
|
||||
|
||||
<p>If searching is enabled, you can enter search terms in the search field,
|
||||
as you'd expect. There are a few special things you can do to construct
|
||||
more powerful searches.</p>
|
||||
|
||||
<ul>
|
||||
<li>To match a phrase, enclose it in double quotes.</li>
|
||||
<li><code>AND</code> can be used to search for documents containing two expressions.</li>
|
||||
<li><code>OR</code> can be used to search for documents containing either one of
|
||||
two expressions.</li>
|
||||
<li>Parentheses can be used to build up complicated search expressions. For
|
||||
example, "(foo AND bar) OR (me AND you)"</li>
|
||||
<li>Prefix a search term with "-" to avoid it from appearing in the results.
|
||||
For example, "-discussion" will omit "discussion".</li>
|
||||
<li>To search for a page with a given title, use "title:foo".</li>
|
||||
<li>To search for pages that contain a "bar" link, use "link:bar".</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki/searching&t=searching" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -97,13 +97,13 @@ msgstr "\n"
|
|||
#. type: Plain text
|
||||
msgid ""
|
||||
"ikiwiki supports placing pages in a directory hierarchy. For example, this "
|
||||
"page, <span class="createlink">SubPage</span> has some related pages placed under it, like [[SubPage/"
|
||||
"page, <a href="../subpage/">SubPage</a> has some related pages placed under it, like [[SubPage/"
|
||||
"LinkingRules]]. This is a useful way to add some order to your wiki rather "
|
||||
"than just having a great big directory full of pages."
|
||||
msgstr ""
|
||||
"ikiwiki permet de ranger les pages dans une arborescence de répertoires. Par "
|
||||
"exemple cette page, <span class="createlink">SubPage</span>, est liée à des pages placées "
|
||||
"hiérarchiquement sous elle, comme la page <span class="createlink">LinkingRules</span>. C'est "
|
||||
"exemple cette page, <a href="../subpage/">SubPage</a>, est liée à des pages placées "
|
||||
"hiérarchiquement sous elle, comme la page <a href="../subpage/linkingrules/">LinkingRules</a>. C'est "
|
||||
"une façon pratique d'ordonner le wiki au lieu d'avoir un seul gros "
|
||||
"répertoire plein de pages."
|
||||
|
||||
|
|
160
ikiwiki/subpage/index.html
Normal file
160
ikiwiki/subpage/index.html
Normal file
|
@ -0,0 +1,160 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>subpage - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
||||
<link rel="manifest" href="../../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../../">
|
||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../../index.en.html">Home</a></li>
|
||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p>ikiwiki supports placing pages in a directory hierarchy. For example,
|
||||
this page, <span class="selflink">SubPage</span> has some related pages placed under it, like
|
||||
<a href="./linkingrules/">LinkingRules</a>. This is a useful way to add some order to your
|
||||
wiki rather than just having a great big directory full of pages.</p>
|
||||
|
||||
<p>To add a SubPage, just make a subdirectory and put pages in it. For
|
||||
example, this page is subpage.mdwn in this wiki's source, and there is also
|
||||
a subpage subdirectory, which contains subpage/linkingrules.mdwn. Subpages
|
||||
can be nested as deeply as you'd like.</p>
|
||||
|
||||
<p>Linking to and from a SubPage is explained in <a href="./linkingrules/">LinkingRules</a>.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki/subpage&t=subpage" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -95,13 +95,13 @@ msgstr "\n"
|
|||
|
||||
#. type: Plain text
|
||||
msgid ""
|
||||
"To link to or from a <span class="createlink">SubPage</span>, you can normally use a regular "
|
||||
"<span class="createlink">WikiLink</span> that does not contain the name of the parent directory of the "
|
||||
"<span class="createlink">SubPage</span>. Ikiwiki descends the directory hierarchy looking for a page "
|
||||
"To link to or from a <a href="../">SubPage</a>, you can normally use a regular "
|
||||
"<a href="../../wikilink/">WikiLink</a> that does not contain the name of the parent directory of the "
|
||||
"<a href="../">SubPage</a>. Ikiwiki descends the directory hierarchy looking for a page "
|
||||
"that matches your link."
|
||||
msgstr ""
|
||||
"Pour faire un lien depuis ou vers une sous-page (<span class="createlink">SubPage</span>), vous pouvez "
|
||||
"normalement utiliser un <span class="createlink">WikiLink</span> classique qui ne contient pas le nom du "
|
||||
"Pour faire un lien depuis ou vers une sous-page (<a href="../">SubPage</a>), vous pouvez "
|
||||
"normalement utiliser un <a href="../../wikilink/">WikiLink</a> classique qui ne contient pas le nom du "
|
||||
"répertoire parent de la sous-page. Ikiwiki parcourt l'arborescence des "
|
||||
"répertoires pour trouver une page qui corresponde au lien."
|
||||
|
||||
|
@ -122,19 +122,19 @@ msgid ""
|
|||
"currently links to OtherPage, in the root of the wiki, and FooBar/OtherPage "
|
||||
"is created, the link will _change_ to point to FooBar/OtherPage. On the "
|
||||
"other hand, a link from BazBar to \"OtherPage\" would be unchanged by this "
|
||||
"creation of a <span class="createlink">SubPage</span> of FooBar."
|
||||
"creation of a <a href="../">SubPage</a> of FooBar."
|
||||
msgstr ""
|
||||
"Cela signifie que si un lien de FooBar/SomePage vers \"OtherPage\" pointe "
|
||||
"actuellement vers OtherPage à la racine du wiki, et que la page FooBar/"
|
||||
"OtherPage est créée, alors le lien _changera_ pour pointer vers la page "
|
||||
"FooBar/OtherPage. Cependant, un lien de BazBar vers \"OtherPage\" ne serait "
|
||||
"pas impacté par cette création d'une sous-page (<span class="createlink">SubPage</span>) de FooBar."
|
||||
"pas impacté par cette création d'une sous-page (<a href="../">SubPage</a>) de FooBar."
|
||||
|
||||
#. type: Plain text
|
||||
msgid ""
|
||||
"You can also specify a link that contains a directory name, like \"FooBar/"
|
||||
"OtherPage\" to more exactly specify what page to link to. This is the only "
|
||||
"way to link to an unrelated <span class="createlink">SubPage</span>."
|
||||
"way to link to an unrelated <a href="../">SubPage</a>."
|
||||
msgstr ""
|
||||
"Vous pouvez également définir un lien qui contient le nom d'un répertoire, "
|
||||
"comme \"FooBar/OtherPage\" pour spécifier plus précisément vers quelle page "
|
||||
|
|
181
ikiwiki/subpage/linkingrules/index.html
Normal file
181
ikiwiki/subpage/linkingrules/index.html
Normal file
|
@ -0,0 +1,181 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>linkingrules - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../../../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../../../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../../../favicon-16x16.png">
|
||||
<link rel="manifest" href="../../../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../../../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../../../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../../../">
|
||||
<img alt="ilot.io" src="../../../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../../../index.en.html">Home</a></li>
|
||||
<li><a href="../../../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../../../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p>To link to or from a <a href="../">SubPage</a>, you can normally use a regular
|
||||
<a href="../../wikilink/">WikiLink</a> that does not contain the name of the parent directory of
|
||||
the <a href="../">SubPage</a>. Ikiwiki descends the directory hierarchy looking for a
|
||||
page that matches your link.</p>
|
||||
|
||||
<p>For example, if FooBar/SubPage links to "OtherPage", ikiwiki will first
|
||||
prefer pointing the link to FooBar/SubPage/OtherPage if it exists, next
|
||||
to FooBar/OtherPage and finally to OtherPage in the root of the wiki.</p>
|
||||
|
||||
<p>Note that this means that if a link on FooBar/SomePage to "OtherPage"
|
||||
currently links to OtherPage, in the root of the wiki, and FooBar/OtherPage
|
||||
is created, the link will <em>change</em> to point to FooBar/OtherPage. On the
|
||||
other hand, a link from BazBar to "OtherPage" would be unchanged by this
|
||||
creation of a <a href="../">SubPage</a> of FooBar.</p>
|
||||
|
||||
<p>You can also specify a link that contains a directory name, like
|
||||
"FooBar/OtherPage" to more exactly specify what page to link to. This is
|
||||
the only way to link to an unrelated <a href="../">SubPage</a>.</p>
|
||||
|
||||
<p>You can use this to, for example, to link from BazBar to "FooBar/SubPage",
|
||||
or from BazBar/SubPage to "FooBar/SubPage".</p>
|
||||
|
||||
<p>You can also use "/" at the start of a link, to specify exactly which page
|
||||
to link to, when there are multiple pages with similar names and the link
|
||||
goes to the wrong page by default. For example, linking from
|
||||
"FooBar/SubPage" to "/OtherPage" will link to the "OtherPage" in the root
|
||||
of the wiki, even if there is a "FooBar/OtherPage".</p>
|
||||
|
||||
<p>Also, if the wiki is configured with a userdir, you can link to pages
|
||||
within the userdir without specifying a path to them. This is to allow for
|
||||
easy linking to a user's page in the userdir, to sign a comment. These
|
||||
links are checked for last of all.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../../../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki/subpage/linkingrules&t=linkingrules" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
|
@ -97,11 +97,11 @@ msgstr "\n"
|
|||
#. type: Plain text
|
||||
msgid ""
|
||||
"WikiLinks provide easy linking between pages of the wiki. To create a "
|
||||
"<span class="createlink">WikiLink</span>, just put the name of the page to link to in double brackets. "
|
||||
"<a href="../wikilink/">WikiLink</a>, just put the name of the page to link to in double brackets. "
|
||||
"For example `\[[WikiLink]]`."
|
||||
msgstr ""
|
||||
"Un WikiLink est un moyen simple de lier des pages entre elles. Pour créer un "
|
||||
"<span class="createlink">WikiLink</span>, il suffit de mettre le nom d'une page à lier entre double "
|
||||
"<a href="../wikilink/">WikiLink</a>, il suffit de mettre le nom d'une page à lier entre double "
|
||||
"crochets. Par exemple, `\[[WikiLink]]`."
|
||||
|
||||
#. type: Plain text
|
||||
|
@ -115,11 +115,11 @@ msgstr ""
|
|||
|
||||
#. type: Plain text
|
||||
msgid ""
|
||||
"There are some special <span class="createlink">LinkingRules</span> that come into play when "
|
||||
"linking between <span class="createlink">SubPages</span>."
|
||||
"There are some special <a href="../subpage/linkingrules/">LinkingRules</a> that come into play when "
|
||||
"linking between <a href="../subpage/">SubPages</a>."
|
||||
msgstr ""
|
||||
"Quelques règles spéciales, <span class="createlink">LinkingRules</span>, entrent en jeu pour "
|
||||
"lier des sous-pages, <span class="createlink">SubPages</span>."
|
||||
"Quelques règles spéciales, <a href="../subpage/linkingrules/">LinkingRules</a>, entrent en jeu pour "
|
||||
"lier des sous-pages, <a href="../subpage/">SubPages</a>."
|
||||
|
||||
#. type: Plain text
|
||||
msgid ""
|
||||
|
@ -136,11 +136,11 @@ msgstr ""
|
|||
msgid ""
|
||||
"It's also possible to write a WikiLink that uses something other than the "
|
||||
"page name as the link text. For example `\[[foo_bar|SandBox]]` links to the "
|
||||
"SandBox page, but the link will appear like this: <span class="createlink">foo bar</span>."
|
||||
"SandBox page, but the link will appear like this: <a href="../../sandbox/">foo bar</a>."
|
||||
msgstr ""
|
||||
"Il est aussi possible d'écrire un WikiLink dont le texte n'est pas un nom de "
|
||||
"page. Ainsi, `\[[foo_bar|SandBox]]` pointe vers la page SandBox, mais le "
|
||||
"lien apparaît comme ceci : <span class="createlink">foo bar</span>."
|
||||
"lien apparaît comme ceci : <a href="../../sandbox/">foo bar</a>."
|
||||
|
||||
#. type: Plain text
|
||||
msgid ""
|
||||
|
@ -169,7 +169,7 @@ msgstr "Vous pouvez mettre une URL dans un WikiLink pour lier une page externe.
|
|||
#~ msgstr "Directives et WikiLinks"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "ikiwiki has two syntaxes for <span class="createlink">directives</span>. The older syntax "
|
||||
#~ "ikiwiki has two syntaxes for <a href="../directive/">directives</a>. The older syntax "
|
||||
#~ "used spaces to distinguish between directives and wikilinks; as a result, "
|
||||
#~ "with that syntax in use, you cannot use spaces in WikiLinks, and must "
|
||||
#~ "replace spaces with underscores. The newer syntax, enabled with the "
|
||||
|
@ -177,7 +177,7 @@ msgstr "Vous pouvez mettre une URL dans un WikiLink pour lier une page externe.
|
|||
#~ "with `!`, and thus does not prevent links with spaces. Future versions "
|
||||
#~ "of ikiwiki will turn this option on by default."
|
||||
#~ msgstr ""
|
||||
#~ "Il existe deux syntaxes pour les <span class="createlink">directives</span>. L'ancienne "
|
||||
#~ "Il existe deux syntaxes pour les <a href="../directive/">directives</a>. L'ancienne "
|
||||
#~ "syntaxe se sert d'espaces pour différencier les directives et les "
|
||||
#~ "Wikilinks. Ainsi, avec cette syntaxe, vous ne pouvez pas utiliser "
|
||||
#~ "d'espaces dans les WikiLinks et vous devez les remplacer par des tirets "
|
||||
|
|
177
ikiwiki/wikilink/index.html
Normal file
177
ikiwiki/wikilink/index.html
Normal file
|
@ -0,0 +1,177 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-100">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||
<meta name="robots" content="noindex, follow" />
|
||||
|
||||
<title>wikilink - ilot.io</title>
|
||||
|
||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
||||
*and* operating systems each want their own little precious
|
||||
snowflake just for a frigging icon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
||||
<link rel="manifest" href="../../site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ikiwiki CSS -->
|
||||
<link href="../../css/style.css" rel="stylesheet" />
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="../../css/bootstrap.local.css" rel="stylesheet" />
|
||||
|
||||
<!-- Custom styles for derivatives -->
|
||||
|
||||
<link rel="stylesheet" href="../../css/local.css" type="text/css" />
|
||||
|
||||
|
||||
</head>
|
||||
<body class="d-flex flex-column h-100">
|
||||
<header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light border">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand me-auto" href="../../">
|
||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||
<li><a href="../../index.en.html">Home</a></li>
|
||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
||||
<li><a href="../../join/index.en.html">Join</a></li>
|
||||
<li>
|
||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
||||
Your Files
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="flex-shrink-0">
|
||||
<div class="container" id="content">
|
||||
<p>WikiLinks provide easy linking between pages of the wiki. To create a
|
||||
<span class="selflink">WikiLink</span>, just put the name of the page to link to in double brackets.
|
||||
For example <code>[[WikiLink]]</code>.</p>
|
||||
|
||||
<p>If you ever need to write something like <code>[[WikiLink]]</code> without creating a
|
||||
wikilink, just prefix it with a <code>\</code>, like <code>\[[WikiLink]]</code>.</p>
|
||||
|
||||
<p>There are some special <a href="../subpage/linkingrules/">LinkingRules</a> that come into play when
|
||||
linking between <a href="../subpage/">SubPages</a>.</p>
|
||||
|
||||
<p>WikiLinks are matched with page names in a case-insensitive manner, so you
|
||||
don't need to worry about getting the case the same, and can capitalise
|
||||
links at the start of a sentence, and so on.</p>
|
||||
|
||||
<p>It's also possible to write a WikiLink that uses something other than the page
|
||||
name as the link text. For example <code>[[foo_bar|SandBox]]</code> links to the SandBox
|
||||
page, but the link will appear like this: <a href="../../sandbox/">foo bar</a>.</p>
|
||||
|
||||
<p>To link to an anchor inside a page, you can use something like
|
||||
<code>[[WikiLink#foo]]</code> .</p>
|
||||
|
||||
<p>If the file linked to by a WikiLink looks like an image, it will
|
||||
be displayed inline on the page.</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>You can also put an url in a WikiLink, to link to an external page.
|
||||
Email addresses can also be used to generate a mailto link.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- /container -->
|
||||
</main>
|
||||
|
||||
<footer class="footer mt-auto py-2 bg-light" role="contentinfo">
|
||||
<div class="container">
|
||||
<p class="text-muted">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<h5>Support</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://support.ilot.io/en/hc/706927618">FAQs</a></li>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects/3">Known issues</a></li>
|
||||
<li><a href="https://support.ilot.io/help/706927618">Support ticket</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>Contribute</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../join/index.en.html">Become a member</a>
|
||||
<li><a href="https://forge.ilot.io/ilot/-/projects">Git Forge</a></li>
|
||||
<li><a href="https://wiki.ilot.io">Wiki</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h5>About us</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="../../meta/code-of-conduct/">Code of conduct</a></li>
|
||||
<li><a href="../../meta/license/">Licenses</a></li>
|
||||
<li><a href="https://status.ilot.io/status/ilot">Network Status</a></li>
|
||||
</div>
|
||||
<div class="col-sm-3 listmonk-form">
|
||||
<h5>News</h5>
|
||||
|
||||
<p>Subscribe to our <a href="https://notif.ilot.io/archive">newsletter</a></p>
|
||||
|
||||
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||
|
||||
<input type="hidden" name="nonce" />
|
||||
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
|
||||
<div class="t">
|
||||
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||
</div>
|
||||
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- TODO: Find other ways to setup analytics
|
||||
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
|
||||
<noscript>
|
||||
<img src="https://analytics.anarc.at/count?p=ikiwiki/wikilink&t=wikilink" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||
</noscript>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue