Compare commits
No commits in common. "main" and "public" have entirely different histories.
146 changed files with 14284 additions and 956 deletions
|
@ -1,33 +0,0 @@
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types: [ closed, merged ]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
cleanup:
|
|
||||||
runs-on: x86_64
|
|
||||||
container:
|
|
||||||
image: alpine:latest
|
|
||||||
steps:
|
|
||||||
- name: Environment setup
|
|
||||||
run: |
|
|
||||||
apk add git nodejs jq coreutils curl tree gawk grep
|
|
||||||
- name: Public repo pull
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
token: ${{ secrets.PAGES_TOKEN }}
|
|
||||||
ref: public
|
|
||||||
- name: Render website
|
|
||||||
run: |
|
|
||||||
export GITHUB_PR_NAME=$(grep -l ${{ github.sha }} previews/*/git_sha.txt | awk -F '/' '{print $2}')
|
|
||||||
echo $GITHUB_PR_NAME >> $GITHUB_ENV
|
|
||||||
rm -rf previews/$GITHUB_PR_NAME || true
|
|
||||||
cd previews
|
|
||||||
tree -d -H '.' -L 1 --noreport --charset utf-8 -T "Versions" -o index.html
|
|
||||||
- name: Website upload
|
|
||||||
run: |
|
|
||||||
git config user.name "forgejo-actions[bot]"
|
|
||||||
git config user.email "dev@ayakael.net"
|
|
||||||
git add .
|
|
||||||
git commit -m "Clean-up $GITHUB_PR_NAME"
|
|
||||||
git push
|
|
|
@ -1,42 +0,0 @@
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- 'main'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
render:
|
|
||||||
runs-on: x86_64
|
|
||||||
container:
|
|
||||||
image: alpine:latest
|
|
||||||
steps:
|
|
||||||
- name: Environment setup
|
|
||||||
run: |
|
|
||||||
apk add git ikiwiki po4a perl-yaml-tiny tree nodejs
|
|
||||||
- name: Repo pull
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 1
|
|
||||||
token: ${{ secrets.PAGES_TOKEN }}
|
|
||||||
- name: Public repo pull
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
ref: public
|
|
||||||
path: public
|
|
||||||
token: ${{ secrets.PAGES_TOKEN }}
|
|
||||||
- name: Render website
|
|
||||||
run: ikiwiki --setup ikiwiki.setup
|
|
||||||
- name: Website upload
|
|
||||||
run: |
|
|
||||||
rm -Rf public/.forgejo
|
|
||||||
mkdir -p public/.forgejo/workflows
|
|
||||||
cp .forgejo/workflows/deploy.yaml public/.forgejo/workflows/.
|
|
||||||
git log -1 --pretty=%B > commit.txt
|
|
||||||
cd public
|
|
||||||
date > generated.txt
|
|
||||||
# Note: the following account information will not work on GHES
|
|
||||||
git config user.name "forgejo-actions[bot]"
|
|
||||||
git config user.email "dev@ayakael.net"
|
|
||||||
git add .
|
|
||||||
git commit -F ../commit.txt
|
|
||||||
git push
|
|
|
@ -1,49 +0,0 @@
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types: [ assigned, opened, synchronize, reopened ]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
preview:
|
|
||||||
runs-on: x86_64
|
|
||||||
container:
|
|
||||||
image: alpine:latest
|
|
||||||
steps:
|
|
||||||
- name: Environment setup
|
|
||||||
run: |
|
|
||||||
apk add git ikiwiki po4a perl-yaml-tiny tree nodejs jq coreutils curl
|
|
||||||
echo "GITHUB_PR_NAME=$(curl -Ls ${{ github.server_url }}/api/v1/repos/${{ github.repository }}/pulls/${{ github.ref_name }} | jq .title | tr ' ' '-' | tr -d ':' | tr -d '"' | tr '[:upper:]' '[:lower:]' | tr '/' '-')" >> $GITHUB_ENV
|
|
||||||
- name: Repo pull
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 1
|
|
||||||
token: ${{ secrets.PAGES_TOKEN }}
|
|
||||||
- name: Public repo pull
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
ref: public
|
|
||||||
path: public
|
|
||||||
token: ${{ secrets.PAGES_TOKEN }}
|
|
||||||
- name: Render website
|
|
||||||
run: |
|
|
||||||
rm -rf public/previews/$GITHUB_PR_NAME || true
|
|
||||||
mkdir -p public/previews/$GITHUB_PR_NAME
|
|
||||||
sed -i "s|destdir.*|destdir: ./public/previews/$GITHUB_PR_NAME|" ikiwiki.setup
|
|
||||||
ikiwiki --setup ikiwiki.setup
|
|
||||||
cd public/previews
|
|
||||||
tree -d -H '.' -L 1 --noreport --charset utf-8 -T "Versions" -o index.html
|
|
||||||
- name: Website upload
|
|
||||||
run: |
|
|
||||||
rm -Rf public/.forgejo
|
|
||||||
mkdir -p public/.forgejo/workflows
|
|
||||||
cp .forgejo/workflows/deploy.yaml public/.forgejo/workflows/.
|
|
||||||
git log -1 --pretty=%B > commit.txt
|
|
||||||
cd public
|
|
||||||
date > previews/$GITHUB_PR_NAME/generated.txt
|
|
||||||
echo ${{ github.sha }} > previews/$GITHUB_PR_NAME/git_sha.txt
|
|
||||||
# Note: the following account information will not work on GHES
|
|
||||||
git config user.name "forgejo-actions[bot]"
|
|
||||||
git config user.email "dev@ayakael.net"
|
|
||||||
git add .
|
|
||||||
git commit -F ../commit.txt
|
|
||||||
git push
|
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +0,0 @@
|
||||||
.ikiwiki
|
|
||||||
public/
|
|
||||||
tools/http-server/
|
|
|
@ -1,136 +0,0 @@
|
||||||
# Bootstrap features
|
|
||||||
|
|
||||||
This page will contain a display of various features from Bootstrap.
|
|
||||||
They require some manual HTML tags.
|
|
||||||
Note that not all Markdown parsers allow Markdown markup inside all HTML tags.
|
|
||||||
In the case of ikiwiki, adding `markdown="1"` to `div` elements usually allows markup to be used inside them.
|
|
||||||
For a full list of features provided by Bootstrap 4, go to <http://v4-alpha.getbootstrap.com/getting-started/introduction/>.
|
|
||||||
|
|
||||||
<div class="jumbotron" markdown="1">
|
|
||||||
## Jumbotron
|
|
||||||
|
|
||||||
It's big and in your face.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
You can still use Markdown syntax inside HTML blocks, if you are careful.
|
|
||||||
|
|
||||||
<a class="btn btn-primary btn-large" href="#">Button</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
## Labels <span class="label label-info">Hi!</span>
|
|
||||||
|
|
||||||
Span elements work inside Markdown headings.
|
|
||||||
|
|
||||||
<div class="card card-block" markdown="1">
|
|
||||||
## Cards
|
|
||||||
|
|
||||||
Put a border with soft round corners around your content.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
## Card decks
|
|
||||||
|
|
||||||
These require some more work.
|
|
||||||
You can use the `\[[!img]]` directive, but make sure to add `class="card-img-top"` or `class="card-img-bottom"` where appropriate.
|
|
||||||
For images in cards to work properly, they need to have their width forced to 100% of their container.
|
|
||||||
This is done in the `style.css` file that comes with ikistrap.
|
|
||||||
|
|
||||||
Another issue is that due to all the nested HTML tags, even with `markdown="1"`, Markdown markup does not get parsed anymore.
|
|
||||||
|
|
||||||
<div class="card-deck">
|
|
||||||
<div class="card-deck-wrapper">
|
|
||||||
<div class="card">
|
|
||||||
[[!img Lemonshark.jpg alt="Lemon shark" class="card-img-top"]]
|
|
||||||
<div class="card-block">
|
|
||||||
<p class="card-text">
|
|
||||||
A lemon shark and his little friends are out for a swim.
|
|
||||||
</p>
|
|
||||||
<p><a href="#" class="btn btn-danger">Escape</a></p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="card">
|
|
||||||
[[!img Anemones.jpg alt="Anemones" class="card-img-top"]]
|
|
||||||
<div class="card-block">
|
|
||||||
<p class="card-text">
|
|
||||||
Anemones look really nice and are much less dangerous than lemon sharks.
|
|
||||||
</p>
|
|
||||||
<p><a href="#" class="btn btn-success">Admire</a></p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="card">
|
|
||||||
[[!img Sea_Star.jpg alt="Sea star" class="card-img-top"]]
|
|
||||||
<div class="card-block">
|
|
||||||
<p class="card-text">
|
|
||||||
Sea stars are also less dangerous than lemon sharks, but they are slightly more dangerous than
|
|
||||||
anemones, <em>especially</em> when stepped on.
|
|
||||||
</p>
|
|
||||||
<p><a href="#" class="btn btn-warning">Sidestep</a></p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
## Card columns
|
|
||||||
|
|
||||||
These can be created by writing the outer card-columns `div` elements yourself,
|
|
||||||
and using `\[[!inline]]` with `template="simplecard"` to generate the cards.
|
|
||||||
|
|
||||||
<div class="card-columns">
|
|
||||||
[[!inline pages="sample_text/* and !*/Discussion" template="simplecard" feeds="no"]]
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
## Carousel
|
|
||||||
|
|
||||||
These can be created by writing the outer two carousel `div` elements yourself,
|
|
||||||
and using `\[[!inline]]` with `template="carouselpage"` to generate the carousel items.
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<div id="carousel-example-pages" class="carousel slide" data-ride="carousel">
|
|
||||||
<ol class="carousel-indicators"></ol>
|
|
||||||
<div class="carousel-inner" role="listbox">
|
|
||||||
[[!inline pages="sample_text/* and !*/Discussion" template="carouselpage" feeds="no"]]
|
|
||||||
</div>
|
|
||||||
<a class="left carousel-control" href="#carousel-example-pages" role="button" data-slide="prev">
|
|
||||||
<span class="icon-prev" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Previous</span>
|
|
||||||
</a>
|
|
||||||
<a class="right carousel-control" href="#carousel-example-pages" role="button" data-slide="next">
|
|
||||||
<span class="icon-next" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Next</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
If you only want to show images, use `template="carouselimage"`, and select your images directly with the `pages` parameter.
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<div id="carousel-example-images" class="carousel slide" data-ride="carousel">
|
|
||||||
<div class="carousel-inner" role="listbox">
|
|
||||||
[[!inline pages="*.jpg" template="carouselimage" feeds="no"]]
|
|
||||||
</div>
|
|
||||||
<a class="left carousel-control" href="#carousel-example-images" role="button" data-slide="prev">
|
|
||||||
<span class="icon-prev" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Previous</span>
|
|
||||||
</a>
|
|
||||||
<a class="right carousel-control" href="#carousel-example-images" role="button" data-slide="next">
|
|
||||||
<span class="icon-next" aria-hidden="true"></span>
|
|
||||||
<span class="sr-only">Next</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
## Progress bars
|
|
||||||
|
|
||||||
Ikistrap also provides a progress directive which works in the same way as the progress plugin,
|
|
||||||
but it also allows an extra class to be specified to change the style per bar.
|
|
||||||
|
|
||||||
[[!progress totalpages="* and !*/Discussion" donepages="*/Discussion"]]
|
|
||||||
[[!progress percent="33%"]]
|
|
||||||
[[!progress percent="66%" class="progress-success progress-striped"]]
|
|
||||||
|
|
||||||
## Other stuff
|
|
||||||
|
|
||||||
Goes here.
|
|
||||||
|
|
273
Bootstrap_features/index.html
Normal file
273
Bootstrap_features/index.html
Normal file
|
@ -0,0 +1,273 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>Bootstrap features - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<h1>Bootstrap features</h1>
|
||||||
|
|
||||||
|
<p>This page will contain a display of various features from Bootstrap.
|
||||||
|
They require some manual HTML tags.
|
||||||
|
Note that not all Markdown parsers allow Markdown markup inside all HTML tags.
|
||||||
|
In the case of ikiwiki, adding <code>markdown="1"</code> to <code>div</code> elements usually allows markup to be used inside them.
|
||||||
|
For a full list of features provided by Bootstrap 4, go to <a href="http://v4-alpha.getbootstrap.com/getting-started/introduction/">http://v4-alpha.getbootstrap.com/getting-started/introduction/</a>.</p>
|
||||||
|
|
||||||
|
<div class="jumbotron">
|
||||||
|
<h2>Jumbotron</h2>
|
||||||
|
|
||||||
|
<p>It's big and in your face.</p>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<p>You can still use Markdown syntax inside HTML blocks, if you are careful.</p>
|
||||||
|
|
||||||
|
<p><a class="btn btn-primary btn-large" href="#">Button</a></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2>Labels <span class="label label-info">Hi!</span></h2>
|
||||||
|
|
||||||
|
<p>Span elements work inside Markdown headings.</p>
|
||||||
|
|
||||||
|
<div class="card card-block">
|
||||||
|
<h2>Cards</h2>
|
||||||
|
|
||||||
|
<p>Put a border with soft round corners around your content.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2>Card decks</h2>
|
||||||
|
|
||||||
|
<p>These require some more work.
|
||||||
|
You can use the <code>[[!img ]]</code> directive, but make sure to add <code>class="card-img-top"</code> or <code>class="card-img-bottom"</code> where appropriate.
|
||||||
|
For images in cards to work properly, they need to have their width forced to 100% of their container.
|
||||||
|
This is done in the <code>style.css</code> file that comes with ikistrap.</p>
|
||||||
|
|
||||||
|
<p>Another issue is that due to all the nested HTML tags, even with <code>markdown="1"</code>, Markdown markup does not get parsed anymore.</p>
|
||||||
|
|
||||||
|
<div class="card-deck">
|
||||||
|
<div class="card-deck-wrapper">
|
||||||
|
<div class="card">
|
||||||
|
[[!img <span class="error">Error: Image::Magick is not installed</span>]]
|
||||||
|
<div class="card-block">
|
||||||
|
<p class="card-text">
|
||||||
|
A lemon shark and his little friends are out for a swim.
|
||||||
|
</p>
|
||||||
|
<p><a href="#" class="btn btn-danger">Escape</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
[[!img <span class="error">Error: Image::Magick is not installed</span>]]
|
||||||
|
<div class="card-block">
|
||||||
|
<p class="card-text">
|
||||||
|
Anemones look really nice and are much less dangerous than lemon sharks.
|
||||||
|
</p>
|
||||||
|
<p><a href="#" class="btn btn-success">Admire</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
[[!img <span class="error">Error: Image::Magick is not installed</span>]]
|
||||||
|
<div class="card-block">
|
||||||
|
<p class="card-text">
|
||||||
|
Sea stars are also less dangerous than lemon sharks, but they are slightly more dangerous than
|
||||||
|
anemones, <em>especially</em> when stepped on.
|
||||||
|
</p>
|
||||||
|
<p><a href="#" class="btn btn-warning">Sidestep</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2>Card columns</h2>
|
||||||
|
|
||||||
|
<p>These can be created by writing the outer card-columns <code>div</code> elements yourself,
|
||||||
|
and using <code>[[!inline ]]</code> with <code>template="simplecard"</code> to generate the cards.</p>
|
||||||
|
|
||||||
|
<div class="card-columns">
|
||||||
|
[[!inline <span class="error">Error: failed to process template simplecard.tmpl: template simplecard.tmpl not found </span>]]
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2>Carousel</h2>
|
||||||
|
|
||||||
|
<p>These can be created by writing the outer two carousel <code>div</code> elements yourself,
|
||||||
|
and using <code>[[!inline ]]</code> with <code>template="carouselpage"</code> to generate the carousel items.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<div id="carousel-example-pages" class="carousel slide" data-ride="carousel">
|
||||||
|
<ol class="carousel-indicators"></ol>
|
||||||
|
<div class="carousel-inner" role="listbox">
|
||||||
|
[[!inline <span class="error">Error: failed to process template carouselpage.tmpl: template carouselpage.tmpl not found </span>]]
|
||||||
|
</div>
|
||||||
|
<a class="left carousel-control" href="#carousel-example-pages" role="button" data-slide="prev">
|
||||||
|
<span class="icon-prev" aria-hidden="true"></span>
|
||||||
|
<span class="sr-only">Previous</span>
|
||||||
|
</a>
|
||||||
|
<a class="right carousel-control" href="#carousel-example-pages" role="button" data-slide="next">
|
||||||
|
<span class="icon-next" aria-hidden="true"></span>
|
||||||
|
<span class="sr-only">Next</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>If you only want to show images, use <code>template="carouselimage"</code>, and select your images directly with the <code>pages</code> parameter.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<div id="carousel-example-images" class="carousel slide" data-ride="carousel">
|
||||||
|
<div class="carousel-inner" role="listbox">
|
||||||
|
[[!inline <span class="error">Error: failed to process template carouselimage.tmpl: template carouselimage.tmpl not found </span>]]
|
||||||
|
</div>
|
||||||
|
<a class="left carousel-control" href="#carousel-example-images" role="button" data-slide="prev">
|
||||||
|
<span class="icon-prev" aria-hidden="true"></span>
|
||||||
|
<span class="sr-only">Previous</span>
|
||||||
|
</a>
|
||||||
|
<a class="right carousel-control" href="#carousel-example-images" role="button" data-slide="next">
|
||||||
|
<span class="icon-next" aria-hidden="true"></span>
|
||||||
|
<span class="sr-only">Next</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2>Progress bars</h2>
|
||||||
|
|
||||||
|
<p>Ikistrap also provides a progress directive which works in the same way as the progress plugin,
|
||||||
|
but it also allows an extra class to be specified to change the style per bar.</p>
|
||||||
|
|
||||||
|
<div class="progress">
|
||||||
|
<div class="progress-done" style="width: 0%">0%</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="progress">
|
||||||
|
<div class="progress-done" style="width: 33%">33%</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="progress">
|
||||||
|
<div class="progress-done" style="width: 66%">66%</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2>Other stuff</h2>
|
||||||
|
|
||||||
|
<p>Goes here.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:06Z" class="dt-published">Tue Sep 17 19:04:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:06Z">Tue Sep 17 19:04:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=Bootstrap_features&t=Bootstrap%20features" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,10 +0,0 @@
|
||||||
# Calendar
|
|
||||||
|
|
||||||
This is an example of the ikiwiki calendar function.
|
|
||||||
Here is a monthly calendar:
|
|
||||||
|
|
||||||
[[!calendar type="month"]]
|
|
||||||
|
|
||||||
And this is a yearly calendar:
|
|
||||||
|
|
||||||
[[!calendar type="year"]]
|
|
142
Calendars/index.html
Normal file
142
Calendars/index.html
Normal file
|
@ -0,0 +1,142 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>Calendars - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<h1>Calendar</h1>
|
||||||
|
|
||||||
|
<p>This is an example of the ikiwiki calendar function.
|
||||||
|
Here is a monthly calendar:</p>
|
||||||
|
|
||||||
|
<p>[[!calendar type="month"]]</p>
|
||||||
|
|
||||||
|
<p>And this is a yearly calendar:</p>
|
||||||
|
|
||||||
|
<p>[[!calendar type="year"]]</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:06Z" class="dt-published">Tue Sep 17 19:04:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:06Z">Tue Sep 17 19:04:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=Calendars&t=Calendars" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,3 +0,0 @@
|
||||||
# Comments
|
|
||||||
|
|
||||||
This is an example of a page where comments are allowed.
|
|
135
Comments/index.html
Normal file
135
Comments/index.html
Normal file
|
@ -0,0 +1,135 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>Comments - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<h1>Comments</h1>
|
||||||
|
|
||||||
|
<p>This is an example of a page where comments are allowed.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:06Z" class="dt-published">Tue Sep 17 19:04:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:06Z">Tue Sep 17 19:04:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=Comments&t=Comments" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,9 +0,0 @@
|
||||||
# Inline pages
|
|
||||||
|
|
||||||
Here is an example of inline pages using the default inlining theme:
|
|
||||||
|
|
||||||
[[!inline pages="sample_text/* and !*/Discussion" reverse="yes" limit="3"]]
|
|
||||||
|
|
||||||
Here is an example of inlining with actions enabled:
|
|
||||||
|
|
||||||
[[!inline pages="sample_text/* and !*/Discussion" reverse="yes" skip="3" limit="2" actions="1"]]
|
|
343
Inline_pages/index.html
Normal file
343
Inline_pages/index.html
Normal file
|
@ -0,0 +1,343 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>Inline pages - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<h1>Inline pages</h1>
|
||||||
|
|
||||||
|
<p>Here is an example of inline pages using the default inlining theme:</p>
|
||||||
|
|
||||||
|
<div class="feedlink">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<article class="inlinepage">
|
||||||
|
|
||||||
|
<section class="inlineheader">
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
|
||||||
|
<a href="../sample_text/Sed_eget/">Sed eget</a>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="inlinecontent">
|
||||||
|
<p>Sed eget turpis a pede tempor malesuada. Vivamus quis mi at leo pulvinar hendrerit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque aliquet lacus vitae pede. Nullam mollis dolor ac nisi. Phasellus sit amet urna. Praesent pellentesque sapien sed lacus. Donec lacinia odio in odio. In sit amet elit. Maecenas gravida interdum urna. Integer pretium, arcu vitae imperdiet facilisis, elit tellus tempor nisi, vel feugiat ante velit sit amet mauris. Vivamus arcu. Integer pharetra magna ac lacus. Aliquam vitae sapien in nibh vehicula auctor. Suspendisse leo mauris, pulvinar sed, tempor et, consequat ac, lacus. Proin velit. Nulla semper lobortis mauris. Duis urna erat, ornare et, imperdiet eu, suscipit sit amet, massa. Nulla nulla nisi, pellentesque at, egestas quis, fringilla eu, diam.</p>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="inlinefooter">
|
||||||
|
|
||||||
|
<span class="pagedate">
|
||||||
|
Posted <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
<article class="inlinepage">
|
||||||
|
|
||||||
|
<section class="inlineheader">
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
|
||||||
|
<a href="../sample_text/Nulla_facilisi/">Nulla facilisi</a>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="inlinecontent">
|
||||||
|
<p>Nulla facilisi. Nunc volutpat. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Ut sit amet orci vel mauris blandit vehicula. Nullam quis enim. Integer dignissim viverra velit. Curabitur in odio. In hac habitasse platea dictumst. Ut consequat, tellus eu volutpat varius, justo orci elementum dolor, sed imperdiet nulla tellus ut diam. Vestibulum ipsum ante, malesuada quis, tempus ac, placerat sit amet, elit.</p>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="inlinefooter">
|
||||||
|
|
||||||
|
<span class="pagedate">
|
||||||
|
Posted <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="tags">
|
||||||
|
Tags:
|
||||||
|
|
||||||
|
<span class="createlink">Cicero</span>
|
||||||
|
|
||||||
|
<span class="createlink">Latin</span>
|
||||||
|
|
||||||
|
<span class="createlink">typesetting</span>
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
<article class="inlinepage">
|
||||||
|
|
||||||
|
<section class="inlineheader">
|
||||||
|
|
||||||
|
<span class="author">
|
||||||
|
|
||||||
|
Cicero
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
|
||||||
|
<a href="../sample_text/Lorem_ipsum/">Lorem ipsum</a>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="inlinecontent">
|
||||||
|
<p>[[!meta <span class="error">Error: cannot parse date/time: 45 B.C.</span>]]</p>
|
||||||
|
|
||||||
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed at ante. Mauris eleifend, quam a vulputate dictum, massa quam dapibus leo, eget vulputate orci purus ut lorem. In fringilla mi in ligula. Pellentesque aliquam quam vel dolor. Nunc adipiscing. Sed quam odio, tempus ac, aliquam molestie, varius ac, tellus. Vestibulum ut nulla aliquam risus rutrum interdum. Pellentesque lorem. Curabitur sit amet erat quis risus feugiat viverra. Pellentesque augue justo, sagittis et, lacinia at, venenatis non, arcu. Nunc nec libero. In cursus dictum risus. Etiam tristique nisl a nulla. Ut a orci. Curabitur dolor nunc, egestas at, accumsan at, malesuada nec, magna.</p>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="inlinefooter">
|
||||||
|
|
||||||
|
<span class="pagedate">
|
||||||
|
Posted <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
<p>Here is an example of inlining with actions enabled:</p>
|
||||||
|
|
||||||
|
<div class="feedlink">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<article class="inlinepage">
|
||||||
|
|
||||||
|
<section class="inlineheader">
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
|
||||||
|
<a href="../sample_text/Donec_semper/">Donec semper</a>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="inlinecontent">
|
||||||
|
<p>Donec semper, sem nec tristique tempus, justo neque commodo nisl, ut gravida sem tellus suscipit nunc. Aliquam erat volutpat. Ut tincidunt pretium elit. Aliquam pulvinar. Nulla cursus. Suspendisse potenti. Etiam condimentum hendrerit felis. Duis iaculis aliquam enim. Donec dignissim augue vitae orci. Curabitur luctus felis a metus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In varius neque at enim. Suspendisse massa nulla, viverra in, bibendum vitae, tempor quis, lorem.</p>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="inlinefooter">
|
||||||
|
|
||||||
|
<span class="pagedate">
|
||||||
|
Posted <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
<article class="inlinepage">
|
||||||
|
|
||||||
|
<section class="inlineheader">
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
|
||||||
|
<a href="../sample_text/Donec_dapibus/">Donec dapibus</a>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="inlinecontent">
|
||||||
|
<p>Donec dapibus orci sit amet elit. Maecenas rutrum ultrices lectus. Aliquam suscipit, lacus a iaculis adipiscing, eros orci pellentesque nisl, non pharetra dolor urna nec dolor. Integer cursus dolor vel magna. Integer ultrices feugiat sem. Proin nec nibh. Duis eu dui quis nunc sagittis lobortis. Fusce pharetra, enim ut sodales luctus, lectus arcu rhoncus purus, in fringilla augue elit vel lacus. In hac habitasse platea dictumst. Aliquam erat volutpat. Fusce iaculis elit id tellus. Ut accumsan malesuada turpis. Suspendisse potenti. Vestibulum lacus augue, lobortis mattis, laoreet in, varius at, nisi. Nunc gravida. Phasellus faucibus. In hac habitasse platea dictumst. Integer tempor lacus eget lectus. Praesent fringilla augue fringilla dui.</p>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="inlinefooter">
|
||||||
|
|
||||||
|
<span class="pagedate">
|
||||||
|
Posted <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:06Z" class="dt-published">Tue Sep 17 19:04:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:06Z">Tue Sep 17 19:04:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=Inline_pages&t=Inline%20pages" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
81
README.md
81
README.md
|
@ -1,82 +1,3 @@
|
||||||
# ayakael.net
|
# ayakael.net
|
||||||
Upstream: https://ayakael.net/forge/ayakael.net/actions
|
|
||||||
|
|
||||||
![Build Status](https://ayakael.net/forge/ayakael.net/badges/workflows/pages.yaml/badge.svg)
|
This branch is the output of ikiwiki, please do not modify manually.
|
||||||
![Push Status](https://ayakael.net/forge/ayakael.net/badges/workflows/deploy.yaml/badge.svg)
|
|
||||||
|
|
||||||
## Forgejo Actions
|
|
||||||
|
|
||||||
This project's static Pages are built by Forgejo Actions, following the steps
|
|
||||||
defined in [`.forgejo/workflows/pages.yaml`](.forgejo/workflows/pages.yaml).
|
|
||||||
That builds this website using ikiwiki, and pushes the build artifacts to the
|
|
||||||
`public` branch.
|
|
||||||
|
|
||||||
The `public` branch has its own workflow following steps defined in
|
|
||||||
[`forgejo/workflows/deploy.yaml`](https://ayakael.net/forge/ayakael.net/src/branch/public/.forgejo/workflows/deploy.yaml)
|
|
||||||
that uploads the artifacts to a remote HTTP server for deployment in
|
|
||||||
production. This workflow is automatically updated from `main` so that `public`
|
|
||||||
should never be manually modified.
|
|
||||||
|
|
||||||
The deployment is done by a simple remote git push via SSH to a non-bare repo
|
|
||||||
where `git config receive.denyCurrentBranch` is set as `updateInstead`. This
|
|
||||||
allows this repo to be checked out as `public`, allowing it to be a root for
|
|
||||||
your favorite HTTP server.
|
|
||||||
|
|
||||||
The following secrets are expected to be set for operation:
|
|
||||||
* PAGES_PRIVKEY: SSH private key that is used to push to the HTTP server's git
|
|
||||||
repo
|
|
||||||
* PAGES_TOKEN: Forgejo application token used to push to `public` branch.
|
|
||||||
|
|
||||||
The following variables are expected to be set for operation:
|
|
||||||
* PAGES_TARGET: SSH target for HTTP server's git repo, following this format:
|
|
||||||
user@example.net:/path/to/http/repo
|
|
||||||
|
|
||||||
## Building locally
|
|
||||||
|
|
||||||
To work locally with this project, you'll have to follow the steps below:
|
|
||||||
|
|
||||||
1. Fork, clone or download this project
|
|
||||||
1. Install ikiwiki:
|
|
||||||
* [mac][]
|
|
||||||
* [linux][]
|
|
||||||
* [source][]
|
|
||||||
1. Generate the website: `ikiwiki --setup ikiwiki.setup`
|
|
||||||
1. Start http-server: `./test-server.sh`
|
|
||||||
1. Preview your project: open 127.0.0.1:8080 in your browser
|
|
||||||
|
|
||||||
Read more at ikiwiki's [documentation][].
|
|
||||||
|
|
||||||
## Contributing
|
|
||||||
|
|
||||||
1. Fork the main ayakael.net repo.
|
|
||||||
|
|
||||||
2. Checkout the forked repository.
|
|
||||||
|
|
||||||
- `git clone ssh://git@ayakael.net/$USER/ayakael.net`
|
|
||||||
- `cd ayakael.net`
|
|
||||||
|
|
||||||
3. Make your changes.
|
|
||||||
|
|
||||||
4. Do local build.
|
|
||||||
|
|
||||||
- `ikiwiki --setup ikiwiki.setup`
|
|
||||||
|
|
||||||
5. Fix any errors that come up and rebuild until it works locally.
|
|
||||||
|
|
||||||
6. Commit the changes to the git repo in a git branch
|
|
||||||
|
|
||||||
- `git checkout -b <name>`
|
|
||||||
- `git add` changes
|
|
||||||
- `git commit -m 'content/index: descriptive description'`
|
|
||||||
- `git push`
|
|
||||||
|
|
||||||
7. Create a merge request with your changes by following link in server response.
|
|
||||||
|
|
||||||
8. Once the tests in the merge-request pass, and reviewers are happy, your changes
|
|
||||||
will be merged.
|
|
||||||
|
|
||||||
[ikiwiki]: https://ikiwiki.info/
|
|
||||||
[source]: https://ikiwiki.info/install/
|
|
||||||
[linux]: https://ikiwiki.info/setup/
|
|
||||||
[mac]: https://ikiwiki.info/tips/ikiwiki_on_mac_os_x/
|
|
||||||
[documentation]: https://ikiwiki.info/
|
|
||||||
|
|
214
README/index.html
Normal file
214
README/index.html
Normal file
|
@ -0,0 +1,214 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>README - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<h1>ayakael.net</h1>
|
||||||
|
|
||||||
|
<p>Upstream: https://ayakael.net/forge/ayakael.net/actions</p>
|
||||||
|
|
||||||
|
<p><img src="https://ayakael.net/forge/ayakael.net/badges/workflows/pages.yaml/badge.svg" alt="Build Status" />
|
||||||
|
<img src="https://ayakael.net/forge/ayakael.net/badges/workflows/deploy.yaml/badge.svg" alt="Push Status" /></p>
|
||||||
|
|
||||||
|
<h2>Forgejo Actions</h2>
|
||||||
|
|
||||||
|
<p>This project's static Pages are built by Forgejo Actions, following the steps
|
||||||
|
defined in <a href=".forgejo/workflows/pages.yaml"><code>.forgejo/workflows/pages.yaml</code></a>.
|
||||||
|
That builds this website using ikiwiki, and pushes the build artifacts to the
|
||||||
|
<code>public</code> branch.</p>
|
||||||
|
|
||||||
|
<p>The <code>public</code> branch has its own workflow following steps defined in
|
||||||
|
<a href="https://ayakael.net/forge/ayakael.net/src/branch/public/.forgejo/workflows/deploy.yaml"><code>forgejo/workflows/deploy.yaml</code></a>
|
||||||
|
that uploads the artifacts to a remote HTTP server for deployment in
|
||||||
|
production. This workflow is automatically updated from <code>main</code> so that <code>public</code>
|
||||||
|
should never be manually modified.</p>
|
||||||
|
|
||||||
|
<p>The deployment is done by a simple remote git push via SSH to a non-bare repo
|
||||||
|
where <code>git config receive.denyCurrentBranch</code> is set as <code>updateInstead</code>. This
|
||||||
|
allows this repo to be checked out as <code>public</code>, allowing it to be a root for
|
||||||
|
your favorite HTTP server.</p>
|
||||||
|
|
||||||
|
<p>The following secrets are expected to be set for operation:
|
||||||
|
* PAGES_PRIVKEY: SSH private key that is used to push to the HTTP server's git
|
||||||
|
repo
|
||||||
|
* PAGES_TOKEN: Forgejo application token used to push to <code>public</code> branch.</p>
|
||||||
|
|
||||||
|
<p>The following variables are expected to be set for operation:
|
||||||
|
* PAGES_TARGET: SSH target for HTTP server's git repo, following this format:
|
||||||
|
user@example.net:/path/to/http/repo</p>
|
||||||
|
|
||||||
|
<h2>Building locally</h2>
|
||||||
|
|
||||||
|
<p>To work locally with this project, you'll have to follow the steps below:</p>
|
||||||
|
|
||||||
|
<ol>
|
||||||
|
<li>Fork, clone or download this project</li>
|
||||||
|
<li>Install ikiwiki:
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://ikiwiki.info/tips/ikiwiki_on_mac_os_x/">mac</a></li>
|
||||||
|
<li><a href="https://ikiwiki.info/setup/">linux</a></li>
|
||||||
|
<li><a href="https://ikiwiki.info/install/">source</a></li>
|
||||||
|
</ul></li>
|
||||||
|
<li>Generate the website: <code>ikiwiki --setup ikiwiki.setup</code></li>
|
||||||
|
<li>Start http-server: <code>./test-server.sh</code></li>
|
||||||
|
<li>Preview your project: open 127.0.0.1:8080 in your browser</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<p>Read more at ikiwiki's <a href="https://ikiwiki.info/">documentation</a>.</p>
|
||||||
|
|
||||||
|
<h2>Contributing</h2>
|
||||||
|
|
||||||
|
<ol>
|
||||||
|
<li><p>Fork the main ayakael.net repo.</p></li>
|
||||||
|
<li><p>Checkout the forked repository.</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><code>git clone ssh://git@ayakael.net/$USER/ayakael.net</code></li>
|
||||||
|
<li><code>cd ayakael.net</code></li>
|
||||||
|
</ul></li>
|
||||||
|
<li><p>Make your changes.</p></li>
|
||||||
|
<li><p>Do local build.</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><code>ikiwiki --setup ikiwiki.setup</code></li>
|
||||||
|
</ul></li>
|
||||||
|
<li><p>Fix any errors that come up and rebuild until it works locally.</p></li>
|
||||||
|
<li><p>Commit the changes to the git repo in a git branch</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><code>git checkout -b <name></code></li>
|
||||||
|
<li><code>git add</code> changes</li>
|
||||||
|
<li><code>git commit -m 'content/index: descriptive description'</code></li>
|
||||||
|
<li><code>git push</code></li>
|
||||||
|
</ul></li>
|
||||||
|
<li><p>Create a merge request with your changes by following link in server response.</p></li>
|
||||||
|
<li><p>Once the tests in the merge-request pass, and reviewers are happy, your changes
|
||||||
|
will be merged.</p></li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:06Z" class="dt-published">Tue Sep 17 19:04:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:06Z">Tue Sep 17 19:04:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=README&t=README" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
450
bootstrap.local.css
vendored
Normal file
450
bootstrap.local.css
vendored
Normal file
|
@ -0,0 +1,450 @@
|
||||||
|
/* Color palette */
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--bs-light-rgb: 248, 248, 248;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
--bs-link-color: #337ab7;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Sticky footer styles
|
||||||
|
-------------------------------------------------- */
|
||||||
|
html {
|
||||||
|
position: relative;
|
||||||
|
min-height: 100%;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
/* Margin bottom by footer height */
|
||||||
|
margin-bottom: 60px;
|
||||||
|
}
|
||||||
|
.footer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Custom page CSS
|
||||||
|
-------------------------------------------------- */
|
||||||
|
/* Not required for template or sticky footer method. */
|
||||||
|
|
||||||
|
body > .container {
|
||||||
|
padding: 80px 15px 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pagedate {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer > .container {
|
||||||
|
padding-right: 15px;
|
||||||
|
padding-left: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type='email'] {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type='text'] {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type='button'] {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
code {
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.actions ul {
|
||||||
|
margin: inherit;
|
||||||
|
padding: inherit;
|
||||||
|
height: inherit;
|
||||||
|
/* list-style-type: none; */
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* limit main content to ~90 chars per line */
|
||||||
|
/* update: practical typography recommends 2-3 alphabets */
|
||||||
|
#content {
|
||||||
|
max-width: 35em; /* this is 2.5 alphabets with Charter */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* limit header as well otherwise logo is out of whack without sidebar */
|
||||||
|
.fixed-top .container-fluid {
|
||||||
|
max-width: 55em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* some hacking at typefaces to get some fresh zest in here
|
||||||
|
* fallbacks from:
|
||||||
|
* https://en.wikipedia.org/wiki/List_of_typefaces_included_with_Microsoft_Windows
|
||||||
|
* https://en.wikipedia.org/wiki/List_of_typefaces_included_with_macOS
|
||||||
|
*
|
||||||
|
* Font stacks from:
|
||||||
|
* https://modernfontstacks.com/#font-stacks
|
||||||
|
*/
|
||||||
|
.navbar, .footer {
|
||||||
|
/* according to modern font stacks, the following actually falls back to:
|
||||||
|
* San Francisco: MacOS 10.8+, iOS 3+
|
||||||
|
* Segoe UI: Windows 7+
|
||||||
|
* Roboto: Android
|
||||||
|
* Ubuntu: Linux
|
||||||
|
* Cantarell: Linux using GNOME
|
||||||
|
* Noto Sans: Linux using KDE
|
||||||
|
*
|
||||||
|
* So instead of letting "Linux" guess (because that's pretty
|
||||||
|
* chaotic), actually hardcode those two first, so we have a
|
||||||
|
* little better control over this. Noto sans is actually what I
|
||||||
|
* would fallback on in Firefox on my workstation before the
|
||||||
|
* change.
|
||||||
|
*/
|
||||||
|
font-family: Ubuntu, "Noto sans", system-ui, sans-serif;
|
||||||
|
}
|
||||||
|
h1, h2, h3, h4, h5, body {
|
||||||
|
/* this is the "transitional" stack from modern stack fonts. it was
|
||||||
|
* picked because it sticks with the "Charter" font we were
|
||||||
|
* previously using. it runs the risk of falling back on bitmap
|
||||||
|
* fonts which look horrible on Linux, but in my tests it worked
|
||||||
|
* okay.
|
||||||
|
*
|
||||||
|
* Charter: MacOS 10.9+, iOS 9.3+
|
||||||
|
* Bitstream Charter: Linux
|
||||||
|
* Sitka Text: Windows 8.1+
|
||||||
|
* Cambreia: Windows 7+
|
||||||
|
* Noto Serif: Android
|
||||||
|
* Serif: fallback
|
||||||
|
*/
|
||||||
|
font-family: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, "Noto serif", serif;
|
||||||
|
/* Charter is Butterick's favorite, freely available, found on
|
||||||
|
* https://practicaltypography.com/free-fonts.html and available
|
||||||
|
* from https://practicaltypography.com/charter.html under the
|
||||||
|
* liberal Bitstream license. It used to be shipped alongside this
|
||||||
|
* site as a web font, but was disabled for the sake of simplicity
|
||||||
|
* and bandwidth saving. Now it is assumed that 'Bitstream
|
||||||
|
* Charter' will "just work" on Linux.
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
h1, h2, h3, h4, h5 {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
/* for charter, we should inline this: */
|
||||||
|
/* <link rel="stylesheet" href="https://paste.anarc.at/publish/charter/stylesheet.css" type="text/css" charset="utf-8" /> */
|
||||||
|
/* we won't ship fira because it is too big and will hope some other font will kick in for headings, preferably Open sans */
|
||||||
|
|
||||||
|
/* no idea why bootstrap makes quotes bigger, not what i want */
|
||||||
|
blockquote {
|
||||||
|
font-size: 14px;
|
||||||
|
/* make blockquotes interesting */
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* enlarge body point size for charter for larger displays */
|
||||||
|
@media (min-device-width: 750px) {
|
||||||
|
body {
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 1.3; /* default in FF is ~1.48, try seems a bit to sparse */
|
||||||
|
}
|
||||||
|
/* to match the other bootstrap workaround, below */
|
||||||
|
blockquote {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
/* UI elements should be a little less intrusive */
|
||||||
|
.navbar, .footer {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pre, code {
|
||||||
|
font-family: "Fira Mono", Menlo, Monaco, Consolas, "Courier New", "Liberation mono", monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* don't word-wrap PRE blocks so they are scrolled*/
|
||||||
|
pre {
|
||||||
|
-ms-word-wrap: normal;
|
||||||
|
word-wrap: normal;
|
||||||
|
}
|
||||||
|
pre code {
|
||||||
|
white-space: pre;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* workaround multimarkdown bug:
|
||||||
|
* https://github.com/bobtfish/text-multimarkdown/issues/30 */
|
||||||
|
a.footnote { vertical-align: super; font-size: xx-small; }
|
||||||
|
div.footnotes { font-size: small; }
|
||||||
|
|
||||||
|
/* scale down images so they are centered like the rest of the text */
|
||||||
|
#content img { max-width: 100%; }
|
||||||
|
/* except in the mastodon avatar, it squeezes them weirdly and messes with borders */
|
||||||
|
#content .mastodon-comment .avatar img { max-width: inherit; }
|
||||||
|
|
||||||
|
/* format HTML5 captions like ikiwiki's table-based captions
|
||||||
|
*
|
||||||
|
* those work, but basically need to be entered by hand.
|
||||||
|
*
|
||||||
|
* https://ikiwiki.info/todo/html5_image_captions/
|
||||||
|
*/
|
||||||
|
figure {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
figcaption {
|
||||||
|
text-align: center;
|
||||||
|
font-size: smaller;
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* right-aligned figures
|
||||||
|
*
|
||||||
|
* those need a "table" display so that the caption shows up alongside the
|
||||||
|
* figured. we also limit the size of the image so that it does not squeeze the
|
||||||
|
* text too mucha nd had judicious padding.
|
||||||
|
*/
|
||||||
|
figure.align-right {
|
||||||
|
float: right;
|
||||||
|
padding: 0em 1em;
|
||||||
|
display: table;
|
||||||
|
max-width: 60%;
|
||||||
|
}
|
||||||
|
figure.align-right figcaption {
|
||||||
|
display: table-caption;
|
||||||
|
caption-side: bottom;
|
||||||
|
padding: 0.5em 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* wrap long URLs so that we don't overflow layout
|
||||||
|
* this could apply to any element, but we often have to deal with long
|
||||||
|
* links so limit to that to avoid unexpected damage */
|
||||||
|
#content a {
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* make table scale out to avoid ugly word-wrapping
|
||||||
|
* bootstrap should deal with this, but ikiwiki doesn't assign the
|
||||||
|
* right style and anyways our width is smaller than necessary
|
||||||
|
*
|
||||||
|
* pages with tables that should be checked when this is changed:
|
||||||
|
*
|
||||||
|
* https://anarc.at/blog/2017-10-26-comparison-cryptographic-keycards/
|
||||||
|
* https://anarc.at/blog/2018-01-28-large-disk-price-review/
|
||||||
|
* https://anarc.at/services/backup/
|
||||||
|
* https://anarc.at/services/
|
||||||
|
* https://anarc.at/services/dns/registrars/
|
||||||
|
* https://anarc.at/services/welcome/
|
||||||
|
*/
|
||||||
|
table, table.table { width: 100%; }
|
||||||
|
table { font-size: inherit; } /* why the heck does chrome override font-size for tables?! */
|
||||||
|
|
||||||
|
/* this belongs in ikiwiki's style.css, but that needs the admonition
|
||||||
|
* patch to be merged: https://ikiwiki.info/todo/admonitions/ */
|
||||||
|
|
||||||
|
/* admonition start */
|
||||||
|
#content div.caution,
|
||||||
|
#content div.important,
|
||||||
|
#content div.note,
|
||||||
|
#content div.tip,
|
||||||
|
#content div.warning {
|
||||||
|
border: 1pt solid #aaa;
|
||||||
|
margin: 1em 3em 1em 3em;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: 8px 8px;
|
||||||
|
min-height: 48px; /*48=32+8+8 but doesn't work with IE*/
|
||||||
|
padding: 1em 1em 1em 48px;
|
||||||
|
}
|
||||||
|
#content div.tip { background-image: url("smileys/admon-tip.png"); }
|
||||||
|
#content div.note { background-image: url("smileys/admon-note.png"); }
|
||||||
|
#content div.important { background-image: url("smileys/admon-important.png"); }
|
||||||
|
#content div.caution { background-image: url("smileys/admon-caution.png"); }
|
||||||
|
#content div.warning { background-image: url("smileys/admon-warning.png"); }
|
||||||
|
/* admonition end */
|
||||||
|
|
||||||
|
.breadcrumb {
|
||||||
|
padding: 1px 0 0 0;
|
||||||
|
border-bottom: none;
|
||||||
|
padding-inline-start: 0px;
|
||||||
|
}
|
||||||
|
.breadcrumb li {
|
||||||
|
padding: 8px 0 8px 8px;
|
||||||
|
}
|
||||||
|
.breadcrumb li::before {
|
||||||
|
padding: 0 5px 0 0;
|
||||||
|
}
|
||||||
|
.page-header {
|
||||||
|
border-bottom: none;
|
||||||
|
margin: 40px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* more things to hide in printouts */
|
||||||
|
@media print {
|
||||||
|
.footer { position: relative; }
|
||||||
|
.footer .powered-by { display: none; }
|
||||||
|
/* https://ikiwiki.info/todo/hide_add_comment_button_in_print/ */
|
||||||
|
.addcomment { display: none; }
|
||||||
|
/* remove link explosion in footer */
|
||||||
|
.pagedate a[href]::after { content: normal; }
|
||||||
|
.footer a[href]::after { content: normal; }
|
||||||
|
/* reset size constraints, paper takes care of that */
|
||||||
|
#content {
|
||||||
|
width: auto;
|
||||||
|
max-width: inherit;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* hierarchical heading numbers */
|
||||||
|
|
||||||
|
/* this uses CSS3 to show headings like:
|
||||||
|
*
|
||||||
|
* 1. one
|
||||||
|
* 2. two
|
||||||
|
* 2.1. two point one
|
||||||
|
* 3. three
|
||||||
|
*
|
||||||
|
* This is based on https://developer.mozilla.org/en-US/docs/Web/CSS/counter-reset
|
||||||
|
* ... and inspired by https://practicaltypography.com/hierarchical-headings.html
|
||||||
|
*
|
||||||
|
* This overrides the default in ikiwiki, which is *roman* numerals (!)
|
||||||
|
*/
|
||||||
|
/* make a counter for ordered lists in the table of contents */
|
||||||
|
.toc ol {
|
||||||
|
/* this will break ikiwiki unless the following patch is applied: https://ikiwiki.info/todo/allow_toc_to_skip_entries/ */
|
||||||
|
counter-reset: section;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
/* override bootstrap */
|
||||||
|
.toc li.L1, .toc li.L2, .toc li.L3, .toc li.L4, .toc li.L5, .toc li.L6 {
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
.toc li::before {
|
||||||
|
/* increment the counter when we hit a new li */
|
||||||
|
counter-increment: section;
|
||||||
|
/* Combines the values of all instances of the section counter,
|
||||||
|
separated and followed by a period */
|
||||||
|
content: counters(section, ".") ". ";
|
||||||
|
}
|
||||||
|
/* except in notebox, we don't want to have numbers there. that is used
|
||||||
|
* in the blog archive, in blog.md */
|
||||||
|
.notebox .toc ol {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: space-between;
|
||||||
|
/* override LI's built-in padding */
|
||||||
|
padding-inline-start: 0px;
|
||||||
|
}
|
||||||
|
.notebox .toc li::before {
|
||||||
|
counter-increment: none;
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
.notebox .toc li.L1, .notebox .toc li.L2, .notebox .toc li.L3, .notebox .toc li.L4, .notebox .toc li.L5, .notebox .toc li.L6 {
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* another counter for headings, but one which should follow the one generated by the ikiwiki toc */
|
||||||
|
|
||||||
|
/* this was taken from https://philarcher.org/diary/2013/headingnumbers/ */
|
||||||
|
body {counter-reset: h1}
|
||||||
|
h1 {counter-reset: h2}
|
||||||
|
h2 {counter-reset: h3}
|
||||||
|
h3 {counter-reset: h4}
|
||||||
|
h4 {counter-reset: h5}
|
||||||
|
h5 {counter-reset: h6}
|
||||||
|
|
||||||
|
/* TODO: Fix counter
|
||||||
|
h1:before {counter-increment: h1; content: counter(h1) ". "}
|
||||||
|
h2:before {counter-increment: h2; content: counter(h1) "." counter(h2) ". "}
|
||||||
|
h3:before {counter-increment: h3; content: counter(h1) "." counter(h2) "." counter(h3) ". "}
|
||||||
|
h4:before {counter-increment: h4; content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) ". "}
|
||||||
|
h5:before {counter-increment: h5; content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". "}
|
||||||
|
h6:before {counter-increment: h6; content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". "}
|
||||||
|
*/
|
||||||
|
|
||||||
|
h1.nocount:before, h2.nocount:before, h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before, div.nocount h1:before, div.nocount h2:before, div.nocount h3:before, div.nocount h4:before, div.nocount h5:before, div.nocount h6:before {
|
||||||
|
content: ""; counter-increment: none
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ... except main title, we don't want a number there */
|
||||||
|
header h1::before {
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Language switchers */
|
||||||
|
|
||||||
|
|
||||||
|
.language-switcher {
|
||||||
|
font-size: 14px;
|
||||||
|
background: #f8f8f8;
|
||||||
|
color: #333;
|
||||||
|
border-color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.language-switcher:hover {
|
||||||
|
background: #e6e6e6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* NavBar */
|
||||||
|
|
||||||
|
/* Navbar variables */
|
||||||
|
.navbar {
|
||||||
|
--bs-navbar-padding-y: 0;
|
||||||
|
--bs-navbar-padding-x: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-link {
|
||||||
|
--bs-nav-link-padding-y: 5px;
|
||||||
|
--bs-nav-link-padding-x: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-menu li a {
|
||||||
|
font-size: 14px;
|
||||||
|
display: block;
|
||||||
|
padding: 3px 20px;
|
||||||
|
clear: both;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 1.42857143;
|
||||||
|
color: #333;
|
||||||
|
border-color: #ccc;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-menu li a:hover {
|
||||||
|
background: #e6e6e6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Usually is set automatically by bootstrap, but do it manually to let ikiwiki handle links */
|
||||||
|
.nav-link li a, .nav-link .selflink {
|
||||||
|
display: block;
|
||||||
|
padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
|
||||||
|
font-size: var(--bs-nav-link-font-size);
|
||||||
|
font-weight: var(--bs-nav-link-font-weight);
|
||||||
|
color: var(--bs-nav-link-color);
|
||||||
|
text-decoration: none;
|
||||||
|
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-link .selflink {
|
||||||
|
color: #393a35;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-link li a:hover, .nav-link .selflink:hover {
|
||||||
|
color: #393a35;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand {
|
||||||
|
height: 50px;
|
||||||
|
padding: 15px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
6
bootstrap.min.css
vendored
Normal file
6
bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
7
bootstrap.min.js
vendored
Normal file
7
bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -1,60 +0,0 @@
|
||||||
# SOME DESCRIPTIVE TITLE
|
|
||||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: ayakael.net\n"
|
|
||||||
"POT-Creation-Date: 2024-06-21 13:37-0400\n"
|
|
||||||
"PO-Revision-Date: 2024-06-21 13:43-0400\n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: ayakael <antoine@ayakael.net>\n"
|
|
||||||
"Language: fr\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"X-Generator: Poedit 3.4.3\n"
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, no-wrap
|
|
||||||
msgid "[[!meta title=\"Contact\"]]\n"
|
|
||||||
msgstr "[[!meta title=\"Contact\"]]\n"
|
|
||||||
|
|
||||||
#. type: Title #
|
|
||||||
#, no-wrap
|
|
||||||
msgid "How to contact me"
|
|
||||||
msgstr "Comment me joindre"
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, no-wrap
|
|
||||||
msgid "<hr>\n"
|
|
||||||
msgstr "<hr>\n"
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
msgid ""
|
|
||||||
"The best way to reach me is by email, use the ProtonMail-backed address: "
|
|
||||||
"[antoine@ayakael.net](mailto:antoine@ayakael.net). If you contact me using a "
|
|
||||||
"non-ProtonMail email, you can encrypt using [this PGP key](/keys/publickey."
|
|
||||||
"antoine.at.ayakael.net-72498db60f2a3d5786517585eba2a86db6fcb3ab.asc)."
|
|
||||||
msgstr ""
|
|
||||||
"La meilleure façon de me joindre est par courriel, en utilisant l'adresse "
|
|
||||||
"soutenue par ProtonMail : [antoine@ayakael.net](mailto:antoine@ayakael.net). "
|
|
||||||
"Si vous me contactez en utilisant un email autre qu'un de ProtonMail, vous "
|
|
||||||
"pouvez le chiffrer en utilisant [cette clé PGP](/keys/publickey.antoine.at."
|
|
||||||
"ayakael.net-72498db60f2a3d5786517585eba2a86db6fcb3ab.asc)."
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
msgid ""
|
|
||||||
"You can also send me a direct message on my Mastodon account: [@agora.ilot."
|
|
||||||
"io@ayakael](https://agora.ilot.io/@ayakael)"
|
|
||||||
msgstr ""
|
|
||||||
"Vous pouvez également m'envoyer un message direct à mon compte Mastodon : "
|
|
||||||
"[@agora.ilot.io@ayakael](https://agora.ilot.io/@ayakael)"
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
msgid "If you found an error on the site, you can report it to me by email."
|
|
||||||
msgstr ""
|
|
||||||
"Si vous avez trouvé une erreur sur le site, vous pouvez me la signaler par "
|
|
||||||
"courriel."
|
|
11
contact.mdwn
11
contact.mdwn
|
@ -1,11 +0,0 @@
|
||||||
[[!meta title="Contact"]]
|
|
||||||
|
|
||||||
# How to contact me
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
The best way to reach me is by email, use the ProtonMail-backed address: [antoine@ayakael.net](mailto:antoine@ayakael.net). If you contact me using a non-ProtonMail email, you can encrypt using [this PGP key](/keys/publickey.antoine.at.ayakael.net-72498db60f2a3d5786517585eba2a86db6fcb3ab.asc).
|
|
||||||
|
|
||||||
You can also send me a direct message on my Mastodon account: [@agora.ilot.io@ayakael](https://agora.ilot.io/@ayakael)
|
|
||||||
|
|
||||||
If you found an error on the site, you can report it to me by email.
|
|
53
contact.pot
53
contact.pot
|
@ -1,53 +0,0 @@
|
||||||
# SOME DESCRIPTIVE TITLE
|
|
||||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
|
||||||
"POT-Creation-Date: 2024-09-17 14:37-0400\n"
|
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, markdown-text, no-wrap
|
|
||||||
msgid "[[!meta title=\"Contact\"]]\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Title #
|
|
||||||
#, markdown-text, no-wrap
|
|
||||||
msgid "How to contact me"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, markdown-text, no-wrap
|
|
||||||
msgid "<hr>\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, markdown-text
|
|
||||||
msgid ""
|
|
||||||
"The best way to reach me is by email, use the ProtonMail-backed address: "
|
|
||||||
"[antoine@ayakael.net](mailto:antoine@ayakael.net). If you contact me using a "
|
|
||||||
"non-ProtonMail email, you can encrypt using [this PGP "
|
|
||||||
"key](/keys/publickey.antoine.at.ayakael.net-72498db60f2a3d5786517585eba2a86db6fcb3ab.asc)."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, markdown-text
|
|
||||||
msgid ""
|
|
||||||
"You can also send me a direct message on my Mastodon account: "
|
|
||||||
"[@agora.ilot.io@ayakael](https://agora.ilot.io/@ayakael)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, markdown-text
|
|
||||||
msgid "If you found an error on the site, you can report it to me by email."
|
|
||||||
msgstr ""
|
|
155
contact/index.en.html
Normal file
155
contact/index.en.html
Normal file
|
@ -0,0 +1,155 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>Contact - Ayakael</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="Ayakael" src="../favicon.png" width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown ps-2 pe-2">
|
||||||
|
<button class="btn language-switcher dropdown" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<div class="collapse navbar-collapse float-end ms-1" id="navbar">
|
||||||
|
English
|
||||||
|
</div>
|
||||||
|
<img src="../images/languages.png">
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start" aria-labelledby="language-menu-top">
|
||||||
|
|
||||||
|
<li><a href="./index.fr.html">Français</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><span class="selflink">Contact</span></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<h1>How to contact me</h1>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<p>The best way to reach me is by email, use the ProtonMail-backed address: <a href="mailto:antoine@ayakael.net">antoine@ayakael.net</a>. If you contact me using a non-ProtonMail email, you can encrypt using <a href="/keys/publickey.antoine.at.ayakael.net-72498db60f2a3d5786517585eba2a86db6fcb3ab.asc">this PGP key</a>.</p>
|
||||||
|
|
||||||
|
<p>You can also send me a direct message on my Mastodon account: <a href="https://agora.ilot.io/@ayakael">@agora.ilot.io@ayakael</a></p>
|
||||||
|
|
||||||
|
<p>If you found an error on the site, you can report it to me by email.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:06Z" class="dt-published">Tue Sep 17 19:04:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:06Z">Tue Sep 17 19:04:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=contact&t=Contact" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
163
contact/index.fr.html
Normal file
163
contact/index.fr.html
Normal file
|
@ -0,0 +1,163 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>Contact - Ayakael</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="Ayakael" src="../favicon.png" width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown ps-2 pe-2">
|
||||||
|
<button class="btn language-switcher dropdown" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<div class="collapse navbar-collapse float-end ms-1" id="navbar">
|
||||||
|
Français
|
||||||
|
</div>
|
||||||
|
<img src="../images/languages.png">
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start" aria-labelledby="language-menu-top">
|
||||||
|
|
||||||
|
<li><a href="./index.en.html">English</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<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.fr.html">Accueil</a></li>
|
||||||
|
<li><a href="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><span class="selflink">Contact</span></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<h1>Comment me joindre</h1>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<p>La meilleure façon de me joindre est par courriel, en utilisant l'adresse
|
||||||
|
soutenue par ProtonMail :
|
||||||
|
<a href="mailto:antoine@ayakael.net">antoine@ayakael.net</a>. Si vous me contactez en
|
||||||
|
utilisant un email autre qu'un de ProtonMail, vous pouvez le chiffrer en
|
||||||
|
utilisant <a href="/keys/publickey.antoine.at.ayakael.net-72498db60f2a3d5786517585eba2a86db6fcb3ab.asc">cette clé
|
||||||
|
PGP</a>.</p>
|
||||||
|
|
||||||
|
<p>Vous pouvez également m'envoyer un message direct à mon compte Mastodon :
|
||||||
|
<a href="https://agora.ilot.io/@ayakael">@agora.ilot.io@ayakael</a></p>
|
||||||
|
|
||||||
|
<p>Si vous avez trouvé une erreur sur le site, vous pouvez me la signaler par
|
||||||
|
courriel.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:06Z" class="dt-published">Tue Sep 17 19:04:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:06Z">Tue Sep 17 19:04:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Propulsé par <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=contact.fr&t=Contact" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
51
footer.fr.po
51
footer.fr.po
|
@ -1,51 +0,0 @@
|
||||||
# SOME DESCRIPTIVE TITLE
|
|
||||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: ayakael.net\n"
|
|
||||||
"POT-Creation-Date: 2024-09-10 22:25-0400\n"
|
|
||||||
"PO-Revision-Date: 2024-09-10 22:25-0400\n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: ayakael <dev@ayakael.net>\n"
|
|
||||||
"Language: fr\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"X-Generator: Poedit 3.4.3\n"
|
|
||||||
|
|
||||||
#. type: Content of: <div><div>
|
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Copyleft © 2024-2024 ayakael [[CC-BY-SA|meta/license]]"
|
|
||||||
msgid "Copyleft © 2024 ayakael [[CC-BY-SA|meta/license]]"
|
|
||||||
msgstr "Copyleft © 2024 ayakael [[CC-BY-SA|meta/license]]"
|
|
||||||
|
|
||||||
#. type: Content of: <div><div>
|
|
||||||
msgid "Powered by [[ikiwiki|http://ikiwiki.info/]]."
|
|
||||||
msgstr "Propulsé par [[ikiwiki|http://ikiwiki.info/]]."
|
|
||||||
|
|
||||||
#, fuzzy
|
|
||||||
#~| msgid ""
|
|
||||||
#~| "<p class=\"text-muted\">\n"
|
|
||||||
#~| "\t<span class=\"copyright\">\n"
|
|
||||||
#~| "\t\tCopyleft © 2024-2024 ayakael [[CC-BY-SA|meta/license]]\n"
|
|
||||||
#~| "\t</span>\n"
|
|
||||||
#~| "\t<span class=\"pull-right powered-by\">\n"
|
|
||||||
#~| "\t\tPowered by [[ikiwiki|http://ikiwiki.info/]].\n"
|
|
||||||
#~| "\t\t[[Theme|https://gitlab.com/anarcat/ikiwiki-bootstrap-anarcat]] by [[anarcat|https://anarc.at/blog/2015-09-09-bootstrap]].\n"
|
|
||||||
#~| "\t</span>\n"
|
|
||||||
#~| "</p>\n"
|
|
||||||
#~ msgid "<span class=\"me-auto copyright\"> Copyleft © 2024-2024 ayakael [[CC-BY-SA|meta/license]] </span> <span class=\"ms-auto powered-by\"> Powered by [[ikiwiki|http://ikiwiki.info/]]. </span>"
|
|
||||||
#~ msgstr ""
|
|
||||||
#~ "<p class=\"text-muted\">\n"
|
|
||||||
#~ "\t<span class=\"copyright\">\n"
|
|
||||||
#~ "\t\tCopyleft © 2024-2024 ayakael [[CC-BY-SA|meta/license]]\n"
|
|
||||||
#~ "\t</span>\n"
|
|
||||||
#~ "\t<span class=\"pull-right powered-by\">\n"
|
|
||||||
#~ "\t\tPropulsé par [[ikiwiki|http://ikiwiki.info/]].\n"
|
|
||||||
#~ "\t\t[[Thème|https://gitlab.com/anarcat/ikiwiki-bootstrap-anarcat]] par [[anarcat|https://anarc.at/blog/2015-09-09-bootstrap]].\n"
|
|
||||||
#~ "\t</span>\n"
|
|
||||||
#~ "</p>\n"
|
|
|
@ -1,8 +0,0 @@
|
||||||
<div class="row text-muted">
|
|
||||||
<div class="col-sm">
|
|
||||||
Copyleft © 2024 ayakael [[CC-BY-SA|meta/license]]
|
|
||||||
</div>
|
|
||||||
<div class="col-sm text-sm-end">
|
|
||||||
Powered by [[ikiwiki|http://ikiwiki.info/]].
|
|
||||||
</div>
|
|
||||||
</div>
|
|
25
footer.pot
25
footer.pot
|
@ -1,25 +0,0 @@
|
||||||
# SOME DESCRIPTIVE TITLE
|
|
||||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
|
||||||
"POT-Creation-Date: 2024-09-17 14:37-0400\n"
|
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
|
|
||||||
#. type: Content of: <div><div>
|
|
||||||
msgid "Copyleft © 2024 ayakael [[CC-BY-SA|meta/license]]"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Content of: <div><div>
|
|
||||||
msgid "Powered by [[ikiwiki|http://ikiwiki.info/]]."
|
|
||||||
msgstr ""
|
|
154
footer/index.en.html
Normal file
154
footer/index.en.html
Normal file
|
@ -0,0 +1,154 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>footer - Ayakael</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="Ayakael" src="../favicon.png" width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown ps-2 pe-2">
|
||||||
|
<button class="btn language-switcher dropdown" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<div class="collapse navbar-collapse float-end ms-1" id="navbar">
|
||||||
|
English
|
||||||
|
</div>
|
||||||
|
<img src="../images/languages.png">
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start" aria-labelledby="language-menu-top">
|
||||||
|
|
||||||
|
<li><a href="./index.fr.html">Français</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:06Z" class="dt-published">Tue Sep 17 19:04:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:06Z">Tue Sep 17 19:04:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=footer&t=footer" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
155
footer/index.fr.html
Normal file
155
footer/index.fr.html
Normal file
|
@ -0,0 +1,155 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>footer.fr - Ayakael</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="Ayakael" src="../favicon.png" width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown ps-2 pe-2">
|
||||||
|
<button class="btn language-switcher dropdown" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<div class="collapse navbar-collapse float-end ms-1" id="navbar">
|
||||||
|
Français
|
||||||
|
</div>
|
||||||
|
<img src="../images/languages.png">
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start" aria-labelledby="language-menu-top">
|
||||||
|
|
||||||
|
<li><a href="./index.en.html">English</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<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.fr.html">Accueil</a></li>
|
||||||
|
<li><a href="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.fr.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Propulsé par <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:06Z" class="dt-published">Tue Sep 17 19:04:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:06Z">Tue Sep 17 19:04:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Propulsé par <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=footer.fr&t=footer.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
1
generated.txt
Normal file
1
generated.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Tue Sep 17 19:04:12 UTC 2024
|
201
ikiwiki.fr/index.html
Normal file
201
ikiwiki.fr/index.html
Normal file
|
@ -0,0 +1,201 @@
|
||||||
|
<!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," />
|
||||||
|
|
||||||
|
|
||||||
|
<title>ikiwiki.fr - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="\"noindex," />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2010-07-18 22:29+0000\n"
|
||||||
|
"PO-Revision-Date: 2010-07-21 16:41+0200\n"
|
||||||
|
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"Language: fr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
"This wiki is powered by [ikiwiki](http://ikiwiki.info/).\n"
|
||||||
|
"[[!if <span class="error">Error: syntax error in pagespec "\"enabled(version)\"\n""</span>]]\n"
|
||||||
|
msgstr ""
|
||||||
|
"Ce wiki est propulsé par [ikiwiki](http://ikiwiki.info/).\n"
|
||||||
|
"[[!if <span class="error">Error: syntax error in pagespec "\"enabled(version)\"\n""</span>]]\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid "Some documentation on using ikiwiki:"
|
||||||
|
msgstr "Voici quelques pages de documentation sur l'utilisation d'ikiwiki :"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "<a href="../ikiwiki/formatting/">formatting</a>"
|
||||||
|
msgstr "<a href="../ikiwiki/formatting/">formatting</a>"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "<a href="../ikiwiki/wikilink/">wikilink</a>"
|
||||||
|
msgstr "<a href="../ikiwiki/wikilink/">wikilink</a>"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "<a href="../ikiwiki/subpage/">subpage</a>"
|
||||||
|
msgstr "<a href="../ikiwiki/subpage/">subpage</a>"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "<a href="../ikiwiki/pagespec/">pagespec</a>"
|
||||||
|
msgstr "<a href="../ikiwiki/pagespec/">pagespec</a>"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "<a href="../ikiwiki/directive/">directive</a>"
|
||||||
|
msgstr "<a href="../ikiwiki/directive/">directive</a>"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "<a href="../ikiwiki/markdown/">markdown</a>"
|
||||||
|
msgstr "<a href="../ikiwiki/markdown/">markdown</a>"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "<a href="../ikiwiki/openid/">openid</a>"
|
||||||
|
msgstr "<a href="../ikiwiki/openid/">openid</a>"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "<a href="../ikiwiki/searching/">searching</a>"
|
||||||
|
msgstr "<a href="../ikiwiki/searching/">searching</a>"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "<a href="../templates/">templates</a>"
|
||||||
|
msgstr "<a href="../templates/">templates</a>"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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.fr&t=ikiwiki.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
214
ikiwiki/IkiWiki/Plugin/sidebar2.pm
Normal file
214
ikiwiki/IkiWiki/Plugin/sidebar2.pm
Normal file
|
@ -0,0 +1,214 @@
|
||||||
|
#!/usr/bin/perl
|
||||||
|
package IkiWiki::Plugin::sidebar2;
|
||||||
|
|
||||||
|
=head1 NAME
|
||||||
|
|
||||||
|
IkiWiki::Plugin::sidebar2 - Improved version of IkiWiki::Plugin::sidebar
|
||||||
|
|
||||||
|
=head1 VERSION
|
||||||
|
|
||||||
|
This describes version B<0.1> of IkiWiki::Plugin::sidebar2
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
our $VERSION = '0.1';
|
||||||
|
|
||||||
|
=head1 DESCRIPTION
|
||||||
|
|
||||||
|
Improved version of IkiWiki::Plugin::sidebar2. Main features are:
|
||||||
|
|
||||||
|
- allowing several sidebars;
|
||||||
|
- enabling sidebars using pagespects.
|
||||||
|
|
||||||
|
See doc/plugins/sidebar2.mdwn for documentation.
|
||||||
|
|
||||||
|
=head1 PREREQUISITES
|
||||||
|
|
||||||
|
IkiWiki
|
||||||
|
|
||||||
|
=head1 URL
|
||||||
|
|
||||||
|
http://atelier.gresille.org/projects/gresille-ikiwiki/wiki/Sidebar2
|
||||||
|
http://ikiwiki.info/plugins/contrib/sidebar2/
|
||||||
|
|
||||||
|
=head1 AUTHOR
|
||||||
|
|
||||||
|
Tuomo Valkonen wrote the original Ikiwiki::plugin::sidebar.
|
||||||
|
Others (on http://ikiwiki.info) helped to improve it.
|
||||||
|
Louis Paternault (spalax) <spalax at gresille dot org> improved it to write Ikiwiki::plugin::sidebar2.
|
||||||
|
|
||||||
|
=head1 COPYRIGHT
|
||||||
|
|
||||||
|
Copyright 2006 Tuomo Valkonen <tuomov at iki dot fi>
|
||||||
|
Copyright 2013 by Louis Paternault <spalax at gresille dot org>
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
use warnings;
|
||||||
|
use strict;
|
||||||
|
use IkiWiki 3.00;
|
||||||
|
|
||||||
|
sub import {
|
||||||
|
hook(type => "checkconfig", id => "sidebar2", call => \&checkconfig);
|
||||||
|
hook(type => "getsetup", id => "sidebar2", call => \&getsetup);
|
||||||
|
hook(type => "preprocess", id => "sidebar", call => \&preprocess);
|
||||||
|
hook(type => "pagetemplate", id => "sidebar2", call => \&pagetemplate);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub checkconfig () {
|
||||||
|
# Parsing "sidebars"
|
||||||
|
my %sidebars;
|
||||||
|
if (defined $config{global_sidebars} and (ref($config{global_sidebars}) eq "ARRAY")) {
|
||||||
|
my $length = $#{$config{global_sidebars}}+1;
|
||||||
|
if (($length % 3) != 0) {
|
||||||
|
error("'sidebars' length must be a multiple of 3.");
|
||||||
|
}
|
||||||
|
for(my $i=0; $i<$length/3;$i += 1) {
|
||||||
|
unless(exists($sidebars{$config{global_sidebars}[3*$i]})) {
|
||||||
|
$sidebars{$config{global_sidebars}[3*$i]} = ();
|
||||||
|
}
|
||||||
|
push(
|
||||||
|
@{$sidebars{$config{global_sidebars}[3*$i]}},
|
||||||
|
@{[[
|
||||||
|
$config{global_sidebars}[3*$i+1],
|
||||||
|
$config{global_sidebars}[3*$i+2],
|
||||||
|
]]}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (not defined $config{global_sidebars}) {
|
||||||
|
$config{global_sidebars} = 1;
|
||||||
|
}
|
||||||
|
if (IkiWiki::yesno($config{global_sidebars})) {
|
||||||
|
%sidebars = (
|
||||||
|
"sidebar" => [["sidebar", "*"]]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@{$config{sidebars}} = %sidebars;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub getsetup () {
|
||||||
|
return
|
||||||
|
plugin => {
|
||||||
|
safe => 1,
|
||||||
|
rebuild => 1,
|
||||||
|
},
|
||||||
|
global_sidebars => {
|
||||||
|
type => "boolean",
|
||||||
|
example => 1,
|
||||||
|
description => "show sidebar page on all pages?",
|
||||||
|
safe => 1,
|
||||||
|
rebuild => 1,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
my %pagesidebar;
|
||||||
|
|
||||||
|
sub preprocess (@) {
|
||||||
|
my %params=@_;
|
||||||
|
|
||||||
|
my $page=$params{page};
|
||||||
|
return "" unless $page eq $params{destpage};
|
||||||
|
|
||||||
|
if (! defined $params{var}) {
|
||||||
|
$params{var} = "sidebar";
|
||||||
|
}
|
||||||
|
if (! defined $params{content}) {
|
||||||
|
$pagesidebar{$page}{$params{var}}=undef;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
my $file = $pagesources{$page};
|
||||||
|
my $type = pagetype($file);
|
||||||
|
|
||||||
|
unless(exists($pagesidebar{$page})) {
|
||||||
|
$pagesidebar{$page} = ();
|
||||||
|
}
|
||||||
|
$pagesidebar{$page}{$params{var}} = IkiWiki::htmlize($page, $page, $type,
|
||||||
|
IkiWiki::linkify($page, $page,
|
||||||
|
IkiWiki::preprocess($page, $page, $params{content})));
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
my $oldfile;
|
||||||
|
my $oldcontent;
|
||||||
|
|
||||||
|
sub sidebar_content ($$$$) {
|
||||||
|
my $templatevar=shift;
|
||||||
|
my $page=shift;
|
||||||
|
my $included=shift;
|
||||||
|
my $pagespec=shift;
|
||||||
|
|
||||||
|
return delete $pagesidebar{$page}{$templatevar} if defined $pagesidebar{$page}{$templatevar};
|
||||||
|
|
||||||
|
return if ! exists $pagesidebar{$page}{$templatevar} &&
|
||||||
|
! pagespec_match($page, $pagespec)
|
||||||
|
;
|
||||||
|
|
||||||
|
my $sidebar_page=bestlink($page, $included) || return;
|
||||||
|
my $sidebar_file=$pagesources{$sidebar_page} || return;
|
||||||
|
my $sidebar_type=pagetype($sidebar_file);
|
||||||
|
|
||||||
|
if (defined $sidebar_type) {
|
||||||
|
# FIXME: This isn't quite right; it won't take into account
|
||||||
|
# adding a new sidebar page. So adding such a page
|
||||||
|
# currently requires a wiki rebuild.
|
||||||
|
add_depends($page, $sidebar_page);
|
||||||
|
|
||||||
|
my $content;
|
||||||
|
if (defined $oldfile && $sidebar_file eq $oldfile) {
|
||||||
|
$content=$oldcontent;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$content=readfile(srcfile($sidebar_file));
|
||||||
|
$oldcontent=$content;
|
||||||
|
$oldfile=$sidebar_file;
|
||||||
|
}
|
||||||
|
|
||||||
|
return unless length $content;
|
||||||
|
return IkiWiki::htmlize($sidebar_page, $page, $sidebar_type,
|
||||||
|
IkiWiki::linkify($sidebar_page, $page,
|
||||||
|
IkiWiki::preprocess($sidebar_page, $page,
|
||||||
|
IkiWiki::filter($sidebar_page, $page, $content))));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
sub pagetemplate (@) {
|
||||||
|
my %params=@_;
|
||||||
|
|
||||||
|
my $template=$params{template};
|
||||||
|
my %sidebars = @{$config{sidebars}};
|
||||||
|
if ($params{destpage} eq $params{page}) {
|
||||||
|
foreach my $templatevar (keys(%sidebars)) {
|
||||||
|
if ($template->query(name => $templatevar) and exists($sidebars{$templatevar})) {
|
||||||
|
for my $data (@{$sidebars{$templatevar}}) {
|
||||||
|
my $content=sidebar_content($templatevar, $params{destpage}, @{$data}[0], @{$data}[1]);
|
||||||
|
if (defined $content && length $content) {
|
||||||
|
$template->param($templatevar => $content);
|
||||||
|
last;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
1
|
255
ikiwiki/directive.fr/index.html
Normal file
255
ikiwiki/directive.fr/index.html
Normal file
|
@ -0,0 +1,255 @@
|
||||||
|
<!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," />
|
||||||
|
|
||||||
|
|
||||||
|
<title>directive.fr - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="\"noindex," />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2009-08-15 18:30-0300\n"
|
||||||
|
"PO-Revision-Date: 2009-08-25 11:25+0200\n"
|
||||||
|
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bits\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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 <a href="../wikilink/">WikiLink</a> mais elles "
|
||||||
|
"commencent par un `!` et peuvent contenir des paramètres. La forme d'une "
|
||||||
|
"directive est la suivante :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\t\[[!directive param=\"value\" param=\"value\"]]\n"
|
||||||
|
msgstr "\t\[[!directive param=\"value\" param=\"value\"]]\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"This gets expanded before the rest of the page is processed, and can be used "
|
||||||
|
"to transform the page in various ways."
|
||||||
|
msgstr ""
|
||||||
|
"Le contenu de cette directive est traité avant que la page ne soit traitée "
|
||||||
|
"et cela peut être utilisé pour modifier cette page."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"The quotes around values can be omitted if the value is a simple word. "
|
||||||
|
"Also, some directives may use parameters without values, for example:"
|
||||||
|
msgstr ""
|
||||||
|
"Les guillements autour des valeurs des paramètres peuvent être omis si cette "
|
||||||
|
"valeur est un simple mot. D'autre part, certaines directives peuvent avoir "
|
||||||
|
"des paramètres sans valeur, par exemple : "
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\t\[[!tag foo]]\n"
|
||||||
|
msgstr "\t\[[!tag foo]]\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"A directive does not need to all be on one line, it can be wrapped to "
|
||||||
|
"multiple lines if you like:"
|
||||||
|
msgstr ""
|
||||||
|
"Il n'est pas nécessaire d'écrire une directive sur une seule ligne ; elle "
|
||||||
|
"peut l'être sur plusieurs si vous préférez. Par exemple :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
"\t\[[!directive foo=\"baldersnatch\"\n"
|
||||||
|
"\tbar=\"supercalifragilisticexpialidocious\" baz=11]]\n"
|
||||||
|
msgstr ""
|
||||||
|
"\t\[[!directive foo=\"baldersnatch\"\n"
|
||||||
|
"\tbar=\"supercalifragilisticexpialidocious\" baz=11]]\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"Also, multiple lines of *quoted* text can be used for a value. To allow "
|
||||||
|
"quote marks inside the quoted text, delimit the block of text with triple-"
|
||||||
|
"quotes:"
|
||||||
|
msgstr ""
|
||||||
|
"De plus, une *citation* sur plusieurs lignes peut servir de valeur. Pour "
|
||||||
|
"autoriser les guillemets du texte, il suffit de mettre trois séries de "
|
||||||
|
"guillemets autour du texte :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\t\[[!directive text=\"\"\"\n"
|
||||||
|
msgstr "\t\\[[!directive text=\"\"\"\n"
|
||||||
|
|
||||||
|
#. type: Bullet: ' 1. '
|
||||||
|
msgid "\"foo\""
|
||||||
|
msgstr "\"foo\""
|
||||||
|
|
||||||
|
#. type: Bullet: ' 2. '
|
||||||
|
msgid "\"bar\""
|
||||||
|
msgstr "\"bar\""
|
||||||
|
|
||||||
|
#. type: Bullet: ' 3. '
|
||||||
|
msgid "\"baz\""
|
||||||
|
msgstr "\"baz\""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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 `\[[pagecount ]]`), and it prohibits spaces in "
|
||||||
|
"<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 ""
|
||||||
|
"Il existe aussi une ancienne syntaxe pour les directives. Elle demande un "
|
||||||
|
"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 <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."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "[[!if <span class="error">Error: syntax error in pagespec "\"enabled(listdirectives)\""</span>]]\n"
|
||||||
|
msgstr "[[!listdirectives ]]\n"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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.fr&t=directive.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
186
ikiwiki/directive/index.html
Normal file
186
ikiwiki/directive/index.html
Normal file
|
@ -0,0 +1,186 @@
|
||||||
|
<!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 - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
365
ikiwiki/formatting.fr/index.html
Normal file
365
ikiwiki/formatting.fr/index.html
Normal file
|
@ -0,0 +1,365 @@
|
||||||
|
<!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," />
|
||||||
|
|
||||||
|
|
||||||
|
<title>\"Formater - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="\"noindex," />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2009-08-26 13:39-0300\n"
|
||||||
|
"PO-Revision-Date: 2009-08-26 21:18+0200\n"
|
||||||
|
"Last-Translator: Philippe Batailler <philippe.batailler@fre.fr>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bits\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
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 <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 <a href="../markdown/">MarkDown</a>. Voici comment "
|
||||||
|
"il fonctionne :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid "Leave blank lines between paragraphs."
|
||||||
|
msgstr "Lignes vides entre les paragraphes."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"You can *\\*emphasise\\** or **\\*\\*strongly emphasise\\*\\*** text by "
|
||||||
|
"placing it in single or double asterisks."
|
||||||
|
msgstr ""
|
||||||
|
"Texte en *\\*italique\\** avec un astérisque ou texte en **\\*\\*gras\\*"
|
||||||
|
"\\*** avec deux astérisques."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid "To create a list, start each line with an asterisk:"
|
||||||
|
msgstr "Une liste, chaque ligne commençant par un astérisque :"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\"* this is my list\""
|
||||||
|
msgstr "\"* ma liste\""
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\"* another item\""
|
||||||
|
msgstr "\"* un autre élément\""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"To make a numbered list, start each line with a number (any number will do) "
|
||||||
|
"followed by a period:"
|
||||||
|
msgstr ""
|
||||||
|
"Une liste numérotée, chaque ligne commençant par un chiffre (n'importe "
|
||||||
|
"lequel), suivi d'un point :"
|
||||||
|
|
||||||
|
#. type: Bullet: '1. '
|
||||||
|
msgid "\"1. first line\""
|
||||||
|
msgstr "\"1. première ligne\""
|
||||||
|
|
||||||
|
#. type: Bullet: '2. '
|
||||||
|
msgid "\"2. second line\""
|
||||||
|
msgstr "\"2. deuxième ligne\""
|
||||||
|
|
||||||
|
#. type: Bullet: '2. '
|
||||||
|
msgid "\"2. third line\""
|
||||||
|
msgstr "\"2. troisième ligne\""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"To create a header, start a line with one or more `#` characters followed by "
|
||||||
|
"a space and the header text. The number of `#` characters controls the size "
|
||||||
|
"of the header:"
|
||||||
|
msgstr ""
|
||||||
|
"Un titre, une ligne commençant par un ou plusieurs caractères `#` suivis "
|
||||||
|
"d'un caractère espace et du texte du titre. Le nombre de `#` détermine la "
|
||||||
|
"taille du titre :"
|
||||||
|
|
||||||
|
#. type: Title #
|
||||||
|
#, no-wrap
|
||||||
|
msgid "# h1"
|
||||||
|
msgstr "# h1"
|
||||||
|
|
||||||
|
#. type: Title ##
|
||||||
|
#, no-wrap
|
||||||
|
msgid "## h2"
|
||||||
|
msgstr "## h2"
|
||||||
|
|
||||||
|
#. type: Title ###
|
||||||
|
#, no-wrap
|
||||||
|
msgid "### h3"
|
||||||
|
msgstr "### h3"
|
||||||
|
|
||||||
|
#. type: Title ####
|
||||||
|
#, no-wrap
|
||||||
|
msgid "#### h4"
|
||||||
|
msgstr "#### h4"
|
||||||
|
|
||||||
|
#. type: Title #####
|
||||||
|
#, no-wrap
|
||||||
|
msgid "##### h5"
|
||||||
|
msgstr "##### h5"
|
||||||
|
|
||||||
|
#. type: Title ######
|
||||||
|
#, no-wrap
|
||||||
|
msgid "###### h6"
|
||||||
|
msgstr "###### h6"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"To create a horizontal rule, just write three or more dashes or stars on "
|
||||||
|
"their own line:"
|
||||||
|
msgstr ""
|
||||||
|
"Une règle horizontale, au moins trois tirets ou étoiles sur la même ligne :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "To quote someone, prefix the quote with \">\":\n"
|
||||||
|
msgstr "Pour citer quelqu'un, faire précéder la citation de \">\" :\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
"> To be or not to be,\n"
|
||||||
|
"> that is the question.\n"
|
||||||
|
msgstr ""
|
||||||
|
"> To be or not to be,\n"
|
||||||
|
"> that is the question.\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid "To write a code block, indent each line with a tab or 4 spaces:"
|
||||||
|
msgstr ""
|
||||||
|
"Un morceau de code, faire précéder chaque ligne par une tabulation ou quatre "
|
||||||
|
"espaces :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
"\t10 PRINT \"Hello, world!\"\n"
|
||||||
|
"\t20 GOTO 10\n"
|
||||||
|
msgstr ""
|
||||||
|
"\t10 PRINT \"Hello, world!\"\n"
|
||||||
|
"\t20 GOTO 10\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
"To link to an url or email address, you can just put the\n"
|
||||||
|
"url in angle brackets: <<http://ikiwiki.info>>, or you can use the\n"
|
||||||
|
"form \\[link text\\]\\(url\\)\n"
|
||||||
|
msgstr ""
|
||||||
|
"Pour créer un lien avec une URL ou une adresse électronique,\n"
|
||||||
|
"mettre l'URL entre crochets, <<http://ikiwiki.info>>,\n"
|
||||||
|
"ou utiliser la forme \\[texte du lien\\]\\(url\\)\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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 <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 <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 <a href="../wikilink/">WikiLink</a>."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "[[!if <span class="error">Error: syntax error in pagespec "\"enabled(smiley)"</span>]] and some other useful symbols. :-)"
|
||||||
|
msgstr "Insérer des <a href="../../smileys/">smileys</a> et d'autres symboles très utiles :-)"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "[[!if <span class="error">Error: syntax error in pagespec "\"enabled(shortcut)"</span>]] to link to common resources."
|
||||||
|
msgstr "Utiliser des <a href="../../shortcuts/index.en.html">shortcuts</a> pour renvoyer à des ressources communes."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\t\[[!wikipedia War\\_of\\_1812]]\n"
|
||||||
|
msgstr "\t\[[!wikipedia War\\_of\\_1812]]\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
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 (<a href="../../templates/">templates</a>) pour répéter des morceaux de "
|
||||||
|
"texte standard."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
"* 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"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "[[!if <span class="error">Error: syntax error in pagespec "\"enabled(meta)\""</span>]]\n"
|
||||||
|
msgstr "\t\[[!meta title=\"titre complet de la page\"]]\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "[[!if <span class="error">Error: syntax error in pagespec "\"enabled(inline)\""</span>]]\n"
|
||||||
|
msgstr "\t\[[!inline pages=\"blog/*\"]]\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "[[!if <span class="error">Error: syntax error in pagespec "\"enabled(listdirectives)\""</span>]] enabled for this wiki:\n"
|
||||||
|
msgstr " Voici la liste complète des directives activées sur ce wiki :\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid " [[!listdirectives ]]\n"
|
||||||
|
msgstr " [[!listdirectives ]]\n"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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.fr&t=%5C%26%23x22%3BFormater" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
231
ikiwiki/formatting/index.html
Normal file
231
ikiwiki/formatting/index.html
Normal file
|
@ -0,0 +1,231 @@
|
||||||
|
<!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 - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
58
ikiwiki/ikiwiki.js
Normal file
58
ikiwiki/ikiwiki.js
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
// © 2006-2010 Joey Hess
|
||||||
|
// Redistribution and use in source and compiled forms, with or without
|
||||||
|
// modification, are permitted under any circumstances. No warranty.
|
||||||
|
//
|
||||||
|
// ikiwiki's javascript utility function library
|
||||||
|
|
||||||
|
var hooks;
|
||||||
|
|
||||||
|
// Run onload as soon as the DOM is ready, if possible.
|
||||||
|
// gecko, opera 9
|
||||||
|
if (document.addEventListener) {
|
||||||
|
document.addEventListener("DOMContentLoaded", run_hooks_onload, false);
|
||||||
|
}
|
||||||
|
// other browsers
|
||||||
|
window.onload = run_hooks_onload;
|
||||||
|
|
||||||
|
var onload_done = 0;
|
||||||
|
|
||||||
|
function run_hooks_onload() {
|
||||||
|
// avoid firing twice
|
||||||
|
if (onload_done)
|
||||||
|
return;
|
||||||
|
onload_done = true;
|
||||||
|
|
||||||
|
run_hooks("onload");
|
||||||
|
}
|
||||||
|
|
||||||
|
function run_hooks(name) {
|
||||||
|
if (typeof(hooks) != "undefined") {
|
||||||
|
for (var i = 0; i < hooks.length; i++) {
|
||||||
|
if (hooks[i].name == name) {
|
||||||
|
hooks[i].call();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function hook(name, call) {
|
||||||
|
if (typeof(hooks) == "undefined")
|
||||||
|
hooks = new Array;
|
||||||
|
hooks.push({name: name, call: call});
|
||||||
|
}
|
||||||
|
|
||||||
|
function getElementsByClass(cls, node, tag) {
|
||||||
|
if (document.getElementsByClass)
|
||||||
|
return document.getElementsByClass(cls, node, tag);
|
||||||
|
if (! node) node = document;
|
||||||
|
if (! tag) tag = '*';
|
||||||
|
var ret = new Array();
|
||||||
|
var pattern = new RegExp("(^|\\s)"+cls+"(\\s|$)");
|
||||||
|
var els = node.getElementsByTagName(tag);
|
||||||
|
for (i = 0; i < els.length; i++) {
|
||||||
|
if ( pattern.test(els[i].className) ) {
|
||||||
|
ret.push(els[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
147
ikiwiki/index.html
Normal file
147
ikiwiki/index.html
Normal file
|
@ -0,0 +1,147 @@
|
||||||
|
<!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 - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
23
ikiwiki/jquery.min.js
vendored
Normal file
23
ikiwiki/jquery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
225
ikiwiki/login-selector/login-selector.js
Normal file
225
ikiwiki/login-selector/login-selector.js
Normal file
|
@ -0,0 +1,225 @@
|
||||||
|
/*
|
||||||
|
Based on the Simple OpenID Plugin
|
||||||
|
http://code.google.com/p/openid-selector/
|
||||||
|
|
||||||
|
This code is licenced under the New BSD License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
var selections_email_large = {
|
||||||
|
email: {
|
||||||
|
name: 'Email',
|
||||||
|
icon: 'wikiicons/email.png',
|
||||||
|
label: 'Enter your email address:',
|
||||||
|
url: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
var selections_openid_large = {
|
||||||
|
openid: {
|
||||||
|
name: 'OpenID',
|
||||||
|
icon: 'wikiicons/openidlogin-bg.gif',
|
||||||
|
label: 'Enter your OpenID:',
|
||||||
|
url: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
var selections = $.extend({}, selections_email_large, selections_openid_large);
|
||||||
|
|
||||||
|
var selector = {
|
||||||
|
|
||||||
|
ajaxHandler: null,
|
||||||
|
cookie_expires: 6*30, // 6 months.
|
||||||
|
cookie_name: 'openid_selection', // historical name
|
||||||
|
cookie_path: '/',
|
||||||
|
|
||||||
|
img_path: 'images/',
|
||||||
|
|
||||||
|
input_id: null,
|
||||||
|
selection_url: null,
|
||||||
|
selection_id: null,
|
||||||
|
othersignin_id: null,
|
||||||
|
|
||||||
|
init: function(input_id, login_methods, othersignin_id, othersignin_label) {
|
||||||
|
|
||||||
|
var selector_btns = $('#login_btns');
|
||||||
|
|
||||||
|
this.input_id = input_id;
|
||||||
|
|
||||||
|
$('#login_choice').show();
|
||||||
|
$('#login_input_area').empty();
|
||||||
|
|
||||||
|
// add box for each selection
|
||||||
|
if (login_methods['openid']) {
|
||||||
|
for (id in selections_openid_large) {
|
||||||
|
selector_btns.append(this.getBoxHTML(selections_openid_large[id], 'large'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (login_methods['email']) {
|
||||||
|
for (id in selections_email_large) {
|
||||||
|
selector_btns.prepend(this.getBoxHTML(selections_email_large[id], 'large'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (othersignin_label != "") {
|
||||||
|
this.othersignin_label=othersignin_label;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.othersignin_label="other";
|
||||||
|
}
|
||||||
|
if (othersignin_id != "") {
|
||||||
|
this.othersignin_id=othersignin_id;
|
||||||
|
selector_btns.prepend(
|
||||||
|
'<a href="javascript: selector.signin(\'othersignin\');"' +
|
||||||
|
' style="background: #FFF" ' +
|
||||||
|
'class="othersignin login_large_btn">' +
|
||||||
|
'<img alt="" width="16" height="16" src="favicon.ico" />' +
|
||||||
|
' ' + this.othersignin_label +
|
||||||
|
'</a>'
|
||||||
|
);
|
||||||
|
$('#'+this.othersignin_id).hide();
|
||||||
|
}
|
||||||
|
|
||||||
|
$('#login_selector_form').submit(this.submit);
|
||||||
|
|
||||||
|
var box_id = this.readCookie();
|
||||||
|
if (box_id) {
|
||||||
|
this.signin(box_id, true);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getBoxHTML: function(selection, box_size) {
|
||||||
|
var label="";
|
||||||
|
var title=""
|
||||||
|
if (box_size == 'large') {
|
||||||
|
label=' ' + selection["name"];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
title=' title="'+selection["name"]+'"';
|
||||||
|
}
|
||||||
|
var box_id = selection["name"].toLowerCase();
|
||||||
|
return '<a' + title +' href="javascript: selector.signin(\''+ box_id +'\');"' +
|
||||||
|
' style="background: #FFF" ' +
|
||||||
|
'class="' + box_id + ' login_' + box_size + '_btn">' +
|
||||||
|
'<img alt="" width="16" height="16" src="' + selection["icon"] + '" />' +
|
||||||
|
label +
|
||||||
|
'</a>';
|
||||||
|
|
||||||
|
},
|
||||||
|
/* selection image click */
|
||||||
|
signin: function(box_id, onload) {
|
||||||
|
|
||||||
|
if (box_id == 'othersignin') {
|
||||||
|
this.highlight(box_id);
|
||||||
|
$('#login_input_area').empty();
|
||||||
|
$('#'+this.othersignin_id).show();
|
||||||
|
this.setCookie(box_id);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if (this.othersignin_id) {
|
||||||
|
$('#'+this.othersignin_id).hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var selection = selections[box_id];
|
||||||
|
if (! selection) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.highlight(box_id);
|
||||||
|
|
||||||
|
this.selection_id = box_id;
|
||||||
|
this.selection_url = selection['url'];
|
||||||
|
|
||||||
|
// prompt user for input?
|
||||||
|
if (selection['label']) {
|
||||||
|
this.setCookie(box_id);
|
||||||
|
this.useInputBox(selection);
|
||||||
|
} else {
|
||||||
|
this.setCookie('');
|
||||||
|
$('#login_input_area').empty();
|
||||||
|
if (! onload) {
|
||||||
|
$('#login_selector_form').submit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/* Sign-in button click */
|
||||||
|
submit: function() {
|
||||||
|
var url = selector.selection_url;
|
||||||
|
if (url) {
|
||||||
|
url = url.replace('{username}', $('#entry').val());
|
||||||
|
selector.setOpenIdUrl(url);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
selector.setOpenIdUrl("");
|
||||||
|
}
|
||||||
|
if (selector.ajaxHandler) {
|
||||||
|
selector.ajaxHandler(selector.selection_id, document.getElementById(selector.input_id).value);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
setOpenIdUrl: function (url) {
|
||||||
|
|
||||||
|
var hidden = $('#'+this.input_id);
|
||||||
|
if (hidden.length > 0) {
|
||||||
|
hidden.value = url;
|
||||||
|
} else {
|
||||||
|
$('#login_selector_form').append('<input style="display:none" id="' + this.input_id + '" name="' + this.input_id + '" value="'+url+'"/>');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
highlight: function (box_id) {
|
||||||
|
|
||||||
|
// remove previous highlight.
|
||||||
|
var highlight = $('#login_highlight');
|
||||||
|
if (highlight) {
|
||||||
|
highlight.replaceWith($('#login_highlight a')[0]);
|
||||||
|
}
|
||||||
|
// add new highlight.
|
||||||
|
$('.'+box_id).wrap('<div id="login_highlight"></div>');
|
||||||
|
},
|
||||||
|
setCookie: function (value) {
|
||||||
|
|
||||||
|
var date = new Date();
|
||||||
|
date.setTime(date.getTime()+(this.cookie_expires*24*60*60*1000));
|
||||||
|
var expires = "; expires="+date.toGMTString();
|
||||||
|
|
||||||
|
document.cookie = this.cookie_name+"="+value+expires+"; path=" + this.cookie_path;
|
||||||
|
},
|
||||||
|
readCookie: function () {
|
||||||
|
var nameEQ = this.cookie_name + "=";
|
||||||
|
var ca = document.cookie.split(';');
|
||||||
|
for(var i=0;i < ca.length;i++) {
|
||||||
|
var c = ca[i];
|
||||||
|
while (c.charAt(0)==' ') c = c.substring(1,c.length);
|
||||||
|
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
useInputBox: function (selection) {
|
||||||
|
|
||||||
|
var input_area = $('#login_input_area');
|
||||||
|
|
||||||
|
var html = '';
|
||||||
|
var id = selection['name']+'_entry';
|
||||||
|
var value = '';
|
||||||
|
var label = selection['label'];
|
||||||
|
var style = '';
|
||||||
|
|
||||||
|
if (selection['name'] == 'OpenID') {
|
||||||
|
id = this.input_id;
|
||||||
|
value = '';
|
||||||
|
style = 'background:#FFF url(wikiicons/openidlogin-bg.gif) no-repeat scroll 0 50%; padding-left:18px;';
|
||||||
|
}
|
||||||
|
if (label) {
|
||||||
|
html = '<label for="'+ id +'" class="block">' + label + '</label>';
|
||||||
|
}
|
||||||
|
html += '<input id="'+id+'" type="text" style="'+style+'" name="'+id+'" value="'+value+'" />' +
|
||||||
|
'<input id="selector_submit" type="submit" value="Login"/>';
|
||||||
|
|
||||||
|
input_area.empty();
|
||||||
|
input_area.append(html);
|
||||||
|
|
||||||
|
$('#'+id).focus();
|
||||||
|
},
|
||||||
|
setAjaxHandler: function (ajaxFunction) {
|
||||||
|
this.ajaxHandler = ajaxFunction;
|
||||||
|
}
|
||||||
|
};
|
181
ikiwiki/markdown.fr/index.html
Normal file
181
ikiwiki/markdown.fr/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," />
|
||||||
|
|
||||||
|
|
||||||
|
<title>markdown.fr - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="\"noindex," />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2009-08-15 18:30-0300\n"
|
||||||
|
"PO-Revision-Date: 2009-08-25 09:31+0200\n"
|
||||||
|
"Last-Translator: Alexandre Dupas <alexandre.dupas@gmail.com>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bits\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"[Markdown](http://daringfireball.net/projects/markdown/) 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."
|
||||||
|
msgstr ""
|
||||||
|
"[Markdown](http://daringfireball.net/projects/markdown/) est un langage de "
|
||||||
|
"balisage élémentaire, comparable à celui utilisé dans la messagerie "
|
||||||
|
"électronique. Il s'agit du langage de balisage utilisé par défaut dans ce "
|
||||||
|
"wiki."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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 à <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 <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 <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."
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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.fr&t=markdown.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
142
ikiwiki/markdown/index.html
Normal file
142
ikiwiki/markdown/index.html
Normal file
|
@ -0,0 +1,142 @@
|
||||||
|
<!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 - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
223
ikiwiki/openid.fr/index.html
Normal file
223
ikiwiki/openid.fr/index.html
Normal file
|
@ -0,0 +1,223 @@
|
||||||
|
<!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," />
|
||||||
|
|
||||||
|
|
||||||
|
<title>\"OpenID\" - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="\"noindex," />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2010-07-18 22:29+0000\n"
|
||||||
|
"PO-Revision-Date: 2010-07-20 21:25+0200\n"
|
||||||
|
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"Language: fr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bits\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
"[[!if <span class="error">Error: syntax error in pagespec "\"enabled(openid)\"\n""</span>]]\n"
|
||||||
|
msgstr ""
|
||||||
|
"[[!if <span class="error">Error: syntax error in pagespec "\"enabled(openid)\"\n""</span>]]\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"[OpenID](http://openid.net) is a decentralized authentication mechanism that "
|
||||||
|
"allows you to have one login that you can use on a growing number of "
|
||||||
|
"websites."
|
||||||
|
msgstr ""
|
||||||
|
"[OpenID](http://openid.net) est un système d'authentification décentralisé "
|
||||||
|
"qui permet d'avoir un identifiant unique, utilisable sur un nombre croissant "
|
||||||
|
"de sites internet."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"If you have an account with some of the larger web service providers, you "
|
||||||
|
"might already have an OpenID. [Directory of OpenID providers](http://"
|
||||||
|
"openiddirectory.com/openid-providers-c-1.html)"
|
||||||
|
msgstr "Si vous possédez un compte sur l'un des nombreux fournisseurs de services web, il se peut que vous ayez déjà un OpenID. [Répertoire des fournisseurs d'OpenID](http://openiddirectory.com/openid-providers-c-1.html)."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "[[!if <span class="error">Error: syntax error in pagespec "\"enabled(openid)\""</span>]]\n"
|
||||||
|
msgstr ""
|
||||||
|
"\t\[[!meta openid=\"http://yourid.myopenid.com/\"\n"
|
||||||
|
"\t server=\"http://www.myopenid.com/server\"]]\n"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "To sign up for an OpenID, visit one of the following identity providers:"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Pour obtenir un identifiant OpenID, visitez l'un des fournisseurs "
|
||||||
|
#~ "d'identité suivants :"
|
||||||
|
|
||||||
|
#~ msgid "[MyOpenID](https://www.myopenid.com/)"
|
||||||
|
#~ msgstr "[MyOpenID](https://www.myopenid.com/)"
|
||||||
|
|
||||||
|
#~ msgid "[GetOpenID](https://getopenid.com/)"
|
||||||
|
#~ msgstr "[GetOpenID](https://getopenid.com/)"
|
||||||
|
|
||||||
|
#~ msgid "[LiveJournal](http://www.livejournal.com/openid/)"
|
||||||
|
#~ msgstr "[LiveJournal](http://www.livejournal.com/openid/)"
|
||||||
|
|
||||||
|
#~ msgid "[TrustBearer](https://openid.trustbearer.com/)"
|
||||||
|
#~ msgstr "[TrustBearer](https://openid.trustbearer.com/)"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "or any of the [many others out there](http://openiddirectory.com/openid-"
|
||||||
|
#~ "providers-c-1.html)"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "ou n'importe lequel des [nombreux autres fournisseurs existants](http://"
|
||||||
|
#~ "openiddirectory.com/openid-providers-c-1.html)"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Your OpenID is the URL that you are given when you sign up.\n"
|
||||||
|
#~ "[[!if test=\"enabled(openid)\" then=\"\"\"\n"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Votre identifiant OpenID est l'URL qui vous est attribuée lorsque vous vous inscrivez.\n"
|
||||||
|
#~ "[[!if test=\"enabled(openid)\" then=\"\"\"\n"
|
||||||
|
|
||||||
|
#~ msgid "[Videntity](http://videntity.org/)"
|
||||||
|
#~ msgstr "[Videntity](http://videntity.org/)"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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.fr&t=%5C%26%23x22%3BOpenID%5C%26%23x22%3B" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
154
ikiwiki/openid/index.html
Normal file
154
ikiwiki/openid/index.html
Normal file
|
@ -0,0 +1,154 @@
|
||||||
|
<!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 - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
443
ikiwiki/pagespec.fr/index.html
Normal file
443
ikiwiki/pagespec.fr/index.html
Normal file
|
@ -0,0 +1,443 @@
|
||||||
|
<!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," />
|
||||||
|
|
||||||
|
|
||||||
|
<title>pagespec.fr - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="\"noindex," />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the ikiwiki package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki 3.141\n"
|
||||||
|
"POT-Creation-Date: 2010-07-18 22:29+0000\n"
|
||||||
|
"PO-Revision-Date: 2010-07-21 17:21+0200\n"
|
||||||
|
"Last-Translator: Steve Petruzzello <dlist@bluewin.ch>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"Language: fr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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."
|
||||||
|
msgstr ""
|
||||||
|
"Le wiki utilise un concept de spécification de page « PageSpec » afin de "
|
||||||
|
"choisir un ensemble de pages. Par exemple il est possible de choisir les "
|
||||||
|
"pages verrouillées, les pages dont vous recevez par courriel les "
|
||||||
|
"modifications ou des pages à regrouper pour faire blog. Une spécification "
|
||||||
|
"correspond à un ensemble de pages."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"The simplest PageSpec is a simple list of pages. For example, this matches "
|
||||||
|
"any of the three listed pages:"
|
||||||
|
msgstr ""
|
||||||
|
"La spécification la plus simple est la liste de pages. Par exemple, "
|
||||||
|
"l'expression suivante correspond à l'une ou l'autre des trois pages listées :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\tfoo or bar or baz\n"
|
||||||
|
msgstr "\tfoo or bar or baz\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
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 <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 "
|
||||||
|
"expression particulière dans leur nom. Cela s'obtient en utilisant un motif "
|
||||||
|
"(« 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 <a href="../subpage/">SubPage</a> de la *SandBox*, mais "
|
||||||
|
"pas à la *SandBox* elle-même :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\t*music* or SandBox/*\n"
|
||||||
|
msgstr "\t*musique* or SandBox/*\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"You can also prefix an item with \"`!`\" to skip pages that match it. So to "
|
||||||
|
"match all pages except for Discussion pages and the SandBox:"
|
||||||
|
msgstr ""
|
||||||
|
"Vous pouvez également préfixer un élément avec « `!` » pour ignorer les "
|
||||||
|
"pages correspondantes. Ainsi pour trouver toutes les pages sauf les pages "
|
||||||
|
"Discussion et la page *SandBox* :"
|
||||||
|
|
||||||
|
#. type: Bullet: ' * '
|
||||||
|
msgid "and !SandBox and !*/Discussion"
|
||||||
|
msgstr "and !SandBox and !*/Discussion"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"Some more elaborate limits can be added to what matches using these "
|
||||||
|
"functions:"
|
||||||
|
msgstr ""
|
||||||
|
"Des contraintes plus élaborées peuvent être ajoutées avec les fonctions "
|
||||||
|
"suivantes :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
"* \"`glob(someglob)`\" - matches pages and other files that match the given glob.\n"
|
||||||
|
" Just writing the glob by itself is actually a shorthand for this function.\n"
|
||||||
|
"* \"`page(glob)`\" - like `glob()`, but only matches pages, not other files\n"
|
||||||
|
"* \"`link(page)`\" - matches only pages that link to a given page (or glob)\n"
|
||||||
|
"* \"`tagged(tag)`\" - matches pages that are tagged or link to the given tag (or\n"
|
||||||
|
" tags matched by a glob)\n"
|
||||||
|
"* \"`backlink(page)`\" - matches only pages that a given page links to\n"
|
||||||
|
"* \"`creation_month(month)`\" - matches only files created on the given month\n"
|
||||||
|
"* \"`creation_day(mday)`\" - or day of the month\n"
|
||||||
|
"* \"`creation_year(year)`\" - or year\n"
|
||||||
|
"* \"`created_after(page)`\" - matches only files created after the given page\n"
|
||||||
|
" was created\n"
|
||||||
|
"* \"`created_before(page)`\" - matches only files created before the given page\n"
|
||||||
|
" was created\n"
|
||||||
|
"* \"`internal(glob)`\" - like `glob()`, but matches even internal-use \n"
|
||||||
|
" pages that globs do not usually match.\n"
|
||||||
|
"* \"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\",\n"
|
||||||
|
" \"`license(glob)`\", \"`copyright(glob)`\", \"`guid(glob)`\" \n"
|
||||||
|
" - match pages that have the given metadata, matching the specified glob.\n"
|
||||||
|
"* \"`user(username)`\" - tests whether a modification is being made by a\n"
|
||||||
|
" user with the specified username. If openid is enabled, an openid can also\n"
|
||||||
|
" be put here. Glob patterns can be used in the username. For example, \n"
|
||||||
|
" to match all openid users, use `user(*://*)`\n"
|
||||||
|
"* \"`admin()`\" - tests whether a modification is being made by one of the\n"
|
||||||
|
" wiki admins.\n"
|
||||||
|
"* \"`ip(address)`\" - tests whether a modification is being made from the\n"
|
||||||
|
" specified IP address.\n"
|
||||||
|
"* \"`comment(glob)`\" - matches comments to a page matching the glob.\n"
|
||||||
|
"* \"`comment_pending(glob)`\" - matches unmoderated, pending comments.\n"
|
||||||
|
"* \"`postcomment(glob)`\" - matches only when comments are being \n"
|
||||||
|
" posted to a page matching the specified glob\n"
|
||||||
|
msgstr ""
|
||||||
|
"* \"`glob(motif)`\" - recherche les pages et fichiers qui correspondent au motif.\n"
|
||||||
|
" N'écrire que le motif lui-même est un raccourci pour cette fonction.\n"
|
||||||
|
"* \"`page(motif)`\" - comme `glob()`, mais ne recherche que des pages, pas des fichiers.\n"
|
||||||
|
"* \"`link(page)`\" - correspond aux pages ayant un lien vers cette page (ou motif)\n"
|
||||||
|
"* \"`tagged(étiquette)`\" - correspond aux pages qui sont marquées ou qui sont\n"
|
||||||
|
" liées à l'étiquette donnée (ou des étiquettes correspondant à un motif).\n"
|
||||||
|
"* \"`backlink(page)`\" - correspond seulement aux pages qui sont pointées (lien) par la page donnée.\n"
|
||||||
|
"* \"`creation_month(mois)`\" - correspond aux pages créées durant ce mois\n"
|
||||||
|
"* \"`creation_day(jour)`\" - ou au jour de ce mois\n"
|
||||||
|
"* \"`creation_year(année)`\" - ou année\n"
|
||||||
|
"* \"`created_after(page)`\" - correspond aux fichiers créés après la création de la page donnée.\n"
|
||||||
|
"* \"`created_before(page)`\\\" - correspond aux fichiers créés avant la création de la page donnée.\n"
|
||||||
|
"* \"`internal(motif)`\" - comme `glob()`, mais correspond en plus aux\n"
|
||||||
|
" pages à usage interne que la fonction glob ne trouve pas en général.\n"
|
||||||
|
"* \"`title(motif)`\", \"`author(motif)`\", \"`authorurl(motif)`\",\n"
|
||||||
|
" \"`license(motif)`\", \"`copyright(motif)`\", \"`guid(motif)`\"\n"
|
||||||
|
" - renvoient les pages qui possèdent les métadonnées correspondant au motif donné.\n"
|
||||||
|
"* \"`user(username)`\" - teste si une modification est faite par l'identifiant donné.\n"
|
||||||
|
" Si openid est activé, on peut aussi l'utiliser. L'identifiant peut contenir des expressions régulières.\n"
|
||||||
|
" Par exemple, pour obtenir tous les utilisateurs openid, utilisez l'expression : `user(*://*)`.\n"
|
||||||
|
"* \"`admin()`\" - teste si une modification par un administrateur du wiki est en cours.\n"
|
||||||
|
"* \"`ip(adresse)`\" - teste si une modification par l'IP donnée est en cours.\n"
|
||||||
|
"* \"`comment(motif)`\" - renvoient les commentaires d'une page correspondant au motif donné.\n"
|
||||||
|
"* \"`comment_pending(motif)`\" - renvoient les commentaires non modérés, en attente.\n"
|
||||||
|
"* \"`postcomment(motif)`\" - ne correspond que si des commentaires sont postés\n"
|
||||||
|
" vers une page correspondant au motif donné.\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"For example, to match all pages in a blog that link to the page about music "
|
||||||
|
"and were written in 2005:"
|
||||||
|
msgstr ""
|
||||||
|
"Par exemple, pour trouver toutes les pages d'un blog qui ont un lien vers la "
|
||||||
|
"page traitant de musique et qui ont été créées en 2005 :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\tblog/* and link(music) and creation_year(2005)\n"
|
||||||
|
msgstr "\tblog/* and link(musique) and creation_year(2005)\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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."
|
||||||
|
msgstr ""
|
||||||
|
"Veuillez noter l'utilisation du « and » dans l'exemple ci-dessus. Seules les "
|
||||||
|
"pages dont les trois conditions sont vraies seront trouvées. Utilisez "
|
||||||
|
"« and » pour ce genre d'expression combinée. « or » est utilisé quand une "
|
||||||
|
"seule des trois conditions est suffisante. Veuillez noter que « index and "
|
||||||
|
"SandBox » n'a pas de sens puisqu'aucune page ne peut correspondre aux deux "
|
||||||
|
"expressions."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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:"
|
||||||
|
msgstr ""
|
||||||
|
"On peut créer des expressions plus complexes à l'aide de parenthèses. Par "
|
||||||
|
"exemple, pour trouver les pages d'un blog possédantl'une ou l'autre "
|
||||||
|
"étiquette, on utiliserait :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\tblog/* and (tagged(foo) or tagged(bar))\n"
|
||||||
|
msgstr "\tblog/* and (tagged(foo) or tagged(bar))\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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\"."
|
||||||
|
msgstr ""
|
||||||
|
"Veuillez noter que le nom d'une page dans une spécification de page "
|
||||||
|
"correspond au nom absolu du fichier dans le wiki. Ainsi une expression "
|
||||||
|
"« foo » utilisée sur une page « a/b » ne correspondra pas à une page nommée "
|
||||||
|
"« a/foo » ni à une page « a/b/foo ». Pour une correspondance relative au "
|
||||||
|
"répertoire de la page contenant la spécification, vous pouvez utiliser "
|
||||||
|
"« ./ ». Par exemple, « ./foo » sur la page « a/b » correspondra à la page "
|
||||||
|
"« a/foo »."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\"`link(page)`\" - matches only pages that link to a given page (or glob)"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `link(page)` » - correspond aux pages ayant un lien vers cette page (ou "
|
||||||
|
#~ "motif)"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\"`tagged(tag)`\" - matches pages that are tagged or link to the given "
|
||||||
|
#~ "tag (or tags matched by a glob)"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `tagged(tag)` » - correspond aux pages qui sont marquées ou qui sont "
|
||||||
|
#~ "liées à l'étiquette donnée (ou des étiquettes correspondant à un motif)."
|
||||||
|
|
||||||
|
#~ msgid "\"`backlink(page)`\" - matches only pages that a given page links to"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `backlink(page)` » - correspond seulement aux pages qui sont pointées "
|
||||||
|
#~ "(lien) par la page donnée."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\"`creation_month(month)`\" - matches only pages created on the given "
|
||||||
|
#~ "month"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `creation_month(mois)` » - correspond aux pages créées durant ce mois"
|
||||||
|
|
||||||
|
#~ msgid "\"`creation_day(mday)`\" - or day of the month"
|
||||||
|
#~ msgstr "« `creation_day(jour)` » - ou au jour de ce mois"
|
||||||
|
|
||||||
|
#~ msgid "\"`creation_year(year)`\" - or year"
|
||||||
|
#~ msgstr "« `creation_year(année)` » - ou année"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\"`created_after(page)`\" - matches only pages created after the given "
|
||||||
|
#~ "page was created"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `created_after(page)` » - correspond aux pages créées après la page "
|
||||||
|
#~ "donnée"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\"`created_before(page)`\" - matches only pages created before the given "
|
||||||
|
#~ "page was created"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `created_before(page) » - correspond aux pages créées avant la page "
|
||||||
|
#~ "donnée"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\"`glob(someglob)`\" - matches pages that match the given glob. Just "
|
||||||
|
#~ "writing the glob by itself is actually a shorthand for this function."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `glob(motif)` » - correspond aux pages correspondantes au motif donné. "
|
||||||
|
#~ "N'écrire que le motif lui-même est un raccourci pour cette fonction."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\"`internal(glob)`\" - like `glob()`, but matches even internal-use pages "
|
||||||
|
#~ "that globs do not usually match."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `internal(motif)` » - pareil à `glob()`, mais correspond en plus aux "
|
||||||
|
#~ "pages à usage interne que la fonction glob ne trouve pas en général."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\", \"`license"
|
||||||
|
#~ "(glob)`\", \"`copyright(glob)`\" - match pages that have the given "
|
||||||
|
#~ "metadata, matching the specified glob."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `title(motif)`, `author(motif)`, `authorurl(motif)`, `license(motif)`, "
|
||||||
|
#~ "`copyright(motif)` » - renvoient les pages qui possèdent les métadonnées "
|
||||||
|
#~ "correspondant au motif donné."
|
||||||
|
|
||||||
|
#~| msgid ""
|
||||||
|
#~| "\"`user(username)`\" - 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."
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\"`user(username)`\" - 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 `user(*://*)`"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `user(identifiant)` » - teste si une modification est faite par "
|
||||||
|
#~ "l'identifiant donné. Si openid est activé, on peut aussi l'utiliser. "
|
||||||
|
#~ "L'identifiant peut contenir des expressions régulières. Par exemple, pour "
|
||||||
|
#~ "obtenir tous les utilisateurs openid, utilisez l'expression `user(*://*)`."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\"`admin()`\" - tests whether a modification is being made by one of the "
|
||||||
|
#~ "wiki admins."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `admin()` » - teste si une modification par un administrateur est en "
|
||||||
|
#~ "cours."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\"`ip(address)`\" - tests whether a modification is being made from the "
|
||||||
|
#~ "specified IP address."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `ip(adresse)` » - teste si une modification par l'IP donnée est en "
|
||||||
|
#~ "cours."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\"`postcomment(glob)`\" - matches only when comments are being posted to "
|
||||||
|
#~ "a page matching the specified glob"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "« `postcomment(motif) » - ne correspond que si des commentaires sont "
|
||||||
|
#~ "postés vers une page correspondant au motif donné."
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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.fr&t=pagespec.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
250
ikiwiki/pagespec/attachment.fr/index.html
Normal file
250
ikiwiki/pagespec/attachment.fr/index.html
Normal file
|
@ -0,0 +1,250 @@
|
||||||
|
<!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," />
|
||||||
|
|
||||||
|
|
||||||
|
<title>attachment.fr - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="\"noindex," />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2010-07-18 22:29+0000\n"
|
||||||
|
"PO-Revision-Date: 2009-08-26 14:46+0200\n"
|
||||||
|
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"Language: fr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bits\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
"[[!if <span class="error">Error: syntax error in pagespec "\"enabled(attachment)\"\n""</span>]]\n"
|
||||||
|
msgstr ""
|
||||||
|
"[[!if <span class="error">Error: syntax error in pagespec "\"enabled(attachment)\"\n""</span>]]\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"If attachments are enabled, the wiki admin can control what types of "
|
||||||
|
"attachments will be accepted, via the `allowed_attachments` configuration "
|
||||||
|
"setting."
|
||||||
|
msgstr ""
|
||||||
|
"Quand les pièces jointes sont autorisées, l'administrateur du wiki peut "
|
||||||
|
"contrôler le type des pièces acceptées, avec l'option de configuration "
|
||||||
|
"`allowed_attachments`."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid ""
|
||||||
|
#| "For example, to limit arbitrary files to 50 kilobytes, but allow larger "
|
||||||
|
#| "mp3 files to be uploaded by joey into a specific directory, and check all "
|
||||||
|
#| "attachments for viruses, something like this could be used:"
|
||||||
|
msgid ""
|
||||||
|
"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:"
|
||||||
|
msgstr ""
|
||||||
|
"Par exemple, pour limiter tous les fichiers à 50 kilooctets mais permettre "
|
||||||
|
"que des fichiers mp3 plus grands soient envoyés par joey dans un répertoire "
|
||||||
|
"donné et pour vérifier que toutes les pièces jointes sont sans virus, on "
|
||||||
|
"peut utiliser quelque chose comme ça :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, fuzzy, no-wrap
|
||||||
|
#| msgid "\tvirusfree() and ((user(joey) and podcast/*.mp3 and mimetype(audio/mpeg) and maxsize(15mb)) or (!ispage() and maxsize(50kb)))\n"
|
||||||
|
msgid "\tvirusfree() and ((user(joey) and podcast/*.mp3 and mimetype(audio/mpeg) and maxsize(15mb)) or (mimetype(image/*) and maxsize(50kb)))\n"
|
||||||
|
msgstr "\tvirusfree() and ((user(joey) and podcast/*.mp3 and mimetype(audio/mpeg) and maxsize(15mb)) or (!ispage() and maxsize(50kb)))\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"The regular <a href="../">PageSpec</a> syntax is expanded with the following "
|
||||||
|
"additional tests:"
|
||||||
|
msgstr ""
|
||||||
|
"La syntaxe normale de <a href="../">PageSpec</a> est appliquée avec les tests "
|
||||||
|
"supplémentaires suivants :"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"\"`maxsize(size)`\" - 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."
|
||||||
|
msgstr ""
|
||||||
|
"`maxsize(size)` - teste si la taille de la pièce n'est pas plus grande que "
|
||||||
|
"la taille donnée. La taille est mesurée en octet mais on peut l'indiquer en "
|
||||||
|
"« ko », « mo », « go » etc."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"\"`minsize(size)`\" - tests whether the attachment is no smaller than the "
|
||||||
|
"specified size."
|
||||||
|
msgstr ""
|
||||||
|
"`minsize(size)` - teste si la taille de la pièce n'est pas plus petite que "
|
||||||
|
"la taille donnée."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"\"`ispage()`\" - 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)."
|
||||||
|
msgstr ""
|
||||||
|
"`ispage()` - teste si la pièce jointe sera traitée comme page de wiki par "
|
||||||
|
"ikiwiki, c'est-à-dire si son extension est « .mdwn » ou un autre format "
|
||||||
|
"accepté."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
" So, if you don't want to allow wiki pages to be uploaded as attachments,\n"
|
||||||
|
" use `!ispage()` ; if you only want to allow wiki pages to be uploaded\n"
|
||||||
|
" as attachments, use `ispage()`.\n"
|
||||||
|
msgstr ""
|
||||||
|
" Donc, si vous ne voulez pas que des pages de wiki puissent être envoyées en pièces jointes, utilisez `!ispage()`\n"
|
||||||
|
" et dans le cas contraire, `ispage()`.\n"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"\"`mimetype(foo/bar)`\" - checks the MIME type of the attachment. You can "
|
||||||
|
"include a glob in the type, for example `mimetype(image/*)`."
|
||||||
|
msgstr ""
|
||||||
|
"`mimetype(foo/bar)` - teste le type MIME de la pièce jointe. Vous pouvez "
|
||||||
|
"inclure un motif dans le type, par exemple `mimetype(image/*)`."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\"`virusfree()`\" - checks the attachment with an antiviral program."
|
||||||
|
msgstr "`virusfree()` - teste la pièce jointe avec un programme antivirus."
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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.fr&t=attachment.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
166
ikiwiki/pagespec/attachment/index.html
Normal file
166
ikiwiki/pagespec/attachment/index.html
Normal file
|
@ -0,0 +1,166 @@
|
||||||
|
<!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 - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
231
ikiwiki/pagespec/index.html
Normal file
231
ikiwiki/pagespec/index.html
Normal file
|
@ -0,0 +1,231 @@
|
||||||
|
<!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 - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
203
ikiwiki/pagespec/po.fr/index.html
Normal file
203
ikiwiki/pagespec/po.fr/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," />
|
||||||
|
|
||||||
|
|
||||||
|
<title>po.fr - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="\"noindex," />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2010-07-18 22:29+0000\n"
|
||||||
|
"PO-Revision-Date: 2009-08-30 09:37+0200\n"
|
||||||
|
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"Language: fr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bits\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
"[[!if <span class="error">Error: syntax error in pagespec "\"enabled(po)\"\n""</span>]]\n"
|
||||||
|
msgstr ""
|
||||||
|
"[[!if <span class="error">Error: syntax error in pagespec "\"enabled(po)\"\n""</span>]]\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"If the <a href="http://ikiwiki.info/plugins/po/">po</a> plugin is enabled, the regular [[ikiwiki/"
|
||||||
|
"PageSpec]] syntax is expanded with the following additional tests that can "
|
||||||
|
"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 "
|
||||||
|
"<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 :"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"\"`lang(LL)`\" - tests whether a page is written in the language specified "
|
||||||
|
"as a ISO639-1 (two-letter) language code."
|
||||||
|
msgstr ""
|
||||||
|
"`lang(LL)` - teste si la page est écrite dans la langue indiquée par le code "
|
||||||
|
"ISO639-1 (deux lettres)."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"\"`currentlang()`\" - tests whether a page is written in the same language "
|
||||||
|
"as the current page."
|
||||||
|
msgstr ""
|
||||||
|
"`currentlang()` - teste si une page est écrite dans la langue de la page "
|
||||||
|
"donnée."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"\"`needstranslation()`\" - 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: \"`needstranslation(50)`\" "
|
||||||
|
"matches only pages less than 50% translated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"Note that every non-po page is considered to be written in "
|
||||||
|
"`po_master_language`, as specified in `ikiwiki.setup`."
|
||||||
|
msgstr ""
|
||||||
|
"Notez que chaque page qui n'est pas de type po est considérée comme une page "
|
||||||
|
"écrite selon le `po_master_language`, tel que spécifié dans le fichier de "
|
||||||
|
"configuration `ikiwiki.setup`."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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.fr&t=po.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
153
ikiwiki/pagespec/po/index.html
Normal file
153
ikiwiki/pagespec/po/index.html
Normal file
|
@ -0,0 +1,153 @@
|
||||||
|
<!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 - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
151
ikiwiki/pagespec/sorting/index.html
Normal file
151
ikiwiki/pagespec/sorting/index.html
Normal file
|
@ -0,0 +1,151 @@
|
||||||
|
<!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 - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
79
ikiwiki/relativedate.js
Normal file
79
ikiwiki/relativedate.js
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
// © 2006-2010 Joey Hess
|
||||||
|
// Redistribution and use in source and compiled forms, with or without
|
||||||
|
// modification, are permitted under any circumstances. No warranty.
|
||||||
|
//
|
||||||
|
// Causes html elements in the 'relativedate' class to be displayed
|
||||||
|
// as relative dates. The date is parsed from the title attribute, or from
|
||||||
|
// the element content.
|
||||||
|
|
||||||
|
var dateElements;
|
||||||
|
|
||||||
|
hook("onload", getDates);
|
||||||
|
|
||||||
|
function getDates() {
|
||||||
|
dateElements = getElementsByClass('relativedate');
|
||||||
|
for (var i = 0; i < dateElements.length; i++) {
|
||||||
|
var elt = dateElements[i];
|
||||||
|
var title = elt.attributes.title;
|
||||||
|
var d = new Date(title ? title.value : elt.innerHTML);
|
||||||
|
if (! isNaN(d)) {
|
||||||
|
dateElements[i].date=d;
|
||||||
|
elt.title=elt.innerHTML;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
showDates();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showDates() {
|
||||||
|
for (var i = 0; i < dateElements.length; i++) {
|
||||||
|
var elt = dateElements[i];
|
||||||
|
var d = elt.date;
|
||||||
|
if (! isNaN(d)) {
|
||||||
|
elt.innerHTML=relativeDate(d);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
setTimeout(showDates,30000); // keep updating every 30s
|
||||||
|
}
|
||||||
|
|
||||||
|
var timeUnits = [
|
||||||
|
{ unit: 'year', seconds: 60 * 60 * 24 * 364 },
|
||||||
|
{ unit: 'month', seconds: 60 * 60 * 24 * 30 },
|
||||||
|
{ unit: 'day', seconds: 60 * 60 * 24 },
|
||||||
|
{ unit: 'hour', seconds: 60 * 60 },
|
||||||
|
{ unit: 'minute', seconds: 60 },
|
||||||
|
];
|
||||||
|
|
||||||
|
function relativeDate(date) {
|
||||||
|
var now = new Date();
|
||||||
|
var offset = date.getTime() - now.getTime();
|
||||||
|
var seconds = Math.round(Math.abs(offset) / 1000);
|
||||||
|
|
||||||
|
// hack to avoid reading just in the future if there is a minor
|
||||||
|
// amount of clock slip
|
||||||
|
if (offset >= 0 && seconds < 30 * 60 * 60) {
|
||||||
|
return "just now";
|
||||||
|
}
|
||||||
|
|
||||||
|
var ret = "";
|
||||||
|
var shown = 0;
|
||||||
|
for (i = 0; i < timeUnits.length; i++) {
|
||||||
|
if (seconds >= timeUnits[i].seconds) {
|
||||||
|
var num = Math.floor(seconds / timeUnits[i].seconds);
|
||||||
|
seconds -= num * timeUnits[i].seconds;
|
||||||
|
if (ret)
|
||||||
|
ret += "and ";
|
||||||
|
ret += num + " " + timeUnits[i].unit + (num > 1 ? "s" : "") + " ";
|
||||||
|
|
||||||
|
if (++shown == 2)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else if (shown)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (! ret)
|
||||||
|
ret = "less than a minute "
|
||||||
|
|
||||||
|
return ret + (offset < 0 ? "ago" : "from now");
|
||||||
|
}
|
215
ikiwiki/searching.fr/index.html
Normal file
215
ikiwiki/searching.fr/index.html
Normal file
|
@ -0,0 +1,215 @@
|
||||||
|
<!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," />
|
||||||
|
|
||||||
|
|
||||||
|
<title>searching.fr - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="\"noindex," />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2009-08-15 18:30-0300\n"
|
||||||
|
"PO-Revision-Date: 2009-08-25 10:10+0200\n"
|
||||||
|
"Last-Translator: Alexandre Dupas <alexandre.dupas@gmail.com>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bits\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
"[[!if <span class="error">Error: then parameter is required</span>]]\n"
|
||||||
|
msgstr ""
|
||||||
|
"[[!if <span class="error">Error: then parameter is required</span>]]\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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."
|
||||||
|
msgstr ""
|
||||||
|
"Si la fonction de recherche est activée, vous pouvez saisir des mots clefs "
|
||||||
|
"dans le champ de recherche, comme vous pouvez vous y attendre. Il y a "
|
||||||
|
"quelques petits trucs que vous pouvez utiliser pour obtenir des résultats "
|
||||||
|
"plus précis."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "To match a phrase, enclose it in double quotes."
|
||||||
|
msgstr "Pour rechercher précisément une phrase, mettez-la entre guillemets."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "`AND` can be used to search for documents containing two expressions."
|
||||||
|
msgstr ""
|
||||||
|
"`AND` peut être utilisé pour rechercher des documents contenant deux "
|
||||||
|
"expressions."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"`OR` can be used to search for documents containing either one of two "
|
||||||
|
"expressions."
|
||||||
|
msgstr ""
|
||||||
|
"`OR` peut être utilisé pour rechercher des documents contenant l'une des "
|
||||||
|
"deux expressions."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"Parentheses can be used to build up complicated search expressions. For "
|
||||||
|
"example, \"(foo AND bar) OR (me AND you)\""
|
||||||
|
msgstr ""
|
||||||
|
"Les parenthèses peuvent être utilisées pour construire des requêtes plus "
|
||||||
|
"compliquées, comme par exemple \"(foo AND bar) OR (me AND you)\""
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"Prefix a search term with \"-\" to avoid it from appearing in the results. "
|
||||||
|
"For example, \"-discussion\" will omit \"discussion\"."
|
||||||
|
msgstr ""
|
||||||
|
"Préfixez un mot clef avec \"-\" pour éviter que les pages contenant ce mot "
|
||||||
|
"clef n'apparaissent dans les résultats. Par exemple, \"-discussion\" ne "
|
||||||
|
"prendra pas en compte les pages contenant \"discussion\"."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "To search for a page with a given title, use \"title:foo\"."
|
||||||
|
msgstr ""
|
||||||
|
"Pour chercher une page dont le titre est connu, utilisez \"title:foo\"."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "To search for pages that contain a \"bar\" link, use \"link:bar\"."
|
||||||
|
msgstr ""
|
||||||
|
"Pour rechercher les pages contenant un lien vers une page \"truc\", utilisez "
|
||||||
|
"\"link:truc\"."
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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.fr&t=searching.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
150
ikiwiki/searching/index.html
Normal file
150
ikiwiki/searching/index.html
Normal file
|
@ -0,0 +1,150 @@
|
||||||
|
<!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 - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
184
ikiwiki/subpage.fr/index.html
Normal file
184
ikiwiki/subpage.fr/index.html
Normal file
|
@ -0,0 +1,184 @@
|
||||||
|
<!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," />
|
||||||
|
|
||||||
|
|
||||||
|
<title>subpage.fr - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="\"noindex," />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2010-07-18 22:29+0000\n"
|
||||||
|
"PO-Revision-Date: 2010-07-21 17:26+0200\n"
|
||||||
|
"Last-Translator: Alexandre Dupas <alexandre.dupas@gmail.com>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"Language: fr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bits\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"ikiwiki supports placing pages in a directory hierarchy. For example, this "
|
||||||
|
"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, <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."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#| msgid ""
|
||||||
|
#| "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."
|
||||||
|
msgid ""
|
||||||
|
"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."
|
||||||
|
msgstr "Pour ajouter une sous-page, faites simplement un sous-répertoire et mettez-y les pages. Par exemple, cette page est `subpage.mdwn` dans les sources de ce wiki et il y a également un sous-répertoire subpage, qui contient `subpage/linkingrules.mdwn`. Les sous-pages peuvent être emboîtées autant que vous le souhaitez."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid "Linking to and from a SubPage is explained in <span class="createlink">LinkingRules</span>."
|
||||||
|
msgstr ""
|
||||||
|
"Faire un lien depuis et vers une sous-page est expliqué dans "
|
||||||
|
"<span class="createlink">LinkingRules</span>."
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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.fr&t=subpage.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
143
ikiwiki/subpage/index.html
Normal file
143
ikiwiki/subpage/index.html
Normal file
|
@ -0,0 +1,143 @@
|
||||||
|
<!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 - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
235
ikiwiki/subpage/linkingrules.fr/index.html
Normal file
235
ikiwiki/subpage/linkingrules.fr/index.html
Normal file
|
@ -0,0 +1,235 @@
|
||||||
|
<!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," />
|
||||||
|
|
||||||
|
|
||||||
|
<title>linkingrules.fr - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="\"noindex," />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2009-08-15 18:30-0300\n"
|
||||||
|
"PO-Revision-Date: 2009-08-25 10:59+0200\n"
|
||||||
|
"Last-Translator: Alexandre Dupas <alexandre.dupas@gmail.com>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bits\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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 (<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."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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."
|
||||||
|
msgstr ""
|
||||||
|
"Par exemple, si FooBar/SubPage est liée à \"OtherPage\", ikiwiki préfèrera "
|
||||||
|
"d'abord chercher la page dans FooBar/SubPage/OtherPage si elle existe, "
|
||||||
|
"ensuite dans FooBar/OtherPage et finalement dans OtherPage à la racine du "
|
||||||
|
"wiki."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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 _change_ 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."
|
||||||
|
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 (<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 <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 "
|
||||||
|
"il faut pointer. C'est le seul moyen de faire un lien vers une sous-page qui "
|
||||||
|
"n'est pas apparentée."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"You can use this to, for example, to link from BazBar to \"FooBar/SubPage\", "
|
||||||
|
"or from BazBar/SubPage to \"FooBar/SubPage\"."
|
||||||
|
msgstr ""
|
||||||
|
"Vous pouvez utiliser ceci pour, par exemple, faire un lien depuis BazBar "
|
||||||
|
"vers \"FooBar/SubPage\", ou de BazBar/SubPage vers \"FooBar/SubPage\"."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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\"."
|
||||||
|
msgstr ""
|
||||||
|
"Vous pouvez également utiliser \"/\" au début d'un lien pour indiquer "
|
||||||
|
"précisément quelle page doit être pointée lorsqu'il y a plusieurs pages avec "
|
||||||
|
"des noms identiques et que le lien ne pointe pas vers la bonne page par "
|
||||||
|
"défaut. Par exemple, faire un lien depuis \"FooBar/SubPage\" vers \"/"
|
||||||
|
"OtherPage\" pointera vers la page \"OtherPage\" à la racine du wiki même "
|
||||||
|
"s'il existe une page \"FooBar/OtherPage\"."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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."
|
||||||
|
msgstr ""
|
||||||
|
"De plus, si le wiki est configuré avec un répertoire `userdir`, vous pouvez "
|
||||||
|
"facilement faire des liens vers les pages dans `userdir` sans spécifier le "
|
||||||
|
"chemin vers ces pages. Cela permet de facilement pointer vers la page d'un "
|
||||||
|
"utilisateur dans `userdir` pour signer un commentaire. La correspondance des "
|
||||||
|
"liens avec ces pages est testée en tout dernier lieu."
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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.fr&t=linkingrules.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
164
ikiwiki/subpage/linkingrules/index.html
Normal file
164
ikiwiki/subpage/linkingrules/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>linkingrules - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
33
ikiwiki/toggle.js
Normal file
33
ikiwiki/toggle.js
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
// © 2006-2010 Joey Hess
|
||||||
|
// Redistribution and use in source and compiled forms, with or without
|
||||||
|
// modification, are permitted under any circumstances. No warranty.
|
||||||
|
//
|
||||||
|
// Uses CSS to hide toggleables, to avoid any flashing on page load. The
|
||||||
|
// CSS is only emitted after it tests that it's going to be able
|
||||||
|
// to show the toggleables.
|
||||||
|
if (document.getElementById && document.getElementsByTagName && document.createTextNode) {
|
||||||
|
document.write('<style type="text/css">div.toggleable { display: none; }</style>');
|
||||||
|
hook("onload", inittoggle);
|
||||||
|
}
|
||||||
|
|
||||||
|
function inittoggle() {
|
||||||
|
var as = getElementsByClass('toggle');
|
||||||
|
for (var i = 0; i < as.length; i++) {
|
||||||
|
var id = as[i].href.match(/#(\w.+)/)[1];
|
||||||
|
if (document.getElementById(id).className == "toggleable")
|
||||||
|
document.getElementById(id).style.display="none";
|
||||||
|
as[i].onclick = function() {
|
||||||
|
toggle(this);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function toggle(s) {
|
||||||
|
var id = s.href.match(/#(\w.+)/)[1];
|
||||||
|
style = document.getElementById(id).style;
|
||||||
|
if (style.display == "none")
|
||||||
|
style.display = "block";
|
||||||
|
else
|
||||||
|
style.display = "none";
|
||||||
|
}
|
244
ikiwiki/wikilink.fr/index.html
Normal file
244
ikiwiki/wikilink.fr/index.html
Normal file
|
@ -0,0 +1,244 @@
|
||||||
|
<!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," />
|
||||||
|
|
||||||
|
|
||||||
|
<title>wikilink.fr - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="\"noindex," />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2010-07-18 22:29+0000\n"
|
||||||
|
"PO-Revision-Date: 2010-07-21 17:30+0200\n"
|
||||||
|
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"Language: fr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bits\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "\n"
|
||||||
|
msgstr "\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"WikiLinks provide easy linking between pages of the wiki. To create a "
|
||||||
|
"<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 "
|
||||||
|
"<a href="../wikilink/">WikiLink</a>, il suffit de mettre le nom d'une page à lier entre double "
|
||||||
|
"crochets. Par exemple, `\[[WikiLink]]`."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"If you ever need to write something like `\[[WikiLink]]` without creating a "
|
||||||
|
"wikilink, just prefix it with a `\\`, like `\\\[[WikiLink]]`."
|
||||||
|
msgstr ""
|
||||||
|
"Si jamais vous avez besoin d'écrire quelque chose comme `\[[WikiLink]]` "
|
||||||
|
"sans créer de lien, il suffit de préfixer le mot par une barre oblique `\\`, "
|
||||||
|
"comme `\\\[[WikiLink]]`."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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, <a href="../subpage/linkingrules/">LinkingRules</a>, entrent en jeu pour "
|
||||||
|
"lier des sous-pages, <a href="../subpage/">SubPages</a>."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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."
|
||||||
|
msgstr ""
|
||||||
|
"La recherche de correspondance entre WikiLinks et noms de page ne tient pas "
|
||||||
|
"compte de la casse des lettres. Inutile de s'embêter avec les majuscules et "
|
||||||
|
"les minuscules et vous pouvez mettre une lettre capitale au lien qui se "
|
||||||
|
"trouve en début de phrase, etc."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
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: <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 : <a href="../../sandbox/">foo bar</a>."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"To link to an anchor inside a page, you can use something like `"
|
||||||
|
"\[[WikiLink#foo]]` ."
|
||||||
|
msgstr ""
|
||||||
|
"Pour pointer vers une ancre à l'intérieur d'une page, vous pouvez utiliser "
|
||||||
|
"quelque chose comme `\[[WikiLink#foo]]`."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#| msgid ""
|
||||||
|
#| "Also, if the file linked to by a WikiLink looks like an image, it will be "
|
||||||
|
#| "displayed inline on the page."
|
||||||
|
msgid ""
|
||||||
|
"If the file linked to by a WikiLink looks like an image, it will be "
|
||||||
|
"displayed inline on the page."
|
||||||
|
msgstr "Quand le fichier pointé par un WikiLink ressemble à une image, il est affiché au fil du texte sur la page."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"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."
|
||||||
|
msgstr "Vous pouvez mettre une URL dans un WikiLink pour lier une page externe. Des adresses électroniques peuvent servir à créer des liens mailto."
|
||||||
|
|
||||||
|
#~ msgid "Directives and WikiLinks"
|
||||||
|
#~ msgstr "Directives et WikiLinks"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "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 "
|
||||||
|
#~ "`prefix_directives` option in an ikiwiki setup file, prefixes directives "
|
||||||
|
#~ "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 <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 "
|
||||||
|
#~ "bas `_`. La nouvelle syntaxe, activée par l'option `prefix_directives` "
|
||||||
|
#~ "dans le fichier de configuration d'ikiwiki, préfixe les directives par un "
|
||||||
|
#~ "`!`, ce qui permet l'utilisation d'espaces dans les liens. Dans les "
|
||||||
|
#~ "futures versions d'ikiwiki, cette option sera activée par défaut."
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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.fr&t=wikilink.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
160
ikiwiki/wikilink/index.html
Normal file
160
ikiwiki/wikilink/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>wikilink - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="robots" content="noindex, follow" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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>
|
168
index.en.html
Normal file
168
index.en.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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>Home - Ayakael</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="Ayakael" src="favicon.png" width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown ps-2 pe-2">
|
||||||
|
<button class="btn language-switcher dropdown" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<div class="collapse navbar-collapse float-end ms-1" id="navbar">
|
||||||
|
English
|
||||||
|
</div>
|
||||||
|
<img src="images/languages.png">
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start" aria-labelledby="language-menu-top">
|
||||||
|
|
||||||
|
<li><a href="./index.fr.html">Français</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<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><span class="selflink">Home</span></li>
|
||||||
|
<li><a href="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="./contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<p><header class="text-center">
|
||||||
|
<img src="images/avatar-rounded-200x200.png" />
|
||||||
|
<h1>WELCOME</h1>
|
||||||
|
<hr>
|
||||||
|
</header></p>
|
||||||
|
|
||||||
|
<p>I'm a sociology masters student with a penchant for server administration and tech politics. My main interest is to have a lot of interests, which is why you'll find me dabbling in computers, as much as the study of colonial history. </p>
|
||||||
|
|
||||||
|
<h2>This Space</h2>
|
||||||
|
|
||||||
|
<p>This space, for now, is to be the one stop shop for my contact information, and what other digital spaces I navigate in. Eventually, it might be nice to get a blog going. I'm a sociologist after all, and apparently they write and they read a lot more than I do. Here are other sections of this website:</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://ayakael.net/forge/">Forge</a> - my personal git forge where all of my work is consolidated</li>
|
||||||
|
<li><a href="./contact/index.en.html">Contact</a> - how to reach me</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>My Other Spaces</h2>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><a rel="me" href="https://agora.ilot.io/@ayakael">Mastodon</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:06Z" class="dt-published">Tue Sep 17 19:04:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:06Z">Tue Sep 17 19:04:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="./meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=index&t=Home" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
178
index.fr.html
Normal file
178
index.fr.html
Normal file
|
@ -0,0 +1,178 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>Accueil - Ayakael</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="Ayakael" src="favicon.png" width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown ps-2 pe-2">
|
||||||
|
<button class="btn language-switcher dropdown" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<div class="collapse navbar-collapse float-end ms-1" id="navbar">
|
||||||
|
Français
|
||||||
|
</div>
|
||||||
|
<img src="images/languages.png">
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start" aria-labelledby="language-menu-top">
|
||||||
|
|
||||||
|
<li><a href="./index.en.html">English</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<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><span class="selflink">Accueil</span></li>
|
||||||
|
<li><a href="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="./contact/index.fr.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<p><header class="text-center">
|
||||||
|
<img src="images/avatar-rounded-200x200.png" />
|
||||||
|
<h1>BIENVENUE</h1>
|
||||||
|
<hr>
|
||||||
|
</header></p>
|
||||||
|
|
||||||
|
<p>Je suis un étudiant en maitrise de sociologie avec un penchant pour
|
||||||
|
l'administration de serveurs et la politique relatifs aux technologies
|
||||||
|
numériques. Mon principal intérêt est d'avoir beaucoup d'intérêts, c'est
|
||||||
|
pourquoi vous pouvez me trouver autant en train de bricoler dans les
|
||||||
|
ordinateurs, qu'étudier l'histoire de la colonialité.</p>
|
||||||
|
|
||||||
|
<h2>Cette espace</h2>
|
||||||
|
|
||||||
|
<p>Cet espace, pour l'instant, sera le point unique pour mes informations de
|
||||||
|
contact, et les autres espaces numériques dans lesquels je
|
||||||
|
navigue. Éventuellement, il pourrait être intéressant de créer un blog. Je
|
||||||
|
suis sociologue après tout, et apparemment ils et elles écrivent et lisent
|
||||||
|
beaucoup plus que moi. Voici d'autres sections de ce site web :</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://ayakael.net/forge/">Forge</a> - mon forge git personnel who j'ai
|
||||||
|
consolidé tout mes projets</li>
|
||||||
|
<li><a href="./contact/index.fr.html">Contact</a> - comment me joindre</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>Mes autres espaces</h2>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><a rel="me" href="https://agora.ilot.io/@ayakael">Mastodon</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:06Z" class="dt-published">Tue Sep 17 19:04:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:06Z">Tue Sep 17 19:04:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="./meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Propulsé par <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=index.fr&t=Accueil" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
113
index.fr.po
113
index.fr.po
|
@ -1,113 +0,0 @@
|
||||||
# Traduction de ikiwiki
|
|
||||||
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
|
||||||
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: ayakael.net\n"
|
|
||||||
"POT-Creation-Date: 2024-09-17 14:33-0400\n"
|
|
||||||
"PO-Revision-Date: 2024-08-11 00:05-0400\n"
|
|
||||||
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
|
|
||||||
"Language-Team: ayakael <antoine@ayakael.net>\n"
|
|
||||||
"Language: fr\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"X-Generator: Poedit 3.4.3\n"
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, no-wrap
|
|
||||||
msgid "[[!meta title=\"Home\"]]\n"
|
|
||||||
msgstr "[[!meta title=\"Accueil\"]]\n"
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, no-wrap
|
|
||||||
msgid ""
|
|
||||||
"<header class=\"text-center\">\n"
|
|
||||||
" <img src=\"images/avatar-rounded-200x200.png\" />\n"
|
|
||||||
" <h1>WELCOME</h1>\n"
|
|
||||||
" <hr>\n"
|
|
||||||
"</header>\n"
|
|
||||||
msgstr ""
|
|
||||||
"<header class=\"text-center\">\n"
|
|
||||||
" <img src=\"images/avatar-rounded-200x200.png\" />\n"
|
|
||||||
" <h1>BIENVENUE</h1>\n"
|
|
||||||
" <hr>\n"
|
|
||||||
"</header>\n"
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
msgid ""
|
|
||||||
"I'm a sociology masters student with a penchant for server administration "
|
|
||||||
"and tech politics. My main interest is to have a lot of interests, which is "
|
|
||||||
"why you'll find me dabbling in computers, as much as the study of colonial "
|
|
||||||
"history."
|
|
||||||
msgstr ""
|
|
||||||
"Je suis un étudiant en maitrise de sociologie avec un penchant pour "
|
|
||||||
"l'administration de serveurs et la politique relatifs aux technologies "
|
|
||||||
"numériques. Mon principal intérêt est d'avoir beaucoup d'intérêts, c'est "
|
|
||||||
"pourquoi vous pouvez me trouver autant en train de bricoler dans les "
|
|
||||||
"ordinateurs, qu'étudier l'histoire de la colonialité."
|
|
||||||
|
|
||||||
#. type: Title ##
|
|
||||||
#, no-wrap
|
|
||||||
msgid "This Space"
|
|
||||||
msgstr "Cette espace"
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
msgid ""
|
|
||||||
"This space, for now, is to be the one stop shop for my contact information, "
|
|
||||||
"and what other digital spaces I navigate in. Eventually, it might be nice to "
|
|
||||||
"get a blog going. I'm a sociologist after all, and apparently they write and "
|
|
||||||
"they read a lot more than I do. Here are other sections of this website:"
|
|
||||||
msgstr ""
|
|
||||||
"Cet espace, pour l'instant, sera le point unique pour mes informations de "
|
|
||||||
"contact, et les autres espaces numériques dans lesquels je navigue. "
|
|
||||||
"Éventuellement, il pourrait être intéressant de créer un blog. Je suis "
|
|
||||||
"sociologue après tout, et apparemment ils et elles écrivent et lisent "
|
|
||||||
"beaucoup plus que moi. Voici d'autres sections de ce site web :"
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
msgid ""
|
|
||||||
"[[Forge|https://ayakael.net/forge/]] - my personal git forge where all of my "
|
|
||||||
"work is consolidated"
|
|
||||||
msgstr ""
|
|
||||||
"[[Forge|https://ayakael.net/forge/]] - mon forge git personnel who j'ai "
|
|
||||||
"consolidé tout mes projets"
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
msgid "[[Contact]] - how to reach me"
|
|
||||||
msgstr "[[Contact]] - comment me joindre"
|
|
||||||
|
|
||||||
#. type: Title ##
|
|
||||||
#, no-wrap
|
|
||||||
msgid "My Other Spaces"
|
|
||||||
msgstr "Mes autres espaces"
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
msgid "<a rel=\"me\" href=\"https://agora.ilot.io/@ayakael\">Mastodon</a>"
|
|
||||||
msgstr "<a rel=\"me\" href=\"https://agora.ilot.io/@ayakael\">Mastodon</a>"
|
|
||||||
|
|
||||||
#, fuzzy, no-wrap
|
|
||||||
#~| msgid "[[!meta title=\"Home\"]]\n"
|
|
||||||
#~ msgid "[[!meta robots=\"noindex\"]]\n"
|
|
||||||
#~ msgstr "[[!meta title=\"Accueil\"]]\n"
|
|
||||||
|
|
||||||
#, fuzzy, no-wrap
|
|
||||||
#~| msgid "[[!meta title=\"Home\"]]\n"
|
|
||||||
#~ msgid "[[!meta script=\"home\"]]\n"
|
|
||||||
#~ msgstr "[[!meta title=\"Accueil\"]]\n"
|
|
||||||
|
|
||||||
#~ msgid "[GitLab](https://lab.ilot.io/ayakael)"
|
|
||||||
#~ msgstr "[GitLab](https://lab.ilot.io/ayakael)"
|
|
||||||
|
|
||||||
#~ msgid "[GitHub](https://github.com/ayakael)"
|
|
||||||
#~ msgstr "[GitHub](https://github.com/ayakael)"
|
|
||||||
|
|
||||||
#~ msgid "Welcome to your new wiki."
|
|
||||||
#~ msgstr "Bienvenue sur votre nouveau wiki."
|
|
||||||
|
|
||||||
#~ msgid "All wikis are supposed to have a [[SandBox]], so this one does too."
|
|
||||||
#~ msgstr "Comme tous les wikis, ce wiki possède une page [[SandBox]]."
|
|
||||||
|
|
||||||
#~ msgid "This wiki is powered by [[ikiwiki]]."
|
|
||||||
#~ msgstr "Ce wiki est propulsé par [[ikiwiki]]."
|
|
20
index.mdwn
20
index.mdwn
|
@ -1,20 +0,0 @@
|
||||||
[[!meta title="Home"]]
|
|
||||||
|
|
||||||
<header class="text-center">
|
|
||||||
<img src="images/avatar-rounded-200x200.png" />
|
|
||||||
<h1>WELCOME</h1>
|
|
||||||
<hr>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
I'm a sociology masters student with a penchant for server administration and tech politics. My main interest is to have a lot of interests, which is why you'll find me dabbling in computers, as much as the study of colonial history.
|
|
||||||
|
|
||||||
## This Space
|
|
||||||
|
|
||||||
This space, for now, is to be the one stop shop for my contact information, and what other digital spaces I navigate in. Eventually, it might be nice to get a blog going. I'm a sociologist after all, and apparently they write and they read a lot more than I do. Here are other sections of this website:
|
|
||||||
|
|
||||||
* [[Forge|https://ayakael.net/forge/]] - my personal git forge where all of my work is consolidated
|
|
||||||
* [[Contact]] - how to reach me
|
|
||||||
|
|
||||||
## My Other Spaces
|
|
||||||
|
|
||||||
* <a rel="me" href="https://agora.ilot.io/@ayakael">Mastodon</a>
|
|
77
index.pot
77
index.pot
|
@ -1,77 +0,0 @@
|
||||||
# SOME DESCRIPTIVE TITLE
|
|
||||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
|
||||||
"POT-Creation-Date: 2024-09-17 14:37-0400\n"
|
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, markdown-text, no-wrap
|
|
||||||
msgid "[[!meta title=\"Home\"]]\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, markdown-text, no-wrap
|
|
||||||
msgid ""
|
|
||||||
"<header class=\"text-center\">\n"
|
|
||||||
" <img src=\"images/avatar-rounded-200x200.png\" />\n"
|
|
||||||
" <h1>WELCOME</h1>\n"
|
|
||||||
" <hr>\n"
|
|
||||||
"</header>\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, markdown-text
|
|
||||||
msgid ""
|
|
||||||
"I'm a sociology masters student with a penchant for server administration "
|
|
||||||
"and tech politics. My main interest is to have a lot of interests, which is "
|
|
||||||
"why you'll find me dabbling in computers, as much as the study of colonial "
|
|
||||||
"history."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Title ##
|
|
||||||
#, markdown-text, no-wrap
|
|
||||||
msgid "This Space"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, markdown-text
|
|
||||||
msgid ""
|
|
||||||
"This space, for now, is to be the one stop shop for my contact information, "
|
|
||||||
"and what other digital spaces I navigate in. Eventually, it might be nice to "
|
|
||||||
"get a blog going. I'm a sociologist after all, and apparently they write and "
|
|
||||||
"they read a lot more than I do. Here are other sections of this website:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
#, markdown-text
|
|
||||||
msgid ""
|
|
||||||
"[[Forge|https://ayakael.net/forge/]] - my personal git forge where all of my "
|
|
||||||
"work is consolidated"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
#, markdown-text
|
|
||||||
msgid "[[Contact]] - how to reach me"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Title ##
|
|
||||||
#, markdown-text, no-wrap
|
|
||||||
msgid "My Other Spaces"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
#, markdown-text
|
|
||||||
msgid "<a rel=\"me\" href=\"https://agora.ilot.io/@ayakael\">Mastodon</a>"
|
|
||||||
msgstr ""
|
|
|
@ -1 +0,0 @@
|
||||||
[[!inline pages="sample_text/*"]]
|
|
331
inlinetest/index.html
Normal file
331
inlinetest/index.html
Normal file
|
@ -0,0 +1,331 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>inlinetest - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<div class="feedlink">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<article class="inlinepage">
|
||||||
|
|
||||||
|
<section class="inlineheader">
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
|
||||||
|
<a href="../sample_text/Donec_dapibus/">Donec dapibus</a>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="inlinecontent">
|
||||||
|
<p>Donec dapibus orci sit amet elit. Maecenas rutrum ultrices lectus. Aliquam suscipit, lacus a iaculis adipiscing, eros orci pellentesque nisl, non pharetra dolor urna nec dolor. Integer cursus dolor vel magna. Integer ultrices feugiat sem. Proin nec nibh. Duis eu dui quis nunc sagittis lobortis. Fusce pharetra, enim ut sodales luctus, lectus arcu rhoncus purus, in fringilla augue elit vel lacus. In hac habitasse platea dictumst. Aliquam erat volutpat. Fusce iaculis elit id tellus. Ut accumsan malesuada turpis. Suspendisse potenti. Vestibulum lacus augue, lobortis mattis, laoreet in, varius at, nisi. Nunc gravida. Phasellus faucibus. In hac habitasse platea dictumst. Integer tempor lacus eget lectus. Praesent fringilla augue fringilla dui.</p>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="inlinefooter">
|
||||||
|
|
||||||
|
<span class="pagedate">
|
||||||
|
Posted <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
<article class="inlinepage">
|
||||||
|
|
||||||
|
<section class="inlineheader">
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
|
||||||
|
<a href="../sample_text/Donec_semper/">Donec semper</a>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="inlinecontent">
|
||||||
|
<p>Donec semper, sem nec tristique tempus, justo neque commodo nisl, ut gravida sem tellus suscipit nunc. Aliquam erat volutpat. Ut tincidunt pretium elit. Aliquam pulvinar. Nulla cursus. Suspendisse potenti. Etiam condimentum hendrerit felis. Duis iaculis aliquam enim. Donec dignissim augue vitae orci. Curabitur luctus felis a metus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In varius neque at enim. Suspendisse massa nulla, viverra in, bibendum vitae, tempor quis, lorem.</p>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="inlinefooter">
|
||||||
|
|
||||||
|
<span class="pagedate">
|
||||||
|
Posted <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
<article class="inlinepage">
|
||||||
|
|
||||||
|
<section class="inlineheader">
|
||||||
|
|
||||||
|
<span class="author">
|
||||||
|
|
||||||
|
Cicero
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
|
||||||
|
<a href="../sample_text/Lorem_ipsum/">Lorem ipsum</a>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="inlinecontent">
|
||||||
|
<p>[[!meta <span class="error">Error: cannot parse date/time: 45 B.C.</span>]]</p>
|
||||||
|
|
||||||
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed at ante. Mauris eleifend, quam a vulputate dictum, massa quam dapibus leo, eget vulputate orci purus ut lorem. In fringilla mi in ligula. Pellentesque aliquam quam vel dolor. Nunc adipiscing. Sed quam odio, tempus ac, aliquam molestie, varius ac, tellus. Vestibulum ut nulla aliquam risus rutrum interdum. Pellentesque lorem. Curabitur sit amet erat quis risus feugiat viverra. Pellentesque augue justo, sagittis et, lacinia at, venenatis non, arcu. Nunc nec libero. In cursus dictum risus. Etiam tristique nisl a nulla. Ut a orci. Curabitur dolor nunc, egestas at, accumsan at, malesuada nec, magna.</p>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="inlinefooter">
|
||||||
|
|
||||||
|
<span class="pagedate">
|
||||||
|
Posted <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
<article class="inlinepage">
|
||||||
|
|
||||||
|
<section class="inlineheader">
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
|
||||||
|
<a href="../sample_text/Nulla_facilisi/">Nulla facilisi</a>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="inlinecontent">
|
||||||
|
<p>Nulla facilisi. Nunc volutpat. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Ut sit amet orci vel mauris blandit vehicula. Nullam quis enim. Integer dignissim viverra velit. Curabitur in odio. In hac habitasse platea dictumst. Ut consequat, tellus eu volutpat varius, justo orci elementum dolor, sed imperdiet nulla tellus ut diam. Vestibulum ipsum ante, malesuada quis, tempus ac, placerat sit amet, elit.</p>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="inlinefooter">
|
||||||
|
|
||||||
|
<span class="pagedate">
|
||||||
|
Posted <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="tags">
|
||||||
|
Tags:
|
||||||
|
|
||||||
|
<span class="createlink">Cicero</span>
|
||||||
|
|
||||||
|
<span class="createlink">Latin</span>
|
||||||
|
|
||||||
|
<span class="createlink">typesetting</span>
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
<article class="inlinepage">
|
||||||
|
|
||||||
|
<section class="inlineheader">
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
|
||||||
|
<a href="../sample_text/Sed_eget/">Sed eget</a>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="inlinecontent">
|
||||||
|
<p>Sed eget turpis a pede tempor malesuada. Vivamus quis mi at leo pulvinar hendrerit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque aliquet lacus vitae pede. Nullam mollis dolor ac nisi. Phasellus sit amet urna. Praesent pellentesque sapien sed lacus. Donec lacinia odio in odio. In sit amet elit. Maecenas gravida interdum urna. Integer pretium, arcu vitae imperdiet facilisis, elit tellus tempor nisi, vel feugiat ante velit sit amet mauris. Vivamus arcu. Integer pharetra magna ac lacus. Aliquam vitae sapien in nibh vehicula auctor. Suspendisse leo mauris, pulvinar sed, tempor et, consequat ac, lacus. Proin velit. Nulla semper lobortis mauris. Duis urna erat, ornare et, imperdiet eu, suscipit sit amet, massa. Nulla nulla nisi, pellentesque at, egestas quis, fringilla eu, diam.</p>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="inlinefooter">
|
||||||
|
|
||||||
|
<span class="pagedate">
|
||||||
|
Posted <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:06Z" class="dt-published">Tue Sep 17 19:04:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:06Z">Tue Sep 17 19:04:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=inlinetest&t=inlinetest" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
4
jquery.min.js
vendored
Normal file
4
jquery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
3
local.css
Normal file
3
local.css
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
/* ikiwiki local style sheet */
|
||||||
|
|
||||||
|
/* Add local styling here, instead of modifying style.css. */
|
|
@ -1,48 +1,125 @@
|
||||||
[[!meta title="Licensing"]]
|
<!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 -->
|
||||||
|
|
||||||
Software
|
|
||||||
========
|
|
||||||
|
|
||||||
This site was generated with [ikiwiki](https://ikiwiki.info/), which is
|
|
||||||
|
<title>Licensing - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<h1>Software</h1>
|
||||||
|
|
||||||
|
<p>This site was generated with <a href="https://ikiwiki.info/">ikiwiki</a>, which is
|
||||||
generally © 2006-2011 Joey Hess, under the GPL-2+ license. See the
|
generally © 2006-2011 Joey Hess, under the GPL-2+ license. See the
|
||||||
[complete copyright file](http://sources.debian.net/src/ikiwiki/sid/debian/copyright/)
|
<a href="http://sources.debian.net/src/ikiwiki/sid/debian/copyright/">complete copyright file</a>
|
||||||
for more information.
|
for more information.</p>
|
||||||
|
|
||||||
Design
|
<h1>Design</h1>
|
||||||
======
|
|
||||||
|
|
||||||
The design of this site falls under a different license, see the
|
<p>The design of this site falls under a different license, see the
|
||||||
[source code](https://lab.ilot.io/ilot/ikiwiki-bootstrap-ilot) for
|
<a href="https://lab.ilot.io/ilot/ikiwiki-bootstrap-ilot">source code</a> for
|
||||||
the ultimate reference. Right now, it is a
|
the ultimate reference. Right now, it is a
|
||||||
[modified bootstrap theme](https://anarc.at/blog/2015-09-09-bootstrap/)
|
<a href="https://anarc.at/blog/2015-09-09-bootstrap/">modified bootstrap theme</a>
|
||||||
licensed under a MIT license and, like all bootstrap derived themes,
|
licensed under a MIT license and, like all bootstrap derived themes,
|
||||||
is "© 2011-2015 Twitter, Inc", but also © 2009-2015 Julian Andres
|
is "© 2011-2015 Twitter, Inc", but also © 2009-2015 Julian Andres
|
||||||
Klode for the Ikiwiki adaptation and © 2016-2023 Antoine Beaupré for
|
Klode for the Ikiwiki adaptation and © 2016-2023 Antoine Beaupré for
|
||||||
anarcat's modifications. Finally, @ 2023-2024 Antoine Martin for my modifications.
|
anarcat's modifications. Finally, @ 2023-2024 Antoine Martin for my modifications.</p>
|
||||||
|
|
||||||
Content
|
<h1>Content</h1>
|
||||||
=======
|
|
||||||
|
|
||||||
The *content* of this site is released under a Creative Commons
|
<p>The <em>content</em> of this site is released under a Creative Commons
|
||||||
license, as such.
|
license, as such.</p>
|
||||||
|
|
||||||
<!-- copy-paste from https://creativecommons.org/choose/ -->
|
<!-- copy-paste from https://creativecommons.org/choose/ -->
|
||||||
|
|
||||||
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
|
<p><a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.</p>
|
||||||
|
|
||||||
Updates
|
<h1>Updates</h1>
|
||||||
=======
|
|
||||||
|
|
||||||
* 2024-06-14: initial license under CC-BY-SA
|
<ul>
|
||||||
|
<li>2024-06-14: initial license under CC-BY-SA</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
Complete license
|
<h1>Complete license</h1>
|
||||||
================
|
|
||||||
|
|
||||||
<!-- copy-paste from https://creativecommons.org/licenses/by-sa/4.0/legalcode -->
|
<!-- copy-paste from https://creativecommons.org/licenses/by-sa/4.0/legalcode -->
|
||||||
|
|
||||||
<h3>Creative Commons Attribution-ShareAlike 4.0 International Public License</h3>
|
<h3>Creative Commons Attribution-ShareAlike 4.0 International Public License</h3>
|
||||||
|
|
||||||
<p>By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.</p>
|
<p>By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.</p>
|
||||||
|
|
||||||
<p id="s1"><strong>Section 1 – Definitions.</strong></p>
|
<p id="s1"><strong>Section 1 – Definitions.</strong></p>
|
||||||
|
|
||||||
<ol type="a">
|
<ol type="a">
|
||||||
<li id="s1a"><strong>Adapted Material</strong> means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.</li>
|
<li id="s1a"><strong>Adapted Material</strong> means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.</li>
|
||||||
<li id="s1b"><strong>Adapter's License</strong> means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.</li>
|
<li id="s1b"><strong>Adapter's License</strong> means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.</li>
|
||||||
|
@ -60,7 +137,9 @@ international agreements.</li>
|
||||||
<li id="s1l"><strong>Sui Generis Database Rights</strong> means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.</li>
|
<li id="s1l"><strong>Sui Generis Database Rights</strong> means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.</li>
|
||||||
<li id="s1m"><strong>You</strong> means the individual or entity exercising the Licensed Rights under this Public License. <strong>Your</strong> has a corresponding meaning.</li>
|
<li id="s1m"><strong>You</strong> means the individual or entity exercising the Licensed Rights under this Public License. <strong>Your</strong> has a corresponding meaning.</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<p id="s2"><strong>Section 2 – Scope.</strong></p>
|
<p id="s2"><strong>Section 2 – Scope.</strong></p>
|
||||||
|
|
||||||
<ol type="a">
|
<ol type="a">
|
||||||
<li id="s2a"><strong>License grant</strong>.
|
<li id="s2a"><strong>License grant</strong>.
|
||||||
<ol>
|
<ol>
|
||||||
|
@ -90,8 +169,11 @@ international agreements.</li>
|
||||||
</ol>
|
</ol>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<p id="s3"><strong>Section 3 – License Conditions.</strong></p>
|
<p id="s3"><strong>Section 3 – License Conditions.</strong></p>
|
||||||
|
|
||||||
<p>Your exercise of the Licensed Rights is expressly made subject to the following conditions.</p>
|
<p>Your exercise of the Licensed Rights is expressly made subject to the following conditions.</p>
|
||||||
|
|
||||||
<ol type="a">
|
<ol type="a">
|
||||||
<li id="s3a"><p><strong>Attribution</strong>.</p>
|
<li id="s3a"><p><strong>Attribution</strong>.</p>
|
||||||
<ol>
|
<ol>
|
||||||
|
@ -124,23 +206,32 @@ License.</li>
|
||||||
</ol>
|
</ol>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<p id="s4"><strong>Section 4 – Sui Generis Database Rights.</strong></p>
|
<p id="s4"><strong>Section 4 – Sui Generis Database Rights.</strong></p>
|
||||||
|
|
||||||
<p>Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:</p>
|
<p>Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:</p>
|
||||||
|
|
||||||
<ol type="a">
|
<ol type="a">
|
||||||
<li id="s4a">for the avoidance of doubt, Section <a href="#s2a1">2(a)(1)</a> grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database;</li>
|
<li id="s4a">for the avoidance of doubt, Section <a href="#s2a1">2(a)(1)</a> grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database;</li>
|
||||||
<li id="s4b">if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section <a href="#s3b">3(b)</a>; and</li>
|
<li id="s4b">if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section <a href="#s3b">3(b)</a>; and</li>
|
||||||
<li id="s4c">You must comply with the conditions in Section <a href="#s3a">3(a)</a> if You Share all or a substantial portion of the contents of the database.</li>
|
<li id="s4c">You must comply with the conditions in Section <a href="#s3a">3(a)</a> if You Share all or a substantial portion of the contents of the database.</li>
|
||||||
</ol>
|
</ol>
|
||||||
For the avoidance of doubt, this Section <a href="#s4">4</a> supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.
|
|
||||||
|
<p>For the avoidance of doubt, this Section <a href="#s4">4</a> supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.</p>
|
||||||
|
|
||||||
<p id="s5"><strong>Section 5 – Disclaimer of Warranties and Limitation of Liability.</strong></p>
|
<p id="s5"><strong>Section 5 – Disclaimer of Warranties and Limitation of Liability.</strong></p>
|
||||||
|
|
||||||
<ol style="font-weight: bold;" type="a">
|
<ol style="font-weight: bold;" type="a">
|
||||||
<li id="s5a"><strong>Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.</strong></li>
|
<li id="s5a"><strong>Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.</strong></li>
|
||||||
<li id="s5b"><strong>To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.</strong></li>
|
<li id="s5b"><strong>To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.</strong></li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<ol start="3" type="a">
|
<ol start="3" type="a">
|
||||||
<li id="s5c">The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.</li>
|
<li id="s5c">The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<p id="s6"><strong>Section 6 – Term and Termination.</strong></p>
|
<p id="s6"><strong>Section 6 – Term and Termination.</strong></p>
|
||||||
|
|
||||||
<ol type="a">
|
<ol type="a">
|
||||||
<li id="s6a">This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.</li>
|
<li id="s6a">This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.</li>
|
||||||
<li id="s6b">
|
<li id="s6b">
|
||||||
|
@ -153,17 +244,75 @@ For the avoidance of doubt, this Section <a href="#s6b">6(b)</a> does not affect
|
||||||
<li id="s6c">For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.</li>
|
<li id="s6c">For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.</li>
|
||||||
<li id="s6d">Sections <a href="#s1">1</a>, <a href="#s5">5</a>, <a href="#s6">6</a>, <a href="#s7">7</a>, and <a href="#s8">8</a> survive termination of this Public License.</li>
|
<li id="s6d">Sections <a href="#s1">1</a>, <a href="#s5">5</a>, <a href="#s6">6</a>, <a href="#s7">7</a>, and <a href="#s8">8</a> survive termination of this Public License.</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<p id="s7"><strong>Section 7 – Other Terms and Conditions.</strong></p>
|
<p id="s7"><strong>Section 7 – Other Terms and Conditions.</strong></p>
|
||||||
|
|
||||||
<ol type="a">
|
<ol type="a">
|
||||||
<li id="s7a">The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.</li>
|
<li id="s7a">The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.</li>
|
||||||
<li id="s7b">Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.</li>
|
<li id="s7b">Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<p id="s8"><strong>Section 8 – Interpretation.</strong></p>
|
<p id="s8"><strong>Section 8 – Interpretation.</strong></p>
|
||||||
|
|
||||||
<ol type="a">
|
<ol type="a">
|
||||||
<li id="s8a">For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.</li>
|
<li id="s8a">For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.</li>
|
||||||
<li id="s8b">To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.</li>
|
<li id="s8b">To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.</li>
|
||||||
<li id="s8c">No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.</li>
|
<li id="s8c">No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.</li>
|
||||||
<li id="s8d">Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.</li>
|
<li id="s8d">Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<p class="shaded">Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” The text of the Creative Commons public licenses is dedicated to the public domain under the <a href="//creativecommons.org/publicdomain/zero/1.0/legalcode">CC0 Public Domain Dedication</a>. Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at <a href="//creativecommons.org/policies">creativecommons.org/policies</a>, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses.<br><br>
|
<p class="shaded">Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” The text of the Creative Commons public licenses is dedicated to the public domain under the <a href="//creativecommons.org/publicdomain/zero/1.0/legalcode">CC0 Public Domain Dedication</a>. Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at <a href="//creativecommons.org/policies">creativecommons.org/policies</a>, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses.<br><br>
|
||||||
Creative Commons may be contacted at <a href="//creativecommons.org/">creativecommons.org</a>.</p>
|
Creative Commons may be contacted at <a href="//creativecommons.org/">creativecommons.org</a>.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:07Z">Tue Sep 17 19:04:07 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <span class="selflink">CC-BY-SA</span>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=meta/license&t=Licensing" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
37
previews/index.html
Normal file
37
previews/index.html
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
|
<meta name="Author" content="Made by 'tree'">
|
||||||
|
<meta name="GENERATOR" content="tree v2.1.1 © 1996 - 2023 by Steve Baker, Thomas Moore, Francesc Rocher, Florian Sesser, Kyosuke Tokoro">
|
||||||
|
<title>Versions</title>
|
||||||
|
<style type="text/css">
|
||||||
|
BODY { font-family : monospace, sans-serif; color: black;}
|
||||||
|
P { font-family : monospace, sans-serif; color: black; margin:0px; padding: 0px;}
|
||||||
|
A:visited { text-decoration : none; margin : 0px; padding : 0px;}
|
||||||
|
A:link { text-decoration : none; margin : 0px; padding : 0px;}
|
||||||
|
A:hover { text-decoration: underline; background-color : yellow; margin : 0px; padding : 0px;}
|
||||||
|
A:active { margin : 0px; padding : 0px;}
|
||||||
|
.VERSION { font-size: small; font-family : arial, sans-serif; }
|
||||||
|
.NORM { color: black; }
|
||||||
|
.FIFO { color: purple; }
|
||||||
|
.CHAR { color: yellow; }
|
||||||
|
.DIR { color: blue; }
|
||||||
|
.BLOCK { color: yellow; }
|
||||||
|
.LINK { color: aqua; }
|
||||||
|
.SOCK { color: fuchsia;}
|
||||||
|
.EXEC { color: green; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Versions</h1><p>
|
||||||
|
<a href="./">.</a><br>
|
||||||
|
<hr>
|
||||||
|
<p class="VERSION">
|
||||||
|
tree v2.1.1 © 1996 - 2023 by Steve Baker and Thomas Moore <br>
|
||||||
|
HTML output hacked and copyleft © 1998 by Francesc Rocher <br>
|
||||||
|
JSON output hacked and copyleft © 2014 by Florian Sesser <br>
|
||||||
|
Charsets / OS/2 support © 2001 by Kyosuke Tokoro
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,54 @@
|
||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
xsFNBFt+3qEBEACzmydQNMiJkP918irjKPGcWoO4dH03rbtei/czI/r+hUuU
|
||||||
|
TlggxzqxNaGmp7yIHS0tTljWJsfoequVFLrJ4jFOl1VzvB0zJz0xRc0PL70m
|
||||||
|
bW8SedLlWEpvOvzSfG/6jOQsVicmOwE56iH0bwReiHQjBdcGPakltIKL9gGN
|
||||||
|
KkDCYmThZgptlUCrkx9IyI8JzC1cUL56//dQoCMbRpNHS3M1BIJxgKPg8VSr
|
||||||
|
qKR7kyHp3xY9LS63xVOivGx9NK7v4KMjAKqq/cqeHWYZCkCqGQThoADh8tT1
|
||||||
|
PM08BAn2yv0v5GMV7t5HjorI3fdU/wC0cXTGHI6loifIRvPWHoTg/Gz16QQg
|
||||||
|
NfP7Uhl0Xiplsc00HR3yyplsDjK1CqfgYVL2jz+zCBtv5HkW4tQ7nEYoPB0h
|
||||||
|
MMbz+iKWzYzEQQElk6uEsKU2oF5oq/tsNqsYAJfHcTKazcOWBmvrURO3nfnj
|
||||||
|
Su5ax3oSoaEikHeCDlg7tMj2oX3JgD9RM77Kvo99ZrFUNsHzeRJvU1FCoGrP
|
||||||
|
S/mR+8o3nzBJIW7weG6Cf8WkyG4Hk4pdX0hYyJspH7yvUCWlC3Y+FTHSK9NQ
|
||||||
|
7q8FZpb/YsuzngBT9Rrv8LMfq9w/VlabhpD6F10pnefMx9FS5X+X7vruZtam
|
||||||
|
l4ZM/nwHvTcqHM+kRhqt+jq727wSki3/sAP2mQARAQABzSsiYW50b2luZUBh
|
||||||
|
eWFrYWVsLm5ldCIgPGFudG9pbmVAYXlha2FlbC5uZXQ+wsF/BBABCAApBQJb
|
||||||
|
ft6hBgsJBwgDAgkQ66Kobbb8s6sEFQgKAgMWAgECGQECGwMCHgEACgkQ66Ko
|
||||||
|
bbb8s6tzVhAAhIsfL0zB8jjg3FBUS+xZHaLqqbIyymgULgPMIOBj9j0JwtNk
|
||||||
|
pbpU+H+00Pm6QpCKF9/FyigOrpoQREcVDHUCMZ2EMKe6R7semkiWC705AVe+
|
||||||
|
IfldTtRD/J74VqEIthtijQdGwmivpg90kYOasP9vqlyNlZ1dQk4Iu5OFko9w
|
||||||
|
fhk8LOJTVQLi/mPLb7CHl/6lPqLj6RegF+If4LH+c91TDyUguXfpWhmXRxBH
|
||||||
|
X9XFulli8Ci215B1cTdy6/OqC/JG4m8JlB9Tzh+paYWLqB6leShON0uc4UVS
|
||||||
|
8sFXiSklZfenlgfxd3oxNrbn4mU525b4tiRZ2nfUD0YR3prsF67vnMQmbwxR
|
||||||
|
2vLvqSvUdYs2DAqqGd/aFmzY+hnU3Tm67dmePUMU1R7gBufnjHXSBn8wtfi5
|
||||||
|
04PAUx7uXTcrXt99fNA9MxaO0aGQEhnKdFT9zkyQrnY4slf8ItATHdIA0WoN
|
||||||
|
qrP5vIxchquTSOwBhXKDU/aDLqsO/O5jplU17oS0mBZG6RD2ZaJBH0gyqQ6P
|
||||||
|
gEuM5lJIXYyyya93V+67QOD6VjXzb+64fMduLBDKNgcgomkM4W+Y2ZvpmtKB
|
||||||
|
0w5k7QWCNexn4GSrZ9tujxb2RhigP3dMxPZ2Gcr3GIPdadJiX+RLifoJmqJu
|
||||||
|
5aStphe3osLL8PeR5RJhQlN2khp4ETIFS2zOwU0EW37eoQEQAKSS9CpvMv1z
|
||||||
|
rfzIMf00yHbf4MMo9hqowblWTJrittwqCLpR+3QMzW74JO13B8ICifYW/N3u
|
||||||
|
SM0TenJREGSTUt5LZSd+oIA4g+nWWdnB2yghBvXJenB1f0T5pW60+W1NpEOl
|
||||||
|
nbGDQGRPESJPZOcPp1pdhoKO7qwP5AbR4kRSz72kFDD/46VYVqHKuOaLy0F2
|
||||||
|
rWeW6C18hkGTL17SfBW4lvIrpfPBhj3mK3IZoommX7hMjy9eqH8zugGbxU8o
|
||||||
|
p7DBI1LMWM5OAHGISTPp38V++cH/2cCvmLfheRkJqR+DjbpwOyBWZZNSSL/L
|
||||||
|
RuU6u1iTexOVgvDi7n0Yl7CpFNclrVbRb/0qyWeht4Ik1sHAQpuEPF6wIDWc
|
||||||
|
rCbu/1WVBrcfL6WYIfZxWGxTsTfWlXO0Ose34wJB5YSYNEeVv0jJvq6/Oa9m
|
||||||
|
OLOC/CWx23lUGuPVpkgtgKwdppX4kzaUyg/NOZACSE5wfc6jDbOP3UU6NaNo
|
||||||
|
9AC6S5MzUwfe2juX5pL3ij4Z2LWHSXAsRVz7sQ3v16M425RwFda7BtXj7U9f
|
||||||
|
ubMMvrFEPIr4GUPQskhgylmS8oxHMrbUCb7ObngTb1XCnB0Oew2AlGRUOJPx
|
||||||
|
aAvdNPBtgaK9uFsOSdvw7Lk0TctdcREIgVERX/LDwSxw/LAKHTzFOPy1NDiY
|
||||||
|
yP/0IbT0nDxNABEBAAHCwWkEGAEIABMFAlt+3qEJEOuiqG22/LOrAhsMAAoJ
|
||||||
|
EOuiqG22/LOrwyQP/iXTIp1mRwRZ6G7bNKhhK84GRMnXLzMvbVwquVrJms+r
|
||||||
|
oj4ve1cVYkgGgcGw+A8OptblupTYW7EWnykvdoIbg7uLODFW2DBCDzAQxor7
|
||||||
|
K/f9iMtGtt8Xl/BUUNPFOkCoHdfhEdnoEnSkAi5GHFrvXJmFL5XDgTtYIJZM
|
||||||
|
4kRpSlvA3bHM+Yn7AIwJSCnPrbqW6LykO8REl6AqmudqxD/GGlkxYiYHvCgk
|
||||||
|
damEOQzouxzLQBmLuUCRfr6lMr6dBtHfYGUTMWaR3xMH53Ggu6/Vo2NTDyrN
|
||||||
|
J3p/VAHHx87T1ozdNngbearumIkT061hfgB3B5k4MOIRC+yTBE8XnQ4yWrLY
|
||||||
|
s6NQrLsUxlnW+aLKETOk77w+Q53I70hS/w6Ncj/mK5kBQGNPznvDZsxg+BYm
|
||||||
|
OBckzwqoyR0YAHTRh9C8xYY6EwT6CJdSjjuSDU+ISlHVdQyN96j0FOZejawY
|
||||||
|
NdhK+3jHuj3uGpQ1C/046RZIXeJRkpgvavtzN71TgSdCzpKkIsn9E7d+uVFO
|
||||||
|
4PWyDp8weNS9l0+4EeFEEbVmpEoXj99bwUwPD3MY+nc85wJ+blTdDtTm3kxx
|
||||||
|
XJ4Gofm99ofXAuyZeBuNQp5uqktasj/oaq/ckbNiXOshedERsrA7rg0n0BbS
|
||||||
|
9KH7uQjQ+OUjixVUK0ZMdH04blDuDDfPqoB9nTIy
|
||||||
|
=4f33
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
|
@ -0,0 +1,54 @@
|
||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
xsFNBFt+3qEBEACzmydQNMiJkP918irjKPGcWoO4dH03rbtei/czI/r+hUuU
|
||||||
|
TlggxzqxNaGmp7yIHS0tTljWJsfoequVFLrJ4jFOl1VzvB0zJz0xRc0PL70m
|
||||||
|
bW8SedLlWEpvOvzSfG/6jOQsVicmOwE56iH0bwReiHQjBdcGPakltIKL9gGN
|
||||||
|
KkDCYmThZgptlUCrkx9IyI8JzC1cUL56//dQoCMbRpNHS3M1BIJxgKPg8VSr
|
||||||
|
qKR7kyHp3xY9LS63xVOivGx9NK7v4KMjAKqq/cqeHWYZCkCqGQThoADh8tT1
|
||||||
|
PM08BAn2yv0v5GMV7t5HjorI3fdU/wC0cXTGHI6loifIRvPWHoTg/Gz16QQg
|
||||||
|
NfP7Uhl0Xiplsc00HR3yyplsDjK1CqfgYVL2jz+zCBtv5HkW4tQ7nEYoPB0h
|
||||||
|
MMbz+iKWzYzEQQElk6uEsKU2oF5oq/tsNqsYAJfHcTKazcOWBmvrURO3nfnj
|
||||||
|
Su5ax3oSoaEikHeCDlg7tMj2oX3JgD9RM77Kvo99ZrFUNsHzeRJvU1FCoGrP
|
||||||
|
S/mR+8o3nzBJIW7weG6Cf8WkyG4Hk4pdX0hYyJspH7yvUCWlC3Y+FTHSK9NQ
|
||||||
|
7q8FZpb/YsuzngBT9Rrv8LMfq9w/VlabhpD6F10pnefMx9FS5X+X7vruZtam
|
||||||
|
l4ZM/nwHvTcqHM+kRhqt+jq727wSki3/sAP2mQARAQABzSsiYW50b2luZUBh
|
||||||
|
eWFrYWVsLm5ldCIgPGFudG9pbmVAYXlha2FlbC5uZXQ+wsF/BBABCAApBQJb
|
||||||
|
ft6hBgsJBwgDAgkQ66Kobbb8s6sEFQgKAgMWAgECGQECGwMCHgEACgkQ66Ko
|
||||||
|
bbb8s6tzVhAAhIsfL0zB8jjg3FBUS+xZHaLqqbIyymgULgPMIOBj9j0JwtNk
|
||||||
|
pbpU+H+00Pm6QpCKF9/FyigOrpoQREcVDHUCMZ2EMKe6R7semkiWC705AVe+
|
||||||
|
IfldTtRD/J74VqEIthtijQdGwmivpg90kYOasP9vqlyNlZ1dQk4Iu5OFko9w
|
||||||
|
fhk8LOJTVQLi/mPLb7CHl/6lPqLj6RegF+If4LH+c91TDyUguXfpWhmXRxBH
|
||||||
|
X9XFulli8Ci215B1cTdy6/OqC/JG4m8JlB9Tzh+paYWLqB6leShON0uc4UVS
|
||||||
|
8sFXiSklZfenlgfxd3oxNrbn4mU525b4tiRZ2nfUD0YR3prsF67vnMQmbwxR
|
||||||
|
2vLvqSvUdYs2DAqqGd/aFmzY+hnU3Tm67dmePUMU1R7gBufnjHXSBn8wtfi5
|
||||||
|
04PAUx7uXTcrXt99fNA9MxaO0aGQEhnKdFT9zkyQrnY4slf8ItATHdIA0WoN
|
||||||
|
qrP5vIxchquTSOwBhXKDU/aDLqsO/O5jplU17oS0mBZG6RD2ZaJBH0gyqQ6P
|
||||||
|
gEuM5lJIXYyyya93V+67QOD6VjXzb+64fMduLBDKNgcgomkM4W+Y2ZvpmtKB
|
||||||
|
0w5k7QWCNexn4GSrZ9tujxb2RhigP3dMxPZ2Gcr3GIPdadJiX+RLifoJmqJu
|
||||||
|
5aStphe3osLL8PeR5RJhQlN2khp4ETIFS2zOwU0EW37eoQEQAKSS9CpvMv1z
|
||||||
|
rfzIMf00yHbf4MMo9hqowblWTJrittwqCLpR+3QMzW74JO13B8ICifYW/N3u
|
||||||
|
SM0TenJREGSTUt5LZSd+oIA4g+nWWdnB2yghBvXJenB1f0T5pW60+W1NpEOl
|
||||||
|
nbGDQGRPESJPZOcPp1pdhoKO7qwP5AbR4kRSz72kFDD/46VYVqHKuOaLy0F2
|
||||||
|
rWeW6C18hkGTL17SfBW4lvIrpfPBhj3mK3IZoommX7hMjy9eqH8zugGbxU8o
|
||||||
|
p7DBI1LMWM5OAHGISTPp38V++cH/2cCvmLfheRkJqR+DjbpwOyBWZZNSSL/L
|
||||||
|
RuU6u1iTexOVgvDi7n0Yl7CpFNclrVbRb/0qyWeht4Ik1sHAQpuEPF6wIDWc
|
||||||
|
rCbu/1WVBrcfL6WYIfZxWGxTsTfWlXO0Ose34wJB5YSYNEeVv0jJvq6/Oa9m
|
||||||
|
OLOC/CWx23lUGuPVpkgtgKwdppX4kzaUyg/NOZACSE5wfc6jDbOP3UU6NaNo
|
||||||
|
9AC6S5MzUwfe2juX5pL3ij4Z2LWHSXAsRVz7sQ3v16M425RwFda7BtXj7U9f
|
||||||
|
ubMMvrFEPIr4GUPQskhgylmS8oxHMrbUCb7ObngTb1XCnB0Oew2AlGRUOJPx
|
||||||
|
aAvdNPBtgaK9uFsOSdvw7Lk0TctdcREIgVERX/LDwSxw/LAKHTzFOPy1NDiY
|
||||||
|
yP/0IbT0nDxNABEBAAHCwWkEGAEIABMFAlt+3qEJEOuiqG22/LOrAhsMAAoJ
|
||||||
|
EOuiqG22/LOrwyQP/iXTIp1mRwRZ6G7bNKhhK84GRMnXLzMvbVwquVrJms+r
|
||||||
|
oj4ve1cVYkgGgcGw+A8OptblupTYW7EWnykvdoIbg7uLODFW2DBCDzAQxor7
|
||||||
|
K/f9iMtGtt8Xl/BUUNPFOkCoHdfhEdnoEnSkAi5GHFrvXJmFL5XDgTtYIJZM
|
||||||
|
4kRpSlvA3bHM+Yn7AIwJSCnPrbqW6LykO8REl6AqmudqxD/GGlkxYiYHvCgk
|
||||||
|
damEOQzouxzLQBmLuUCRfr6lMr6dBtHfYGUTMWaR3xMH53Ggu6/Vo2NTDyrN
|
||||||
|
J3p/VAHHx87T1ozdNngbearumIkT061hfgB3B5k4MOIRC+yTBE8XnQ4yWrLY
|
||||||
|
s6NQrLsUxlnW+aLKETOk77w+Q53I70hS/w6Ncj/mK5kBQGNPznvDZsxg+BYm
|
||||||
|
OBckzwqoyR0YAHTRh9C8xYY6EwT6CJdSjjuSDU+ISlHVdQyN96j0FOZejawY
|
||||||
|
NdhK+3jHuj3uGpQ1C/046RZIXeJRkpgvavtzN71TgSdCzpKkIsn9E7d+uVFO
|
||||||
|
4PWyDp8weNS9l0+4EeFEEbVmpEoXj99bwUwPD3MY+nc85wJ+blTdDtTm3kxx
|
||||||
|
XJ4Gofm99ofXAuyZeBuNQp5uqktasj/oaq/ckbNiXOshedERsrA7rg0n0BbS
|
||||||
|
9KH7uQjQ+OUjixVUK0ZMdH04blDuDDfPqoB9nTIy
|
||||||
|
=4f33
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
|
@ -0,0 +1,54 @@
|
||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
xsFNBFt+3qEBEACzmydQNMiJkP918irjKPGcWoO4dH03rbtei/czI/r+hUuU
|
||||||
|
TlggxzqxNaGmp7yIHS0tTljWJsfoequVFLrJ4jFOl1VzvB0zJz0xRc0PL70m
|
||||||
|
bW8SedLlWEpvOvzSfG/6jOQsVicmOwE56iH0bwReiHQjBdcGPakltIKL9gGN
|
||||||
|
KkDCYmThZgptlUCrkx9IyI8JzC1cUL56//dQoCMbRpNHS3M1BIJxgKPg8VSr
|
||||||
|
qKR7kyHp3xY9LS63xVOivGx9NK7v4KMjAKqq/cqeHWYZCkCqGQThoADh8tT1
|
||||||
|
PM08BAn2yv0v5GMV7t5HjorI3fdU/wC0cXTGHI6loifIRvPWHoTg/Gz16QQg
|
||||||
|
NfP7Uhl0Xiplsc00HR3yyplsDjK1CqfgYVL2jz+zCBtv5HkW4tQ7nEYoPB0h
|
||||||
|
MMbz+iKWzYzEQQElk6uEsKU2oF5oq/tsNqsYAJfHcTKazcOWBmvrURO3nfnj
|
||||||
|
Su5ax3oSoaEikHeCDlg7tMj2oX3JgD9RM77Kvo99ZrFUNsHzeRJvU1FCoGrP
|
||||||
|
S/mR+8o3nzBJIW7weG6Cf8WkyG4Hk4pdX0hYyJspH7yvUCWlC3Y+FTHSK9NQ
|
||||||
|
7q8FZpb/YsuzngBT9Rrv8LMfq9w/VlabhpD6F10pnefMx9FS5X+X7vruZtam
|
||||||
|
l4ZM/nwHvTcqHM+kRhqt+jq727wSki3/sAP2mQARAQABzSsiYW50b2luZUBh
|
||||||
|
eWFrYWVsLm5ldCIgPGFudG9pbmVAYXlha2FlbC5uZXQ+wsF/BBABCAApBQJb
|
||||||
|
ft6hBgsJBwgDAgkQ66Kobbb8s6sEFQgKAgMWAgECGQECGwMCHgEACgkQ66Ko
|
||||||
|
bbb8s6tzVhAAhIsfL0zB8jjg3FBUS+xZHaLqqbIyymgULgPMIOBj9j0JwtNk
|
||||||
|
pbpU+H+00Pm6QpCKF9/FyigOrpoQREcVDHUCMZ2EMKe6R7semkiWC705AVe+
|
||||||
|
IfldTtRD/J74VqEIthtijQdGwmivpg90kYOasP9vqlyNlZ1dQk4Iu5OFko9w
|
||||||
|
fhk8LOJTVQLi/mPLb7CHl/6lPqLj6RegF+If4LH+c91TDyUguXfpWhmXRxBH
|
||||||
|
X9XFulli8Ci215B1cTdy6/OqC/JG4m8JlB9Tzh+paYWLqB6leShON0uc4UVS
|
||||||
|
8sFXiSklZfenlgfxd3oxNrbn4mU525b4tiRZ2nfUD0YR3prsF67vnMQmbwxR
|
||||||
|
2vLvqSvUdYs2DAqqGd/aFmzY+hnU3Tm67dmePUMU1R7gBufnjHXSBn8wtfi5
|
||||||
|
04PAUx7uXTcrXt99fNA9MxaO0aGQEhnKdFT9zkyQrnY4slf8ItATHdIA0WoN
|
||||||
|
qrP5vIxchquTSOwBhXKDU/aDLqsO/O5jplU17oS0mBZG6RD2ZaJBH0gyqQ6P
|
||||||
|
gEuM5lJIXYyyya93V+67QOD6VjXzb+64fMduLBDKNgcgomkM4W+Y2ZvpmtKB
|
||||||
|
0w5k7QWCNexn4GSrZ9tujxb2RhigP3dMxPZ2Gcr3GIPdadJiX+RLifoJmqJu
|
||||||
|
5aStphe3osLL8PeR5RJhQlN2khp4ETIFS2zOwU0EW37eoQEQAKSS9CpvMv1z
|
||||||
|
rfzIMf00yHbf4MMo9hqowblWTJrittwqCLpR+3QMzW74JO13B8ICifYW/N3u
|
||||||
|
SM0TenJREGSTUt5LZSd+oIA4g+nWWdnB2yghBvXJenB1f0T5pW60+W1NpEOl
|
||||||
|
nbGDQGRPESJPZOcPp1pdhoKO7qwP5AbR4kRSz72kFDD/46VYVqHKuOaLy0F2
|
||||||
|
rWeW6C18hkGTL17SfBW4lvIrpfPBhj3mK3IZoommX7hMjy9eqH8zugGbxU8o
|
||||||
|
p7DBI1LMWM5OAHGISTPp38V++cH/2cCvmLfheRkJqR+DjbpwOyBWZZNSSL/L
|
||||||
|
RuU6u1iTexOVgvDi7n0Yl7CpFNclrVbRb/0qyWeht4Ik1sHAQpuEPF6wIDWc
|
||||||
|
rCbu/1WVBrcfL6WYIfZxWGxTsTfWlXO0Ose34wJB5YSYNEeVv0jJvq6/Oa9m
|
||||||
|
OLOC/CWx23lUGuPVpkgtgKwdppX4kzaUyg/NOZACSE5wfc6jDbOP3UU6NaNo
|
||||||
|
9AC6S5MzUwfe2juX5pL3ij4Z2LWHSXAsRVz7sQ3v16M425RwFda7BtXj7U9f
|
||||||
|
ubMMvrFEPIr4GUPQskhgylmS8oxHMrbUCb7ObngTb1XCnB0Oew2AlGRUOJPx
|
||||||
|
aAvdNPBtgaK9uFsOSdvw7Lk0TctdcREIgVERX/LDwSxw/LAKHTzFOPy1NDiY
|
||||||
|
yP/0IbT0nDxNABEBAAHCwWkEGAEIABMFAlt+3qEJEOuiqG22/LOrAhsMAAoJ
|
||||||
|
EOuiqG22/LOrwyQP/iXTIp1mRwRZ6G7bNKhhK84GRMnXLzMvbVwquVrJms+r
|
||||||
|
oj4ve1cVYkgGgcGw+A8OptblupTYW7EWnykvdoIbg7uLODFW2DBCDzAQxor7
|
||||||
|
K/f9iMtGtt8Xl/BUUNPFOkCoHdfhEdnoEnSkAi5GHFrvXJmFL5XDgTtYIJZM
|
||||||
|
4kRpSlvA3bHM+Yn7AIwJSCnPrbqW6LykO8REl6AqmudqxD/GGlkxYiYHvCgk
|
||||||
|
damEOQzouxzLQBmLuUCRfr6lMr6dBtHfYGUTMWaR3xMH53Ggu6/Vo2NTDyrN
|
||||||
|
J3p/VAHHx87T1ozdNngbearumIkT061hfgB3B5k4MOIRC+yTBE8XnQ4yWrLY
|
||||||
|
s6NQrLsUxlnW+aLKETOk77w+Q53I70hS/w6Ncj/mK5kBQGNPznvDZsxg+BYm
|
||||||
|
OBckzwqoyR0YAHTRh9C8xYY6EwT6CJdSjjuSDU+ISlHVdQyN96j0FOZejawY
|
||||||
|
NdhK+3jHuj3uGpQ1C/046RZIXeJRkpgvavtzN71TgSdCzpKkIsn9E7d+uVFO
|
||||||
|
4PWyDp8weNS9l0+4EeFEEbVmpEoXj99bwUwPD3MY+nc85wJ+blTdDtTm3kxx
|
||||||
|
XJ4Gofm99ofXAuyZeBuNQp5uqktasj/oaq/ckbNiXOshedERsrA7rg0n0BbS
|
||||||
|
9KH7uQjQ+OUjixVUK0ZMdH04blDuDDfPqoB9nTIy
|
||||||
|
=4f33
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
|
@ -0,0 +1,54 @@
|
||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
xsFNBFt+3qEBEACzmydQNMiJkP918irjKPGcWoO4dH03rbtei/czI/r+hUuU
|
||||||
|
TlggxzqxNaGmp7yIHS0tTljWJsfoequVFLrJ4jFOl1VzvB0zJz0xRc0PL70m
|
||||||
|
bW8SedLlWEpvOvzSfG/6jOQsVicmOwE56iH0bwReiHQjBdcGPakltIKL9gGN
|
||||||
|
KkDCYmThZgptlUCrkx9IyI8JzC1cUL56//dQoCMbRpNHS3M1BIJxgKPg8VSr
|
||||||
|
qKR7kyHp3xY9LS63xVOivGx9NK7v4KMjAKqq/cqeHWYZCkCqGQThoADh8tT1
|
||||||
|
PM08BAn2yv0v5GMV7t5HjorI3fdU/wC0cXTGHI6loifIRvPWHoTg/Gz16QQg
|
||||||
|
NfP7Uhl0Xiplsc00HR3yyplsDjK1CqfgYVL2jz+zCBtv5HkW4tQ7nEYoPB0h
|
||||||
|
MMbz+iKWzYzEQQElk6uEsKU2oF5oq/tsNqsYAJfHcTKazcOWBmvrURO3nfnj
|
||||||
|
Su5ax3oSoaEikHeCDlg7tMj2oX3JgD9RM77Kvo99ZrFUNsHzeRJvU1FCoGrP
|
||||||
|
S/mR+8o3nzBJIW7weG6Cf8WkyG4Hk4pdX0hYyJspH7yvUCWlC3Y+FTHSK9NQ
|
||||||
|
7q8FZpb/YsuzngBT9Rrv8LMfq9w/VlabhpD6F10pnefMx9FS5X+X7vruZtam
|
||||||
|
l4ZM/nwHvTcqHM+kRhqt+jq727wSki3/sAP2mQARAQABzSsiYW50b2luZUBh
|
||||||
|
eWFrYWVsLm5ldCIgPGFudG9pbmVAYXlha2FlbC5uZXQ+wsF/BBABCAApBQJb
|
||||||
|
ft6hBgsJBwgDAgkQ66Kobbb8s6sEFQgKAgMWAgECGQECGwMCHgEACgkQ66Ko
|
||||||
|
bbb8s6tzVhAAhIsfL0zB8jjg3FBUS+xZHaLqqbIyymgULgPMIOBj9j0JwtNk
|
||||||
|
pbpU+H+00Pm6QpCKF9/FyigOrpoQREcVDHUCMZ2EMKe6R7semkiWC705AVe+
|
||||||
|
IfldTtRD/J74VqEIthtijQdGwmivpg90kYOasP9vqlyNlZ1dQk4Iu5OFko9w
|
||||||
|
fhk8LOJTVQLi/mPLb7CHl/6lPqLj6RegF+If4LH+c91TDyUguXfpWhmXRxBH
|
||||||
|
X9XFulli8Ci215B1cTdy6/OqC/JG4m8JlB9Tzh+paYWLqB6leShON0uc4UVS
|
||||||
|
8sFXiSklZfenlgfxd3oxNrbn4mU525b4tiRZ2nfUD0YR3prsF67vnMQmbwxR
|
||||||
|
2vLvqSvUdYs2DAqqGd/aFmzY+hnU3Tm67dmePUMU1R7gBufnjHXSBn8wtfi5
|
||||||
|
04PAUx7uXTcrXt99fNA9MxaO0aGQEhnKdFT9zkyQrnY4slf8ItATHdIA0WoN
|
||||||
|
qrP5vIxchquTSOwBhXKDU/aDLqsO/O5jplU17oS0mBZG6RD2ZaJBH0gyqQ6P
|
||||||
|
gEuM5lJIXYyyya93V+67QOD6VjXzb+64fMduLBDKNgcgomkM4W+Y2ZvpmtKB
|
||||||
|
0w5k7QWCNexn4GSrZ9tujxb2RhigP3dMxPZ2Gcr3GIPdadJiX+RLifoJmqJu
|
||||||
|
5aStphe3osLL8PeR5RJhQlN2khp4ETIFS2zOwU0EW37eoQEQAKSS9CpvMv1z
|
||||||
|
rfzIMf00yHbf4MMo9hqowblWTJrittwqCLpR+3QMzW74JO13B8ICifYW/N3u
|
||||||
|
SM0TenJREGSTUt5LZSd+oIA4g+nWWdnB2yghBvXJenB1f0T5pW60+W1NpEOl
|
||||||
|
nbGDQGRPESJPZOcPp1pdhoKO7qwP5AbR4kRSz72kFDD/46VYVqHKuOaLy0F2
|
||||||
|
rWeW6C18hkGTL17SfBW4lvIrpfPBhj3mK3IZoommX7hMjy9eqH8zugGbxU8o
|
||||||
|
p7DBI1LMWM5OAHGISTPp38V++cH/2cCvmLfheRkJqR+DjbpwOyBWZZNSSL/L
|
||||||
|
RuU6u1iTexOVgvDi7n0Yl7CpFNclrVbRb/0qyWeht4Ik1sHAQpuEPF6wIDWc
|
||||||
|
rCbu/1WVBrcfL6WYIfZxWGxTsTfWlXO0Ose34wJB5YSYNEeVv0jJvq6/Oa9m
|
||||||
|
OLOC/CWx23lUGuPVpkgtgKwdppX4kzaUyg/NOZACSE5wfc6jDbOP3UU6NaNo
|
||||||
|
9AC6S5MzUwfe2juX5pL3ij4Z2LWHSXAsRVz7sQ3v16M425RwFda7BtXj7U9f
|
||||||
|
ubMMvrFEPIr4GUPQskhgylmS8oxHMrbUCb7ObngTb1XCnB0Oew2AlGRUOJPx
|
||||||
|
aAvdNPBtgaK9uFsOSdvw7Lk0TctdcREIgVERX/LDwSxw/LAKHTzFOPy1NDiY
|
||||||
|
yP/0IbT0nDxNABEBAAHCwWkEGAEIABMFAlt+3qEJEOuiqG22/LOrAhsMAAoJ
|
||||||
|
EOuiqG22/LOrwyQP/iXTIp1mRwRZ6G7bNKhhK84GRMnXLzMvbVwquVrJms+r
|
||||||
|
oj4ve1cVYkgGgcGw+A8OptblupTYW7EWnykvdoIbg7uLODFW2DBCDzAQxor7
|
||||||
|
K/f9iMtGtt8Xl/BUUNPFOkCoHdfhEdnoEnSkAi5GHFrvXJmFL5XDgTtYIJZM
|
||||||
|
4kRpSlvA3bHM+Yn7AIwJSCnPrbqW6LykO8REl6AqmudqxD/GGlkxYiYHvCgk
|
||||||
|
damEOQzouxzLQBmLuUCRfr6lMr6dBtHfYGUTMWaR3xMH53Ggu6/Vo2NTDyrN
|
||||||
|
J3p/VAHHx87T1ozdNngbearumIkT061hfgB3B5k4MOIRC+yTBE8XnQ4yWrLY
|
||||||
|
s6NQrLsUxlnW+aLKETOk77w+Q53I70hS/w6Ncj/mK5kBQGNPznvDZsxg+BYm
|
||||||
|
OBckzwqoyR0YAHTRh9C8xYY6EwT6CJdSjjuSDU+ISlHVdQyN96j0FOZejawY
|
||||||
|
NdhK+3jHuj3uGpQ1C/046RZIXeJRkpgvavtzN71TgSdCzpKkIsn9E7d+uVFO
|
||||||
|
4PWyDp8weNS9l0+4EeFEEbVmpEoXj99bwUwPD3MY+nc85wJ+blTdDtTm3kxx
|
||||||
|
XJ4Gofm99ofXAuyZeBuNQp5uqktasj/oaq/ckbNiXOshedERsrA7rg0n0BbS
|
||||||
|
9KH7uQjQ+OUjixVUK0ZMdH04blDuDDfPqoB9nTIy
|
||||||
|
=4f33
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
|
@ -0,0 +1,54 @@
|
||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
xsFNBFt+3qEBEACzmydQNMiJkP918irjKPGcWoO4dH03rbtei/czI/r+hUuU
|
||||||
|
TlggxzqxNaGmp7yIHS0tTljWJsfoequVFLrJ4jFOl1VzvB0zJz0xRc0PL70m
|
||||||
|
bW8SedLlWEpvOvzSfG/6jOQsVicmOwE56iH0bwReiHQjBdcGPakltIKL9gGN
|
||||||
|
KkDCYmThZgptlUCrkx9IyI8JzC1cUL56//dQoCMbRpNHS3M1BIJxgKPg8VSr
|
||||||
|
qKR7kyHp3xY9LS63xVOivGx9NK7v4KMjAKqq/cqeHWYZCkCqGQThoADh8tT1
|
||||||
|
PM08BAn2yv0v5GMV7t5HjorI3fdU/wC0cXTGHI6loifIRvPWHoTg/Gz16QQg
|
||||||
|
NfP7Uhl0Xiplsc00HR3yyplsDjK1CqfgYVL2jz+zCBtv5HkW4tQ7nEYoPB0h
|
||||||
|
MMbz+iKWzYzEQQElk6uEsKU2oF5oq/tsNqsYAJfHcTKazcOWBmvrURO3nfnj
|
||||||
|
Su5ax3oSoaEikHeCDlg7tMj2oX3JgD9RM77Kvo99ZrFUNsHzeRJvU1FCoGrP
|
||||||
|
S/mR+8o3nzBJIW7weG6Cf8WkyG4Hk4pdX0hYyJspH7yvUCWlC3Y+FTHSK9NQ
|
||||||
|
7q8FZpb/YsuzngBT9Rrv8LMfq9w/VlabhpD6F10pnefMx9FS5X+X7vruZtam
|
||||||
|
l4ZM/nwHvTcqHM+kRhqt+jq727wSki3/sAP2mQARAQABzSsiYW50b2luZUBh
|
||||||
|
eWFrYWVsLm5ldCIgPGFudG9pbmVAYXlha2FlbC5uZXQ+wsF/BBABCAApBQJb
|
||||||
|
ft6hBgsJBwgDAgkQ66Kobbb8s6sEFQgKAgMWAgECGQECGwMCHgEACgkQ66Ko
|
||||||
|
bbb8s6tzVhAAhIsfL0zB8jjg3FBUS+xZHaLqqbIyymgULgPMIOBj9j0JwtNk
|
||||||
|
pbpU+H+00Pm6QpCKF9/FyigOrpoQREcVDHUCMZ2EMKe6R7semkiWC705AVe+
|
||||||
|
IfldTtRD/J74VqEIthtijQdGwmivpg90kYOasP9vqlyNlZ1dQk4Iu5OFko9w
|
||||||
|
fhk8LOJTVQLi/mPLb7CHl/6lPqLj6RegF+If4LH+c91TDyUguXfpWhmXRxBH
|
||||||
|
X9XFulli8Ci215B1cTdy6/OqC/JG4m8JlB9Tzh+paYWLqB6leShON0uc4UVS
|
||||||
|
8sFXiSklZfenlgfxd3oxNrbn4mU525b4tiRZ2nfUD0YR3prsF67vnMQmbwxR
|
||||||
|
2vLvqSvUdYs2DAqqGd/aFmzY+hnU3Tm67dmePUMU1R7gBufnjHXSBn8wtfi5
|
||||||
|
04PAUx7uXTcrXt99fNA9MxaO0aGQEhnKdFT9zkyQrnY4slf8ItATHdIA0WoN
|
||||||
|
qrP5vIxchquTSOwBhXKDU/aDLqsO/O5jplU17oS0mBZG6RD2ZaJBH0gyqQ6P
|
||||||
|
gEuM5lJIXYyyya93V+67QOD6VjXzb+64fMduLBDKNgcgomkM4W+Y2ZvpmtKB
|
||||||
|
0w5k7QWCNexn4GSrZ9tujxb2RhigP3dMxPZ2Gcr3GIPdadJiX+RLifoJmqJu
|
||||||
|
5aStphe3osLL8PeR5RJhQlN2khp4ETIFS2zOwU0EW37eoQEQAKSS9CpvMv1z
|
||||||
|
rfzIMf00yHbf4MMo9hqowblWTJrittwqCLpR+3QMzW74JO13B8ICifYW/N3u
|
||||||
|
SM0TenJREGSTUt5LZSd+oIA4g+nWWdnB2yghBvXJenB1f0T5pW60+W1NpEOl
|
||||||
|
nbGDQGRPESJPZOcPp1pdhoKO7qwP5AbR4kRSz72kFDD/46VYVqHKuOaLy0F2
|
||||||
|
rWeW6C18hkGTL17SfBW4lvIrpfPBhj3mK3IZoommX7hMjy9eqH8zugGbxU8o
|
||||||
|
p7DBI1LMWM5OAHGISTPp38V++cH/2cCvmLfheRkJqR+DjbpwOyBWZZNSSL/L
|
||||||
|
RuU6u1iTexOVgvDi7n0Yl7CpFNclrVbRb/0qyWeht4Ik1sHAQpuEPF6wIDWc
|
||||||
|
rCbu/1WVBrcfL6WYIfZxWGxTsTfWlXO0Ose34wJB5YSYNEeVv0jJvq6/Oa9m
|
||||||
|
OLOC/CWx23lUGuPVpkgtgKwdppX4kzaUyg/NOZACSE5wfc6jDbOP3UU6NaNo
|
||||||
|
9AC6S5MzUwfe2juX5pL3ij4Z2LWHSXAsRVz7sQ3v16M425RwFda7BtXj7U9f
|
||||||
|
ubMMvrFEPIr4GUPQskhgylmS8oxHMrbUCb7ObngTb1XCnB0Oew2AlGRUOJPx
|
||||||
|
aAvdNPBtgaK9uFsOSdvw7Lk0TctdcREIgVERX/LDwSxw/LAKHTzFOPy1NDiY
|
||||||
|
yP/0IbT0nDxNABEBAAHCwWkEGAEIABMFAlt+3qEJEOuiqG22/LOrAhsMAAoJ
|
||||||
|
EOuiqG22/LOrwyQP/iXTIp1mRwRZ6G7bNKhhK84GRMnXLzMvbVwquVrJms+r
|
||||||
|
oj4ve1cVYkgGgcGw+A8OptblupTYW7EWnykvdoIbg7uLODFW2DBCDzAQxor7
|
||||||
|
K/f9iMtGtt8Xl/BUUNPFOkCoHdfhEdnoEnSkAi5GHFrvXJmFL5XDgTtYIJZM
|
||||||
|
4kRpSlvA3bHM+Yn7AIwJSCnPrbqW6LykO8REl6AqmudqxD/GGlkxYiYHvCgk
|
||||||
|
damEOQzouxzLQBmLuUCRfr6lMr6dBtHfYGUTMWaR3xMH53Ggu6/Vo2NTDyrN
|
||||||
|
J3p/VAHHx87T1ozdNngbearumIkT061hfgB3B5k4MOIRC+yTBE8XnQ4yWrLY
|
||||||
|
s6NQrLsUxlnW+aLKETOk77w+Q53I70hS/w6Ncj/mK5kBQGNPznvDZsxg+BYm
|
||||||
|
OBckzwqoyR0YAHTRh9C8xYY6EwT6CJdSjjuSDU+ISlHVdQyN96j0FOZejawY
|
||||||
|
NdhK+3jHuj3uGpQ1C/046RZIXeJRkpgvavtzN71TgSdCzpKkIsn9E7d+uVFO
|
||||||
|
4PWyDp8weNS9l0+4EeFEEbVmpEoXj99bwUwPD3MY+nc85wJ+blTdDtTm3kxx
|
||||||
|
XJ4Gofm99ofXAuyZeBuNQp5uqktasj/oaq/ckbNiXOshedERsrA7rg0n0BbS
|
||||||
|
9KH7uQjQ+OUjixVUK0ZMdH04blDuDDfPqoB9nTIy
|
||||||
|
=4f33
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
|
@ -0,0 +1,54 @@
|
||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
xsFNBFt+3qEBEACzmydQNMiJkP918irjKPGcWoO4dH03rbtei/czI/r+hUuU
|
||||||
|
TlggxzqxNaGmp7yIHS0tTljWJsfoequVFLrJ4jFOl1VzvB0zJz0xRc0PL70m
|
||||||
|
bW8SedLlWEpvOvzSfG/6jOQsVicmOwE56iH0bwReiHQjBdcGPakltIKL9gGN
|
||||||
|
KkDCYmThZgptlUCrkx9IyI8JzC1cUL56//dQoCMbRpNHS3M1BIJxgKPg8VSr
|
||||||
|
qKR7kyHp3xY9LS63xVOivGx9NK7v4KMjAKqq/cqeHWYZCkCqGQThoADh8tT1
|
||||||
|
PM08BAn2yv0v5GMV7t5HjorI3fdU/wC0cXTGHI6loifIRvPWHoTg/Gz16QQg
|
||||||
|
NfP7Uhl0Xiplsc00HR3yyplsDjK1CqfgYVL2jz+zCBtv5HkW4tQ7nEYoPB0h
|
||||||
|
MMbz+iKWzYzEQQElk6uEsKU2oF5oq/tsNqsYAJfHcTKazcOWBmvrURO3nfnj
|
||||||
|
Su5ax3oSoaEikHeCDlg7tMj2oX3JgD9RM77Kvo99ZrFUNsHzeRJvU1FCoGrP
|
||||||
|
S/mR+8o3nzBJIW7weG6Cf8WkyG4Hk4pdX0hYyJspH7yvUCWlC3Y+FTHSK9NQ
|
||||||
|
7q8FZpb/YsuzngBT9Rrv8LMfq9w/VlabhpD6F10pnefMx9FS5X+X7vruZtam
|
||||||
|
l4ZM/nwHvTcqHM+kRhqt+jq727wSki3/sAP2mQARAQABzSsiYW50b2luZUBh
|
||||||
|
eWFrYWVsLm5ldCIgPGFudG9pbmVAYXlha2FlbC5uZXQ+wsF/BBABCAApBQJb
|
||||||
|
ft6hBgsJBwgDAgkQ66Kobbb8s6sEFQgKAgMWAgECGQECGwMCHgEACgkQ66Ko
|
||||||
|
bbb8s6tzVhAAhIsfL0zB8jjg3FBUS+xZHaLqqbIyymgULgPMIOBj9j0JwtNk
|
||||||
|
pbpU+H+00Pm6QpCKF9/FyigOrpoQREcVDHUCMZ2EMKe6R7semkiWC705AVe+
|
||||||
|
IfldTtRD/J74VqEIthtijQdGwmivpg90kYOasP9vqlyNlZ1dQk4Iu5OFko9w
|
||||||
|
fhk8LOJTVQLi/mPLb7CHl/6lPqLj6RegF+If4LH+c91TDyUguXfpWhmXRxBH
|
||||||
|
X9XFulli8Ci215B1cTdy6/OqC/JG4m8JlB9Tzh+paYWLqB6leShON0uc4UVS
|
||||||
|
8sFXiSklZfenlgfxd3oxNrbn4mU525b4tiRZ2nfUD0YR3prsF67vnMQmbwxR
|
||||||
|
2vLvqSvUdYs2DAqqGd/aFmzY+hnU3Tm67dmePUMU1R7gBufnjHXSBn8wtfi5
|
||||||
|
04PAUx7uXTcrXt99fNA9MxaO0aGQEhnKdFT9zkyQrnY4slf8ItATHdIA0WoN
|
||||||
|
qrP5vIxchquTSOwBhXKDU/aDLqsO/O5jplU17oS0mBZG6RD2ZaJBH0gyqQ6P
|
||||||
|
gEuM5lJIXYyyya93V+67QOD6VjXzb+64fMduLBDKNgcgomkM4W+Y2ZvpmtKB
|
||||||
|
0w5k7QWCNexn4GSrZ9tujxb2RhigP3dMxPZ2Gcr3GIPdadJiX+RLifoJmqJu
|
||||||
|
5aStphe3osLL8PeR5RJhQlN2khp4ETIFS2zOwU0EW37eoQEQAKSS9CpvMv1z
|
||||||
|
rfzIMf00yHbf4MMo9hqowblWTJrittwqCLpR+3QMzW74JO13B8ICifYW/N3u
|
||||||
|
SM0TenJREGSTUt5LZSd+oIA4g+nWWdnB2yghBvXJenB1f0T5pW60+W1NpEOl
|
||||||
|
nbGDQGRPESJPZOcPp1pdhoKO7qwP5AbR4kRSz72kFDD/46VYVqHKuOaLy0F2
|
||||||
|
rWeW6C18hkGTL17SfBW4lvIrpfPBhj3mK3IZoommX7hMjy9eqH8zugGbxU8o
|
||||||
|
p7DBI1LMWM5OAHGISTPp38V++cH/2cCvmLfheRkJqR+DjbpwOyBWZZNSSL/L
|
||||||
|
RuU6u1iTexOVgvDi7n0Yl7CpFNclrVbRb/0qyWeht4Ik1sHAQpuEPF6wIDWc
|
||||||
|
rCbu/1WVBrcfL6WYIfZxWGxTsTfWlXO0Ose34wJB5YSYNEeVv0jJvq6/Oa9m
|
||||||
|
OLOC/CWx23lUGuPVpkgtgKwdppX4kzaUyg/NOZACSE5wfc6jDbOP3UU6NaNo
|
||||||
|
9AC6S5MzUwfe2juX5pL3ij4Z2LWHSXAsRVz7sQ3v16M425RwFda7BtXj7U9f
|
||||||
|
ubMMvrFEPIr4GUPQskhgylmS8oxHMrbUCb7ObngTb1XCnB0Oew2AlGRUOJPx
|
||||||
|
aAvdNPBtgaK9uFsOSdvw7Lk0TctdcREIgVERX/LDwSxw/LAKHTzFOPy1NDiY
|
||||||
|
yP/0IbT0nDxNABEBAAHCwWkEGAEIABMFAlt+3qEJEOuiqG22/LOrAhsMAAoJ
|
||||||
|
EOuiqG22/LOrwyQP/iXTIp1mRwRZ6G7bNKhhK84GRMnXLzMvbVwquVrJms+r
|
||||||
|
oj4ve1cVYkgGgcGw+A8OptblupTYW7EWnykvdoIbg7uLODFW2DBCDzAQxor7
|
||||||
|
K/f9iMtGtt8Xl/BUUNPFOkCoHdfhEdnoEnSkAi5GHFrvXJmFL5XDgTtYIJZM
|
||||||
|
4kRpSlvA3bHM+Yn7AIwJSCnPrbqW6LykO8REl6AqmudqxD/GGlkxYiYHvCgk
|
||||||
|
damEOQzouxzLQBmLuUCRfr6lMr6dBtHfYGUTMWaR3xMH53Ggu6/Vo2NTDyrN
|
||||||
|
J3p/VAHHx87T1ozdNngbearumIkT061hfgB3B5k4MOIRC+yTBE8XnQ4yWrLY
|
||||||
|
s6NQrLsUxlnW+aLKETOk77w+Q53I70hS/w6Ncj/mK5kBQGNPznvDZsxg+BYm
|
||||||
|
OBckzwqoyR0YAHTRh9C8xYY6EwT6CJdSjjuSDU+ISlHVdQyN96j0FOZejawY
|
||||||
|
NdhK+3jHuj3uGpQ1C/046RZIXeJRkpgvavtzN71TgSdCzpKkIsn9E7d+uVFO
|
||||||
|
4PWyDp8weNS9l0+4EeFEEbVmpEoXj99bwUwPD3MY+nc85wJ+blTdDtTm3kxx
|
||||||
|
XJ4Gofm99ofXAuyZeBuNQp5uqktasj/oaq/ckbNiXOshedERsrA7rg0n0BbS
|
||||||
|
9KH7uQjQ+OUjixVUK0ZMdH04blDuDDfPqoB9nTIy
|
||||||
|
=4f33
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
153
recentchanges/index.en.html
Normal file
153
recentchanges/index.en.html
Normal file
|
@ -0,0 +1,153 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>RecentChanges - Ayakael</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="Ayakael" src="../favicon.png" width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown ps-2 pe-2">
|
||||||
|
<button class="btn language-switcher dropdown" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<div class="collapse navbar-collapse float-end ms-1" id="navbar">
|
||||||
|
English
|
||||||
|
</div>
|
||||||
|
<img src="../images/languages.png">
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start" aria-labelledby="language-menu-top">
|
||||||
|
|
||||||
|
<li><a href="./index.fr.html">Français</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<p>Recent changes to this wiki:</p>
|
||||||
|
|
||||||
|
<div class="feedlink">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=recentchanges&t=RecentChanges" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
154
recentchanges/index.fr.html
Normal file
154
recentchanges/index.fr.html
Normal file
|
@ -0,0 +1,154 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>RecentChanges - Ayakael</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="Ayakael" src="../favicon.png" width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown ps-2 pe-2">
|
||||||
|
<button class="btn language-switcher dropdown" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<div class="collapse navbar-collapse float-end ms-1" id="navbar">
|
||||||
|
Français
|
||||||
|
</div>
|
||||||
|
<img src="../images/languages.png">
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start" aria-labelledby="language-menu-top">
|
||||||
|
|
||||||
|
<li><a href="./index.en.html">English</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<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.fr.html">Accueil</a></li>
|
||||||
|
<li><a href="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.fr.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<p>Dernières modifications :</p>
|
||||||
|
|
||||||
|
<div class="feedlink">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Propulsé par <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=recentchanges.fr&t=RecentChanges" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1 +0,0 @@
|
||||||
Donec dapibus orci sit amet elit. Maecenas rutrum ultrices lectus. Aliquam suscipit, lacus a iaculis adipiscing, eros orci pellentesque nisl, non pharetra dolor urna nec dolor. Integer cursus dolor vel magna. Integer ultrices feugiat sem. Proin nec nibh. Duis eu dui quis nunc sagittis lobortis. Fusce pharetra, enim ut sodales luctus, lectus arcu rhoncus purus, in fringilla augue elit vel lacus. In hac habitasse platea dictumst. Aliquam erat volutpat. Fusce iaculis elit id tellus. Ut accumsan malesuada turpis. Suspendisse potenti. Vestibulum lacus augue, lobortis mattis, laoreet in, varius at, nisi. Nunc gravida. Phasellus faucibus. In hac habitasse platea dictumst. Integer tempor lacus eget lectus. Praesent fringilla augue fringilla dui.
|
|
133
sample_text/Donec_dapibus/index.html
Normal file
133
sample_text/Donec_dapibus/index.html
Normal file
|
@ -0,0 +1,133 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>Donec dapibus - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<p>Donec dapibus orci sit amet elit. Maecenas rutrum ultrices lectus. Aliquam suscipit, lacus a iaculis adipiscing, eros orci pellentesque nisl, non pharetra dolor urna nec dolor. Integer cursus dolor vel magna. Integer ultrices feugiat sem. Proin nec nibh. Duis eu dui quis nunc sagittis lobortis. Fusce pharetra, enim ut sodales luctus, lectus arcu rhoncus purus, in fringilla augue elit vel lacus. In hac habitasse platea dictumst. Aliquam erat volutpat. Fusce iaculis elit id tellus. Ut accumsan malesuada turpis. Suspendisse potenti. Vestibulum lacus augue, lobortis mattis, laoreet in, varius at, nisi. Nunc gravida. Phasellus faucibus. In hac habitasse platea dictumst. Integer tempor lacus eget lectus. Praesent fringilla augue fringilla dui.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:07Z">Tue Sep 17 19:04:07 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=sample_text/Donec_dapibus&t=Donec%20dapibus" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1 +0,0 @@
|
||||||
Donec semper, sem nec tristique tempus, justo neque commodo nisl, ut gravida sem tellus suscipit nunc. Aliquam erat volutpat. Ut tincidunt pretium elit. Aliquam pulvinar. Nulla cursus. Suspendisse potenti. Etiam condimentum hendrerit felis. Duis iaculis aliquam enim. Donec dignissim augue vitae orci. Curabitur luctus felis a metus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In varius neque at enim. Suspendisse massa nulla, viverra in, bibendum vitae, tempor quis, lorem.
|
|
133
sample_text/Donec_semper/index.html
Normal file
133
sample_text/Donec_semper/index.html
Normal file
|
@ -0,0 +1,133 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>Donec semper - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<p>Donec semper, sem nec tristique tempus, justo neque commodo nisl, ut gravida sem tellus suscipit nunc. Aliquam erat volutpat. Ut tincidunt pretium elit. Aliquam pulvinar. Nulla cursus. Suspendisse potenti. Etiam condimentum hendrerit felis. Duis iaculis aliquam enim. Donec dignissim augue vitae orci. Curabitur luctus felis a metus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In varius neque at enim. Suspendisse massa nulla, viverra in, bibendum vitae, tempor quis, lorem.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:07Z">Tue Sep 17 19:04:07 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=sample_text/Donec_semper&t=Donec%20semper" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,4 +0,0 @@
|
||||||
[[!meta author="Cicero"]]
|
|
||||||
[[!meta date="45 B.C."]]
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed at ante. Mauris eleifend, quam a vulputate dictum, massa quam dapibus leo, eget vulputate orci purus ut lorem. In fringilla mi in ligula. Pellentesque aliquam quam vel dolor. Nunc adipiscing. Sed quam odio, tempus ac, aliquam molestie, varius ac, tellus. Vestibulum ut nulla aliquam risus rutrum interdum. Pellentesque lorem. Curabitur sit amet erat quis risus feugiat viverra. Pellentesque augue justo, sagittis et, lacinia at, venenatis non, arcu. Nunc nec libero. In cursus dictum risus. Etiam tristique nisl a nulla. Ut a orci. Curabitur dolor nunc, egestas at, accumsan at, malesuada nec, magna.
|
|
135
sample_text/Lorem_ipsum/index.html
Normal file
135
sample_text/Lorem_ipsum/index.html
Normal file
|
@ -0,0 +1,135 @@
|
||||||
|
<!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="author" content="Cicero" />
|
||||||
|
|
||||||
|
|
||||||
|
<title>Lorem ipsum - Ayakael</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" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="author" content="Cicero" />
|
||||||
|
|
||||||
|
|
||||||
|
</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<p>[[!meta <span class="error">Error: cannot parse date/time: 45 B.C.</span>]]</p>
|
||||||
|
|
||||||
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed at ante. Mauris eleifend, quam a vulputate dictum, massa quam dapibus leo, eget vulputate orci purus ut lorem. In fringilla mi in ligula. Pellentesque aliquam quam vel dolor. Nunc adipiscing. Sed quam odio, tempus ac, aliquam molestie, varius ac, tellus. Vestibulum ut nulla aliquam risus rutrum interdum. Pellentesque lorem. Curabitur sit amet erat quis risus feugiat viverra. Pellentesque augue justo, sagittis et, lacinia at, venenatis non, arcu. Nunc nec libero. In cursus dictum risus. Etiam tristique nisl a nulla. Ut a orci. Curabitur dolor nunc, egestas at, accumsan at, malesuada nec, magna.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:07Z">Tue Sep 17 19:04:07 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=sample_text/Lorem_ipsum&t=Lorem%20ipsum" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,2 +0,0 @@
|
||||||
[[!tag Cicero Latin typesetting]]
|
|
||||||
Nulla facilisi. Nunc volutpat. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Ut sit amet orci vel mauris blandit vehicula. Nullam quis enim. Integer dignissim viverra velit. Curabitur in odio. In hac habitasse platea dictumst. Ut consequat, tellus eu volutpat varius, justo orci elementum dolor, sed imperdiet nulla tellus ut diam. Vestibulum ipsum ante, malesuada quis, tempus ac, placerat sit amet, elit.
|
|
133
sample_text/Nulla_facilisi/index.html
Normal file
133
sample_text/Nulla_facilisi/index.html
Normal file
|
@ -0,0 +1,133 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>Nulla facilisi - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<p>Nulla facilisi. Nunc volutpat. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Ut sit amet orci vel mauris blandit vehicula. Nullam quis enim. Integer dignissim viverra velit. Curabitur in odio. In hac habitasse platea dictumst. Ut consequat, tellus eu volutpat varius, justo orci elementum dolor, sed imperdiet nulla tellus ut diam. Vestibulum ipsum ante, malesuada quis, tempus ac, placerat sit amet, elit.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:07Z">Tue Sep 17 19:04:07 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=sample_text/Nulla_facilisi&t=Nulla%20facilisi" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1 +0,0 @@
|
||||||
Sed eget turpis a pede tempor malesuada. Vivamus quis mi at leo pulvinar hendrerit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque aliquet lacus vitae pede. Nullam mollis dolor ac nisi. Phasellus sit amet urna. Praesent pellentesque sapien sed lacus. Donec lacinia odio in odio. In sit amet elit. Maecenas gravida interdum urna. Integer pretium, arcu vitae imperdiet facilisis, elit tellus tempor nisi, vel feugiat ante velit sit amet mauris. Vivamus arcu. Integer pharetra magna ac lacus. Aliquam vitae sapien in nibh vehicula auctor. Suspendisse leo mauris, pulvinar sed, tempor et, consequat ac, lacus. Proin velit. Nulla semper lobortis mauris. Duis urna erat, ornare et, imperdiet eu, suscipit sit amet, massa. Nulla nulla nisi, pellentesque at, egestas quis, fringilla eu, diam.
|
|
133
sample_text/Sed_eget/index.html
Normal file
133
sample_text/Sed_eget/index.html
Normal file
|
@ -0,0 +1,133 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>Sed eget - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<p>Sed eget turpis a pede tempor malesuada. Vivamus quis mi at leo pulvinar hendrerit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque aliquet lacus vitae pede. Nullam mollis dolor ac nisi. Phasellus sit amet urna. Praesent pellentesque sapien sed lacus. Donec lacinia odio in odio. In sit amet elit. Maecenas gravida interdum urna. Integer pretium, arcu vitae imperdiet facilisis, elit tellus tempor nisi, vel feugiat ante velit sit amet mauris. Vivamus arcu. Integer pharetra magna ac lacus. Aliquam vitae sapien in nibh vehicula auctor. Suspendisse leo mauris, pulvinar sed, tempor et, consequat ac, lacus. Proin velit. Nulla semper lobortis mauris. Duis urna erat, ornare et, imperdiet eu, suscipit sit amet, massa. Nulla nulla nisi, pellentesque at, egestas quis, fringilla eu, diam.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:07Z">Tue Sep 17 19:04:07 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=sample_text/Sed_eget&t=Sed%20eget" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
220
sandbox.fr/index.html
Normal file
220
sandbox.fr/index.html
Normal file
|
@ -0,0 +1,220 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>sandbox.fr - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C)2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2009-08-15 18:30-0300\n"
|
||||||
|
"PO-Revision-Date: 2009-08-26 21:07+0200\n"
|
||||||
|
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
|
||||||
|
"Language-Team: french <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bits\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"This is the SandBox, a page anyone can edit to learn how to use the wiki."
|
||||||
|
msgstr "Voici le bac à sable, une page que tout le monde peut éditer pour apprendre à se servir du wiki."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid "Here's a paragraph."
|
||||||
|
msgstr "Voici un paragraphe."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid "Here's another one with *emphasised* text."
|
||||||
|
msgstr "Un autre avec du texte en *italique*."
|
||||||
|
|
||||||
|
#. type: Title #
|
||||||
|
#, no-wrap
|
||||||
|
msgid "Header"
|
||||||
|
msgstr "Titre"
|
||||||
|
|
||||||
|
#. type: Title ##
|
||||||
|
#, no-wrap
|
||||||
|
msgid "Subheader"
|
||||||
|
msgstr "Sous-titre"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid ""
|
||||||
|
"> This is a blockquote.\n"
|
||||||
|
">\n"
|
||||||
|
"> This is the first level of quoting.\n"
|
||||||
|
">\n"
|
||||||
|
"> > This is nested blockquote.\n"
|
||||||
|
">\n"
|
||||||
|
"> Back to the first level.\n"
|
||||||
|
msgstr ""
|
||||||
|
"> Un bloc de citation.\n"
|
||||||
|
">\n"
|
||||||
|
"> Le premier niveau de citation.\n"
|
||||||
|
">\n"
|
||||||
|
"> > Une citation imbriquée.\n"
|
||||||
|
">\n"
|
||||||
|
"> Retour au premier niveau.\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid "Numbered list"
|
||||||
|
msgstr "Liste numérotée"
|
||||||
|
|
||||||
|
#. type: Bullet: '1. '
|
||||||
|
msgid "First item."
|
||||||
|
msgstr "Premier élément."
|
||||||
|
|
||||||
|
#. type: Bullet: '1. '
|
||||||
|
msgid "Another."
|
||||||
|
msgstr "Un autre."
|
||||||
|
|
||||||
|
#. type: Bullet: '1. '
|
||||||
|
msgid "And another.."
|
||||||
|
msgstr "Encore un autre..."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid "Bulleted list"
|
||||||
|
msgstr "Liste avec point"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "*item*"
|
||||||
|
msgstr "*élement*"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "item"
|
||||||
|
msgstr "élement"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid "<a href="../ikiwiki/wikilink/">WikiLink</a>"
|
||||||
|
msgstr "<a href="../ikiwiki/wikilink/">WikiLink</a>"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=sandbox.fr&t=sandbox.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
172
sandbox/index.html
Normal file
172
sandbox/index.html
Normal file
|
@ -0,0 +1,172 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>sandbox - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<p>This is the SandBox, a page anyone can edit to learn how to use the wiki.</p>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<p>Here's a paragraph.</p>
|
||||||
|
|
||||||
|
<p>Here's another one with <em>emphasised</em> text.</p>
|
||||||
|
|
||||||
|
<h1>Header</h1>
|
||||||
|
|
||||||
|
<h2>Subheader</h2>
|
||||||
|
|
||||||
|
<blockquote>
|
||||||
|
<p>This is a blockquote.</p>
|
||||||
|
|
||||||
|
<p>This is the first level of quoting.</p>
|
||||||
|
|
||||||
|
<blockquote>
|
||||||
|
<p>This is nested blockquote.</p>
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
|
<p>Back to the first level.</p>
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
|
<p>Numbered list </p>
|
||||||
|
|
||||||
|
<ol>
|
||||||
|
<li>First item.</li>
|
||||||
|
<li>Another.</li>
|
||||||
|
<li>And another..</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<p>Bulleted list</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><em>item</em></li>
|
||||||
|
<li>item</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p><a href="../ikiwiki/wikilink/">WikiLink</a></p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=sandbox&t=sandbox" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
239
shortcuts/index.en.html
Normal file
239
shortcuts/index.en.html
Normal file
|
@ -0,0 +1,239 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>shortcuts - Ayakael</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="Ayakael" src="../favicon.png" width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown ps-2 pe-2">
|
||||||
|
<button class="btn language-switcher dropdown" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<div class="collapse navbar-collapse float-end ms-1" id="navbar">
|
||||||
|
English
|
||||||
|
</div>
|
||||||
|
<img src="../images/languages.png">
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start" aria-labelledby="language-menu-top">
|
||||||
|
|
||||||
|
<li><a href="./index.fr.html">Français</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<p>This wiki has shortcuts <strong>enabled</strong>.</p>
|
||||||
|
|
||||||
|
<p>Some examples of using shortcuts include:</p>
|
||||||
|
|
||||||
|
<pre><code>[[!google foo]]
|
||||||
|
[[!wikipedia War_of_1812]]
|
||||||
|
[[!debbug 12345]]
|
||||||
|
Check the [[!google ikiwiki desc="google search for %s"]].
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>This page controls what shortcut links the wiki supports.</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>shortcut google points to <i>https://encrypted.google.com/search?q=%s</i></li>
|
||||||
|
<li>shortcut archive points to <i>http://web.archive.org/*/%S</i></li>
|
||||||
|
<li>shortcut gmap points to <i>https://maps.google.com/maps?q=%s</i></li>
|
||||||
|
<li>shortcut gmsg points to <i>https://groups.google.com/groups?selm=%s</i></li>
|
||||||
|
<li>shortcut wikipedia points to <i>https://en.wikipedia.org/wiki/%W</i></li>
|
||||||
|
<li>shortcut wikitravel points to <i>https://wikitravel.org/en/%s</i></li>
|
||||||
|
<li>shortcut wiktionary points to <i>https://en.wiktionary.org/wiki/%s</i></li>
|
||||||
|
<li>shortcut debbug points to <i>http://bugs.debian.org/%S</i></li>
|
||||||
|
<li>shortcut deblist points to <i>https://lists.debian.org/debian-%s</i></li>
|
||||||
|
<li>shortcut debpkg points to <i>http://packages.debian.org/%s</i></li>
|
||||||
|
<li>shortcut debpkgsid points to <i>http://packages.debian.org/sid/%s</i></li>
|
||||||
|
<li>shortcut debpts points to <i>http://packages.qa.debian.org/%s</i></li>
|
||||||
|
<li>shortcut debmsg points to <i>https://lists.debian.org/msgid-search/%s</i></li>
|
||||||
|
<li>shortcut debrt points to <i>https://rt.debian.org/Ticket/Display.html?id=%s</i></li>
|
||||||
|
<li>shortcut debss points to <i>http://snapshot.debian.org/package/%s/</i>
|
||||||
|
<ul>
|
||||||
|
<li>Usage: <code>[[!debss package]]</code> or <code>[[!debss package/version]]</code>. See <a href="http://snapshot.debian.org/">http://snapshot.debian.org/</a> for details.</li>
|
||||||
|
</ul></li>
|
||||||
|
<li>shortcut debwiki points to <i>https://wiki.debian.org/%S</i></li>
|
||||||
|
<li>shortcut debcve points to <i>https://security-tracker.debian.org/tracker/%S</i>
|
||||||
|
<ul>
|
||||||
|
<li>also supports Debian bug numbers, packages and whatever the <a href="https://security-tracker.debian.org/tracker/">security tracker</a> supports.</li>
|
||||||
|
</ul></li>
|
||||||
|
<li>shortcut fdobug points to <i>https://bugs.freedesktop.org/show_bug.cgi?id=%s</i></li>
|
||||||
|
<li>shortcut fdolist points to <i>http://lists.freedesktop.org/mailman/listinfo/%s</i></li>
|
||||||
|
<li>shortcut gnomebug points to <i>https://bugzilla.gnome.org/show_bug.cgi?id=%s</i></li>
|
||||||
|
<li>shortcut linuxbug points to <i>https://bugzilla.kernel.org/show_bug.cgi?id=%s</i></li>
|
||||||
|
<li>shortcut mozbug points to <i>https://bugzilla.mozilla.org/show_bug.cgi?id=%s</i></li>
|
||||||
|
<li>shortcut gnulist points to <i>https://lists.gnu.org/mailman/listinfo/%s</i></li>
|
||||||
|
<li>shortcut marcmsg points to <i>http://marc.info/?i=%s</i></li>
|
||||||
|
<li>shortcut marclist points to <i>http://marc.info/?l=%s</i></li>
|
||||||
|
<li>shortcut gmane points to <i>http://dir.gmane.org/gmane.%s</i></li>
|
||||||
|
<li>shortcut gmanemsg points to <i>http://mid.gmane.org/%s</i></li>
|
||||||
|
<li>shortcut cpan points to <i>http://search.cpan.org/search?mode=dist&query=%s</i></li>
|
||||||
|
<li>shortcut ctan points to <i>http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=%s</i></li>
|
||||||
|
<li>shortcut hoogle points to <i>http://haskell.org/hoogle/?q=%s</i></li>
|
||||||
|
<li>shortcut iki points to <i>http://ikiwiki.info/%S/</i></li>
|
||||||
|
<li>shortcut ljuser points to <i>http://%s.livejournal.com/</i></li>
|
||||||
|
<li>shortcut rfc points to <i>https://www.ietf.org/rfc/rfc%s.txt</i></li>
|
||||||
|
<li>shortcut c2 points to <i>http://wiki.c2.com/?%s</i></li>
|
||||||
|
<li>shortcut meatballwiki points to <i>http://www.usemod.com/cgi-bin/mb.pl?%s</i></li>
|
||||||
|
<li>shortcut emacswiki points to <i>http://www.emacswiki.org/cgi-bin/wiki/%s</i></li>
|
||||||
|
<li>shortcut haskellwiki points to <i>http://haskell.org/haskellwiki/%s</i></li>
|
||||||
|
<li>shortcut dict points to <i>http://www.dict.org/bin/Dict?Form=Dict1&Strategy=<em>&Database=</em>&Query=%s</i></li>
|
||||||
|
<li>shortcut imdb points to <i>http://imdb.com/find?q=%s</i></li>
|
||||||
|
<li>shortcut gpg points to <i>http://pgpkeys.mit.edu:11371/pks/lookup?op=vindex&exact=on&search=0x%s</i></li>
|
||||||
|
<li>shortcut perldoc points to <i>http://perldoc.perl.org/search.html?q=%s</i></li>
|
||||||
|
<li>shortcut whois points to <i>http://reports.internic.net/cgi/whois?whois_nic=%s&type=domain</i></li>
|
||||||
|
<li>shortcut cve points to <i>https://cve.mitre.org/cgi-bin/cvename.cgi?name=%s</i></li>
|
||||||
|
<li>shortcut flickr points to <i>https://secure.flickr.com/photos/%s</i></li>
|
||||||
|
<li>shortcut man points to <i>http://manpages.debian.org/%s</i></li>
|
||||||
|
<li>shortcut ohloh points to <i>https://www.ohloh.net/p/%s</i></li>
|
||||||
|
<li>shortcut cpanrt points to <i>https://rt.cpan.org/Ticket/Display.html?id=%s</i></li>
|
||||||
|
<li>shortcut novellbug points to <i>https://bugzilla.novell.com/show_bug.cgi?id=%s</i></li>
|
||||||
|
<li>shortcut ubupkg points to <i>http://packages.ubuntu.com/%s</i></li>
|
||||||
|
<li>shortcut mozillazinekb points to <i>http://kb.mozillazine.org/%s</i></li>
|
||||||
|
<li>shortcut freebsdwiki points to <i>http://wiki.freebsd.org/%s</i></li>
|
||||||
|
<li>shortcut hackage points to <i>http://hackage.haskell.org/package/%s</i></li>
|
||||||
|
<li>shortcut pkgsrc points to <i>http://pkgsrc.se/%S</i></li>
|
||||||
|
<li>shortcut doi points to <i>http://dx.doi.org/%s</i></li>
|
||||||
|
<li>shortcut arxiv points to <i>http://arxiv.org/abs/%s</i></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>To add a new shortcut, use the <code>shortcut</code>
|
||||||
|
<a href="../ikiwiki/directive/">directive</a>. In the url, "%s" is replaced with the
|
||||||
|
text passed to the named shortcut, after <a href="https://en.wikipedia.org/wiki/url%5Fencoding">url encoding</a>
|
||||||
|
it, and '%S' is replaced with the raw, non-encoded text.
|
||||||
|
Additionally, <code>%W</code> is replaced with the text encoded just right for
|
||||||
|
Wikipedia. The optional <code>desc</code> parameter controls the description of
|
||||||
|
the link.</p>
|
||||||
|
|
||||||
|
<p>Remember that the <code>name</code> you give the shortcut will become a new
|
||||||
|
<a href="../ikiwiki/directive/">directive</a>. Avoid using a <code>name</code> that conflicts
|
||||||
|
with an existing directive. These directives also accept a <code>desc</code>
|
||||||
|
parameter that will override the one provided at definition time.</p>
|
||||||
|
|
||||||
|
<p>If you come up with a shortcut that you think others might find useful,
|
||||||
|
consider contributing it to the <a href="http://ikiwiki.info/shortcuts/">shortcuts page on the ikiwiki
|
||||||
|
wiki</a>, so that future versions of
|
||||||
|
ikiwiki will include your shortcut in the standard underlay.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=shortcuts&t=shortcuts" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
240
shortcuts/index.fr.html
Normal file
240
shortcuts/index.fr.html
Normal file
|
@ -0,0 +1,240 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>shortcuts.fr - Ayakael</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="Ayakael" src="../favicon.png" width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown ps-2 pe-2">
|
||||||
|
<button class="btn language-switcher dropdown" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<div class="collapse navbar-collapse float-end ms-1" id="navbar">
|
||||||
|
Français
|
||||||
|
</div>
|
||||||
|
<img src="../images/languages.png">
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start" aria-labelledby="language-menu-top">
|
||||||
|
|
||||||
|
<li><a href="./index.en.html">English</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<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.fr.html">Accueil</a></li>
|
||||||
|
<li><a href="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.fr.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<p>Les raccourcis sont <strong>activés</strong> dans ce wiki.</p>
|
||||||
|
|
||||||
|
<p>Voici quelques exemples de raccourcis :</p>
|
||||||
|
|
||||||
|
<pre><code>[[!google foo]]
|
||||||
|
[[!wikipedia War_of_1812]]
|
||||||
|
[[!debbug 12345]]
|
||||||
|
Check the [[!google ikiwiki desc="google search for %s"]].
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>Cette page définit les raccourcis connus par ce wiki.</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>shortcut google points to <i>https://encrypted.google.com/search?q=%s</i></li>
|
||||||
|
<li>shortcut archive points to <i>http://web.archive.org/*/%S</i></li>
|
||||||
|
<li>shortcut gmap points to <i>https://maps.google.com/maps?q=%s</i></li>
|
||||||
|
<li>shortcut gmsg points to <i>https://groups.google.com/groups?selm=%s</i></li>
|
||||||
|
<li>shortcut wikipedia points to <i>https://en.wikipedia.org/wiki/%W</i></li>
|
||||||
|
<li>shortcut wikitravel points to <i>https://wikitravel.org/en/%s</i></li>
|
||||||
|
<li>shortcut wiktionary points to <i>https://en.wiktionary.org/wiki/%s</i></li>
|
||||||
|
<li>shortcut debbug points to <i>http://bugs.debian.org/%S</i></li>
|
||||||
|
<li>shortcut deblist points to <i>https://lists.debian.org/debian-%s</i></li>
|
||||||
|
<li>shortcut debpkg points to <i>http://packages.debian.org/%s</i></li>
|
||||||
|
<li>shortcut debpkgsid points to <i>http://packages.debian.org/sid/%s</i></li>
|
||||||
|
<li>shortcut debpts points to <i>http://packages.qa.debian.org/%s</i></li>
|
||||||
|
<li>shortcut debmsg points to <i>https://lists.debian.org/msgid-search/%s</i></li>
|
||||||
|
<li>shortcut debrt points to <i>https://rt.debian.org/Ticket/Display.html?id=%s</i></li>
|
||||||
|
<li>shortcut debss points to <i>http://snapshot.debian.org/package/%s/</i>
|
||||||
|
<ul>
|
||||||
|
<li>Usage: <code>[[!debss package]]</code> or <code>[[!debss package/version]]</code>. See
|
||||||
|
<a href="http://snapshot.debian.org/">http://snapshot.debian.org/</a> for details.</li>
|
||||||
|
</ul></li>
|
||||||
|
<li>shortcut debwiki points to <i>https://wiki.debian.org/%S</i></li>
|
||||||
|
<li>shortcut debcve points to <i>https://security-tracker.debian.org/tracker/%S</i>
|
||||||
|
<ul>
|
||||||
|
<li>also supports Debian bug numbers, packages and whatever the <a href="https://security-tracker.debian.org/tracker/">security
|
||||||
|
tracker</a> supports.</li>
|
||||||
|
</ul></li>
|
||||||
|
<li>shortcut fdobug points to <i>https://bugs.freedesktop.org/show_bug.cgi?id=%s</i></li>
|
||||||
|
<li>shortcut fdolist points to <i>http://lists.freedesktop.org/mailman/listinfo/%s</i></li>
|
||||||
|
<li>shortcut gnomebug points to <i>https://bugzilla.gnome.org/show_bug.cgi?id=%s</i></li>
|
||||||
|
<li>shortcut linuxbug points to <i>https://bugzilla.kernel.org/show_bug.cgi?id=%s</i></li>
|
||||||
|
<li>shortcut mozbug points to <i>https://bugzilla.mozilla.org/show_bug.cgi?id=%s</i></li>
|
||||||
|
<li>shortcut gnulist points to <i>https://lists.gnu.org/mailman/listinfo/%s</i></li>
|
||||||
|
<li>shortcut marcmsg points to <i>http://marc.info/?i=%s</i></li>
|
||||||
|
<li>shortcut marclist points to <i>http://marc.info/?l=%s</i></li>
|
||||||
|
<li>shortcut gmane points to <i>http://dir.gmane.org/gmane.%s</i></li>
|
||||||
|
<li>shortcut gmanemsg points to <i>http://mid.gmane.org/%s</i></li>
|
||||||
|
<li>shortcut cpan points to <i>http://search.cpan.org/search?mode=dist&query=%s</i></li>
|
||||||
|
<li>shortcut ctan points to <i>http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=%s</i></li>
|
||||||
|
<li>shortcut hoogle points to <i>http://haskell.org/hoogle/?q=%s</i></li>
|
||||||
|
<li>shortcut iki points to <i>http://ikiwiki.info/%S/</i></li>
|
||||||
|
<li>shortcut ljuser points to <i>http://%s.livejournal.com/</i></li>
|
||||||
|
<li>shortcut rfc points to <i>https://www.ietf.org/rfc/rfc%s.txt</i></li>
|
||||||
|
<li>shortcut c2 points to <i>http://wiki.c2.com/?%s</i></li>
|
||||||
|
<li>shortcut meatballwiki points to <i>http://www.usemod.com/cgi-bin/mb.pl?%s</i></li>
|
||||||
|
<li>shortcut emacswiki points to <i>http://www.emacswiki.org/cgi-bin/wiki/%s</i></li>
|
||||||
|
<li>shortcut haskellwiki points to <i>http://haskell.org/haskellwiki/%s</i></li>
|
||||||
|
<li>shortcut dict points to <i>http://www.dict.org/bin/Dict?Form=Dict1&Strategy=<em>&Database=</em>&Query=%s</i></li>
|
||||||
|
<li>shortcut imdb points to <i>http://imdb.com/find?q=%s</i></li>
|
||||||
|
<li>shortcut gpg points to <i>http://pgpkeys.mit.edu:11371/pks/lookup?op=vindex&exact=on&search=0x%s</i></li>
|
||||||
|
<li>shortcut perldoc points to <i>http://perldoc.perl.org/search.html?q=%s</i></li>
|
||||||
|
<li>shortcut whois points to <i>http://reports.internic.net/cgi/whois?whois_nic=%s&type=domain</i></li>
|
||||||
|
<li>shortcut cve points to <i>https://cve.mitre.org/cgi-bin/cvename.cgi?name=%s</i></li>
|
||||||
|
<li>shortcut flickr points to <i>https://secure.flickr.com/photos/%s</i></li>
|
||||||
|
<li>shortcut man points to <i>http://manpages.debian.org/%s</i></li>
|
||||||
|
<li>shortcut ohloh points to <i>https://www.ohloh.net/p/%s</i></li>
|
||||||
|
<li>shortcut cpanrt points to <i>https://rt.cpan.org/Ticket/Display.html?id=%s</i></li>
|
||||||
|
<li>shortcut novellbug points to <i>https://bugzilla.novell.com/show_bug.cgi?id=%s</i></li>
|
||||||
|
<li>shortcut ubupkg points to <i>http://packages.ubuntu.com/%s</i></li>
|
||||||
|
<li>shortcut mozillazinekb points to <i>http://kb.mozillazine.org/%s</i></li>
|
||||||
|
<li>shortcut freebsdwiki points to <i>http://wiki.freebsd.org/%s</i></li>
|
||||||
|
<li>shortcut hackage points to <i>http://hackage.haskell.org/package/%s</i></li>
|
||||||
|
<li>shortcut pkgsrc points to <i>http://pkgsrc.se/%S</i></li>
|
||||||
|
<li>shortcut doi points to <i>http://dx.doi.org/%s</i></li>
|
||||||
|
<li>shortcut arxiv points to <i>http://arxiv.org/abs/%s</i></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>To add a new shortcut, use the <code>shortcut</code> <a href="../ikiwiki/directive/">directive</a>. In the url,
|
||||||
|
"%s" is replaced with the text passed to the named shortcut, after
|
||||||
|
<a href="https://en.wikipedia.org/wiki/url%5Fencoding">url encoding</a> it, and '%S' is replaced with the raw,
|
||||||
|
non-encoded text. Additionally, <code>%W</code> is replaced with the text encoded just
|
||||||
|
right for Wikipedia. The optional <code>desc</code> parameter controls the description
|
||||||
|
of the link.</p>
|
||||||
|
|
||||||
|
<p>N'oubliez pas que le paramètre <code>name</code> donné au raccourci devient une
|
||||||
|
nouvelle <a href="../ikiwiki/directive/">directive</a>. Évitez de donner un nom qui entre en conflit
|
||||||
|
avec une directive existante. Ces directives acceptent aussi un paramètre
|
||||||
|
<code>desc</code> qui primera celui fourni au moment de la définition du raccourci.</p>
|
||||||
|
|
||||||
|
<p>Si vous trouvez un raccourci qui vous paraît utile, proposez-le sur la <a href="http://ikiwiki.info/shortcuts/">page
|
||||||
|
des raccourcis du wiki d'ikiwiki</a>. Ainsi les
|
||||||
|
futures versions d'ikiwiki incluront automatiquement ce raccourci.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Propulsé par <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=shortcuts.fr&t=shortcuts.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,53 +0,0 @@
|
||||||
# SOME DESCRIPTIVE TITLE
|
|
||||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: ayakael.net\n"
|
|
||||||
"POT-Creation-Date: 2024-09-10 22:13-0400\n"
|
|
||||||
"PO-Revision-Date: 2024-09-10 22:25-0400\n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: ayakael <antoine@ayakael.net>\n"
|
|
||||||
"Language: fr\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"X-Generator: Poedit 3.4.3\n"
|
|
||||||
|
|
||||||
#. type: Content of: <ul><li>
|
|
||||||
msgid "[[Home|index]]"
|
|
||||||
msgstr "[[Accueil|index]]"
|
|
||||||
|
|
||||||
#. type: Content of: <ul><li>
|
|
||||||
msgid "[[Forge|https://ayakael.net/forge/]]"
|
|
||||||
msgstr "[[Forge|https://ayakael.net/forge/]]"
|
|
||||||
|
|
||||||
#. type: Content of: <ul><li>
|
|
||||||
msgid "[[Contact]]"
|
|
||||||
msgstr "[[Contact]]"
|
|
||||||
|
|
||||||
#, fuzzy, no-wrap
|
|
||||||
#~| msgid ""
|
|
||||||
#~| "<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->\n"
|
|
||||||
#~| "<ul class=\"nav navbar-nav navbar-right\">\n"
|
|
||||||
#~| "<li>[[Home|index]]</li>\n"
|
|
||||||
#~| "<li>[[Forge|https://ayakael.net/forge/]]</li>\n"
|
|
||||||
#~| "<li>[[Contact]]</li>\n"
|
|
||||||
#~| "</ul>\n"
|
|
||||||
#~ msgid ""
|
|
||||||
#~ "<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->\n"
|
|
||||||
#~ "<ul class=\"nav navbar-nav nav-link align-items-center ms-auto\">\n"
|
|
||||||
#~ "<li>[[Home|index]]</li>\n"
|
|
||||||
#~ "<li>[[Forge|https://ayakael.net/forge/]]</li>\n"
|
|
||||||
#~ "<li>[[Contact]]</li>\n"
|
|
||||||
#~ "</ul>\n"
|
|
||||||
#~ msgstr ""
|
|
||||||
#~ "<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->\n"
|
|
||||||
#~ "<ul class=\"nav navbar-nav navbar-right\">\n"
|
|
||||||
#~ "<li>[[Accueil|index]]</li>\n"
|
|
||||||
#~ "<li>[[Forge|https://ayakael.net/forge/]]</li>\n"
|
|
||||||
#~ "<li>[[Contact]]</li>\n"
|
|
||||||
#~ "</ul>\n"
|
|
|
@ -1,6 +0,0 @@
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
|
||||||
<li>[[Home|index]]</li>
|
|
||||||
<li>[[Forge|https://ayakael.net/forge/]]</li>
|
|
||||||
<li>[[Contact]]</li>
|
|
||||||
</ul>
|
|
29
sidebar.pot
29
sidebar.pot
|
@ -1,29 +0,0 @@
|
||||||
# SOME DESCRIPTIVE TITLE
|
|
||||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
|
||||||
"POT-Creation-Date: 2024-09-17 14:37-0400\n"
|
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
|
|
||||||
#. type: Content of: <ul><li>
|
|
||||||
msgid "[[Home|index]]"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Content of: <ul><li>
|
|
||||||
msgid "[[Forge|https://ayakael.net/forge/]]"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. type: Content of: <ul><li>
|
|
||||||
msgid "[[Contact]]"
|
|
||||||
msgstr ""
|
|
152
sidebar/index.en.html
Normal file
152
sidebar/index.en.html
Normal file
|
@ -0,0 +1,152 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>sidebar - Ayakael</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="Ayakael" src="../favicon.png" width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown ps-2 pe-2">
|
||||||
|
<button class="btn language-switcher dropdown" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<div class="collapse navbar-collapse float-end ms-1" id="navbar">
|
||||||
|
English
|
||||||
|
</div>
|
||||||
|
<img src="../images/languages.png">
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start" aria-labelledby="language-menu-top">
|
||||||
|
|
||||||
|
<li><a href="./index.fr.html">Français</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
<!-- 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:07Z">Tue Sep 17 19:04:07 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=sidebar&t=sidebar" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
154
sidebar/index.fr.html
Normal file
154
sidebar/index.fr.html
Normal file
|
@ -0,0 +1,154 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>sidebar.fr - Ayakael</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="Ayakael" src="../favicon.png" width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="dropdown ps-2 pe-2">
|
||||||
|
<button class="btn language-switcher dropdown" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
<div class="collapse navbar-collapse float-end ms-1" id="navbar">
|
||||||
|
Français
|
||||||
|
</div>
|
||||||
|
<img src="../images/languages.png">
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start" aria-labelledby="language-menu-top">
|
||||||
|
|
||||||
|
<li><a href="./index.en.html">English</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<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.fr.html">Accueil</a></li>
|
||||||
|
<li><a href="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.fr.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
|
||||||
|
<!-- 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.fr.html">Accueil</a></li>
|
||||||
|
<li><a href="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.fr.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-09-17T19:04:07Z" class="dt-published">Tue Sep 17 19:04:07 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-09-17T19:04:07Z">Tue Sep 17 19:04:07 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Propulsé par <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=sidebar.fr&t=sidebar.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
341
smileys.fr/index.html
Normal file
341
smileys.fr/index.html
Normal file
|
@ -0,0 +1,341 @@
|
||||||
|
<!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 -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<title>smileys.fr - Ayakael</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="Ayakael" 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="https://ayakael.net/forge/">Forge</a></li>
|
||||||
|
<li><a href="../contact/index.en.html">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="navbar-nav nav-link align-items-center ms-auto">
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="flex-shrink-0">
|
||||||
|
<div class="container" id="content">
|
||||||
|
# Traduction de ikiwiki
|
||||||
|
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||||
|
# This file is distributed under the same license as the PACKAGE Ikiwiki.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Ikiwiki\n"
|
||||||
|
"POT-Creation-Date: 2009-08-15 18:30-0300\n"
|
||||||
|
"PO-Revision-Date: 2009-09-13 07:48+0200\n"
|
||||||
|
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
|
||||||
|
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bits\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"This page is used to control what smileys are supported by the wiki. Just "
|
||||||
|
"write the text of a smiley to display it."
|
||||||
|
msgstr ""
|
||||||
|
"Cette page enregistre les smileys reconnus dans ce wiki. Il suffit d'écrire "
|
||||||
|
"le texte du smiley pour l'afficher."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:)\t<img src="../smileys/smile.png" alt="smile.png" />"
|
||||||
|
msgstr "\\\\:)\t<img src="../smileys/smile.png" alt="smile.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:-)\t<img src="../smileys/smile.png" alt="smile.png" />"
|
||||||
|
msgstr "\\\\:-)\t<img src="../smileys/smile.png" alt="smile.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:D\t<img src="../smileys/biggrin.png" alt="biggrin.png" />"
|
||||||
|
msgstr "\\\\:D\t<img src="../smileys/biggrin.png" alt="biggrin.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:-D\t<img src="../smileys/biggrin.png" alt="biggrin.png" />"
|
||||||
|
msgstr "\\\\:-D\t<img src="../smileys/biggrin.png" alt="biggrin.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\B)\t<img src="../smileys/smile2.png" alt="smile2.png" />"
|
||||||
|
msgstr "\\\\B)\t<img src="../smileys/smile2.png" alt="smile2.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\B-)\t<img src="../smileys/smile2.png" alt="smile2.png" />"
|
||||||
|
msgstr "\\\\B-)\t<img src="../smileys/smile2.png" alt="smile2.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:))\t<img src="../smileys/smile3.png" alt="smile3.png" />"
|
||||||
|
msgstr "\\\\:))\t<img src="../smileys/smile3.png" alt="smile3.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:-))\t<img src="../smileys/smile3.png" alt="smile3.png" />"
|
||||||
|
msgstr "\\\\:-))\t<img src="../smileys/smile3.png" alt="smile3.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\;)\t<img src="../smileys/smile4.png" alt="smile4.png" />"
|
||||||
|
msgstr "\\\\;)\t<img src="../smileys/smile4.png" alt="smile4.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\;-)\t<img src="../smileys/smile4.png" alt="smile4.png" />"
|
||||||
|
msgstr "\\\\;-)\t<img src="../smileys/smile4.png" alt="smile4.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:\\\t<img src="../smileys/ohwell.png" alt="ohwell.png" />"
|
||||||
|
msgstr "\\\\:\\\t<img src="../smileys/ohwell.png" alt="ohwell.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:-\\\t<img src="../smileys/ohwell.png" alt="ohwell.png" />"
|
||||||
|
msgstr "\\\\:-\\\t<img src="../smileys/ohwell.png" alt="ohwell.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:/\t<img src="../smileys/ohwell.png" alt="ohwell.png" />"
|
||||||
|
msgstr "\\\\:/\t<img src="../smileys/ohwell.png" alt="ohwell.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:-/\t<img src="../smileys/ohwell.png" alt="ohwell.png" />"
|
||||||
|
msgstr "\\\\:-/\t<img src="../smileys/ohwell.png" alt="ohwell.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:|\t<img src="../smileys/neutral.png" alt="neutral.png" />"
|
||||||
|
msgstr "\\\\:|\t<img src="../smileys/neutral.png" alt="neutral.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:-|\t<img src="../smileys/neutral.png" alt="neutral.png" />"
|
||||||
|
msgstr "\\\\:-|\t<img src="../smileys/neutral.png" alt="neutral.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\>:>\t<img src="../smileys/devil.png" alt="devil.png" />"
|
||||||
|
msgstr "\\\\>:>\t<img src="../smileys/devil.png" alt="devil.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\X-(\t<img src="../smileys/angry.png" alt="angry.png" />"
|
||||||
|
msgstr "\\\\X-(\t<img src="../smileys/angry.png" alt="angry.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\<:(\t<img src="../smileys/frown.png" alt="frown.png" />"
|
||||||
|
msgstr "\\\\<:(\t<img src="../smileys/frown.png" alt="frown.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:(\t<img src="../smileys/sad.png" alt="sad.png" />"
|
||||||
|
msgstr "\\\\:(\t<img src="../smileys/sad.png" alt="sad.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:-(\t<img src="../smileys/sad.png" alt="sad.png" />"
|
||||||
|
msgstr "\\\\:-(\t<img src="../smileys/sad.png" alt="sad.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:-?\t<img src="../smileys/tongue.png" alt="tongue.png" />"
|
||||||
|
msgstr "\\\\:-?\t<img src="../smileys/tongue.png" alt="tongue.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:-P\t<img src="../smileys/tongue.png" alt="tongue.png" />"
|
||||||
|
msgstr "\\\\:-P\t<img src="../smileys/tongue.png" alt="tongue.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\:o\t<img src="../smileys/redface.png" alt="redface.png" />"
|
||||||
|
msgstr "\\\\:o\t<img src="../smileys/redface.png" alt="redface.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\|)\t<img src="../smileys/tired.png" alt="tired.png" />"
|
||||||
|
msgstr "\\\\|)\t<img src="../smileys/tired.png" alt="tired.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\|-)\t<img src="../smileys/tired.png" alt="tired.png" />"
|
||||||
|
msgstr "\\\\|-)\t<img src="../smileys/tired.png" alt="tired.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\{OK}\t<img src="../smileys/thumbs-up.png" alt="thumbs-up.png" />"
|
||||||
|
msgstr "\\\\{OK}\t<img src="../smileys/thumbs-up.png" alt="thumbs-up.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\{X}\t<img src="../smileys/icon-error.png" alt="icon-error.png" />"
|
||||||
|
msgstr "\\\\{X}\t<img src="../smileys/icon-error.png" alt="icon-error.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\{i}\t<img src="../smileys/icon-info.png" alt="icon-info.png" />"
|
||||||
|
msgstr "\\\\{i}\t<img src="../smileys/icon-info.png" alt="icon-info.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\(./)\t<img src="../smileys/checkmark.png" alt="checkmark.png" />"
|
||||||
|
msgstr "\\\\(./)\t<img src="../smileys/checkmark.png" alt="checkmark.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\(!)\t<img src="../smileys/idea.png" alt="idea.png" />"
|
||||||
|
msgstr "\\\\(!)\t<img src="../smileys/idea.png" alt="idea.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\[!]\t<img src="../smileys/attention.png" alt="attention.png" />"
|
||||||
|
msgstr "\\\\[!]\t<img src="../smileys/attention.png" alt="attention.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\/!\\\t<img src="../smileys/alert.png" alt="alert.png" />"
|
||||||
|
msgstr "\\\\/!\\\t<img src="../smileys/alert.png" alt="alert.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\(?)\t<img src="../smileys/question.png" alt="question.png" />"
|
||||||
|
msgstr "\\\\(?)\t<img src="../smileys/question.png" alt="question.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\{x}\t<img src="../smileys/star_on.png" alt="star on.png" />"
|
||||||
|
msgstr "\\\\{x}\t<img src="../smileys/star_on.png" alt="star on.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\{*}\t<img src="../smileys/star_on.png" alt="star on.png" />"
|
||||||
|
msgstr "\\\\{*}\t<img src="../smileys/star_on.png" alt="star on.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\{o}\t<img src="../smileys/star_off.png" alt="star off.png" />"
|
||||||
|
msgstr "\\\\{o}\t<img src="../smileys/star_off.png" alt="star off.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\{1}\t<img src="../smileys/prio1.png" alt="prio1.png" />"
|
||||||
|
msgstr "\\\\{1}\t<img src="../smileys/prio1.png" alt="prio1.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\{2}\t<img src="../smileys/prio2.png" alt="prio2.png" />"
|
||||||
|
msgstr "\\\\{2}\t<img src="../smileys/prio2.png" alt="prio2.png" />"
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid "\\\\{3}\t<img src="../smileys/prio3.png" alt="prio3.png" />"
|
||||||
|
msgstr "\\\\{3}\t<img src="../smileys/prio3.png" alt="prio3.png" />"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid "For example: <img src="../smileys/star_on.png" alt="{x}" /> <img src="../smileys/smile2.png" alt="B)" /> {x}"
|
||||||
|
msgstr "Par exemple : <img src="../smileys/star_on.png" alt="{x}" /> <img src="../smileys/smile2.png" alt="B)" /> {x}"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"To change the supported smileys, just edit the lists on this page. Note "
|
||||||
|
"that the format is important; each list item should start with the text that "
|
||||||
|
"is turned into the smiley, escaped so that users can see what produces it, "
|
||||||
|
"followed by a <a href="../ikiwiki/wikilink/">WikiLink</a> to the image to display."
|
||||||
|
msgstr ""
|
||||||
|
"Pour ajouter un smiley, il suffit de modifier cette page. Il est très "
|
||||||
|
"important de respecter le format. Chaque élément de la liste doit commencer "
|
||||||
|
"par le texte qui sera transformé en smiley, texte protégé pour que les "
|
||||||
|
"utilisateurs voient bien ce qui produit le smiley, suivi d'un [[ikiwiki/"
|
||||||
|
"WikiLink]] vers l'image à afficher."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"/!\\ Bear in mind that the link to the image needs to be written in a way "
|
||||||
|
"that will work if it's copied to other pages on the wiki. So be sure to "
|
||||||
|
"include the smileys directory in the path to the file."
|
||||||
|
msgstr ""
|
||||||
|
"/!\\ Le lien vers l'image doit être écrit de manière à continuer de "
|
||||||
|
"fonctionner s'il est copié sur d'autres pages du wiki. Aussi, il faut "
|
||||||
|
"inclure le répertoire smileys dans l'adresse du fichier."
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- legacy Ikiwiki comments.pm section -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Mastodon comments -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagedate text-muted">
|
||||||
|
<span class="created">Created <time datetime="2024-06-21T02:57:06Z" class="dt-published">Fri Jun 21 02:57:06 2024</time>.</span>
|
||||||
|
<span class="edited">
|
||||||
|
|
||||||
|
Edited <time datetime="2024-06-21T02:57:06Z">Fri Jun 21 02:57:06 2024</time>.
|
||||||
|
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- /container -->
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer mt-auto bg-light py-2" role="contentinfo">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row text-muted">
|
||||||
|
<div class="col-sm">
|
||||||
|
Copyleft © 2024 ayakael <a href="../meta/license/">CC-BY-SA</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm text-sm-end">
|
||||||
|
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</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=smileys.fr&t=smileys.fr" alt="tracking pixel to count visitors when Javascript is disabled" />
|
||||||
|
</noscript>
|
||||||
|
-->
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
smileys/alert.png
Normal file
BIN
smileys/alert.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 220 B |
BIN
smileys/angry.png
Normal file
BIN
smileys/angry.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 295 B |
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue